金诚优选前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

236 lines
5.4 KiB

  1. @import '../../../common/css/global';
  2. #store-seckill{
  3. .contents{
  4. height: 100%;
  5. overflow: auto;
  6. box-sizing: border-box;
  7. //padding: 0 12px;
  8. .no-list{
  9. text-align: center;
  10. margin: 10px 0;
  11. }
  12. .seckill-list{
  13. margin: 12px 0;
  14. /*.item{
  15. background: #FFFFFF;
  16. border-radius: 3px;
  17. overflow: hidden;
  18. margin-bottom: 10px;
  19. padding: 10px 15px;
  20. .img {
  21. position: relative;
  22. image {
  23. border-radius: 3px;
  24. //height: 300rpx !important;
  25. width: 100%;
  26. display: block;
  27. }
  28. .time-box {
  29. position: absolute;
  30. bottom: 0;
  31. width: 100%;
  32. background: rgba(57,57,57,.67);
  33. color: #FFFFFF;
  34. !*height: 30px;*!
  35. !*line-height: 30px;*!
  36. padding: 5px 12px;
  37. box-sizing: border-box;
  38. &.active{
  39. background: rgba(252,192,67,.8);
  40. }
  41. }
  42. }
  43. .info{
  44. padding: 10px;
  45. .name{
  46. white-space: nowrap;
  47. overflow: hidden;
  48. text-overflow: ellipsis;
  49. span{
  50. color: #fe4545;
  51. }
  52. }
  53. .money-box{
  54. display: flex;
  55. align-items: center;
  56. margin-top: 10px;
  57. .num{
  58. padding: 1px 10px;
  59. color: #fff;
  60. font-size: 14px;
  61. border-radius: 20px;
  62. background:#393939;
  63. margin-top: 5px;
  64. }
  65. .money{
  66. flex: 1;
  67. text-align: right;
  68. white-space: nowrap;
  69. overflow: hidden;
  70. text-overflow: ellipsis;
  71. margin-left: 5px;
  72. .old{
  73. font-size: 14px;
  74. text-decoration: line-through;
  75. color:#959595;
  76. }
  77. .new{
  78. font-size: 25px;
  79. color: #ee2b1d;
  80. }
  81. }
  82. }
  83. }
  84. .groups-img{
  85. position: relative;
  86. .num{
  87. position: absolute;
  88. top: 0;
  89. left: 0;
  90. background: #4A4A4A;
  91. padding: 5px 25px;
  92. border-radius: 0px 0px 4px 0px;
  93. color: #fff;
  94. font-size: 10px;
  95. }
  96. image {
  97. border-radius: 3px;
  98. //height: 300rpx !important;
  99. width: 100%;
  100. display: block;
  101. }
  102. .time-box {
  103. position: absolute;
  104. bottom: 0;
  105. width: 100%;
  106. background: rgba(57,57,57,.67);
  107. color: #FFFFFF;
  108. !*height: 30px;*!
  109. !*line-height: 30px;*!
  110. padding: 5px 12px;
  111. box-sizing: border-box;
  112. &.active{
  113. background: rgba(252,192,67,.8);
  114. }
  115. }
  116. }
  117. .groups-name{
  118. font-size: 16px;
  119. overflow: hidden;
  120. white-space: nowrap;
  121. text-overflow: ellipsis;
  122. }
  123. .groups-bottom{
  124. margin-top: 7px;
  125. display: flex;
  126. align-items: center;
  127. justify-content: space-between;
  128. .money{
  129. display: flex;
  130. align-items: baseline;
  131. .new{
  132. color: #E50303;
  133. }
  134. .old{
  135. font-size: 12px;
  136. color: #959595;
  137. margin-left: 8px;
  138. span{
  139. text-decoration: line-through;
  140. }
  141. }
  142. }
  143. .buttom{
  144. background: #EA4448;
  145. color: #ffffff;
  146. font-size: 12px;
  147. padding: 5px 15px;
  148. border-radius: 3px;
  149. }
  150. }
  151. }*/
  152. .item {
  153. display: flex;
  154. /*align-items: center;*/
  155. padding: 10px 15px;
  156. margin-bottom: 5px;
  157. background: #ffffff;
  158. overflow: hidden;
  159. .left {
  160. width: 100px;
  161. image {
  162. display: block;
  163. width: 100%;
  164. }
  165. .img-box {
  166. display: flex;
  167. align-items: center;
  168. margin-top: 10px;
  169. box-sizing: border-box;
  170. justify-content: space-between;
  171. image {
  172. width: 47%;
  173. }
  174. }
  175. }
  176. .right {
  177. display: flex;
  178. flex-direction: column;
  179. justify-content: space-between;
  180. font-size: 14px;
  181. margin-left: 12px;
  182. flex: 1;
  183. .price-box {
  184. .old-price {
  185. font-size: 12px;
  186. color: #9B9B9B;
  187. text-decoration: line-through;
  188. }
  189. .meal-price {
  190. display: flex;
  191. align-items: flex-end;
  192. .price {
  193. flex: 1;
  194. color: #FF2741;
  195. span {
  196. color: #4A4A4A;
  197. }
  198. }
  199. .btn {
  200. color: #ffffff;
  201. background: @mainColor;
  202. padding: 5px 10px;
  203. border-radius: 4px;
  204. i {
  205. font-size: 12px;
  206. }
  207. &.no-start {
  208. background: #26a96d;
  209. }
  210. }
  211. }
  212. }
  213. }
  214. }
  215. }
  216. .loadingbox{
  217. height: 40px;
  218. line-height: 40px;
  219. text-align: center;
  220. }
  221. }
  222. }