金诚优选前端代码
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.

132 lines
2.7 KiB

  1. @import '../../common/css/global';
  2. //秒杀
  3. .seckill-box{
  4. background: #FFFFFF;
  5. padding:10px 15px;
  6. .title{
  7. padding: 20px 0px;
  8. display: flex;
  9. justify-content: space-between;
  10. color: #000;
  11. align-items: center;
  12. span:nth-child(1) {
  13. font-size: 22px;
  14. font-weight: bold;
  15. display: inline-block;
  16. //padding-left: 6px;
  17. //border-left: 4px solid #E7031C;
  18. }
  19. span:nth-child(2) {
  20. font-size: 12px;
  21. display: flex;
  22. align-items: center;
  23. text{
  24. &.iconfont{
  25. font-size: 15px;
  26. font-weight: 600;
  27. margin-left: 5px;
  28. }
  29. }
  30. }
  31. }
  32. .seckill-info{
  33. display: flex;
  34. align-items: center;
  35. margin-top: 10px;
  36. .left{
  37. width: 100px;
  38. height: 100px;
  39. image{
  40. width: 100%;
  41. height: 100%;
  42. }
  43. }
  44. .right{
  45. flex: 1;
  46. margin-left: 10px;
  47. overflow: hidden;
  48. .goods-name{
  49. overflow: hidden;
  50. text-overflow: ellipsis;
  51. white-space: nowrap;
  52. font-size: 16px;
  53. }
  54. .price-box {
  55. color: #e50303;
  56. font-size: 18px;
  57. .old{
  58. font-size: 12px;
  59. color: #9c9c9c;
  60. text-decoration: line-through;
  61. }
  62. &.free-money{
  63. font-size: 14px;
  64. color: #9C9C9C;
  65. display: flex;
  66. align-items: center;
  67. justify-content: space-between;
  68. .money{
  69. display: flex;
  70. align-items: center;
  71. .new {
  72. font-size: 18px;
  73. color: @globalColor;
  74. }
  75. .old{
  76. font-size: 10px;
  77. margin-left: 5px;
  78. text-decoration: line-through;
  79. }
  80. }
  81. }
  82. }
  83. .seckill-time{
  84. display: flex;
  85. align-items: flex-end;
  86. justify-content: space-between;
  87. .marketing-time-box {
  88. .seckill-item {
  89. text-align: left !important;
  90. color: #000 !important;
  91. .time-out {
  92. flex-direction: column;
  93. color: #000 !important;
  94. align-items: flex-start !important;
  95. .tiem {
  96. margin: 5px 0;
  97. .num-item {
  98. color: #ffffff !important;
  99. }
  100. }
  101. }
  102. }
  103. }
  104. .free{
  105. white-space: nowrap;
  106. overflow: hidden;
  107. text-overflow: ellipsis;
  108. flex: 1;
  109. }
  110. .buy{
  111. width: 70px;
  112. height: 25px;
  113. border-radius: 50px;
  114. color: #fff;
  115. background: @mainColor;
  116. font-size: 12px;
  117. line-height: 25px;
  118. text-align: center;
  119. }
  120. }
  121. }
  122. }
  123. }