index.wxss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. /* 新人专享 */
  2. .new-comers {
  3. position: relative;
  4. /* padding: 30rpx; */
  5. margin: 30rpx;
  6. /* background: linear-gradient(#fbf2e2, #fcf8f0); *//* border-radius: 5px; */
  7. }
  8. .new-comers-title {
  9. position: relative;
  10. margin-bottom: 20rpx;
  11. font-size: 30rpx;
  12. font-weight: bold;
  13. color: #333;
  14. padding-left: 20rpx;
  15. }
  16. .new-comers-title::before {
  17. content: "";
  18. position: absolute;
  19. top: 0;
  20. bottom: 0;
  21. left: 0;
  22. border-left: 8rpx solid #f75451;
  23. }
  24. .new-comers-scroll {
  25. max-height: 320rpx;
  26. }
  27. .new-comers-wrap {
  28. position: relative;
  29. display: flex;
  30. flex-direction: row;
  31. flex-wrap: nowrap;
  32. }
  33. .new-comers-item {
  34. /* background-color: #fff; */
  35. width: 240rpx;
  36. box-sizing: border-box;
  37. padding: 20rpx;
  38. /* border-radius: 4px; */
  39. font-size: 28rpx;
  40. /* margin-right: 14rpx; */
  41. }
  42. .new-comers-item .new-img {
  43. width: 200rpx;
  44. height: 180rpx;
  45. margin-bottom: 20rpx;
  46. }
  47. .new-comers-item .title {
  48. overflow: hidden;
  49. text-overflow: ellipsis;
  50. white-space: nowrap;
  51. }
  52. .new-comers-item .new-bot {
  53. display: flex;
  54. justify-content: space-between;
  55. align-items: center;
  56. margin-top: 10rpx;
  57. }
  58. .new-comers-item .add-cart {
  59. width: 44rpx;
  60. height: 44rpx;
  61. padding: 0;
  62. margin: 0;
  63. }
  64. .new-comers-item .add-cart .img {
  65. width: 44rpx;
  66. height: 44rpx;
  67. display: block;
  68. }
  69. .new-comers-item .price {
  70. color: #ff5041;
  71. }
  72. .new-comers-item {
  73. position: relative;
  74. }
  75. .new-comers-item .act-end {
  76. position: absolute;
  77. height: 60rpx;
  78. border-radius: 10rpx;
  79. background: rgba(0, 0, 0, 0.5);
  80. color: #fff;
  81. font-size: 28rpx;
  82. text-align: center;
  83. line-height: 60rpx;
  84. left: 50%;
  85. top: 80rpx;
  86. padding: 0 12rpx;
  87. transform: translateX(-50%);
  88. }