碧桂园
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

143 lignes
2.3 KiB

  1. camera {
  2. position: absolute;
  3. width: 100vw;
  4. height: 100vh;
  5. z-index: 10;
  6. }
  7. #capture {
  8. position: absolute;
  9. left: 750rpx;
  10. }
  11. #overlay {
  12. position: absolute;
  13. top: 0;
  14. left: 0;
  15. width: 100vw;
  16. height: 100vh;
  17. background: rgba(63, 63, 63, 0.6);
  18. z-index: 30;
  19. }
  20. #overlay-top {
  21. position: absolute;
  22. margin: 60rpx 44rpx 0 54rpx;
  23. left: 0;
  24. right: 0;
  25. }
  26. #title {
  27. position: absolute;
  28. font-size: 36rpx;
  29. font-family: PingFangSC-Medium, PingFang SC, serif;
  30. font-weight: 500;
  31. color: #FFFFFF;
  32. line-height: 46rpx;
  33. }
  34. #logo {
  35. position: absolute;
  36. top: 0;
  37. right: 0;
  38. width: 178rpx;
  39. height: 54rpx;
  40. }
  41. #desc {
  42. position: absolute;
  43. top: 106rpx;
  44. font-size: 28rpx;
  45. font-family: PingFangSC-Medium, PingFang SC, serif;
  46. font-weight: 500;
  47. color: #FFFFFF;
  48. line-height: 46rpx;
  49. }
  50. #overlay-bottom {
  51. position: absolute;
  52. width: 540rpx;
  53. left: 0;
  54. right: 0;
  55. bottom: 0;
  56. margin: 0 auto;
  57. }
  58. #loading {
  59. position: absolute;
  60. width: fit-content;
  61. height: fit-content;
  62. left: 0;
  63. right: 0;
  64. top: 0;
  65. bottom: 0;
  66. margin: auto;
  67. z-index: 40;
  68. }
  69. .primary-button {
  70. width: 540rpx;
  71. height: 112rpx;
  72. margin-top: 22rpx;
  73. text-align: center;
  74. font-size: 32rpx;
  75. font-family: PingFangSC-Medium, PingFang SC, serif;
  76. font-weight: 500;
  77. color: #FFFFFF;
  78. line-height: 112rpx;
  79. }
  80. .secondary-button {
  81. width: 540rpx;
  82. height: 80rpx;
  83. margin-top: 22rpx;
  84. text-align: center;
  85. font-size: 24rpx;
  86. font-family: PingFangSC-Medium, PingFang SC, serif;
  87. font-weight: 500;
  88. color: #EDEDED;
  89. line-height: 80rpx;
  90. }
  91. #content {
  92. position: absolute;
  93. left: 0;
  94. top: 0;
  95. bottom: 0;
  96. right: 0;
  97. margin: auto;
  98. width: fit-content;
  99. height: fit-content;
  100. z-index: 20;
  101. }
  102. #select {
  103. position: absolute;
  104. bottom: 210rpx;
  105. right: 0;
  106. z-index: 20;
  107. }
  108. .select {
  109. width: 180rpx;
  110. height: 88rpx;
  111. color: white;
  112. line-height: 88rpx;
  113. text-align: center;
  114. margin-top: 20rpx;
  115. border-top-left-radius: 10rpx;
  116. border-bottom-left-radius: 10rpx;
  117. font-size: 28rpx;
  118. font-family: PingFangSC-Medium, PingFang SC, serif;
  119. font-weight: 500;
  120. box-shadow: 0 4rpx 8rpx 0 rgba(0, 0, 0, 0.5);
  121. background: linear-gradient(90deg, #EEA167 0%, #F97605 50%, #EEA167 100%);
  122. }
  123. .selected {
  124. color: black;
  125. background: linear-gradient(90deg, #ABABAB 0%, #D6D6D6 50%, #ABABAB 100%);
  126. }