index.rpx.css 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. .page{
  2. height: 100vh;
  3. background: #F9F9F9;
  4. padding: 0 32rpx;
  5. }
  6. .outView{
  7. background: #FFFFFF;
  8. border-radius: 15rpx;
  9. padding: 0 24rpx;
  10. margin-top: 24rpx;
  11. }
  12. .photoView{
  13. width: 100rpx;
  14. height: 100rpx;
  15. border-radius: 50rpx;
  16. padding: 0;
  17. margin: 30rpx 0;
  18. overflow: hidden;
  19. background: #FFE50C;
  20. }
  21. .photoImage{
  22. width: 100rpx;
  23. height: 100rpx;
  24. }
  25. .key{
  26. font-size: 28rpx;
  27. font-family: PingFangSC-Regular, PingFang SC;
  28. font-weight: 400;
  29. color: #333333;
  30. line-height: 44rpx;
  31. }
  32. .bordBot{
  33. border-bottom: 1px solid #F7F7F7;
  34. }
  35. .nikeName{
  36. font-size: 28rpx;
  37. font-family: PingFangSC-Regular, PingFang SC;
  38. font-weight: 400;
  39. color: #999999;
  40. margin: 28rpx 28rpx 28rpx 0;
  41. text-align: right;
  42. }
  43. .groupItemContent{
  44. font-size: 24rpx;
  45. font-family: PingFangSC-Regular, PingFang SC;
  46. font-weight: 400;
  47. color: #999999;
  48. margin: 30rpx 0;
  49. }
  50. .updateButton{
  51. margin-top: 60rpx;
  52. border-radius: 40rpx;
  53. background: #FFE05C;
  54. font-size: 30rpx;
  55. }
  56. .updateButton:after{
  57. border: none;
  58. }
  59. .logoutButton{
  60. margin-top: 100rpx;
  61. }
  62. .popupStyle{
  63. background-color: white;
  64. width: 600rpx;
  65. height: 250rpx;
  66. border-radius: 20rpx;
  67. margin: 20rpx;
  68. padding: 10rpx;
  69. }
  70. .popupStyleItem{
  71. display: flex;
  72. justify-content: center;
  73. align-items: center;
  74. }