| 1 |
.usk-product-list .usk-list-wrap { |
| 2 |
gap: clamp(20px, 2vw, 30px); |
| 3 |
} |
| 4 |
.usk-product-list .usk-item { |
| 5 |
position: relative; |
| 6 |
padding: clamp(10px, 1vw, 15px); |
| 7 |
border: 1px solid #d5d8dc; |
| 8 |
border-radius: 8px; |
| 9 |
} |
| 10 |
.usk-product-list .usk-item-box { |
| 11 |
height: 100%; |
| 12 |
} |
| 13 |
.usk-product-list .usk-image-wrap { |
| 14 |
width: clamp(100px, 10vw, 170px); |
| 15 |
min-width: clamp(100px, 10vw, 170px); |
| 16 |
height: 100%; |
| 17 |
border-radius: 8px; |
| 18 |
overflow: hidden; |
| 19 |
} |
| 20 |
.usk-product-list .usk-image-wrap img { |
| 21 |
width: 100%; |
| 22 |
height: 100%; |
| 23 |
object-fit: cover; |
| 24 |
} |
| 25 |
.usk-product-list .usk-content { |
| 26 |
height: 100%; |
| 27 |
width: 100%; |
| 28 |
padding: clamp(10px, 1.5vw, 20px); |
| 29 |
} |
| 30 |
.usk-product-list .usk-title { |
| 31 |
color: #2b2d42; |
| 32 |
transition: all 0.3s cubic-bezier(0.18, 0.43, 0.58, 1); |
| 33 |
} |
| 34 |
.usk-product-list .usk-title .title { |
| 35 |
font-size: clamp(18px, 1vw, 24px); |
| 36 |
font-weight: 700; |
| 37 |
line-height: 1.4; |
| 38 |
margin-top: 0; |
| 39 |
margin-bottom: clamp(10px, 1vw, 15px); |
| 40 |
color: inherit; |
| 41 |
} |
| 42 |
.usk-product-list .usk-item .usk-rating { |
| 43 |
display: inline-flex; |
| 44 |
margin-bottom: clamp(10px, 1vw, 15px); |
| 45 |
} |
| 46 |
.usk-product-list .usk-item .usk-rating .star-rating { |
| 47 |
margin-top: 0; |
| 48 |
} |
| 49 |
.usk-product-list .usk-price { |
| 50 |
color: #ff2e00; |
| 51 |
font-weight: 500; |
| 52 |
font-size: clamp(12px, 1vw, 14px); |
| 53 |
} |
| 54 |
.usk-product-list .usk-price del { |
| 55 |
color: #abafb4; |
| 56 |
} |
| 57 |
.usk-product-list .usk-price ins { |
| 58 |
text-decoration: none; |
| 59 |
padding-left: 10px; |
| 60 |
} |
| 61 |
.usk-product-list .usk-badge-label-wrapper { |
| 62 |
display: none; |
| 63 |
position: absolute; |
| 64 |
top: clamp(10px, 1vw, 15px); |
| 65 |
right: clamp(10px, 1vw, 15px); |
| 66 |
} |
| 67 |
.usk-product-list .usk-badge { |
| 68 |
border-radius: 4px; |
| 69 |
} |
| 70 |
|
| 71 |
@media (min-width: 768px) { |
| 72 |
.usk-product-list .usk-badge-label-wrapper { |
| 73 |
display: inherit; |
| 74 |
} |
| 75 |
} |