跳转到内容

购物车

您的购物车为空

购物车

您的购物车为空

继续购物
/* styling blog layout */ .style-grid{ display:grid; grid-template-columns:1fr 1fr; gap:60px; margin-bottom:60px; } .style-column{ display:flex; flex-direction:column; gap:24px; } .style-item{ display:flex; gap:16px; align-items:flex-start; } .style-item img{ width:90px; min-width:90px; } .style-brand{ font-size:13px; margin-bottom:4px; } .style-name{ font-size:24px; line-height:1.4; margin-bottom:4px; } .style-price{ color:#999; font-size:13px; } .style-title{ color:#ff4fb3; font-size:32px; margin-bottom:40px; font-weight:600; } /* smartphone */ @media screen and (max-width:768px){ .style-grid{ grid-template-columns:1fr; gap:24px; } .style-name{ font-size:16px; } .style-title{ font-size:24px; } }