index.wxss 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. /* Snailfish_shop/pages/spike/index.wxss */
  2. page {
  3. background-color: #fff;
  4. }
  5. .spike_nav {
  6. background-color: #434343;
  7. text-align: center;
  8. color: #fff;
  9. }
  10. .spike_nav_item {
  11. position: relative;
  12. padding-top: 15rpx;
  13. padding-bottom: 10rpx;
  14. box-sizing: border-box;
  15. }
  16. .like-tip,.loading,.nomore {
  17. text-align: center;
  18. margin: 20rpx 0;
  19. font-size: 26rpx
  20. }
  21. .spike_nav_item.active {
  22. background-color: #ff5777;
  23. }
  24. .spike_nav_item.active::after {
  25. content: "";
  26. position: absolute;
  27. top: 100%;
  28. left: 50%;
  29. width: 0;
  30. height: 0;
  31. border-width: 14rpx;
  32. border-style: solid;
  33. border-color: #ff5777 transparent transparent transparent;
  34. margin-left: -7rpx;
  35. }
  36. .nav_title {
  37. font-size: 30rpx;
  38. font-weight: bold;
  39. }
  40. .nav_subtitle {
  41. font-size: 22rpx;
  42. }
  43. .spike_list {
  44. padding: 50rpx 25rpx 0;
  45. }
  46. .spike_item {
  47. position: relative;
  48. padding-bottom: 28rpx;
  49. margin-bottom: 28rpx;
  50. }
  51. .spike_item::after {
  52. content: "";
  53. position: absolute;
  54. bottom: 0;
  55. left: 0;
  56. right: 0;
  57. height: 1px;
  58. border-bottom: 1px solid #e5e5e5;
  59. transform-origin: 0 0;
  60. transform: scaleY(.5);
  61. }
  62. .spike_item .s-flex-item {
  63. position: relative;
  64. min-width: 0;
  65. }
  66. .spike_item_image {
  67. width: 220rpx;
  68. margin-right: 28rpx;
  69. }
  70. .spike_item_image image {
  71. width: 100%;
  72. }
  73. .spike_item_title {
  74. font-size: 28rpx;
  75. color: #333;
  76. overflow:hidden;
  77. text-overflow:ellipsis;
  78. white-space:nowrap;
  79. }
  80. .spike_item_desc {
  81. display: block;
  82. font-size: 26rpx;
  83. color: #999;
  84. overflow:hidden;
  85. text-overflow:ellipsis;
  86. white-space:nowrap;
  87. margin-top: 14rpx;
  88. }
  89. .spike_item_spec {
  90. display: block;
  91. font-size: 22rpx;
  92. color: #999;
  93. overflow:hidden;
  94. text-overflow:ellipsis;
  95. white-space:nowrap;
  96. margin-top: 14rpx;
  97. }
  98. .spike_item_price,.spike_item_btn {
  99. position: absolute;
  100. }
  101. .spike_item_price {
  102. left: 0;
  103. bottom: 0;
  104. }
  105. .spike_offer_price {
  106. color: #ff5777;
  107. font-size: 34rpx;
  108. font-weight: bold;
  109. }
  110. .spike_origin_price {
  111. font-size: 24rpx;
  112. text-decoration:line-through;
  113. color:#999;
  114. margin-left: 8rpx;
  115. }
  116. .spike_item_btn {
  117. right: 0;
  118. bottom: -20rpx;
  119. width: 152rpx;
  120. margin: 15rpx auto;
  121. height: 50rpx;
  122. line-height: 50rpx;
  123. border-radius: 25rpx;
  124. background-color: #ff5777;
  125. color: #fff;
  126. font-size: 24rpx;
  127. text-align: center;
  128. }
  129. .sale-out {
  130. background-color: #e5e5e5;
  131. color: #999;
  132. }
  133. .remind {
  134. background-color: #f7da49;
  135. color: #000;
  136. }