
        
        picture.item.get_product {
            display: flex;
            align-items: center;
            justify-content: center;

            height: 150px;       /* 你要固定的高度 */
            width: 100%;         /* RWD 自動撐滿 */
        }

        picture.item.get_product img {
            height: 100%;        /* 只固定高度 */
            width: auto;         /* 寬度自動算 → 不變形 */
            object-fit: cover; /* 或 cover */
            object-position: center;
        }

        @media (min-width:768px){
          picture.item.get_product { height: 250px; }
        }

        @media (min-width: 992px) {
          picture.item.get_product { height: 300px; }
        }

        