54 lines
930 B
CSS
54 lines
930 B
CSS
/* 主体开始 */
|
|
.condition-block{
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-start;
|
|
}
|
|
/* 选项开始 */
|
|
.each-block{
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
height: 92rpx;
|
|
align-items: center;
|
|
border-bottom: solid 1px #F0F0F0;
|
|
padding: 0 40rpx;
|
|
}
|
|
.each-left{
|
|
width: 596rpx;
|
|
height: 42rpx;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
.name-block{
|
|
height: 42rpx;
|
|
color: #303233;
|
|
font-size: 30rpx;
|
|
}
|
|
.content-block{
|
|
height: 36rpx;
|
|
font-size: 26rpx;
|
|
color: #999999;
|
|
width: 400rpx;
|
|
text-align: right;
|
|
}
|
|
.each-right{
|
|
height: 44rpx;
|
|
width: 44rpx;
|
|
margin-left: 40rpx;
|
|
}
|
|
/* 选项结束 */
|
|
.button-block{
|
|
width:658rpx;
|
|
height:80rpx;
|
|
background:rgba(57,130,252,1);
|
|
border-radius:40rpx;
|
|
margin-top: 80rpx;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
/* 主体结束 */ |