M_purchase.scss 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292
  1. @import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css");
  2. page {
  3. background-color: #f2f6f2;
  4. }
  5. .page {
  6. background-color: #eee;
  7. width: 100%;
  8. min-height: 100vh;
  9. }
  10. .topbg {
  11. }
  12. .topBody {
  13. width: 750rpx;
  14. .PageHeader {
  15. background-color: #f2f6f2;
  16. ::v-deep .uni-icons {
  17. color: #1f1f1f !important;
  18. }
  19. .fa {
  20. color: #1f1f1f;
  21. }
  22. .more-options {
  23. position: relative;
  24. display: inline-block;
  25. .fa {
  26. font-size: 40rpx;
  27. padding: 0 20rpx;
  28. }
  29. .dropdown-menu {
  30. position: absolute;
  31. top: calc(100% + 10rpx);
  32. right: 20rpx;
  33. background-color: #ffffff;
  34. border-radius: 20rpx;
  35. padding: 0;
  36. width: 200rpx;
  37. box-shadow: 0 4rpx 20rpx rgba(0, 0, 0, 0.1);
  38. z-index: 100;
  39. transform-origin: top right;
  40. animation: dropdownAnimation 0.2s ease-out;
  41. .dropdown-item {
  42. padding: 24rpx 0;
  43. color: #333333;
  44. font-size: 28rpx;
  45. position: relative;
  46. text-align: center;
  47. &:not(:last-child)::after {
  48. content: "";
  49. position: absolute;
  50. left: 0;
  51. right: 0;
  52. bottom: 0;
  53. height: 1rpx;
  54. background-color: #eeeeee;
  55. }
  56. &:active {
  57. background-color: #f8f8f8;
  58. }
  59. }
  60. }
  61. }
  62. }
  63. .reserveASeat {
  64. width: 100%;
  65. background: transparent;
  66. height: calc(var(--status-bar-height) + 90rpx);
  67. }
  68. .myGoldCoin-box {
  69. width: 686rpx;
  70. height: 196rpx;
  71. background: linear-gradient(90deg, #1f1f1f 0%, #444444 100%);
  72. border-radius: 20rpx;
  73. margin: 0 auto;
  74. padding-top: 50rpx;
  75. padding-left: 40rpx;
  76. box-sizing: border-box;
  77. color: #ffffff;
  78. font-size: 32rpx;
  79. image {
  80. width: 40rpx;
  81. height: 40rpx;
  82. margin-right: 10rpx;
  83. }
  84. .myGoldCoin-box-content {
  85. display: flex;
  86. align-items: center;
  87. font-weight: 400;
  88. font-size: 24px;
  89. color: #acf934;
  90. line-height: 1.5;
  91. }
  92. }
  93. }
  94. @keyframes dropdownAnimation {
  95. 0% {
  96. opacity: 0;
  97. transform: scale(0.95) translateY(-5rpx);
  98. }
  99. 100% {
  100. opacity: 1;
  101. transform: scale(1) translateY(0);
  102. }
  103. }
  104. .header {
  105. display: flex;
  106. flex-direction: row;
  107. justify-content: space-between;
  108. align-items: center;
  109. color: $title;
  110. .title {
  111. font-size: 34rpx;
  112. }
  113. }
  114. .thread {
  115. height: 210rpx;
  116. padding: 50rpx;
  117. font-size: 52rpx;
  118. color: #6e6a6a;
  119. padding-top: 80rpx;
  120. }
  121. .myinfo {
  122. width: 720rpx;
  123. display: flex;
  124. flex-direction: column;
  125. justify-content: flex-start;
  126. margin: 0 auto;
  127. .purchaseList {
  128. display: grid;
  129. grid-template-columns: repeat(3, 1fr);
  130. padding: 0 4rpx;
  131. gap: 18rpx;
  132. .item {
  133. display: flex;
  134. justify-content: center;
  135. flex-direction: column;
  136. width: 218rpx;
  137. height: 168rpx;
  138. background: #ffffff;
  139. border-radius: 20rpx;
  140. border: 2px solid #fff;
  141. .num1 {
  142. text-align: center;
  143. display: flex;
  144. justify-content: center;
  145. align-items: center;
  146. font-weight: 400;
  147. font-size: 40rpx;
  148. color: rgba(32, 32, 32, 0.7);
  149. .name {
  150. font-size: 36rpx;
  151. margin-top: 10rpx;
  152. }
  153. image {
  154. width: 40rpx;
  155. height: 40rpx;
  156. }
  157. }
  158. .num2 {
  159. text-align: center;
  160. display: flex;
  161. flex-direction: column;
  162. justify-content: center;
  163. align-items: center;
  164. .name {
  165. font-size: 28rpx;
  166. color: #999999;
  167. margin-top: 12rpx;
  168. }
  169. }
  170. }
  171. .itemSel {
  172. background: linear-gradient(
  173. 180deg,
  174. #f0ffd9 0%,
  175. rgba(240, 255, 217, 0) 99%
  176. );
  177. border: 2px solid #1f1f1f;
  178. .num1 {
  179. .name {
  180. color: rgba(32, 32, 32, 1);
  181. }
  182. }
  183. .num2 {
  184. .name {
  185. color: #999;
  186. }
  187. }
  188. }
  189. }
  190. .jinchu {
  191. padding-top: 30rpx;
  192. padding-left: 32rpx;
  193. padding-bottom: 20rpx;
  194. font-size: 28rpx;
  195. color: rgba(32, 32, 32, 1);
  196. }
  197. .mingxiList {
  198. display: flex;
  199. flex-direction: row;
  200. justify-content: space-between;
  201. align-items: center;
  202. position: relative;
  203. width: 686rpx;
  204. height: 88rpx;
  205. background: #ffffff;
  206. border-radius: 20rpx;
  207. margin: 0 auto;
  208. margin-bottom: 10rpx;
  209. padding: 0 ;
  210. padding-left: 25rpx;
  211. padding-right: 20rpx;
  212. .left {
  213. display: flex;
  214. flex-direction: row;
  215. justify-content: flex-start;
  216. align-items: center;
  217. .icon {
  218. width: 48rpx;
  219. }
  220. background: rgba(22, 22, 22, 0);
  221. border-radius: 0rpx 0rpx 0rpx 0rpx;
  222. }
  223. .right {
  224. display: flex;
  225. flex-direction: row;
  226. justify-content: flex-start;
  227. align-items: center;
  228. .icon {
  229. height: 32rpx;
  230. }
  231. }
  232. }
  233. .line {
  234. width: 690rpx;
  235. height: 2rpx;
  236. margin-top: 20rpx;
  237. background: #393939;
  238. border-radius: 0rpx 0rpx 0rpx 0rpx;
  239. }
  240. .agree {
  241. width: 90%;
  242. margin: 0 auto;
  243. color: #666666;
  244. font-size: 24rpx;
  245. margin-top: 40rpx;
  246. display: flex;
  247. align-items: center;
  248. text-align: left;
  249. line-height: 32rpx;
  250. .agree2 {
  251. display: flex;
  252. flex-direction: row;
  253. justify-content: flex-start;
  254. align-items: center;
  255. padding-right: 8rpx;
  256. flex-shrink: 0;
  257. }
  258. .xy {
  259. color: #0084FF;
  260. display: inline;
  261. }
  262. image {
  263. width: 32rpx;
  264. height: 32rpx;
  265. }
  266. }
  267. }
  268. .blankHeight {
  269. height: 100rpx;
  270. }