221 lines
1.4 KiB
Plaintext
221 lines
1.4 KiB
Plaintext
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* 价格和库存容器 */
|
|
.price-stock-container.data-v-18b22185 {
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
padding: 10rpx;
|
|
gap: 60rpx;
|
|
/* gap: 20rpx; */
|
|
}
|
|
.control-item.data-v-18b22185 {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.section-header.data-v-18b22185 {
|
|
margin-right: 10rpx;
|
|
}
|
|
.section-title.data-v-18b22185 {
|
|
font-size: 28rpx;
|
|
color: #333;
|
|
}
|
|
/* 控制按钮基础样式 */
|
|
.number-control-btn.data-v-18b22185 {
|
|
width: 36rpx;
|
|
height: 36rpx;
|
|
background-color: #f2f2f2;
|
|
border-radius: 4rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 22rpx;
|
|
color: #666;
|
|
cursor: pointer;
|
|
}
|
|
.number-control-wrapper.data-v-18b22185 {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-top: 10rpx;
|
|
}
|
|
.minus-btn.data-v-18b22185,
|
|
.plus-btn.data-v-18b22185 {
|
|
padding: 0 10rpx;
|
|
font-size: 24rpx;
|
|
border: 1rpx solid #ccc;
|
|
border-radius: 4rpx;
|
|
background: #fff;
|
|
height: 36rpx;
|
|
line-height: 36rpx;
|
|
min-width: 32rpx;
|
|
text-align: center;
|
|
}
|
|
.custom-input-box.data-v-18b22185 {
|
|
width: 120rpx;
|
|
text-align: center;
|
|
border: 1rpx solid #eee;
|
|
border-radius: 4rpx;
|
|
height: 36rpx;
|
|
line-height: 36rpx;
|
|
margin: 0 5rpx;
|
|
background-color: #f8f8f8;
|
|
font-size: 30rpx;
|
|
}
|
|
|