5 changed files with 168 additions and 7 deletions
@ -1,5 +1,5 @@
@@ -1,5 +1,5 @@
|
||||
export default { |
||||
navigationBarTitleText: '用户协议', |
||||
navigationBarTitleText: '协议', |
||||
navigationBarBackgroundColor: '#FFFFFF', |
||||
navigationBarTextStyle: 'black', |
||||
} |
||||
|
||||
@ -1,5 +1,32 @@
@@ -1,5 +1,32 @@
|
||||
.agreement-page { |
||||
min-height: 100vh; |
||||
background-color: #F2F3F5; |
||||
padding: 30px; |
||||
|
||||
// 协议列表 |
||||
.agreement-list { |
||||
.agreement-item { |
||||
background: #FFFFFF; |
||||
margin-bottom: 1PX; |
||||
padding: 30px 30px; |
||||
border-bottom: 1PX solid #F2F3F5; |
||||
|
||||
.agreement-title { |
||||
font-size: 30px; |
||||
color: #333333; |
||||
line-height: 1.6; |
||||
} |
||||
|
||||
// 覆盖 Taroify Cell 样式 |
||||
:global { |
||||
.taroify-cell__value { |
||||
flex: 1; |
||||
} |
||||
|
||||
.taroify-cell__right-icon { |
||||
color: #999999; |
||||
margin-left: 20px; |
||||
} |
||||
} |
||||
} |
||||
} |
||||
} |
||||
|
||||
@ -1,5 +1,55 @@
@@ -1,5 +1,55 @@
|
||||
.help-center-page { |
||||
min-height: 100vh; |
||||
background-color: #F2F3F5; |
||||
padding: 30px; |
||||
display: flex; |
||||
flex-direction: column; |
||||
|
||||
// 问题列表 |
||||
.question-list { |
||||
flex: 1; |
||||
|
||||
.question-item { |
||||
background: #FFFFFF; |
||||
margin-bottom: 1PX; |
||||
padding: 30px 30px; |
||||
border-bottom: 1PX solid #F2F3F5; |
||||
|
||||
.question-title { |
||||
font-size: 30px; |
||||
color: #333333; |
||||
line-height: 1.6; |
||||
} |
||||
|
||||
// 覆盖 Taroify Cell 样式 |
||||
:global { |
||||
.taroify-cell__value { |
||||
flex: 1; |
||||
} |
||||
|
||||
.taroify-cell__right-icon { |
||||
color: #999999; |
||||
margin-left: 20px; |
||||
} |
||||
} |
||||
} |
||||
} |
||||
|
||||
// 客服电话 |
||||
.service-phone { |
||||
padding: 40px 30px; |
||||
text-align: center; |
||||
background: #FFFFFF; |
||||
margin-top: auto; |
||||
|
||||
.phone-label { |
||||
font-size: 28px; |
||||
color: #666666; |
||||
} |
||||
|
||||
.phone-number { |
||||
font-size: 28px; |
||||
color: #1989FA; |
||||
text-decoration: underline; |
||||
} |
||||
} |
||||
} |
||||
|
||||
Loading…
Reference in new issue