index.wxss 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. page {
  2. background: #f6f6f6;
  3. padding: 20rpx 20rpx 20rpx 0;
  4. }
  5. page .box {
  6. margin: 20rpx;
  7. border-radius: 10rpx;
  8. background: #fff;
  9. padding: 15rpx 20rpx;
  10. }
  11. page .box .title {
  12. font-size: 36rpx;
  13. }
  14. page .box .details {
  15. display: flex;
  16. margin-top: 20rpx;
  17. }
  18. page .box .details .image {
  19. width: 180rpx;
  20. height: 180rpx;
  21. border-radius: 18rpx;
  22. }
  23. page .box .details .information {
  24. margin-left: 20rpx;
  25. }
  26. page .box .details .information .num {
  27. margin-bottom: 30rpx;
  28. }
  29. page .box .details .information .time {
  30. font-size: 24rpx;
  31. color: #666666;
  32. margin-top: 10rpx;
  33. }
  34. page .box .content {
  35. margin-bottom: 20rpx;
  36. display: flex;
  37. justify-content: space-between;
  38. }
  39. page .box .content .price {
  40. margin: auto 0;
  41. }
  42. page .box .content .information {
  43. display: flex;
  44. font-size: 26rpx;
  45. color: #666666;
  46. }
  47. page .box .content .information .img {
  48. width: 100rpx;
  49. height: 100rpx;
  50. }
  51. page .box .content .information .number {
  52. margin-top: 30rpx;
  53. }
  54. page .box .bummon {
  55. display: flex;
  56. justify-content: space-between;
  57. border-top: 2rpx solid #F0F0F0;
  58. }
  59. page .box .bummon .totalPrice {
  60. border-top: 2rpx solid #F0F0F0;
  61. text-align: right;
  62. padding: 20rpx 0;
  63. font-size: 26rpx;
  64. color: #222222;
  65. }
  66. page .box .bummon .pay {
  67. padding: 10rpx 20rpx;
  68. background: red;
  69. color: #fff;
  70. height: 60rpx;
  71. margin: auto 0;
  72. border-radius: 10rpx;
  73. }