groupbuying.wxss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. .goodslist_boxs {
  2. margin: 0rpx 30rpx;
  3. width: calc(100% - 60rpx);
  4. }
  5. .search-bar {
  6. width: calc(100% - 50rpx);
  7. position: relative;
  8. display: flex;
  9. align-items: center;
  10. background-color: #fff;
  11. border: 1rpx solid #dcdfe6;
  12. border-radius: 12rpx;
  13. padding: 16rpx 20rpx;
  14. }
  15. .search-bar input {
  16. flex: 1;
  17. height: 100%;
  18. padding-right: 60rpx;
  19. font-size: 32rpx;
  20. border: none;
  21. background: transparent;
  22. }
  23. .search-icon {
  24. position: absolute;
  25. right: 20rpx;
  26. width: 45rpx;
  27. height: 45rpx;
  28. }
  29. .title_1 {
  30. font-size: 38rpx;
  31. font-weight: bold;
  32. color: #333333;
  33. margin: 20rpx 0;
  34. }
  35. .category-tabs {
  36. display: flex;
  37. justify-content: space-between;
  38. margin-bottom: 20rpx;
  39. }
  40. .category-tab {
  41. padding: 13rpx 20rpx;
  42. font-size: 26rpx;
  43. color: #666;
  44. border-radius: 25rpx;
  45. }
  46. .category-tab.active {
  47. color: #409eff;
  48. background: #ecf5ff;
  49. border: 1rpx solid #d9ecff;
  50. }
  51. .goods-list {
  52. display: flex;
  53. flex-wrap: wrap;
  54. gap: 20rpx;
  55. }
  56. .goods-item {
  57. width: calc(50% - 10rpx);
  58. background-color: #fff;
  59. border-radius: 10rpx;
  60. overflow: hidden;
  61. }
  62. .goods-image {
  63. width: 100%;
  64. height: 300rpx;
  65. }
  66. .goods-info {
  67. padding: 6rpx 20rpx 20rpx 20rpx;
  68. }
  69. .goods-title {
  70. font-size: 32rpx;
  71. color: #333;
  72. margin-bottom: 10rpx;
  73. }
  74. .goods-price {
  75. font-size: 34rpx;
  76. color: #ff5722;
  77. }
  78. .original-price {
  79. font-size: 28rpx;
  80. color: #999;
  81. text-decoration: line-through;
  82. margin-left: 10rpx;
  83. }
  84. .goods-status {
  85. font-size: 28rpx;
  86. color: #666;
  87. margin-top: 10rpx;
  88. float: right;
  89. }
  90. .gw_boxs {
  91. width: 100%;
  92. display: flex;
  93. justify-content: space-between;
  94. margin-top: 20rpx;
  95. }
  96. /* .gw_imgboxs {
  97. width: 30%;
  98. } */
  99. .gw_button {
  100. width: 100%;
  101. }
  102. .buy-button {
  103. width: 100% !important;
  104. height: 70rpx;
  105. background-color: #007aff;
  106. color: #fff;
  107. font-size: 28rpx;
  108. border-radius: 40rpx;
  109. text-align: center;
  110. }