classOrder.wxss 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. /* pages/classOrder/classOrder.wxss */
  2. .container{
  3. padding: 0;
  4. margin: 0;
  5. }
  6. page{
  7. background:#f1f1f1;
  8. }
  9. .order-box{
  10. width: 660rpx;
  11. margin: 20rpx auto 40rpx;
  12. display: flex;
  13. flex-wrap: wrap;
  14. background: #FFF;
  15. padding: 20rpx;
  16. box-shadow: 0 0 15rpx #ccc;
  17. }
  18. .order-type{
  19. background: #cc6031;
  20. color: #FFF;
  21. font-size: 24rpx;
  22. height: 30rpx;
  23. line-height: 30rpx;
  24. margin-top: 15rpx;
  25. margin-right: 10rpx;
  26. padding: 0 10rpx;
  27. border-radius: 5rpx;
  28. }
  29. .order-name{
  30. font-size: 32rpx;
  31. line-height: 40rpx;
  32. padding-top: 9rpx;
  33. width: 300rpx;
  34. }
  35. .order-nums{
  36. margin-left: auto;
  37. height: 60rpx;
  38. line-height: 60rpx;
  39. }
  40. .order-addr{
  41. width: 50%;
  42. font-size: 32rpx;
  43. height: 60rpx;
  44. line-height: 60rpx;
  45. }
  46. .order-price{
  47. color: #999999;
  48. height: 60rpx;
  49. line-height:60rpx;
  50. margin-left: auto;
  51. text-decoration: line-through;
  52. }
  53. .order-teacher{
  54. height: 60rpx;
  55. line-height: 60rpx;
  56. color:#999;
  57. width: 50%;
  58. }
  59. .order-payMoney{
  60. margin-left: auto;
  61. width: 50%;
  62. text-align: right;
  63. color: #999;
  64. }
  65. .order-payMoney text{
  66. color: #cc6031;
  67. font-size: 36rpx;
  68. }
  69. .order-title{
  70. color: #999;
  71. height: 60rpx;
  72. line-height: 60rpx;
  73. }
  74. .order-orderNum,.order-payTime{
  75. margin-left: auto;
  76. height: 60rpx;
  77. line-height: 60rpx;
  78. color: #999;
  79. }
  80. /* loading */
  81. .loading {
  82. height: 200rpx;
  83. line-height: 100rpx;
  84. background: #f1f1f1;
  85. color: #999;
  86. text-align: center;
  87. }
  88. /* end */