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.
99 lines
1.5 KiB
99 lines
1.5 KiB
10 months ago
|
.page_container {
|
||
|
background-color: #f5f5f5;
|
||
|
height: 100vh;
|
||
|
font-family: PingFang SC;
|
||
|
}
|
||
|
|
||
|
.top_bg {
|
||
|
height: 120rpx;
|
||
|
}
|
||
|
|
||
|
.main_content {
|
||
|
background-color: #fff;
|
||
|
border-top-left-radius: 30rpx;
|
||
|
border-top-right-radius: 30rpx;
|
||
|
height: calc(100vh - 120rpx);
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
.userinfo_container {
|
||
|
display: flex;
|
||
|
gap: 80rpx;
|
||
|
align-items: center;
|
||
|
gap: 20rpx;
|
||
|
position: absolute;
|
||
|
top: -30rpx;
|
||
|
padding: 0rpx 60rpx;
|
||
|
}
|
||
|
|
||
|
.avatar {
|
||
|
width: 128rpx;
|
||
|
height: 128rpx;
|
||
|
/* background-color: #e5e5e5; */
|
||
|
border-radius: 50%;
|
||
|
transform: scale(1.8);
|
||
|
}
|
||
|
|
||
|
.username {
|
||
|
color: #333;
|
||
|
font-size: 32rpx;
|
||
|
margin-top: 20rpx;
|
||
|
color: rgba(0, 0, 0, 0.9);
|
||
|
max-width: 200rpx;
|
||
|
}
|
||
|
|
||
|
.settings_container {
|
||
|
position: relative;
|
||
|
top: 150rpx;
|
||
|
padding: 0 40rpx;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
gap: 10rpx;
|
||
|
}
|
||
|
|
||
|
.setting_item {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: space-between;
|
||
|
padding: 30rpx 0rpx;
|
||
|
border-bottom: 1rpx solid rgba(0, 0, 0, 0.08);
|
||
|
font-size: 28rpx;
|
||
|
}
|
||
|
|
||
|
.left {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
gap: 20rpx;
|
||
|
}
|
||
|
|
||
|
.contact-button {
|
||
|
padding-top: 10rpx;
|
||
|
padding-bottom: 10rpx;
|
||
|
box-sizing: border-box;
|
||
|
padding-left: 0rpx;
|
||
|
margin: 0;
|
||
|
width: 400rpx;
|
||
|
font-weight: 400;
|
||
|
font-size: 28rpx;
|
||
|
color: rgba(0, 0, 0, 0.9);
|
||
|
line-height: 56rpx;
|
||
|
text-align: left;
|
||
|
}
|
||
|
|
||
|
.button-hover {
|
||
|
background-color: #fff;
|
||
|
}
|
||
|
|
||
|
.setting_icon {
|
||
|
width: 40rpx;
|
||
|
height: 40rpx;
|
||
|
}
|
||
|
|
||
|
.setting_text {
|
||
|
color: rgba(0, 0, 0, 0.9);
|
||
|
}
|
||
|
|
||
|
.arrow_icon {
|
||
|
width: 30rpx;
|
||
|
height: 30rpx;
|
||
|
}
|