M_purchase.scss 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289
  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. .purchaseList {
  127. display: grid;
  128. grid-template-columns: repeat(3, 1fr);
  129. padding: 0 32rpx;
  130. gap: 18rpx;
  131. .item {
  132. display: flex;
  133. justify-content: center;
  134. flex-direction: column;
  135. width: 218rpx;
  136. height: 168rpx;
  137. background: #ffffff;
  138. border-radius: 20rpx;
  139. border: 2px solid #fff;
  140. .num1 {
  141. text-align: center;
  142. display: flex;
  143. justify-content: center;
  144. align-items: center;
  145. font-weight: 400;
  146. font-size: 40rpx;
  147. color: rgba(32, 32, 32, 0.7);
  148. .name {
  149. font-size: 36rpx;
  150. margin-top: 10rpx;
  151. }
  152. image {
  153. width: 40rpx;
  154. height: 40rpx;
  155. }
  156. }
  157. .num2 {
  158. text-align: center;
  159. display: flex;
  160. flex-direction: column;
  161. justify-content: center;
  162. align-items: center;
  163. .name {
  164. font-size: 28rpx;
  165. color: #999999;
  166. margin-top: 12rpx;
  167. }
  168. }
  169. }
  170. .itemSel {
  171. background: linear-gradient(
  172. 180deg,
  173. #f0ffd9 0%,
  174. rgba(240, 255, 217, 0) 99%
  175. );
  176. border: 2px solid #1f1f1f;
  177. .num1 {
  178. .name {
  179. color: rgba(32, 32, 32, 1);
  180. }
  181. }
  182. .num2 {
  183. .name {
  184. color: #999;
  185. }
  186. }
  187. }
  188. }
  189. .jinchu {
  190. padding-top: 30rpx;
  191. padding-left: 32rpx;
  192. font-size: 28rpx;
  193. color: rgba(32, 32, 32, 1);
  194. }
  195. .mingxiList {
  196. display: flex;
  197. flex-direction: row;
  198. justify-content: space-between;
  199. align-items: center;
  200. position: relative;
  201. width: 686rpx;
  202. height: 88rpx;
  203. background: #ffffff;
  204. border-radius: 20rpx;
  205. margin: 0 auto;
  206. margin-bottom: 10rpx;
  207. .left {
  208. display: flex;
  209. flex-direction: row;
  210. justify-content: flex-start;
  211. align-items: center;
  212. padding-left: 10rpx;
  213. padding-top: 20rpx;
  214. .icon {
  215. padding-left: 5rpx;
  216. width: 48rpx;
  217. }
  218. width: 750rpx;
  219. height: 112rpx;
  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. padding-right: 40rpx;
  229. padding-top: 20rpx;
  230. .icon {
  231. padding-left: 5rpx;
  232. height: 32rpx;
  233. }
  234. }
  235. }
  236. .line {
  237. width: 690rpx;
  238. height: 2rpx;
  239. margin-top: 20rpx;
  240. background: #393939;
  241. border-radius: 0rpx 0rpx 0rpx 0rpx;
  242. }
  243. .btn_submit {
  244. width: 660rpx;
  245. height: 96rpx;
  246. position: fixed;
  247. bottom: 150rpx;
  248. left: 45rpx;
  249. background: linear-gradient(142deg, #ff5967 0%, #ff2a95 100%);
  250. border-radius: 28rpx;
  251. font-weight: bold;
  252. font-size: 32rpx;
  253. color: #ffffff;
  254. display: flex;
  255. flex-direction: row;
  256. justify-content: center;
  257. align-items: center;
  258. }
  259. .bottom {
  260. width: 660rpx;
  261. height: 96rpx;
  262. position: fixed;
  263. bottom: 50rpx;
  264. left: 45rpx;
  265. display: flex;
  266. flex-direction: row;
  267. justify-content: center;
  268. align-items: center;
  269. }
  270. }
  271. .blankHeight {
  272. height: 100rpx;
  273. }