You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
964 B
54 lines
964 B
.profile-page {
|
|
padding: 20px;
|
|
background-color: white; /* 整体背景色 */
|
|
margin-top: 100px;
|
|
}
|
|
.profile-header {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 20px;
|
|
background-color: #fff;
|
|
border-radius: 10px;
|
|
margin-bottom: 20px;
|
|
flex-direction: column;
|
|
align-items: center; /* 水平居中 */
|
|
padding: 20px;
|
|
}
|
|
|
|
.avatar-container {
|
|
width: 125px;
|
|
height: 125px;
|
|
margin-right: 15px;
|
|
border-radius: 50%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.avatar {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover; /* 确保图片不变形 */
|
|
}
|
|
|
|
.actions {
|
|
background-color: #fff;
|
|
padding: 40px;
|
|
border-radius: 10px;
|
|
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.action-btn {
|
|
height: 50px;
|
|
width: 100%;
|
|
padding: 5px;
|
|
background-color: #007aff;
|
|
color: white;
|
|
text-align: center;
|
|
border-radius: 5px;
|
|
margin-bottom: 15px;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.logout-btn {
|
|
background-color: #ff3b30; /* 红色背景,用于突出退出按钮 */
|
|
}
|