Home
/
Ofertas relámpago
Ofertas relámpago
Clear all
/* 1. 隐藏原来的“登录”图标(右上角小人) */ a[href*="/account/login"] { display: none !important; } /* 2. 选中第一个 /search 链接,把它变成右上角的搜索图标 */ a[href*="/search"]:first-of-type { position: fixed; /* 固定在顶部 */ top: 18px; /* 垂直位置,按需微调 */ right: 72px; /* 水平位置,按需微调,让它在购物车左边 */ z-index: 9999; font-size: 0; /* 隐藏“搜索”文字 */ } /* 放大镜图标样式 */ a[href*="/search"]:first-of-type::before { content: "🔍"; /* 放大镜 Emoji */ font-size: 22px; line-height: 1; } /* 鼠标 / 手指交互效果 */ a[href*="/search"]:first-of-type:hover::before { opacity: 0.8; }