M_purchase.scss 5.6 KB

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