52 lines
751 B
CSS
52 lines
751 B
CSS
.box {
|
|
padding: 0 20rpx;
|
|
}
|
|
|
|
.Tit {
|
|
font-weight: bold;
|
|
font-size: 32rpx;
|
|
color: #222222;
|
|
margin-top: 30rox;
|
|
}
|
|
|
|
.carItem{
|
|
padding: 30rpx 8rpx;
|
|
}
|
|
.carRow {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 20rpx;
|
|
}
|
|
|
|
.carRow_tit {
|
|
font-weight: 400;
|
|
font-size: 26rpx;
|
|
color: #999999;
|
|
min-width: 4em;
|
|
margin-right: 30rpx;
|
|
}
|
|
|
|
.carItemBox:last-child .gray{
|
|
display: none;
|
|
}
|
|
|
|
.add{
|
|
position: fixed;
|
|
right: 50rpx;
|
|
bottom: 170rpx;
|
|
width: 100rpx;
|
|
height: 100rpx;
|
|
}
|
|
|
|
.delete{
|
|
color: #fff;
|
|
background-color: #ee0a24;
|
|
width: 120rpx;
|
|
height: 60rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
position: relative;
|
|
margin-left: 80%;
|
|
}
|