93 lines
2.0 KiB
Plaintext
93 lines
2.0 KiB
Plaintext
.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;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|