feat(my): 新增个人信息、帮助中心、问题详情页面并接入导航

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
17792275749
2026-08-19 09:53:56 +08:00
co-authored by Claude Opus 4.7
parent cd11d711d5
commit 3a67b26ed6
15 changed files with 404 additions and 3 deletions
@@ -0,0 +1,92 @@
.helpCenter {
width: 100%;
min-height: 100%;
padding: 24rpx 32rpx;
box-sizing: border-box;
background-color: #F5F7FB;
.search {
display: flex;
flex-direction: column;
margin-bottom: 48rpx;
.search-title {
color: #394356;
height: 40rpx;
font-size: 40rpx;
font-weight: bolder;
line-height: 40rpx;
}
.search-sub {
color: #394356;
height: 26rpx;
font-size: 26rpx;
line-height: 26rpx;
margin-top: 24rpx;
}
}
.tabs {
display: flex;
gap: 20rpx;
margin-bottom: 24rpx;
.tab {
flex: 1;
height: 56rpx;
line-height: 56rpx;
text-align: center;
border-radius: 48rpx;
font-size: 24rpx;
background-color: #FFFFFF;
color: #77849E;
}
.tab--active {
background-color: #1385FA;
color: #FFFFFF;
}
}
.list {
.question {
width: 100%;
height: 112rpx;
display: flex;
align-items: center;
background-color: #FFFFFF;
border-radius: 24rpx;
padding: 0 32rpx;
box-sizing: border-box;
margin-bottom: 24rpx;
.dot {
width: 12rpx;
height: 12rpx;
border-radius: 50%;
background-color: #1385FA;
margin-right: 12rpx;
flex-shrink: 0;
}
.question-title {
flex: 1;
color: #394356;
height: 32rpx;
font-size: 32rpx;
line-height: 32rpx;
}
.arrow {
width: 20rpx;
height: 18rpx;
flex-shrink: 0;
&::after {
right: 4rpx;
}
}
}
}
}