| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- .orderView{
- padding: 10rpx 10rpx;
- }
- .orderImgView{
- width: 180rpx;
- height: 180rpx;
- border-radius: 5rpx;
- overflow: hidden;
- }
- .orderImg{
- width: 180rpx;
- height: 180rpx;
- }
- .orderTitle{
- width: 400rpx;
- padding-left: 10rpx;
- }
- .goodsName{
- height: 28rpx;
- line-height: 28rpx;
- font-size: 28rpx;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 1;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .specification{
- margin-top: 10rpx;
- height: 105rpx;
- line-height: 35rpx;
- font-size: 26rpx;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 3;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .label{
- margin-top: 10rpx;
- height: 35rpx;
- line-height: 35rpx;
- font-size: 20rpx;
- border: 1rpx solid orangered;
- padding: 5rpx 10rpx;
- border-radius: 20rpx;
- }
- .priceAndNumber{
- width: 150rpx;
- }
- .price{
- font-size: 28rpx;
- text-align: right;
- }
- .number{
- font-size: 23rpx;
- text-align: right;
- }
- .buttonView{
- padding: 20rpx 0;
- }
- .button{
- height: 60rpx;
- font-size: 28rpx;
- line-height: 60rpx;
- padding: 0 20rpx;
- border-radius: 30rpx;
- margin-left: 10rpx;
- border: 1px solid #999999;
- }
|