prodIndex.css 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. .p-prods{
  2. width: 12.00rem;
  3. margin: 0.10rem auto;
  4. color:#464646;
  5. flex:1;
  6. }
  7. .p-prods .prod-cat{
  8. padding-left: 0.14rem;
  9. position: relative;
  10. height: 0.46rem;
  11. line-height: 0.46rem;
  12. font-size: 0.16rem;
  13. color: #5c5b5b;
  14. }
  15. .p-prods .prod-more{
  16. color:#10848F;
  17. font-size: 0.15rem;
  18. height: 0.40rem;
  19. line-height: 0.40rem;
  20. text-align: right;
  21. cursor: pointer;
  22. padding-right: 0.30rem;
  23. }
  24. .p-prods .prod-cat::before{
  25. position: absolute;
  26. content: '';
  27. z-index: 10;
  28. left: 0;
  29. top: 50%;
  30. transform: translateY(-50%);
  31. width: 3px;
  32. height: 0.18rem;
  33. background-color: #10848F;
  34. }
  35. .p-prods .prod-item{
  36. margin-right: 0.14rem;
  37. margin-bottom: 0.25rem;
  38. width: 2.88rem;
  39. border: 1px solid #10848F;
  40. overflow: hidden;
  41. padding-bottom: 15px;
  42. cursor: pointer;
  43. transition: 0.5s transform;
  44. }
  45. .p-prods .prod-item:hover{
  46. transform: scale(1.04);
  47. }
  48. .p-prods .prod-item:nth-child(4n){
  49. margin-right: 0;
  50. }
  51. .p-prods .prod-item .img{
  52. width: 2.90rem;
  53. height: 2.22rem;
  54. object-fit: cover;
  55. }
  56. .p-prods .prod-item .name{
  57. padding: 0 0.20rem;
  58. margin-top: 0.10rem;
  59. height: 0.36rem;
  60. width: 100%;
  61. line-height: 0.36rem;
  62. font-size: 0.20rem;
  63. font-family: PingFang SC;
  64. font-weight: 500;
  65. color: #333333;
  66. }
  67. .p-prods .prod-item .price-wrap{
  68. color:#FF0000;
  69. padding: 0 0.20rem;
  70. margin-top: 0.07rem;
  71. }
  72. .p-prods .prod-item .price-wrap .val{
  73. padding-left: 0.16rem;
  74. font-size: 0.26rem;
  75. position: relative;
  76. }
  77. .p-prods .prod-item .price-wrap .val::before{
  78. content: "¥";
  79. position: absolute;
  80. left: 0;
  81. bottom: 4px;
  82. font-size: 0.16rem;
  83. }