zhou zhou
12 小时以前 46d872c1a5b77aa8799de4a64888a0a24a1422d6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
@reference '@styles/core/tailwind.css';
 
/* 授权页右侧区域 */
.auth-right-wrap {
  @apply absolute inset-0 w-[440px] h-[650px] py-[5px] m-auto overflow-hidden
    max-sm:px-7 max-sm:w-full
    animate-[slideInRight_0.6s_cubic-bezier(0.25,0.46,0.45,0.94)_forwards]
    max-md:animate-none;
 
  .form {
    @apply h-full py-[40px];
  }
 
  .title {
    @apply text-g-900 text-4xl font-semibold max-md:text-3xl max-sm:pt-10;
  }
 
  .sub-title {
    @apply mt-[10px] text-g-600 text-sm;
  }
 
  .custom-height {
    @apply !h-[40px];
  }
}
 
/* 滑入动画 */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
 
  to {
    opacity: 1;
    transform: translateX(0);
  }
}