find.wxss 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  1. .main {
  2. box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.10) inset;
  3. background-color: #fff;
  4. padding-top: 30rpx;
  5. }
  6. .gameCards {
  7. display: flex;
  8. justify-content: center;
  9. align-items: center;
  10. flex-direction: column;
  11. }
  12. .gameCards-time {
  13. height: 90rpx;
  14. width: 680rpx;
  15. font-size: 36rpx;
  16. color: #333;
  17. font-weight: 700;
  18. display: flex;
  19. padding-left: 10rpx;
  20. align-items: center;
  21. letter-spacing: 0.77rpx;
  22. }
  23. .gameCards-item {
  24. width: 680rpx;
  25. background: #fff;
  26. box-shadow: 0 8rpx 14rpx 0 rgba(0, 0, 0, 0.20);
  27. border-radius: 23rpx;
  28. margin-bottom: 30rpx;
  29. overflow: hidden;
  30. }
  31. .gameCards-img {
  32. position: relative;
  33. height: 674rpx;
  34. }
  35. .gameCards-img image {
  36. width: 100%;
  37. height: 100%;
  38. }
  39. .gameCards-img .title {
  40. position: absolute;
  41. left: 32rpx;
  42. font-size: 50rpx;
  43. bottom: 32rpx;
  44. color: #fff;
  45. font-weight: 700;
  46. }
  47. .gameCards-game {
  48. height: 165rpx;
  49. display: flex;
  50. padding-left: 32rpx;
  51. padding-right: 40rpx;
  52. align-items: center;
  53. justify-content: space-between;
  54. }
  55. .gameCards-game .info {
  56. display: flex;
  57. align-items: center;
  58. }
  59. .gameCards-game .info .icon {
  60. height: 108rpx;
  61. width: 108rpx;
  62. border-radius: 24rpx;
  63. margin-right: 20rpx;
  64. }
  65. .gameCards-game .info .gi {
  66. height: 90rpx;
  67. width: 320rpx;
  68. display: flex;
  69. align-items: flex-start;
  70. justify-content: space-between;
  71. flex-direction: column;
  72. }
  73. .gameCards-game .info .name {
  74. font-size: 32rpx;
  75. font-weight: 700;
  76. line-height: 45rpx;
  77. color: #333;
  78. letter-spacing: 0.69rpx;
  79. }
  80. .gameCards-game .info .des {
  81. font-size: 24rpx;
  82. height: 33rpx;
  83. line-height: 33rpx;
  84. width: 300rpx;
  85. overflow: hidden;
  86. text-overflow: ellipsis;
  87. white-space: nowrap;
  88. color: #8b8b8b;
  89. letter-spacing: 0.51rpx;
  90. }
  91. .player {
  92. white-space: nowrap;
  93. }
  94. .player__avatar {
  95. border-radius: 50%;
  96. height: 40rpx;
  97. margin-right: 8rpx;
  98. vertical-align: middle;
  99. width: 40rpx;
  100. }
  101. .player__info {
  102. color: #8B8B8B;
  103. font-size: 26rpx;
  104. line-height: 40rpx;
  105. margin-left: 8rpx;
  106. }
  107. .share {
  108. position: fixed;
  109. top: auto;
  110. right: 30rpx;
  111. bottom: 54rpx;
  112. z-index: 99;
  113. }
  114. .share button {
  115. background-color: transparent;
  116. height: 80rpx;
  117. width: 80rpx;
  118. padding-left: 0;
  119. display: flex;
  120. align-items: center;
  121. }
  122. .share button image {
  123. width: 80rpx;
  124. height: 80rpx;
  125. }
  126. /* 分享 */
  127. .shareMask {
  128. width: 100vw;
  129. position: fixed;
  130. top: 0;
  131. z-index: 100;
  132. height: 100vh;
  133. background-color: rgba(0, 0, 0, 0.6);
  134. }
  135. .shareMask .menu {
  136. position: absolute;
  137. bottom: 0;
  138. left: 0;
  139. width: 100%;
  140. background-color: #fff;
  141. height: 228rpx;
  142. display: flex;
  143. align-items: center;
  144. justify-content: space-between;
  145. }
  146. .shareMask .menu_item {
  147. flex: 1;
  148. height: 100%;
  149. background: #fff;
  150. display: flex;
  151. align-items: center;
  152. justify-content: center;
  153. flex-direction: column;
  154. }
  155. .shareMask .menu_item image {
  156. width: 100rpx;
  157. height: 100rpx;
  158. }
  159. .shareMask .menu_item text {
  160. color: #333;
  161. font-size: 24rpx;
  162. font-weight: bold;
  163. margin-top: 12rpx;
  164. }
  165. /* 分享朋友圈 */
  166. .shareCircles {
  167. width: 100vw;
  168. position: fixed;
  169. top: 0;
  170. z-index: 100;
  171. height: 100%;
  172. }
  173. .shareCircles .task {
  174. background-color: rgba(0, 0, 0, 0.6);
  175. position: absolute;
  176. top: 0;
  177. left: 0;
  178. width: 100%;
  179. height: 100%;
  180. }
  181. .shareCircles .content {
  182. width: 466rpx;
  183. display: flex;
  184. align-items: center;
  185. flex-direction: column;
  186. height: 1005rpx;
  187. position: absolute;
  188. left: 50%;
  189. top: 50%;
  190. transform: translate(-50%, -50%);
  191. z-index: 999;
  192. }
  193. .shareCircles .main_img {
  194. width: 466rpx;
  195. height: 828rpx;
  196. }
  197. .shareCircles .main_img image {
  198. width: 100%;
  199. height: 100%;
  200. }
  201. .shareCircles .prompt {
  202. font-size: 28rpx;
  203. line-height: 40rpx;
  204. color: #fff;
  205. margin-top: 17rpx;
  206. margin-bottom: 32rpx;
  207. white-space: nowrap;
  208. }
  209. .shareCircles .btn {
  210. width: 395rpx;
  211. height: 88rpx;
  212. border-radius: 100px;
  213. font-size: 36rpx;
  214. color: #fff;
  215. display: flex;
  216. align-items: center;
  217. justify-content: center;
  218. background: #557cff;
  219. }
  220. .share_close {
  221. height: 40rpx;
  222. position: absolute;
  223. right: 27rpx;
  224. top: -61rpx;
  225. width: 40rpx;
  226. }