125 lines
2.2 KiB
Plaintext
125 lines
2.2 KiB
Plaintext
.container{
|
|
width: 100vw;
|
|
height: 100vh;
|
|
background-color: #F6F6F6;
|
|
}
|
|
.switch_box{
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 90vw;
|
|
/* height: 500rpx; */
|
|
border-radius: 20rpx;
|
|
margin: 30rpx auto;
|
|
background-color: rgb(255, 255, 255);
|
|
}
|
|
.switch_box_top{
|
|
position: relative;
|
|
display: flex;
|
|
/* height: 300rpx; */
|
|
flex-direction: column;
|
|
padding: 30rpx 30rpx 20rpx 30rpx;
|
|
}
|
|
.switch_box_top::after{
|
|
position: absolute;
|
|
box-sizing: border-box;
|
|
content: ' ';
|
|
pointer-events: none;
|
|
right: 0;
|
|
left: 32rpx;
|
|
bottom: 0;
|
|
border-bottom: 1px solid var(--td-cell-border-color, var(--td-gray-color-3, #e7e7e7));
|
|
transform: scaleY(0.5);
|
|
}
|
|
.switch_box_item{
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
.switch_box_item_name{
|
|
flex: 1;
|
|
font-size: 32rpx;
|
|
}
|
|
.switch_box_item_btn{
|
|
flex: 1;
|
|
text-align: right;
|
|
}
|
|
.switch_box_note{
|
|
color: #999999;
|
|
font-size: 24rpx;
|
|
}
|
|
.help{
|
|
margin-bottom: 20rpx;
|
|
}
|
|
.price_title{
|
|
width: 90vw;
|
|
margin: 0 auto;
|
|
font-size: 32rpx;
|
|
margin-bottom: 20rpx;
|
|
color: #333333;
|
|
}
|
|
.price_steup_box{
|
|
display: flex;
|
|
width: 90vw;
|
|
margin: 0 auto;
|
|
border-radius: 20rpx;
|
|
flex-direction: column;
|
|
background-color: rgb(255, 255, 255);
|
|
}
|
|
.price_steup_box_top, .price_steup_box_bottom{
|
|
position: relative;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin: 20rpx;
|
|
align-items: center;
|
|
}
|
|
.price_steup_box_bottom_num{
|
|
flex: 1.5;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.price_steup_box_top_title, .price_steup_box_bottom_title{
|
|
flex: 1;
|
|
font-size: 32rpx;
|
|
color: #333;
|
|
}
|
|
.price_steup_box_top::after{
|
|
position: absolute;
|
|
box-sizing: border-box;
|
|
content: ' ';
|
|
pointer-events: none;
|
|
right: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
border-bottom: 1px solid var(--td-cell-border-color, var(--td-gray-color-3, #e7e7e7));
|
|
transform: scaleY(0.5);
|
|
}
|
|
.price_steup_box_top_stepper{
|
|
flex: 1;
|
|
text-align: right;
|
|
align-items: center;
|
|
}
|
|
.bottom{
|
|
width: 90vw;
|
|
margin: 0 auto;
|
|
color: #999;
|
|
letter-spacing: 2rpx;
|
|
font-size: 28rpx;
|
|
line-height: 40rpx;
|
|
}
|
|
|
|
.go{
|
|
position: fixed;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
bottom: 100rpx;
|
|
width: 90vw;
|
|
}
|
|
.weui-input{
|
|
color: red;
|
|
display: inline-block;
|
|
text-align: right;
|
|
}
|
|
.price{
|
|
text-align: center;
|
|
flex: 1;
|
|
} |