index.wxss 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362
  1. .shops-container {
  2. display: flex;
  3. justify-content: space-between;
  4. align-items: center;
  5. margin: 16rpx;
  6. }
  7. .shops-container .l {
  8. display: flex;
  9. align-items: center;
  10. }
  11. .shops-container .l text {
  12. color: #666;
  13. margin-left: 16rpx;
  14. }
  15. .shops-container .l image {
  16. width: 40rpx;
  17. height: 40rpx;
  18. }
  19. .shops-container .r {
  20. display: flex;
  21. align-items: center;
  22. }
  23. .shops-container .r text {
  24. color: #666;
  25. }
  26. .shops-container .r image {
  27. width: 40rpx;
  28. height: 40rpx;
  29. }
  30. .goodsDynamic {
  31. position: absolute;
  32. bottom: 64rpx;
  33. left: 16rpx;
  34. width: 650rpx;
  35. background: rgba(0, 0, 0, 0.4);
  36. color: #fff;
  37. padding: 8rpx 16rpx;
  38. border-radius: 32rpx;
  39. font-size: 24rpx;
  40. }
  41. .goodsDynamic .swiper2 {
  42. width: 100%;
  43. height: 32rpx;
  44. }
  45. .goodsDynamic-item {
  46. width: 100%;
  47. display: flex;
  48. align-items: center;
  49. }
  50. .goodsDynamic-item image {
  51. width: 32rpx;
  52. height: 32rpx;
  53. border-radius: 50%;
  54. flex-shrink: 0;
  55. }
  56. .goodsDynamic-item text {
  57. margin-left: 8rpx;
  58. text-overflow: ellipsis;
  59. white-space: nowrap;
  60. overflow: hidden;
  61. }
  62. .notice-box {
  63. width: 100vw;
  64. height: 88rpx;
  65. line-height: 88rpx;
  66. border-bottom: 1rpx solid #efeff4;
  67. }
  68. .notice_swiper{
  69. height: 88rpx;
  70. width: 100%;
  71. }
  72. .notice_itemr {
  73. padding-left: 16rpx;
  74. font-size: 24rpx;
  75. overflow: hidden;
  76. color: #e64340;
  77. }
  78. .container {
  79. background-color: #fff;
  80. min-height: 100%;
  81. display: block;
  82. }
  83. .category-box {
  84. background-color: #fff;
  85. display: flex;
  86. flex-wrap: wrap;
  87. }
  88. .category-list{
  89. width:150rpx;
  90. margin-top:20rpx;
  91. text-align: center;
  92. display: inline-block;
  93. overflow: hidden;
  94. }
  95. .category-column{
  96. width:100%;
  97. margin-top:20rpx;
  98. overflow: hidden;
  99. }
  100. .category-imgbox{
  101. width:80rpx;
  102. height:80rpx;
  103. }
  104. .category-title{
  105. font-size: 24rpx;
  106. text-align:center;
  107. margin-top:10rpx;
  108. }
  109. .swiper-container{
  110. width: 750rpx;
  111. height: 375rpx;
  112. position: relative;
  113. }
  114. .swiper-container .swiper1 {
  115. width: 750rpx;
  116. height: 375rpx;
  117. }
  118. .swiper-container .swiper1 image {
  119. width: 750rpx;
  120. height: 375rpx;
  121. /* margin: 8rpx 15rpx; */
  122. /* border-radius: 16rpx; */
  123. }
  124. ::-webkit-scrollbar {
  125. width: 0;
  126. height: 0;
  127. color: transparent;
  128. }
  129. .type-item-on{
  130. color:#e64340;
  131. border-bottom: 1rpx solid #e64340;
  132. }
  133. .weui-loadmore {
  134. margin-bottom: 0px;
  135. }
  136. .goods-container{
  137. display: flex;
  138. justify-content: space-between;
  139. flex-wrap:wrap;
  140. box-sizing: content-box;
  141. padding: 24rpx;
  142. background-color: #F2f2f2;
  143. }
  144. .goods-box{
  145. width: 339rpx;
  146. height: 472rpx;
  147. background-color: #fff;
  148. overflow: hidden;
  149. margin-bottom: 24rpx;
  150. border-radius:5px;
  151. }
  152. .goods-box .img-box{
  153. width: 339rpx;
  154. height: 339rpx;
  155. overflow: hidden;
  156. }
  157. .goods-box .img-box image{
  158. width: 339rpx;
  159. height: 339rpx;
  160. }
  161. .goods-box .goods-title{
  162. width: 280rpx;
  163. text-overflow: ellipsis;
  164. white-space: nowrap;
  165. overflow: hidden;
  166. font-size: 24rpx;
  167. padding: 24rpx 0 0rpx 0;
  168. color:#000;
  169. margin-left: 24rpx;
  170. }
  171. .goods-box .goods-price{
  172. width: 280rpx;
  173. overflow: hidden;
  174. font-size: 24rpx;
  175. padding: 24rpx 0;
  176. color:#e64340;
  177. margin-left: 24rpx;
  178. }
  179. .pos-fiexd{
  180. position: fixed;
  181. top: 0;
  182. left: 0;
  183. }
  184. .coupons{
  185. margin-top:10rpx;
  186. width: 100%;
  187. height: 180rpx;
  188. overflow: hidden;
  189. }
  190. .coupons-scroll{
  191. white-space: nowrap;
  192. height: 180rpx;
  193. width: 100%;
  194. background-color: #fff;
  195. }
  196. .coupons-item{
  197. width:300rpx;
  198. height: 180rpx;
  199. margin: 10rpx;
  200. padding-top: 20rpx;
  201. padding-left: 15rpx;
  202. background-color: #f1a83b;
  203. box-sizing: content-box;
  204. font-size: 20rpx;
  205. line-height: 35rpx;
  206. overflow: hidden;
  207. color: #fff;
  208. display: inline-block;
  209. }
  210. .coupons-float {
  211. position: fixed;
  212. right:15rpx;
  213. bottom:80rpx;
  214. width:80rpx;
  215. height:80rpx;
  216. background-color: #fff;
  217. text-align: center;
  218. border-radius:50%;
  219. border: 1rpx solid #ddd;
  220. }
  221. .coupons-float image {
  222. width:60rpx;
  223. height:60rpx;
  224. margin-top: 10rpx;
  225. }
  226. .tuan {
  227. width:750rpx;
  228. background-color: #F2f2f2;
  229. padding-top:10rpx;
  230. }
  231. .tuan-item {
  232. width:720rpx;
  233. margin: auto;
  234. margin-top: 20rpx;
  235. background-color: #FFF;
  236. position: relative;
  237. }
  238. .tuan-goods-pic {
  239. width:720rpx;
  240. height: 250rpx;
  241. overflow: hidden;
  242. }
  243. .tuan-goods-pic image {
  244. width:720rpx;
  245. }
  246. .tuan-title {
  247. margin-top: 20rpx;
  248. margin-left: 20rpx;
  249. font-size:30rpx;
  250. font-weight: 400;
  251. }
  252. .tuan-profile {
  253. margin-left: 20rpx;
  254. font-size:28rpx;
  255. color:#999;
  256. }
  257. .tuan-price {
  258. margin-left: 20rpx;
  259. }
  260. .tuan-price .now {
  261. font-size:36rpx;
  262. color:#e64340;
  263. }
  264. .tuan-price .original {
  265. margin-left: 20rpx;
  266. font-size:26rpx;
  267. color:#999;
  268. text-decoration:line-through;
  269. }
  270. .tuan-btn {
  271. position: absolute;
  272. right:30rpx;
  273. bottom: 10rpx;
  274. }
  275. .category-goods-title {
  276. width: 100vw;
  277. display: flex;
  278. justify-content: space-between;
  279. align-items: center;
  280. margin-bottom: 8rpx;
  281. border-bottom: 1rpx solid #efeff4;
  282. }
  283. .category-goods-title .more {
  284. color: #666;
  285. font-size: 24rpx;
  286. margin-right: 32rpx;
  287. }
  288. .weui-media-box {
  289. padding-bottom: 0rpx;
  290. }
  291. .progress {
  292. width: 686rpx;
  293. padding: 0 32rpx;
  294. margin-bottom: 16rpx;
  295. }
  296. /*秒杀*/
  297. .miaosha-container {
  298. padding: 0;
  299. }
  300. .miaosha-goods-list {
  301. margin: 20rpx;
  302. background: #f6f6f6;
  303. border-radius: 16rpx;
  304. display: flex;
  305. padding: 20rpx;
  306. }
  307. .miaosha-goods-list .image {
  308. width: 260rpx;
  309. height: 260rpx;
  310. flex-shrink: 0;
  311. border-radius: 16rpx;
  312. }
  313. .miaosha-goods-list .r {
  314. margin-left: 32rpx;
  315. }
  316. .miaosha-goods-list .r .goods-title {
  317. color: #333;
  318. font-size: 28rpx;
  319. }
  320. .miaosha-goods-list .r .label {
  321. color: #e64340;
  322. font-size: 24rpx;
  323. display: flex;
  324. align-items: flex-start;
  325. margin-top: 8rpx;
  326. }
  327. .miaosha-goods-list .r .label text {
  328. margin-left: 8rpx;
  329. }
  330. .miaosha-goods-list .count-down {
  331. background: #e64340;
  332. padding: 8rpx 16rpx;
  333. border-radius: 16rpx;
  334. margin-top: 12rpx;
  335. }
  336. .van-count-down {
  337. color: #fff !important;
  338. }
  339. .miaosha-price-btn {
  340. display: flex;
  341. justify-content: space-between;
  342. align-items: center;
  343. }
  344. .miaosha-price-btn .price {
  345. color: #e64340;
  346. font-size: 40rpx;
  347. margin-top: 12rpx;
  348. }
  349. .miaosha-price-btn .price text {
  350. color: #666666;
  351. font-size: 26rpx;
  352. text-decoration:line-through;
  353. }
  354. .live-banner {
  355. width: 100vw;
  356. margin-top: 32rpx;
  357. }