121 lines
2.3 KiB
SCSS
121 lines
2.3 KiB
SCSS
/* pages/answer/answer.wxss */
|
|
.answer-page{
|
|
box-sizing: border-box;
|
|
padding: 46rpx 54rpx;
|
|
}
|
|
|
|
.title-box{
|
|
display: flex;
|
|
align-items: center;
|
|
font-size: 36rpx;
|
|
font-family: PingFang SC;
|
|
font-weight: bold;
|
|
color: #653E12;
|
|
margin-bottom: 34rpx;
|
|
image{
|
|
width: 35rpx;
|
|
height: 40rpx;
|
|
margin-right: 10rpx;
|
|
}
|
|
}
|
|
.description{
|
|
font-size: 26rpx;
|
|
font-family: PingFang SC;
|
|
font-weight: 500;
|
|
color: #838383;
|
|
line-height: 36px;
|
|
opacity: 0.61;
|
|
}
|
|
|
|
.form-box{
|
|
.form-item{
|
|
border-bottom: 2rpx solid #F3F5F8;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 55rpx 0;
|
|
// &:last-child{
|
|
// border-bottom: none;
|
|
// }
|
|
&.break{
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
padding: 26rpx 0;
|
|
.label{
|
|
margin-bottom: 27rpx;
|
|
}
|
|
}
|
|
.label{
|
|
font-size: 28rpx;
|
|
font-family: PingFang SC;
|
|
font-weight: 500;
|
|
color: #494949;
|
|
}
|
|
.select-box{
|
|
display: flex;
|
|
justify-content: space-between;
|
|
width: 100%;
|
|
.select-item{
|
|
width: 195rpx;
|
|
height: 55rpx;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
box-sizing: border-box;
|
|
border-radius: 10rpx;
|
|
border: 1rpx solid #E2E2E2;
|
|
font-size: 28rpx;
|
|
font-family: PingFang SC;
|
|
font-weight: 500;
|
|
color: #C3C3C3;
|
|
&.active{
|
|
background: #E5C7A3;
|
|
color: #653E12;
|
|
border: none;
|
|
}
|
|
}
|
|
}
|
|
.picker-box{
|
|
display: flex;
|
|
align-items: center;
|
|
font-size: 28rpx;
|
|
font-family: PingFang SC;
|
|
font-weight: 500;
|
|
color: #C3C3C3;
|
|
image{
|
|
width: 14rpx;
|
|
height: 25rpx;
|
|
margin-left: 20rpx;
|
|
}
|
|
}
|
|
.input-box{
|
|
width: 100%;
|
|
font-size: 28rpx;
|
|
font-family: PingFang SC;
|
|
font-weight: 500;
|
|
color: #494949;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
}
|
|
}
|
|
|
|
.radio-box{
|
|
display: flex;
|
|
align-items: center;
|
|
font-size: 26rpx;
|
|
font-family: PingFang SC;
|
|
font-weight: 500;
|
|
color: #494949;
|
|
margin-top: 40rpx;
|
|
radio{
|
|
zoom: .7;
|
|
margin-right: 18rpx;
|
|
}
|
|
}
|
|
.btn-box{
|
|
display: flex;
|
|
justify-content: center;
|
|
margin-top: 68rpx;
|
|
} |