124 lines
2.1 KiB
CSS
124 lines
2.1 KiB
CSS
page {
|
|
background-color: #f5f7fb;
|
|
padding-top: 20rpx;
|
|
}
|
|
|
|
/* 车辆信息容器样式 */
|
|
.container-box{
|
|
height: 83vh;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.car-info-container {
|
|
width: 92%;
|
|
background-color: #ffffff;
|
|
padding: 30rpx;
|
|
border-bottom: 1rpx solid #eeeeee;
|
|
box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.05);
|
|
}
|
|
|
|
.car-info{
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
/* 车牌样式 */
|
|
.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;
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 15rpx 30rpx;
|
|
border-radius: 10rpx;
|
|
}
|
|
|
|
/* 蓝色车牌样式 */
|
|
.plate-color-blue {
|
|
background-color: #1890ff;
|
|
color: white;
|
|
}
|
|
|
|
/* 黄色车牌样式 */
|
|
.plate-color-yellow {
|
|
background-color: #ffc53d;
|
|
color: black;
|
|
}
|
|
|
|
/* 黑色车牌样式 */
|
|
.plate-color-black {
|
|
background-color: #333333;
|
|
color: white;
|
|
}
|
|
|
|
/* 白色车牌样式 */
|
|
.plate-color-white {
|
|
background-color: white;
|
|
color: black;
|
|
border: 1rpx solid #dddddd;
|
|
}
|
|
|
|
/* 绿色车牌样式 */
|
|
.plate-color-green {
|
|
background-color: #37bd75;
|
|
color: white;
|
|
}
|
|
|
|
/* 渐变绿底黑字车牌样式 */
|
|
.plate-color-gradient-green {
|
|
background: linear-gradient(180deg, #ffffff 0%, #2fe259 100%);
|
|
color: black;
|
|
}
|
|
|
|
/* 黄绿双拼底黑字车牌样式 */
|
|
.plate-color-yellow-green {
|
|
background: linear-gradient(90deg, #ffc53d 30%, #37bd75 0%);
|
|
color: black;
|
|
}
|
|
|
|
.plate-energy{
|
|
font-size: 24rpx;
|
|
padding: 7rpx 15rpx;
|
|
margin-left: 15rpx;
|
|
border-radius: 10rpx;
|
|
background-color: #f2f3f4;
|
|
color: #37bd75;
|
|
}
|
|
|
|
/* 添加车辆按钮样式 */
|
|
.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%;
|
|
} |