index.less 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. .page {
  2. // margin: auto;
  3. width: 100%;
  4. padding: 0 200px;
  5. background-color: #ffffff;
  6. }
  7. .box {
  8. background: rgba(255, 255, 255);
  9. box-shadow: 0px 0px 8px 4px rgba(212, 212, 212, 0.5);
  10. border-radius: 20px;
  11. }
  12. .head {
  13. .box;
  14. position: relative;
  15. margin: 30px 0;
  16. padding: 64px 76px;
  17. display: flex;
  18. .profile {
  19. width: 150px;
  20. height: 150px;
  21. background-image: url('@/assets/center/profile.png');
  22. background-size: 100%, 100%;
  23. background-repeat: no-repeat;
  24. }
  25. .textContent {
  26. margin-left: 60px;
  27. display: flex;
  28. flex-direction: column;
  29. justify-content: space-around;
  30. .name {
  31. font-size: 34px;
  32. font-family: PingFangSC, PingFang SC;
  33. font-weight: 400;
  34. color: #4a4a4a;
  35. line-height: 48px;
  36. }
  37. .photo {
  38. font-size: 28px;
  39. font-family: PingFangSC, PingFang SC;
  40. font-weight: 400;
  41. color: #4a4a4a;
  42. line-height: 40px;
  43. }
  44. }
  45. }
  46. .center {
  47. margin-bottom: 30px;
  48. height: 150px;
  49. display: flex;
  50. justify-content: space-between;
  51. .item {
  52. .box;
  53. width: 49%;
  54. text-align: center;
  55. font-size: 32px;
  56. line-height: 150px;
  57. font-family: PingFangSC, PingFang SC;
  58. font-weight: 400;
  59. color: #4a4a4a;
  60. }
  61. }
  62. .bottomContent {
  63. .box;
  64. padding: 10px 30px;
  65. font-size: 32px;
  66. font-family: PingFangSC, PingFang SC;
  67. font-weight: 400;
  68. color: #4a4a4a;
  69. .lineItem {
  70. height: 100px;
  71. line-height: 100px;
  72. border-bottom: 1px solid #d4d4d4;
  73. }
  74. .lineItem:last-child {
  75. border-bottom: none;
  76. }
  77. }
  78. .loginOut {
  79. margin: 50px auto 0;
  80. width: 329px;
  81. height: 97px;
  82. text-align: center;
  83. background: rgba(74, 144, 226);
  84. border-radius: 49px;
  85. font-size: 32px;
  86. font-family: PingFangSC, PingFang SC;
  87. font-weight: 400;
  88. color: #ffffff;
  89. line-height: 97px;
  90. }
  91. .close {
  92. position: absolute;
  93. top: 20px;
  94. right: 20px;
  95. font-size: 30px;
  96. }