orderDetail.wxss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. /* pages/orderDetail/orderDetail.wxss */
  2. /* 设置全局边距 */
  3. .orderWrapper{
  4. padding-left: 20rpx;
  5. /* background-color: yellowgreen; */
  6. }
  7. /* 头部区域 */
  8. .orderHead{
  9. display: flex;
  10. position: relative;
  11. height: 200rpx;
  12. padding-top: 20rpx;
  13. }
  14. /* 头像 */
  15. .headImg{
  16. width: 160rpx;
  17. height: 160rpx;
  18. border-radius: 30rpx;
  19. position: absolute;
  20. right: 30rpx;
  21. }
  22. .orderHeadTitle{
  23. display: flex;
  24. flex-direction: column;
  25. height: 80px;
  26. justify-content: space-around;
  27. }
  28. /* 设置内容样式 */
  29. .orderDetail,
  30. .courseNum,
  31. .orderPayStatus{
  32. margin-left: 20rpx;
  33. font-weight: bold;
  34. }
  35. .courseNum{
  36. color: #00B0F0;
  37. text-decoration: underline;
  38. }
  39. /* 支付状态字体样式 */
  40. .orderPayStatus{
  41. color: red;
  42. }
  43. /* 中部区域 */
  44. .orderMid{
  45. height: 220rpx;
  46. display: flex;
  47. flex-direction: column;
  48. justify-content: space-around;
  49. }
  50. /* 底部区域 */
  51. .orderBottom{
  52. margin-top: 40rpx;
  53. height: 260rpx;
  54. display: flex;
  55. flex-direction: column;
  56. justify-content: space-around;
  57. }
  58. /* 支付倒计时 */
  59. .orderPay{
  60. margin-top: 160rpx;
  61. display: flex;
  62. align-items: baseline;
  63. }
  64. /* 倒计时时间格式 */
  65. .orderPayTime{
  66. padding-left: 20rpx;
  67. font-weight: bold;
  68. font-size: 40rpx;
  69. color: red;
  70. }
  71. /* 支付及查看信息按钮居中排列 */
  72. .payWrapper{
  73. display: flex;
  74. justify-content: center;
  75. }
  76. /* 支付按钮 */
  77. .payStatus{
  78. display: flex;
  79. margin-top: 100rpx;
  80. border-radius: 30rpx;
  81. background-color: #8FAADC;
  82. color: white;
  83. text-align: center;
  84. width: 25%;
  85. justify-content: center;
  86. padding: 10rpx;
  87. }
  88. .paidSucceed{
  89. display: flex;
  90. width: 100%;
  91. justify-content: space-around;
  92. }
  93. .pay{
  94. /* display: flex; */
  95. width: 100%;
  96. }