.has-new-icon-cn {
position: relative;
}

/* 2. 利用 ::after 產生一個虛擬元素 */
.has-new-icon-cn::after {
content: ""; /* 必須要有 content，就算係空嘅 */
position: absolute;

/* 設定呢個虛擬元素嘅大細 (即係你想要張圖顯示幾大) */
width: 40px;
height: 40px;

/* 載入你張 test.jpg */
background-image: url('../images/新.png');
background-size: contain; /* 確保張圖按比例縮放放入 40x40 嘅格入面 */
background-repeat: no-repeat;
background-position: center;

/* 同上面一樣嘅定位技巧 */
right: 10px;
bottom: -20px; /* 控制凸出嘅幅度 */
z-index: 99;
}
