1
李凌
2025-09-06 b7eb749eb71ae802f9868e3b099aa362e23d7cc0
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
$main_background:#fff;
$text_color:#333;
$text_color1:#868C9A;
$text_color2:#B7BDD1;
$text_color3: #000000; // 
$tab_background:#F5F5F5;
$active_line:#1194F7;
$footer_background:#fff;
$btn_main: #1194F7;
$color_main: #1194F7;
$btn_background: #1194F7; //按钮颜色
$input_background: #F5F5F5;
$cont_background: #f6f6f6;
$title_color: #000;
$line_color:#E5E7ED;
$bg_dark:#C8CAD2;
$border_color:#E5E7ED;
$divi_line:#E5E7ED;
$bg_step:#E5E9F0;
$bg_Bottom: #fff;
$chat_bg:#E5E7ED;
$upload_bg: #f7f8fa;
$grey_bg:#E5E7ED;
$input_background1:#f5f5f5;
$c2c_color: #000;
$c2c_background:#1194F7;
$c2c_background1: #f5f5f5;
$c2c_tab_background: #fff;
$c2c_tip_background:#eff7ff;
 
.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;
}