lxf
2025-07-02 7a52988eb65d0e50cc56e9da8e0088dfc5f9e416
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
$main_background:#fff; //主题色
$text_color:#333;  //文字颜色
$text_color1:#868D9A;  //文字浅色
$text_color2:#B7BDD1;  // 资金页面所用对应
$text_color3:#CFD5EC;  // 
$tab_background:#fff; //tab切换背景颜色
$active_line:#1194F7;  //tab选中样式颜色
$footer_background:#252738;  // 底部颜色
$btn_main: #1194F7;   //主题色按钮
$color_main:#1194F7;   //主题色文字
$btn_background:#474B62;  //按钮颜色
$input_background:#27293B; //input背景颜色
$cont_background:#27293B;  //title背景色
$title_color:#B8BDC5;
$line_color: #393E49;
$bg_dark: #474B62;
$border_color: #474B62;
$divi_line: #151726; //分割线
$bg_step: #868D9A;
$bg_Bottom:#313346;
$chat_bg: #474B62;
$upload_bg:#474B62;
$grey_bg: #474B62;
$input_background1: #131a2e; //质押借币input
$c2c_color: #fff;
$c2c_background: #131a2e;
$c2c_background1: #27293B;
$c2c_tab_background:#27293B;
$c2c_tip_background: #131a2e;
 
 
.mainBackground{
    background: $main_background;
}
.textColor{color:$text_color}
.textColor1{color:$text_color1}
.textColor2{color:$text_color2}
.textColor3{color:$text_color3}
.c2cColor{color:$c2c_color}
.tabBackground{
    background: $tab_background;
}
.activeLine{
    background: $active_line;
}
.bgFooter{
    background: $footer_background;
}
.btnMain{
    background: $btn_main;
}
.colorMain{
    color: $color_main;
}
.borderMain {
    border: 1px solid $color_main;
}
.borderColor {
    border: 1px solid $border_color;
}
.btnBackground{
    background: $btn_background;
}
.inputBackground{
    background: $input_background;
}
.inputBackground1{
    background: $input_background1;
}
.contBackground{
    background:$cont_background;
}
.titleColor{
    color: $title_color;
}
.border-b-color{
    border-bottom: 1px solid $line_color;
}
.border-t-color {
    border-top: 1px solid $line_color;
}
.bgDark {
    background: $bg_dark;
}
.diviLine{
    background: $divi_line;
}
.bgStep{
    background: $bg_step;
}
.bgBottom{
    background: $bg_Bottom;
}
.chatBg{
    background: $chat_bg;
}
.uploadBg {
    background: $upload_bg;
}
.greyBg {
    background: $grey_bg;
}
.c2cBackground {
    background: $c2c_background;
}
.c2cBackground1 {
    background: $c2c_background1;
}
.c2cTabBackground {
    background: $c2c_tab_background;
}
.c2cTipBackground{
    background: $c2c_tip_background;
}