M_purchase.scss 5.5 KB

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