32 lines
609 B
Plaintext
32 lines
609 B
Plaintext
.ruzhuRadio {
|
|
display: flex;
|
|
flex-wrap: nowrap;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
flex-direction: row;
|
|
margin: 0rpx 24rpx;
|
|
padding: 30rpx 50rpx;
|
|
background: #FFFFFF;
|
|
border-radius: 20rpx;
|
|
}
|
|
.ruzhuRadio .radio-item {
|
|
display: flex;
|
|
flex-wrap: nowrap;
|
|
align-items: center;
|
|
flex-direction: row;
|
|
}
|
|
.ruzhuRadio .radio-item .radio-item-round {
|
|
width: 34rpx;
|
|
height: 34rpx;
|
|
margin-right: 10rpx;
|
|
}
|
|
.ruzhuRadio .radio-item .radio-item-name {
|
|
font-weight: 400;
|
|
font-size: 30rpx;
|
|
color: #333333;
|
|
line-height: 42rpx;
|
|
text-align: left;
|
|
font-style: normal;
|
|
}
|
|
|