answer-question.wxss 2.1 KB
/* pages/index/answer-question/answer-question.wxss */
.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 52rpx 40rpx;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-top: 1rpx solid #f2f2f2;
}
.title {
    font-size: 34rpx;
    color: #333333;
}
.tips {
    font-size: 28rpx;
    color: #333333;
    margin-top: 56rpx;
    font-weight: bold;
}
.questions-box {
    width: 100%;
    margin-top: 38rpx;
}
.question-item {
    padding: 28rpx;
    box-shadow: 4rpx 8rpx 60rpx rgba(51, 51, 51, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-bottom: 60rpx;
}
.question-item .question {
    font-size: 30rpx;
    color: #333333;
    font-weight: bold;
}
.question-item .section {
    display: flex;
    /*align-items: center;*/
    flex-direction: column;
    justify-content: flex-start;
}
.question-item .section text {
    font-size: 26rpx;
    color: #333333;
    margin-top: 10rpx;
    margin-right: 10rpx;
}
.question-item .section .img {
    width: 34rpx;
    height: 20rpx;
}
.question-item .section .active {
    color:#E2C8B1;
}
.btn {
    width: 364rpx;
    background-color: #323232;
    color:#E2C8B1;
    font-size: 30rpx;
    border-radius: 6rpx;
    text-align: center;
}
.btn text {
    height: 66rpx;
    line-height: 66rpx;
}
.checkbox {
    display: flex;
    /*align-items: center;*/
    justify-content: space-between;
    margin-bottom: 21rpx;
}
radio .wx-radio-input {
    border: none;
    color: #ffffff;
}
radio .wx-radio-input.wx-radio-input-checked{
    border: none;
    background: #ffffff;
}
/*选中后的对勾样式*/
radio .wx-radio-input.wx-radio-input-checked::before{
    color: #E3CAB3;
    background: #ffffff;
    border: none;

}

checkbox .wx-checkbox-input {
    border: none;
    color: #ffffff;
}
checkbox .wx-checkbox-input.wx-checkbox-input-checked{
    border: none;
    background: #ffffff;
}
/*选中后的对勾样式*/
checkbox .wx-checkbox-input.wx-checkbox-input-checked::before{
    color: #E3CAB3;
    background: #ffffff;
    border: none;

}