equity.scss 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438
  1. .page-equity{
  2. min-height: 100vh;
  3. width:100vw;
  4. background:#ebeaea;
  5. display:flex;
  6. .equity-header{
  7. display:flex;
  8. background:#FFF;
  9. position: fixed;
  10. width:100%;
  11. flex-direction: column;
  12. z-index:999;
  13. .header-caption{
  14. height:40px;
  15. margin-left:20px;
  16. margin-right:20px;
  17. display:flex;
  18. flex-direction: row;
  19. justify-content: flex-start;
  20. align-items: center;
  21. border-bottom:1px solid #d5d5d5;
  22. .text{
  23. font-size:14px;
  24. padding-left:10px;
  25. padding-right:10px;
  26. }
  27. .active{
  28. color:#593320;
  29. font-weight: 900;
  30. font-size: 16px;
  31. }
  32. }
  33. .header-sub{
  34. margin-left:20px;
  35. margin-right:20px;
  36. height:40px;
  37. display:flex;
  38. flex-direction: row;
  39. justify-content: flex-start;
  40. align-items: center;
  41. .text{
  42. font-size:14px;
  43. padding-left:10px;
  44. padding-right:10px;
  45. }
  46. .active{
  47. color:#593320;
  48. font-weight: 900;
  49. font-size: 16px;
  50. }
  51. }
  52. }
  53. .ticket-list{
  54. width:100%;
  55. margin-top:80px;
  56. margin-left:10px;
  57. margin-right:10px;
  58. .list-item{
  59. .item{
  60. margin-top:10px;
  61. .ticket-content{
  62. background:#FFF;
  63. .content{
  64. display:flex;
  65. flex-direction: row;
  66. padding-top:10px;
  67. padding-bottom:10px;
  68. position: relative;
  69. .ticket-img{
  70. width:30%;
  71. display:flex;
  72. justify-content: center;
  73. align-items: center;
  74. .img{
  75. width:50px;
  76. height:50px;
  77. border-radius: 50%;
  78. }
  79. }
  80. .ticket-info{
  81. width:70%;
  82. .ticket-name{
  83. color:#000;
  84. font-size:14px;
  85. font-weight: bold;
  86. }
  87. .ticket-expire{
  88. font-size:12px;
  89. color:#593320;
  90. margin-top:5px;
  91. width: 70%;
  92. line-height: 20px;
  93. }
  94. }
  95. .ticket-status{
  96. position: absolute;
  97. right:0px;
  98. top:0px;
  99. height:80px;
  100. width:80px;
  101. overflow: hidden;
  102. .ticket-text{
  103. width:80px;
  104. height:20px;
  105. margin-top:10px;
  106. margin-left:20px;
  107. transform: rotate(45deg);
  108. display:flex;
  109. flex-direction: column;
  110. justify-content: center;
  111. align-items: center;
  112. font-size:12px;
  113. }
  114. }
  115. .ticket-status-st{
  116. position: absolute;
  117. right:20px;
  118. top:20px;
  119. width:80px;
  120. overflow: hidden;
  121. .ticket-st{
  122. width:80px;
  123. height:80px;
  124. line-height: 30px;
  125. border-radius: 50%;
  126. display:flex;
  127. flex-direction: column;
  128. justify-content: center;
  129. align-items: center;
  130. font-size:18px;
  131. background: #FFF;
  132. color: #ccc;
  133. border: 2px dotted #cccccc;
  134. }
  135. }
  136. .used{
  137. .ticket-text{
  138. background:#593320;
  139. color:#FFFFFF;
  140. }
  141. }
  142. }
  143. }
  144. .ticket-splite{
  145. display: flex;
  146. flex-direction: row;
  147. background:#FFF;
  148. justify-content:space-evenly;
  149. align-items: center;
  150. .left{
  151. background:#ebeaea;
  152. height:20px;
  153. width:10px;
  154. border-top-right-radius: 60%;
  155. border-bottom-right-radius: 60%;
  156. }
  157. .mid{
  158. height:1px;
  159. width:100%;
  160. border-bottom: 2px dotted #cccccc;
  161. }
  162. .right{
  163. background:#ebeaea;
  164. height:20px;
  165. width:10px;
  166. border-top-left-radius: 50%;
  167. border-bottom-left-radius: 50%;
  168. }
  169. }
  170. .ticket-other{
  171. background:#FFF;
  172. height:20px;
  173. .other-txt{
  174. display:flex;
  175. flex-direction:row;
  176. justify-content: flex-end;
  177. align-items: center;
  178. font-size:12px;
  179. .btn{
  180. width:20%;
  181. margin: 0 auto;
  182. .btn-user{
  183. height:20px;
  184. background-color: #593320;
  185. color: #EDEDED;
  186. line-height: 20px;
  187. font-size:12px;
  188. border-radius: 7px;
  189. }
  190. }
  191. }
  192. }
  193. }
  194. .shadow{
  195. box-shadow: 0px 2px 5px 0px #bababa
  196. }
  197. }
  198. }
  199. .more-ticket{
  200. background:#ebeaea;
  201. width:100%;
  202. height:100%;
  203. border-top-left-radius: 10px;
  204. border-top-right-radius: 10px;
  205. overflow: hidden;
  206. .more-ticket-title{
  207. height:40px;
  208. width:100%;
  209. text-align:center;
  210. line-height:40px;
  211. font-size:14px;
  212. background:#593320;
  213. color: #EDEDED;
  214. }
  215. .more-items{
  216. height:500px;
  217. overflow: hidden;
  218. overflow-y: auto;
  219. padding-bottom: 30px;
  220. .item{
  221. margin-top:10px;
  222. margin-left: 10px;
  223. margin-right: 10px;
  224. box-shadow: 0px 2px 5px 0px #bababa;
  225. .ticket-content{
  226. background:#FFF;
  227. .content{
  228. display:flex;
  229. flex-direction: row;
  230. padding-top:10px;
  231. padding-bottom:10px;
  232. position: relative;
  233. .ticket-img{
  234. width:30%;
  235. display:flex;
  236. justify-content: center;
  237. align-items: center;
  238. .img{
  239. width:50px;
  240. height:50px;
  241. border-radius: 50%;
  242. }
  243. }
  244. .ticket-info{
  245. width:70%;
  246. .ticket-name{
  247. color:#000;
  248. font-size:14px;
  249. font-weight: bold;
  250. }
  251. .ticket-expire{
  252. font-size:12px;
  253. color:#593320;
  254. margin-top:5px;
  255. }
  256. }
  257. .ticket-status{
  258. position: absolute;
  259. right:0px;
  260. top:0px;
  261. height:80px;
  262. width:80px;
  263. overflow: hidden;
  264. .ticket-text{
  265. width:80px;
  266. height:20px;
  267. margin-top:10px;
  268. margin-left:20px;
  269. transform: rotate(45deg);
  270. display:flex;
  271. flex-direction: column;
  272. justify-content: center;
  273. align-items: center;
  274. font-size:12px;
  275. }
  276. }
  277. .used{
  278. .ticket-text{
  279. background:#593320;
  280. color:#FFFFFF;
  281. }
  282. }
  283. }
  284. }
  285. .ticket-splite{
  286. display: flex;
  287. flex-direction: row;
  288. background:#FFF;
  289. justify-content:space-evenly;
  290. align-items: center;
  291. .left{
  292. background:#ebeaea;
  293. height:10px;
  294. width:10px;
  295. border-top-right-radius: 70%;
  296. border-bottom-right-radius: 70%;
  297. }
  298. .mid{
  299. height:1px;
  300. width:100%;
  301. border-bottom: 2px dotted #cccccc;
  302. }
  303. .right{
  304. background:#ebeaea;
  305. height:10px;
  306. width:10px;
  307. border-top-right-radius: 70%;
  308. border-bottom-right-radius: 70%;
  309. }
  310. }
  311. .ticket-other{
  312. background:#FFF;
  313. height:20px;
  314. padding-top: 5px;
  315. .other-txt{
  316. display:flex;
  317. flex-direction:row;
  318. align-items: center;
  319. font-size:12px;
  320. .btn{
  321. width:20%;
  322. margin: 0 auto;
  323. .btn-user{
  324. height:20px;
  325. line-height: 20px;
  326. background-color: #593320;
  327. color: #EDEDED;
  328. font-size:12px;
  329. border-radius: 5px;
  330. .shadow{
  331. box-shadow: 0px 2px 20px 0px #bababa
  332. }
  333. }
  334. }
  335. }
  336. }
  337. }
  338. }
  339. }
  340. .qr-code{
  341. background:#FFF;
  342. border-radius: 10px;
  343. overflow: hidden;
  344. .qr-box{
  345. display:flex;
  346. justify-content: center;
  347. align-items: center;
  348. padding:20px;
  349. }
  350. .qr-text{
  351. text-align:center;
  352. font-size:12px;
  353. padding-bottom:20px;
  354. }
  355. }
  356. }
  357. .ticket-status-st{
  358. position: absolute;
  359. right:20px;
  360. top:20px;
  361. width:80px;
  362. overflow: hidden;
  363. .ticket-st{
  364. width:80px;
  365. height:80px;
  366. line-height: 30px;
  367. border-radius: 50%;
  368. background-color: #FFF;
  369. display:flex;
  370. flex-direction: column;
  371. justify-content: center;
  372. align-items: center;
  373. font-size:18px;
  374. color: #ccc;
  375. border: 2px dotted #cccccc;
  376. }
  377. }
  378. .shadow{
  379. box-shadow: 0px 2px 5px 0px #bababa;
  380. }
  381. .ticket-expire-rule{
  382. font-size:12px;
  383. color:darkred;
  384. margin-top:5px;
  385. width: 60%;
  386. line-height: 20px;
  387. }