Files
2025-07-07 16:05:18 +08:00

50 lines
881 B
SCSS

.container {
padding: 0 16px 24px;
.swiper {
margin: 14px 0 18px;
}
.title {
margin: 14px 0 15px;
}
.sizeList {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
column-gap: 8px;
row-gap: 14px;
.sizeCard {
display: flex;
flex-direction: column;
align-items: center;
row-gap: 4px;
height: 214px;
padding: 15px 8px 16px;
box-sizing: border-box;
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.15);
.sizeName {
font-size: 18px;
font-weight: 700;
line-height: 26px;
}
.sizeImg {
width: 100%;
height: 100%;
margin-top: 16px;
margin-bottom: 4px;
word-break: break-all;
font-size: 14px;
}
.btnWrapper {
width: 100%;
padding: 0 16px;
box-sizing: border-box;
.download {
column-gap: 5px;
height: 30px;
width: 100%;
font-size: 14px;
}
}
}
}
}