12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- .cell {
- margin: 20rpx;
- background-color: #fff;
- padding: 20rpx;
- display: flex;
- justify-content: space-between;
- border-radius: 4rpx;
- }
-
- .order-img {
- display: inline-block;
- width: 200rpx;
- height: 134rpx;
- vertical-align: middle;
- }
-
- .info {
- display: inline-block;
- margin-left: 20rpx;
- vertical-align: top;
- flex: 1;
- }
-
- .info .name {
- font-size: 24rpx;
- color: #333333;
- }
-
- .info .text {
- color: #999999;
- font-size: 22rpx;
- margin-top: 10rpx;
- }
-
- .left {
- display: flex;
- }
-
- .right {
- text-align: right;
- width: 200rpx;
- }
-
- .text-top {
- font-size: 24rpx;
- color: #ff5400;
- margin-bottom: 10rpx;
- }
-
- .text-bottom {
- font-size: 24rpx;
- color: #333333;
- margin-bottom: 10rpx;
- }
-
- .btn-blue {
- display: inline-block;
- width: 140rpx;
- height: 50rpx;
- text-align: center;
- line-height: 50rpx;
- color: #fff;
- font-size: 24rpx;
- background-color: #00a0e9;
- }
-
- /* .goods {
- margin-top: 20rpx;
- border-top: solid 1rpx #dedede;
- } */
|