order.scss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. .container{
  2. background-color: #F7F7F7;
  3. .code-info{
  4. width: 100%;
  5. height: 390rpx;
  6. background-color: #fff;
  7. .code{
  8. width: 320rpx;
  9. height: 320rpx;
  10. border: 1px solid #ebeef5;
  11. margin: 20rpx auto;
  12. .canvas-code{
  13. background-color: #fff;
  14. width: 280rpx;
  15. height: 280rpx;
  16. margin: 20rpx auto;
  17. }
  18. .code-text{
  19. text-align: center;
  20. margin: 30rpx auto;
  21. }
  22. }
  23. }
  24. .order{
  25. margin-top: 20rpx;
  26. display: flex;
  27. height: 250rpx;
  28. background-color: #fff;
  29. justify-content: flex-start;
  30. .order-img{
  31. width: 200rpx;
  32. height: 190rpx;
  33. margin: 20rpx 20rpx;
  34. padding-top: 25rpx;
  35. image{
  36. width: 100%;
  37. height: 100%;
  38. }
  39. }
  40. .order-info{
  41. flex: 1;
  42. padding-top: 10rpx;
  43. padding-left: 30rpx;
  44. .order-id{
  45. height: 50rpx;
  46. text-align: right;
  47. }
  48. .order-title{
  49. height: 60rpx;
  50. }
  51. .order-price{
  52. height: 80rpx;
  53. }
  54. .order-date{
  55. height: 50rpx;
  56. }
  57. }
  58. }
  59. .shop-info{
  60. height: 250rpx;
  61. margin-top: 20rpx;
  62. padding: 20rpx 30rpx;
  63. background-color: #fff;
  64. .shop{
  65. height: 50rpx;
  66. line-height: 50rpx;
  67. }
  68. .address,.tel{
  69. height: 30rpx;
  70. line-height: 30rpx;
  71. margin: 20rpx;
  72. position: relative;
  73. image{
  74. width: 40rpx;
  75. height: 40rpx;
  76. position: absolute;
  77. right: 0;
  78. bottom: 0;
  79. }
  80. }
  81. }
  82. }