mrr.sj.front/unpackage/dist/dev/mp-weixin/pages/artisan/profile.wxss

164 lines
2.8 KiB
Plaintext
Raw Normal View History

2026-03-24 11:45:13 +08:00
.profile-page {
min-height: 100vh;
background-color: #f5f5f5;
}
/* 自定义导航栏样式 */
.custom-navbar {
position: fixed;
top: 0;
left: 0;
right: 0;
height: 108rpx; /* 使用标准导航栏高度 */
background: white;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 32rpx;
z-index: 999;
box-sizing: border-box;
/* 适配不同机型的顶部安全区域 */
padding-top: 25px;
height: calc(128rpx + 25px);
}
/* 导航栏左侧 */
.navbar-left {
display: flex;
align-items: center;
}
.back-icon {
width: 16rpx;
height: 32rpx;
margin-right: 23rpx;
}
.navbar-title {
font-family: PingFangSC, PingFang SC;
font-weight: 500;
font-size: 32rpx;
color: #333333;
line-height: 45rpx;
text-align: left;
font-style: normal;
}
/* 导航栏右侧状态栏 */
.navbar-right {
display: flex;
align-items: center;
}
.nav-status-item {
display: flex;
flex-direction: column;
align-items: center;
margin-left: 11rpx;
padding: 16rpx;
}
.nav-status-icon {
width: 44rpx;
height: 44rpx;
margin-bottom: 7rpx;
}
.nav-status-text {
font-family: PingFangSC, PingFang SC;
font-weight: 400;
font-size: 20rpx;
color: #333333;
line-height: 28rpx;
text-align: left;
font-style: normal;
}
.content {
padding: 20rpx;
/* 动态计算内容区域的上边距 */
padding-top: calc(128rpx + 25px + 20rpx);
}
/* 部分卡片 */
.section-card {
background: white;
border-radius: 20rpx;
padding: 20rpx 20rpx 0 20rpx;
margin-bottom: 20rpx;
}
.section-header {
display: flex;
align-items: center;
margin-bottom: 8rpx;
}
.section-title {
font-family: PingFangSC, PingFang SC;
font-weight: 500;
font-size: 32rpx;
color: #1D2129;
line-height: 48rpx;
text-align: left;
font-style: normal;
}
.title-bar {
width: 6rpx;
height: 30rpx;
background-color: #E8101E;
margin-right: 10rpx;
border-radius: 5rpx;
}
.section-desc {
font-family: PingFangSC, PingFang SC;
font-weight: 400;
font-size: 24rpx;
color: #666666;
line-height: 33rpx;
text-align: left;
font-style: normal;
margin-left: 20rpx;
letter-spacing: 0.5rpx;
}
/* 子部分 */
.subsection {
/* margin-top: 10rpx; */
/* margin-left: 17rpx; */
}
.subsection-content {
border-radius: 12rpx;
overflow: hidden;
margin-left: 17rpx;
}
/* 信息项 */
.info-item {
display: flex;
justify-content: space-between;
align-items: center;
padding: 32rpx 0 ;
border-bottom: 1rpx solid #f0f0f0;
}
.info-item:last-child {
border-bottom: none;
}
.info-left {
display: flex;
align-items: center;
}
.item-icon {
width: 48rpx;
height: 48rpx;
margin-right: 24rpx;
}
.item-label {
font-family: PingFangSC, PingFang SC;
font-weight: 500;
font-size: 28rpx;
color: #333333;
line-height: 40rpx;
text-align: left;
font-style: normal;
}
.arrow-right {
margin-right: 19rpx;
width: 11rpx;
height: 22rpx;
}