12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- .title {
- font-size: 28rpx;
- color: #333333;
- margin: 30rpx;
- }
- .binding-box {
- width: 100vw;
- padding: 20rpx 30rpx;
- background-color: #fff;
- box-sizing: border-box;
- border-bottom: 1rpx solid #ddd;
- .boxnum {
- font-size: 28rpx;
- margin-bottom: 20rpx;
- }
- .numno {
- font-size: 28rpx;
- margin-bottom: 15rpx;
- }
- .product {
- display: flex;
- align-items: center;
- width: 100%;
- margin-bottom: 20rpx;
- .image {
- width: 130rpx;
- height: 130rpx;
- margin-right: 20rpx;
- border-radius: 16rpx;
- overflow: hidden;
- flex-shrink: 0;
- }
- .content {
- flex: 1;
- color: #333;
- .content-title {
- line-height: 40rpx;
- font-size: 30rpx;
- font-weight: bold;
- }
- .row {
- font-size: 26rpx;
- width: 100%;
- margin-top: 8rpx;
- text {
- line-height: 30rpx;
- display: inline-block;
- width: 50%;
- word-break: break-all;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- .qty {
- font-weight: bold;
- text-align: center;
- font-size: 30rpx;
- }
- }
- }
- }
- }
|