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

111 lines
2.2 KiB

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