You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

TicketDetails.wxss 3.0KB

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. /* pages/TicketDetails/TicketDetails.wxss */
  2. page{
  3. height: 100%;
  4. background-color: #f9f6f6;
  5. }
  6. .ticketImg{
  7. width: 100%;
  8. height: 472rpx;
  9. }
  10. .imgView{
  11. width: 100%;
  12. height: 300rpx;
  13. overflow: hidden;
  14. border-radius:0px 0px 30rpx 30rpx;
  15. position: relative
  16. }
  17. .tooth{
  18. display: block;
  19. width: 694rpx;
  20. height: 10rpx;
  21. position: absolute;
  22. left: 50%;
  23. bottom: -4rpx;
  24. transform: translateX(-50%);
  25. }
  26. .buyNum{
  27. width: 100%;
  28. height: 190rpx;
  29. display: flex;
  30. justify-content: space-between;
  31. align-items: center;
  32. background-color: #ffffff;
  33. border-radius: 30rpx;
  34. }
  35. .ticketName{
  36. margin-left: 96rpx;
  37. }
  38. .lineRig{
  39. margin-right: 55rpx;
  40. }
  41. .line{
  42. margin-left: 94rpx;
  43. margin-right: 46rpx;
  44. width: 1rpx;
  45. height: 126rpx;
  46. background-color: rgba(204,204,204,1);
  47. }
  48. .bigWord{
  49. font-size:100rpx;
  50. font-family:DINPro;
  51. font-weight:bold;
  52. color:rgba(235,97,0,1);
  53. }
  54. .smaWord{
  55. font-size:30rpx;
  56. font-family:SourceHanSansCN;
  57. font-weight:bold;
  58. color:rgba(51,51,51,1);
  59. }
  60. .title{
  61. display: inline-block;
  62. width: 100%;
  63. margin-bottom:7px;
  64. text-align: center;
  65. font-size:30rpx;
  66. font-family:SourceHanSansCN;
  67. font-weight:bold;
  68. color:rgba(51,51,51,1);
  69. line-height:30rpx;
  70. }
  71. .timeLimit{
  72. height: 26rpx;
  73. display: flex;
  74. align-items: center;
  75. margin-top: 23rpx;
  76. margin-bottom: 15rpx;
  77. }
  78. .timeLimit image{
  79. width: 20rpx;
  80. height: 20rpx;
  81. margin-left: 32rpx;
  82. margin-right: 16rpx;
  83. }
  84. .timeLimit text{
  85. font-size:26rpx;
  86. font-family:SourceHanSansCN;
  87. font-weight:bold;
  88. color:rgba(51,51,51,1);
  89. line-height:30rpx;
  90. }
  91. .specify{
  92. font-size:22rpx;
  93. font-family:SourceHanSansCN;
  94. font-weight:400;
  95. color:rgba(102,102,102,1);
  96. line-height:30rpx;
  97. width: 613rpx;
  98. margin-left: 69rpx;
  99. }
  100. .lookView{
  101. width: 100%;
  102. text-align: center;
  103. margin-top: 20rpx;
  104. height: 200rpx;
  105. background-color: #fff;
  106. border-radius: 30rpx;
  107. display: flex;
  108. justify-content: center;
  109. align-items: center;
  110. }
  111. .codeImg{
  112. width: 200rpx;
  113. height: 200rpx
  114. }
  115. .botAll{
  116. background-color: #ffffff;
  117. border-radius:30rpx;
  118. margin-top: 10rpx;
  119. padding: 50rpx 0;
  120. }
  121. .circleLeft{
  122. background-color: #f9f6f6;
  123. border-radius: 50%;
  124. width: 50rpx;
  125. height: 50rpx;
  126. position: absolute;
  127. left: -25rpx;
  128. }
  129. .circleRig{
  130. background-color: #f9f6f6;
  131. border-radius: 50%;
  132. width: 50rpx;
  133. height: 50rpx;
  134. position: absolute;
  135. right: -25rpx;
  136. }
  137. /* .scrollY{
  138. height: 200rpx;
  139. margin-top: 107rpx;
  140. }
  141. .historyIcon{
  142. width: 30rpx;
  143. height: 30rpx;
  144. }
  145. .history{
  146. display: flex;
  147. justify-content: space-between;
  148. align-items: center;
  149. margin-top: 20rpx;
  150. padding: 0 50rpx;
  151. }
  152. .historyLeft{
  153. position: relative;
  154. width: 179rpx;
  155. height: 36rpx;
  156. }
  157. .ticketCode{
  158. width: 179rpx;
  159. text-align: center;
  160. font-size:20rpx;
  161. font-family:DIN;
  162. font-weight:500;
  163. color:rgba(255,255,255,1);
  164. position: absolute;
  165. top: 50%;
  166. transform: translateY(-50%);
  167. }
  168. .historyTicketBg{
  169. width: 179rpx;
  170. height: 36rpx;
  171. }
  172. .tickName{
  173. font-size:24rpx;
  174. color:rgba(102,102,102,1);
  175. margin-left: 95rpx;
  176. }
  177. .tickType{
  178. font-size:24rpx;
  179. font-family:SourceHanSansCN;
  180. font-weight:bold;
  181. color:rgba(235,97,0,1);
  182. } */