28 lines
512 B
CSS
28 lines
512 B
CSS
/* 找回密码页只保留单页装饰,公共认证卡片样式在 public.css */
|
|
.recover-card {
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.recover-card:before {
|
|
content: "";
|
|
position: absolute;
|
|
right: -80px;
|
|
top: -90px;
|
|
width: 220px;
|
|
height: 220px;
|
|
border-radius: 50%;
|
|
background: radial-gradient(circle, rgba(200, 59, 50, .13), transparent 64%);
|
|
}
|
|
|
|
.recover-card > * {
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
|
|
@media (max-width: 620px) {
|
|
.code-row {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|