133 lines
1.9 KiB
CSS
133 lines
1.9 KiB
CSS
.evaluation-container {
|
|
padding: 20rpx;
|
|
background-color: #f5f7fb;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.order-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding: 15rpx 0;
|
|
border-bottom: 1rpx solid #eee;
|
|
margin-bottom: 20rpx;
|
|
}
|
|
|
|
.order-name {
|
|
font-size: 30rpx;
|
|
font-weight: bold;
|
|
color: #333;
|
|
}
|
|
|
|
.order-number {
|
|
font-size: 30rpx;
|
|
color: #333;
|
|
}
|
|
|
|
.order-date {
|
|
font-size: 26rpx;
|
|
color: #999;
|
|
float: right;
|
|
}
|
|
|
|
.evaluation-content {
|
|
background: #fff;
|
|
border-radius: 10rpx;
|
|
padding: 20rpx;
|
|
margin-bottom: 20rpx;
|
|
}
|
|
|
|
.evaluation-area {
|
|
background: #f5f7fb;
|
|
padding: 20rpx 20rpx 50rpx 20rpx;
|
|
border-radius: 10rpx;
|
|
}
|
|
|
|
.evaluation-text {
|
|
font-size: 28rpx;
|
|
color: #333;
|
|
line-height: 40rpx;
|
|
margin-bottom: 20rpx;
|
|
}
|
|
|
|
.image-list {
|
|
display: flex;
|
|
gap: 15rpx;
|
|
padding: 10rpx 0;
|
|
}
|
|
|
|
.image-item {
|
|
width: 140rpx;
|
|
height: 140rpx;
|
|
border: 1rpx dashed #ddd;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.image-item image {
|
|
width: 80rpx;
|
|
height: 80rpx;
|
|
}
|
|
|
|
.image-text {
|
|
font-size: 24rpx;
|
|
color: #999;
|
|
margin-top: 10rpx;
|
|
}
|
|
|
|
.product-info {
|
|
background: #fff;
|
|
border-radius: 10rpx;
|
|
padding: 20rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.product-img {
|
|
position: relative;
|
|
margin-right: 20rpx;
|
|
}
|
|
|
|
.product-img image {
|
|
width: 120rpx;
|
|
height: 120rpx;
|
|
border-radius: 8rpx;
|
|
}
|
|
|
|
.tag {
|
|
position: absolute;
|
|
bottom: 0;
|
|
right: 0;
|
|
background-color: #ff7d00;
|
|
color: white;
|
|
font-size: 22rpx;
|
|
padding: 5rpx 10rpx;
|
|
border-radius: 20rpx 0 20rpx 20rpx;
|
|
}
|
|
|
|
.product-details {
|
|
flex: 1;
|
|
}
|
|
|
|
.product-name {
|
|
font-size: 28rpx;
|
|
color: #333;
|
|
font-weight: bold;
|
|
margin-bottom: 10rpx;
|
|
display: block;
|
|
}
|
|
|
|
.product-spec {
|
|
font-size: 22rpx;
|
|
color: #666;
|
|
margin-bottom: 10rpx;
|
|
display: block;
|
|
}
|
|
|
|
.product-unit {
|
|
font-size: 26rpx;
|
|
color: red;
|
|
margin-bottom: 10rpx;
|
|
display: block;
|
|
} |