C端小程序
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

277 linhas
3.9 KiB

  1. .container {
  2. padding-bottom: 10rpx;
  3. }
  4. .panel {
  5. display: flex;
  6. flex-direction: column;
  7. justify-content: space-between;
  8. align-items: stretch;
  9. box-sizing: border-box;
  10. width: 710rpx;
  11. margin-top: 40rpx;
  12. border-radius: 10rpx;
  13. background-color: #fff;
  14. margin: 30rpx auto 0;
  15. }
  16. .pane2{
  17. background: #fff;
  18. opacity: .6;
  19. }
  20. .pane2 image{
  21. width: 500rpx;
  22. display: block;
  23. margin: 40rpx auto 0;
  24. }
  25. .barcode {
  26. display: flex;
  27. height: 100rpx;
  28. flex-direction: column;
  29. justify-content: center;
  30. align-items: center;
  31. }
  32. .barnum {
  33. width: 670rpx;
  34. height: 46rpx;
  35. line-height: 46rpx;
  36. font-size: 30rpx;
  37. text-align: center;
  38. white-space: nowrap;
  39. color: #999;
  40. }
  41. .barnum text {
  42. color: #333;
  43. }
  44. .barcode > canvas {
  45. width: 680rpx;
  46. height: 100rpx;
  47. }
  48. .qrcode {
  49. height: 370rpx;
  50. display: flex;
  51. flex-direction: column;
  52. justify-content: flex-end;
  53. align-items: center;
  54. }
  55. .qrcode > canvas {
  56. width: 400rpx;
  57. height: 400rpx;
  58. }
  59. .coupon_detail {
  60. padding: 0 20rpx;
  61. }
  62. .fl {
  63. float: left;
  64. }
  65. .fr {
  66. float: right;
  67. }
  68. .coupon_detail image {
  69. display: block;
  70. width: 260rpx;
  71. height: 100rpx;
  72. border-radius: 16rpx;
  73. }
  74. .coupon_detail .fr {
  75. width: 400rpx;
  76. }
  77. .coupon_detail .title {
  78. font-size: 36rpx;
  79. }
  80. .time {
  81. font-size: 26rpx;
  82. color: #999;
  83. }
  84. .time text {
  85. font-size: 26rpx;
  86. color: red;
  87. }
  88. .money text {
  89. color: red;
  90. font-size: 36rpx;
  91. }
  92. .money del {
  93. color: #999;
  94. font-size: 26rpx;
  95. text-decoration: line-through;
  96. margin-left: 20rpx;
  97. }
  98. .clearfix:after {
  99. content: ".";
  100. display: block;
  101. height: 0;
  102. clear: both;
  103. visibility: hidden;
  104. }
  105. .timevalidity {
  106. margin-top: 20rpx;
  107. text-indent: 20rpx;
  108. }
  109. .timevalidity text:nth-of-type(1) {
  110. color: #333;
  111. font-size: 30rpx;
  112. }
  113. .timevalidity text:nth-of-type(2) {
  114. font-size: 30rpx;
  115. color: red;
  116. }
  117. .posi {
  118. width: 100%;
  119. display: flex;
  120. flex-direction: column;
  121. margin-top: 50rpx;
  122. background: #fff;
  123. border-bottom: 20rpx solid #f5f5f5;
  124. border-top: 20rpx solid #f5f5f5;
  125. position: relative;
  126. }
  127. .posi_logo {
  128. width: 92%;
  129. padding: 30rpx 4%;
  130. display: flex;
  131. position: relative;
  132. z-index: 100;
  133. }
  134. .posi_logo view:nth-child(1) {
  135. width: 126rpx;
  136. height: 126rpx;
  137. border-radius: 50%;
  138. overflow: hidden;
  139. flex: 2;
  140. }
  141. .posi_logo view:nth-child(1) image {
  142. width: 100%;
  143. height: 100%;
  144. }
  145. .posi_logo view:nth-child(2) {
  146. position: relative;
  147. z-index: 100;
  148. display: flex;
  149. flex-direction: column;
  150. flex: 8;
  151. padding-top: 20rpx;
  152. padding-left: 30rpx;
  153. }
  154. .posi_logo view:nth-child(2) text:nth-child(1) {
  155. font-size: 30rpx;
  156. }
  157. .posi_logo view:nth-child(2) text:nth-child(2) {
  158. font-size: 24rpx;
  159. color: #b8b8b8;
  160. padding-top: 10rpx;
  161. }
  162. .tit {
  163. font-size: 30rpx;
  164. color: #000;
  165. font-weight: bold;
  166. padding: 24rpx 0 33rpx;
  167. border-bottom: 1px solid #eee;
  168. text-indent: 20rpx;
  169. }
  170. .tel {
  171. position: absolute;
  172. right: 50rpx;
  173. top: 0;
  174. bottom: 0;
  175. margin: auto;
  176. width: 50rpx;
  177. height: 50rpx;
  178. z-index:1000000;
  179. }
  180. .notes {
  181. margin-top: 2%;
  182. border-top: 20rpx solid #f5f5f5;
  183. }
  184. .notes view:nth-child(1) {
  185. width: 92%;
  186. height: 87rpx;
  187. padding: 0 4%;
  188. line-height: 87rpx;
  189. background: #fff;
  190. border-bottom: 1rpx solid #f5f5f5;
  191. }
  192. .notes view:nth-child(1) text {
  193. font-size: 30rpx;
  194. font-weight: bold;
  195. }
  196. .notes view:nth-child(2) {
  197. width: 92%;
  198. height: 400rpx;
  199. padding: 0 4%;
  200. background: #fff;
  201. display: flex;
  202. flex-direction: column;
  203. padding-top: 2%;
  204. }
  205. .notes view:nth-child(2) > text {
  206. font-size: 28rpx;
  207. color: #a9a9a9;
  208. line-height: 56rpx;
  209. }
  210. .note view {
  211. height: 94rpx;
  212. line-height: 94rpx;
  213. border-bottom: 2rpx solid #f9f9f9;
  214. }
  215. .note view text {
  216. display: inline-block;
  217. }
  218. .note text:nth-of-type(1) {
  219. width: 30%;
  220. text-indent: 30rpx;
  221. text-align: left;
  222. font-size: 30rpx;
  223. color: #000;
  224. }
  225. .note text:nth-of-type(2) {
  226. width: 67%;
  227. padding-right: 3%;
  228. text-align: right;
  229. color: #bdbdbd;
  230. font-size: 30rpx;
  231. }
  232. .manjian {
  233. margin-left: 26rpx;
  234. color: #666 !important;
  235. font-size: 26rpx !important;
  236. }