zhengyiming
2025-07-10 f459982d1fe3ad4bfe97658ed9587c92b7e0f09a
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
// @import '~antd/lib/style/themes/default.less';
@import '~antd/lib/style/index.less';
 
@line-color: #e9e9e9;
 
@shadow-color: rgba(0, 0, 0, 0.15);
 
@bottom-bar-bg-color: #262626;
@bottom-bar-line-color: #000;
 
@template-bg-color: #001529;
@template-bg-color-light: #ececec;
@template-nav-bg-color: #001529;
@template-text-color: #ccc;
@template-text-title-color: #bcbcbc;
@template-text-color-light: #fff;
@template-footer-text-color: #999;
 
@animate-duration: 0.45s;
 
/* 详细页图片或框框的样式;
*/
.page-shadow() {
  box-shadow: 0 5px 8px @shadow-color;
}
 
.page-pro() {
  border-radius: 6px;
  border: 1px solid @line-color;
  transform: translateY(0);
  transition: transform 0.3s @ease-out, box-shadow 0.3s @ease-out;
  &:hover {
    .page-shadow();
    transform: translateY(-5px);
  }
}