person.page.scss 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. /* 全局样式 */
  2. ion-app {
  3. background: url('/assets/images/background-image1.jpg') no-repeat center center fixed;
  4. background-size: cover;
  5. background-position: center;
  6. height: 100vh;
  7. margin: 0;
  8. padding: 0;
  9. }
  10. .modal-content {
  11. --background: #fff;
  12. padding: 20px;
  13. }
  14. ion-content {
  15. --background: transparent;
  16. padding: 16px;
  17. }
  18. .profile-block {
  19. background-color: rgba(255, 255, 255, 0.8);
  20. padding: 20px;
  21. border-radius: 20px;
  22. margin: 20px;
  23. }
  24. .profile-card-content {
  25. display: flex;
  26. align-items: center;
  27. justify-content: space-between;
  28. padding: 10px;
  29. }
  30. .profile-pic-container {
  31. flex: 0 0 60px; /* 固定头像宽度 */
  32. margin-right: 20px;
  33. }
  34. .profile-info-container {
  35. flex: 1;
  36. text-align: left;
  37. }
  38. .navigate-button-container {
  39. flex: 0 0 100px; /* 固定按钮宽度 */
  40. text-align: right;
  41. }
  42. .profile-pic {
  43. width: 60px;
  44. height: 60px;
  45. border-radius: 50%;
  46. border: 3px solid white;
  47. }
  48. h2 {
  49. font-size: 20px;
  50. font-weight: bold;
  51. color: #333;
  52. margin-bottom: 5px;
  53. }
  54. .gender {
  55. font-size: 16px;
  56. color: #666;
  57. }
  58. .navigate-button {
  59. color: #333;
  60. margin: 0; /* 移除默认的边距 */
  61. }
  62. ion-card {
  63. margin-top: 20px;
  64. padding: 10px;
  65. box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  66. }
  67. ion-card-header {
  68. background: rgba(105, 250, 255, 0.3);
  69. color: #333;
  70. padding: 10px;
  71. text-align: left;
  72. }
  73. ion-card-title {
  74. font-size: 18px;
  75. }
  76. .completion {
  77. display: flex;
  78. justify-content: space-between;
  79. align-items: center;
  80. }
  81. .edit-button {
  82. color: #064351;
  83. font-size: 16px;
  84. }
  85. ion-list {
  86. margin-top: 10px;
  87. }
  88. ion-item {
  89. --background: #fff;
  90. --color: #333;
  91. border-radius: 5px;
  92. margin: 5px 0;
  93. padding: 10px;
  94. }
  95. .icon {
  96. width: 18px;
  97. height: 18px;
  98. margin-right: 8px;
  99. vertical-align: middle;
  100. }
  101. .signature-input {
  102. width: 100%; /* 输入框宽度占满 */
  103. padding: 10px; /* 内边距 */
  104. border: 1px solid #ccc; /* 边框 */
  105. border-radius: 5px; /* 圆角 */
  106. font-size: 16px; /* 字体大小 */
  107. color: #333; /* 字体颜色 */
  108. }
  109. .signature-input::placeholder {
  110. color: #aaa; /* 提示文本颜色 */
  111. opacity: 1; /* 保持提示文本的透明度 */
  112. }
  113. .user-info {
  114. display: flex; /* 使用 Flexbox 布局 */
  115. align-items: center; /* 垂直居中对齐 */
  116. margin: 16px; /* 外边距 */
  117. }
  118. .avatar {
  119. width: 60px; /* 头像宽度 */
  120. height: 60px; /* 头像高度 */
  121. border-radius: 50%; /* 圆形头像 */
  122. margin-right: 16px; /* 头像与文本的间距 */
  123. object-fit: cover; /* 确保头像不变形 */
  124. }
  125. .user-details-container {
  126. flex-grow: 1; /* 使用户信息区域占据剩余空间 */
  127. }
  128. .username {
  129. font-size: 1.2em; /* 账号字体大小 */
  130. font-weight: bold; /* 加粗 */
  131. color: #333; /* 账号颜色 */
  132. margin: 0; /* 去掉默认外边距 */
  133. }
  134. .user-details {
  135. font-size: 0.9em; /* 用户详情字体大小 */
  136. color: #555; /* 用户详情颜色 */
  137. margin: 0; /* 去掉默认外边距 */
  138. }