58 lines
977 B
CSS
58 lines
977 B
CSS
page {
|
|
background-color: #f5f7fb;
|
|
padding-top: 20rpx;
|
|
}
|
|
|
|
|
|
/* 车辆信息容器样式 */
|
|
.car-info-container {
|
|
width: 100%;
|
|
background-color: #ffffff;
|
|
padding: 30rpx;
|
|
border-bottom: 1rpx solid #eeeeee;
|
|
box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.05);
|
|
}
|
|
|
|
/* 车牌样式 */
|
|
.license-plate {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 20rpx;
|
|
}
|
|
|
|
/* 车牌类型标签样式 */
|
|
.plate-type-box{
|
|
padding: 11rpx 2rpx;
|
|
border: 1rpx solid #1890ff;
|
|
border-radius: 8rpx;
|
|
}
|
|
|
|
.plate-type {
|
|
background-color: #1890ff;
|
|
color: white;
|
|
padding: 10rpx 20rpx;
|
|
border-radius: 8rpx;
|
|
font-size: 28rpx;
|
|
}
|
|
|
|
/* 车牌号样式 */
|
|
.plate-number {
|
|
font-size: 32rpx;
|
|
color: #333333;
|
|
font-weight: 500;
|
|
}
|
|
|
|
/* 添加车辆按钮样式 */
|
|
.add-car-btn {
|
|
height: 100rpx;
|
|
width: 80%;
|
|
background-color: #ff3f15;
|
|
line-height: 100rpx;
|
|
color: white;
|
|
border-radius: 50rpx;
|
|
font-size: 32rpx;
|
|
font-weight: 500;
|
|
position: absolute;
|
|
bottom: 100rpx;
|
|
left: 10%;
|
|
} |