36 lines
665 B
SCSS
36 lines
665 B
SCSS
|
|
.periodPrice_body {
|
||
|
|
width: 100vw;
|
||
|
|
height: 100vh;
|
||
|
|
overflow: hidden;
|
||
|
|
box-sizing: border-box;
|
||
|
|
padding: 0 30rpx;
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
.periodPrice_item {
|
||
|
|
// height: 154rpx;
|
||
|
|
width: 100%;
|
||
|
|
border-bottom: solid 1px #ededed;
|
||
|
|
padding: 46rpx 0;
|
||
|
|
box-sizing: border-box;
|
||
|
|
.blue{
|
||
|
|
color: #476FFA;
|
||
|
|
}
|
||
|
|
.periodPrice_item_bottom {
|
||
|
|
color: rgba(0, 0, 0, 0.85);
|
||
|
|
font-size: 24rpx;
|
||
|
|
}
|
||
|
|
.periodPrice_item_top {
|
||
|
|
margin-bottom: 14rpx;
|
||
|
|
.periodPrice_item_top_value {
|
||
|
|
font-weight: 600;
|
||
|
|
color: #121836;
|
||
|
|
font-size: 30rpx;
|
||
|
|
}
|
||
|
|
.periodPrice_item_top_label {
|
||
|
|
font-size: 28rpx;
|
||
|
|
color: rgba(0, 0, 0, 0.85);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|