.icon{
    width: 44px;           /* 和頭貼一樣大小 */
    height: 44px;          /* 和頭貼一樣大小 */
    border-radius: 50%;
    border: 2px solid #fff; /* 和頭貼一樣邊框 */
    cursor: pointer;
    position: absolute;
    left: 0px;            /* 和頭貼一樣的左邊距 */
    top: 240%;             /* 在頭貼正下方 */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .25s ease, box-shadow .25s ease; /* 和頭貼一樣動畫 */
    z-index: 100;
    
    /* 背景改成圖片容器，和頭貼一樣 */
    overflow: hidden;
}
    .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;     /* 和頭貼一樣 */
    display: block;
}

/* 懸停效果和頭貼完全一樣 */
.icon:hover { 
    transform: translateY(-6px) scale(1.05); 
    box-shadow: 0 12px 28px rgba(0,0,0,.18);
}

.icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    border-radius: 8px;
}