manageOrderDetail.wxss 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /* pages/manageOrderDetail/manageOrderDetail.wxss */
  2. page{
  3. height: 100%;
  4. background-color: #FFF2CC;
  5. }
  6. /* 设置全局边距 */
  7. .orderWrapper{
  8. padding-left: 30rpx;
  9. /* background-color: yellowgreen; */
  10. }
  11. /* 头部区域 */
  12. .orderHead{
  13. display: flex;
  14. position: relative;
  15. height: 200rpx;
  16. padding-top: 20rpx;
  17. }
  18. /* 头像 */
  19. .headImg{
  20. width: 160rpx;
  21. height: 160rpx;
  22. border-radius: 30rpx;
  23. position: absolute;
  24. right: 30rpx;
  25. }
  26. /* 设置内容样式 */
  27. .orderDetail,
  28. .courseNum,
  29. .orderPayStatus{
  30. margin-left: 20rpx;
  31. font-weight: bold;
  32. }
  33. .courseNum{
  34. color: #00B0F0;
  35. text-decoration: underline;
  36. }
  37. /* 支付状态字体样式 */
  38. .orderPayStatus{
  39. color: red;
  40. }
  41. /* 中部区域 */
  42. .orderMid{
  43. height: 220rpx;
  44. display: flex;
  45. flex-direction: column;
  46. justify-content: space-around;
  47. }
  48. /* 底部区域 */
  49. .orderBottom{
  50. margin-top: 40rpx;
  51. height: 260rpx;
  52. display: flex;
  53. flex-direction: column;
  54. justify-content: space-around;
  55. }
  56. /* 同意退款按钮 */
  57. .agreeRefund{
  58. display: flex;
  59. justify-content: center;
  60. }
  61. .refund{
  62. margin-top: 160rpx;
  63. margin-bottom: 60rpx;
  64. padding: 10rpx 30rpx;
  65. border-radius: 30rpx;
  66. background-color: #8FAADC;
  67. color: white;
  68. }