去掉o冒号。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="">
<style>
.day{
background-color: hotpink;
color: black;
font-size: 70px;
transition: all linear 0.5s;
}
.day:hover{
width: 1000px;
height: 100px;
background-color: rgb(105, 255, 173);
color: rgba(0, 0, 0, 0.315);
font-size: 80px;
}
.week{
background-color: hotpink;
color: black;
font-size: 70px;
transition: all linear 0.5s;
}
.week:hover{
width: 700px;
height: 100px;
background-color: rgb(105, 255, 173);
color: rgba(0, 0, 0, 0.315);
font-size: 80px;
}
.time{
background-color: hotpink;
color: black;
font-size: 70px;
transition: all linear 0.5s;
}
.time:hover{
width: 700px;
height: 100px;
background-color: rgb(105, 255, 173);
color: rgba(0, 0, 0, 0.315);
font-size: 80px;
}
.time:active{
width: 90px;
background-color: greenyellow;
color: brown;
font-size: 90px;
}
</style>
</head>
<body>
<div class="day">今天是2022年1月25日</div>
<div class="week">星期二</div>
<div class="time">下午</div>
</body>
</html>