登录 注册
扫码登录
/* ===== 验证码高亮 ===== */ #verifycode{ border: 2px solid #00f2fe; border-radius: 6px; box-shadow: 0 0 10px #00f2fe, inset 0 0 5px #00f2fe; transition: transform .2s; } #verifycode:hover{ transform: scale(1.08); /* 悬停略放大 */ box-shadow: 0 0 15px #00f2fe; } /* 点击刷新后短暂闪烁提醒 */ #verifycode:active{ animation: pulse .4s; } @keyframes pulse{ 0% { box-shadow: 0 0 10px #00f2fe; } 50% { box-shadow: 0 0 20px #fff; } 100%{ box-shadow: 0 0 10px #00f2fe; } }