common.scss 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279
  1. $pagegap:32rpx;
  2. .page-wrap{padding: $pagegap;}
  3. .top-search{
  4. position: absolute;
  5. z-index: 31;
  6. background-color: rgba(0,0,0,0.04);
  7. border-radius: 100rpx;
  8. margin-bottom: 20rpx;
  9. margin-left: $pagegap;
  10. }
  11. .search-wrap{
  12. background-color: #fff;
  13. position: relative;
  14. padding: 20rpx;
  15. margin-bottom: 24rpx;
  16. }
  17. .search-wrap::after {
  18. content: "";
  19. position: absolute;
  20. width: 100%;
  21. height: 14rpx;
  22. bottom: -20rpx;
  23. left: 0;
  24. background: linear-gradient(to bottom, #F5F5F5, #fff);
  25. z-index: -1;
  26. }
  27. .search-wrap{
  28. .position{
  29. font-size: 28rpx;
  30. font-weight: bold;
  31. color: #2D2D2D;
  32. /deep/ .u-icon{
  33. position: relative;
  34. top: 5rpx;
  35. margin-left: 8rpx;
  36. }
  37. }
  38. .search-out{
  39. flex: 1;
  40. border: 1px solid #DADADA;
  41. border-radius: 50rpx;
  42. margin-left: 24rpx;
  43. }
  44. .conditions{
  45. // margin-top: 48rpx;
  46. .item{
  47. margin: 0 24rpx;
  48. padding: 48rpx 0 20rpx;
  49. font-size: 24rpx;
  50. font-weight: 400;
  51. color: #363636;
  52. .text{
  53. margin-right: 10rpx;
  54. }
  55. }
  56. }
  57. }
  58. .gray{
  59. color: #999;
  60. }
  61. .red{
  62. color: #FF3C3F;
  63. }
  64. .view-wrap{
  65. padding: 30rpx 20rpx;
  66. }
  67. .full-btn{
  68. background-color: #1677FF;
  69. color: #fff;
  70. border-radius: 44rpx;
  71. padding: 22rpx 0;
  72. text-align: center;
  73. margin-bottom: 40rpx;
  74. margin-top: 20rpx;
  75. font-weight: bold;
  76. &.gray{
  77. background-color: #ddd;
  78. color: #999;
  79. }
  80. &.white{
  81. background-color: #fff;
  82. color: #606060;
  83. }
  84. }
  85. .single-til{
  86. margin-bottom: 20rpx;
  87. .text{
  88. font-size: 32rpx;
  89. color: #333;
  90. font-weight: 600;
  91. .sub-title{
  92. margin-left: 20rpx;
  93. font-size: 24rpx;
  94. font-weight: 400;
  95. color: #999999;
  96. }
  97. }
  98. .more-text{
  99. font-size: 24rpx;
  100. color: #999;
  101. }
  102. }
  103. .date-list{
  104. .date-item{
  105. position: relative;
  106. flex: 1;
  107. background: #FFFFFF;
  108. border-radius: 16rpx;
  109. border: 2rpx solid #EEEEEE;
  110. text-align: center;
  111. margin: 0 8rpx;
  112. box-sizing: border-box;
  113. &.active{
  114. border-color: #ED0000;
  115. .name,.date{
  116. color: #ED0000;
  117. }
  118. }
  119. .name{
  120. padding-top: 26rpx;
  121. margin-bottom: 12rpx;
  122. font-size: 24rpx;
  123. font-weight: 400;
  124. color: #7F7F7F;
  125. line-height: 36rpx;
  126. }
  127. .date{
  128. font-size: 28rpx;
  129. font-weight: 500;
  130. color: #2D2D2D;
  131. line-height: 42rpx;
  132. padding-bottom: 28rpx;
  133. }
  134. }
  135. .more-date{
  136. height: 148rpx;
  137. .text{
  138. margin-left: 20rpx;
  139. margin-right: 10rpx;
  140. font-size: 24rpx;
  141. font-weight: 400;
  142. color: #7F7F7F;
  143. line-height: 36rpx;
  144. }
  145. }
  146. }
  147. // 分享 海报
  148. .share-option{
  149. transform: translateY(100%);
  150. .overlay{
  151. position: fixed;
  152. left: 0;
  153. top: 0;
  154. width: 100vw;
  155. height: 100vh;
  156. background-color: rgba(0, 0, 0, 0.35);
  157. transform: translateY(-100%);
  158. }
  159. &.shareShow{
  160. transform: translateY(0);
  161. }
  162. position: fixed;
  163. width: 100%;
  164. left: 0;
  165. bottom: 0;
  166. z-index: 50;
  167. background-color: #fff;
  168. .share-option-item{
  169. position: relative;
  170. height: 46px;
  171. line-height: 46px;
  172. border: 0;
  173. background-color: #fff;
  174. text-align: center;
  175. border-radius: 0;
  176. border-bottom: 1px solid #eee;
  177. font-size: 30rpx;
  178. }
  179. .wx-share{
  180. border-bottom: 0;
  181. }
  182. }
  183. .poster-wrap{
  184. position: fixed;
  185. left: 0;
  186. top: 0;
  187. width: 100%;
  188. height: 100vh;
  189. .poster-inner{
  190. flex: 1;
  191. margin: 0 75rpx;
  192. .close-wrap{
  193. display: flex;
  194. justify-content: flex-end;
  195. margin-bottom: 16rpx;
  196. }
  197. }
  198. .poster{
  199. position: relative;
  200. // padding-bottom: 90rpx;
  201. background-color: transparent;
  202. .posterBg{
  203. position: absolute;
  204. left: 0;
  205. bottom: 0;
  206. right: 0;
  207. width: 100%;
  208. z-index: 1;
  209. }
  210. .placard{
  211. position: relative;
  212. z-index: 10;
  213. }
  214. .bottom{
  215. position: relative;
  216. z-index: 20;
  217. margin: 33rpx 40rpx 0;
  218. .left{
  219. margin-right: 58rpx;
  220. .price{
  221. font-size: 22rpx;
  222. font-weight: 600;
  223. color: #FF3538;
  224. line-height: 30rpx;
  225. margin-bottom: 10rpx;
  226. .num{
  227. font-size: 40rpx;
  228. font-weight: 600;
  229. margin-left: 5rpx;
  230. }
  231. }
  232. .goodsName{
  233. font-size: 30rpx;
  234. font-weight: 400;
  235. color: #333333;
  236. line-height: 38rpx;
  237. margin-bottom: 16rpx;
  238. }
  239. .slogan{
  240. font-size: 26rpx;
  241. font-weight: 600;
  242. line-height: 37rpx;
  243. }
  244. }
  245. .right{
  246. text-align: center;
  247. .imgTip{
  248. margin-top: 12rpx;
  249. font-size: 20rpx;
  250. font-weight: 400;
  251. color: #333333;
  252. line-height: 28rpx;
  253. }
  254. .qrcode{
  255. width: 108rpx;
  256. height:108rpx;
  257. }
  258. }
  259. }
  260. }
  261. .poster-btn{
  262. height: 88rpx;
  263. line-height: 88rpx;
  264. border-radius: 44rpx;
  265. text-align: center;
  266. color: #fff;
  267. margin-top: 40rpx;
  268. font-size: 32rpx;
  269. font-weight: 600;
  270. background: linear-gradient(90deg, #00DC84 0%, #00A447 100%);
  271. }
  272. }
  273. // 分享 海报