Files
YGChatCS/components/AddCarCrad/styles/index.scss
2025-09-18 20:44:29 +08:00

51 lines
855 B
SCSS

.add-car-card {
display: flex;
flex-direction: column;
.header-image {
display: flex;
justify-content: center;
align-items: center;
margin: -24rpx -24rpx 0 -24rpx;
.header-img {
width: 100%;
height: 150px;
}
}
.content {
display: flex;
align-items: start;
flex-direction: column;
padding: 24rpx 0;
}
.title {
font-size: 36rpx;
font-weight: 600;
color: #333;
}
.description {
font-size: 28rpx;
color: #666;
line-height: 1.5;
}
.confirm-btn {
height: 88rpx;
background: linear-gradient(135deg, #1898ff 0%, #77e5f9 100%);
border-radius: 44rpx;
margin-bottom: 24rpx;
display: flex;
align-items: center;
justify-content: center;
.confirm-text {
font-size: 28rpx;
font-weight: 500;
color: #fff;
}
}
}