<!DOCTYPE html>
<html>
<head>
<title></title>
<style type="text/css">
div{
border: 3px solid red;
width: 150px;
height: 50px;
text-align: center;
background-color: #AAA;
position: relative;
left: 100px;
top: 100px;
border-radius: 10px;
}
div:hover{
background-color: red;
box-shadow: 2px 2px 10px purple,-2px 2px 10px purple,2px -2px 10px purple,2px 2px -10px purple;
transition: 2s;
}
a{
font-size: 20px;
color: red;
}
a:hover{
color: black;
}
</style>
</head>
<body>
<div><a href="http://www.baidu.com" name="" style="text-decoration: none;">点击转换</a></div>
</body>
</html>