hmOrderDetail.wxss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. .myqr {
  2. width: 560rpx;
  3. height: 560rpx;
  4. position: absolute;
  5. left: 50%;
  6. top: 50%;
  7. transform: translate3d(-50%, -50%, 0);
  8. background: #efe2e2;
  9. z-index: 999;
  10. border-radius: 20rpx;
  11. /* border: 1rpx solid #999; */
  12. padding: 20rpx;
  13. }
  14. .myqr .cancel {
  15. position: absolute;
  16. width: 60rpx;
  17. height: 60rpx;
  18. margin-left: 280rpx;
  19. }
  20. .myqr .img {
  21. width: 480rpx;
  22. }
  23. page {
  24. height: 100%;
  25. width: 100%;
  26. background: #f4f4f4;
  27. }
  28. .container {
  29. background: #f4f4f4;
  30. height: 100vh;
  31. /* overflow: hidden; */
  32. width: 100%;
  33. /* filter: blur(5rpx);*/
  34. }
  35. .top-img {
  36. width: 100%;
  37. }
  38. .title {
  39. margin: 30rpx 0;
  40. text-align: center;
  41. font-size: 32rpx;
  42. color: #333
  43. }
  44. .content {
  45. text-align: left;
  46. color: #333
  47. }
  48. .content image {
  49. width: 160rpx;
  50. height: 160rpx;
  51. }
  52. .status {
  53. color: #b4282d;
  54. font-weight: 400;
  55. }
  56. .action {
  57. font-size: 30rpx;
  58. color: #333;
  59. font-weight: 600;
  60. margin: 20rpx 0;
  61. display: flex;
  62. justify-content: space-between;
  63. }
  64. /*外部容器*/
  65. .listview-container {
  66. margin: 10rpx 10rpx;
  67. padding-bottom: 120rpx;
  68. }
  69. /*行样式*/
  70. .playlog-item {
  71. display: flex;
  72. }
  73. /*时间轴*/
  74. .playlog-item .dotline {
  75. width: 35px;
  76. position: relative;
  77. }
  78. /*竖线*/
  79. .playlog-item .dotline .line {
  80. width: 1px;
  81. height: 100%;
  82. background: #09AFFF;
  83. position: absolute;
  84. top: 0;
  85. left: 15px;
  86. }
  87. /*圆点*/
  88. .playlog-item .dotline .dot {
  89. width: 11px;
  90. height: 11px;
  91. background: #09AFFF;
  92. position: absolute;
  93. top: 10px;
  94. left: 10px;
  95. border-radius: 50%;
  96. }
  97. /*时间戳*/
  98. .playlog-item .dotline .time {
  99. width: 100%;
  100. position: absolute;
  101. margin-top: 30px;
  102. z-index: 99;
  103. font-size: 12px;
  104. color: #777;
  105. text-align: center;
  106. }
  107. /*右侧主体内容*/
  108. .playlog-item .content {
  109. width: 100%;
  110. display: flex;
  111. flex-direction: column;
  112. border-bottom: 1px solid #f4f4f4;
  113. margin: 3px 0;
  114. }
  115. /*章节部分*/
  116. .playlog-item .content .chapter {
  117. font-size: 30rpx;
  118. line-height: 68rpx;
  119. color: #444;
  120. white-space: normal;
  121. padding-right: 10px;
  122. }
  123. /*课程部分*/
  124. .playlog-item .content .course {
  125. font-size: 28rpx;
  126. line-height: 56rpx;
  127. color: #999;
  128. }
  129. .footer {
  130. position: fixed;
  131. bottom: 0rpx;
  132. display: flex;
  133. justify-content: center;
  134. width: 100%;
  135. background-color: #fff;
  136. padding: 10rpx 0;
  137. }
  138. .btn {
  139. height: 76rpx;
  140. line-height: 76rpx;
  141. width: 300rpx;
  142. color: #fff;
  143. font-size: 30rpx;
  144. background-color: #09AFFF;
  145. border-radius: 10rpx;
  146. letter-spacing: 3rpx;
  147. }