index.module.css
2.95 KB
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
/* Hero / Search Section */
.hero {
background: #f0f1f4;
padding: 80px 16px 60px;
text-align: center;
}
.heroInner {
max-width: 600px;
margin: 0 auto;
}
.heroTitle {
font-size: 28px;
font-weight: 400;
color: #323232;
margin-bottom: 32px;
}
.searchWrap {
position: relative;
max-width: 600px;
margin: 0 auto;
}
.searchIcon {
position: absolute;
left: 18px;
top: 50%;
transform: translateY(-50%);
color: #666;
pointer-events: none;
}
.searchInput {
width: 100%;
height: 56px;
border-radius: 99px;
border: 0.8px solid #d9d9d9;
background: #fff;
padding: 0 20px 0 50px;
font-size: 16px;
color: #595959;
outline: none;
cursor: pointer;
box-sizing: border-box;
}
.searchInput:focus {
border-color: #166bff;
box-shadow: 0 0 0 2px rgba(22,107,255,0.1);
}
.searchInput::placeholder {
color: #999;
}
/* Categories Grid */
.categories {
background: #fff;
padding: 48px 16px;
}
.categoriesInner {
max-width: 900px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 0;
}
/* Category Card */
.categoryCard {
padding: 28px 16px;
border-bottom: 0.8px solid #e8e8e8;
}
.categoryCard:nth-child(odd) {
padding-left: 0;
padding-right: 32px;
}
.categoryCard:nth-child(even) {
padding-left: 32px;
padding-right: 0;
border-left: 0.8px solid #e8e8e8;
}
.categoryTitle {
font-size: 18px;
font-weight: 500;
color: #323232;
margin: 0 0 8px 0;
padding-bottom: 10px;
border-bottom: 0.8px solid #e8e8e8;
}
.categoryTitle a {
color: #323232;
text-decoration: none;
}
.categoryTitle a:hover {
color: #166bff;
}
.categoryDesc {
font-size: 14px;
color: #666;
margin: 10px 0 8px;
line-height: 1.5;
}
.categoryList {
list-style: none;
padding-left: 0;
margin: 0;
}
.categoryList li {
font-size: 15px;
color: #666;
line-height: 22px;
padding: 3px 0;
}
.categoryList li a {
color: #666;
text-decoration: none;
transition: color 0.15s;
}
.categoryList li a:hover {
color: #166bff;
}
.moreLink a {
color: #166bff;
}
/* Need Support Section */
.support {
background: #f0f1f4;
padding: 56px 16px;
text-align: center;
}
.supportInner {
max-width: 600px;
margin: 0 auto;
}
.supportTitle {
font-size: 22px;
font-weight: 600;
color: #323232;
margin: 0 0 12px;
}
.supportDesc {
font-size: 15px;
color: #666;
margin: 0 0 24px;
}
.supportBtn {
display: inline-block;
background: #666;
color: #fff;
font-size: 13px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
padding: 12px 28px;
border-radius: 99px;
text-decoration: none;
transition: background 0.2s;
}
.supportBtn:hover {
background: #166bff;
color: #fff;
}
/* Responsive */
@media (max-width: 768px) {
.categoriesInner {
grid-template-columns: 1fr;
}
.categoryCard:nth-child(odd),
.categoryCard:nth-child(even) {
padding-left: 0;
padding-right: 0;
border-left: none;
}
.hero {
padding: 48px 16px 36px;
}
.heroTitle {
font-size: 22px;
}
}