You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
@tailwind base;
|
|
|
|
|
@tailwind components;
|
|
|
|
|
@tailwind utilities;
|
|
|
|
|
|
|
|
|
|
html, body {
|
|
|
|
|
height: 100%;
|
|
|
|
|
margin: 0;
|
|
|
|
|
font-family: Inter, "Source Han Sans", Arial, sans-serif;
|
|
|
|
|
background: #f6f8fc;
|
|
|
|
|
color: #1e2a3f;
|
|
|
|
|
line-height: 1.6;
|
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
|
-webkit-tap-highlight-color: transparent;
|
|
|
|
|
overflow-x: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 640px) {
|
|
|
|
|
html {
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
* {
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Henggan specific styles */
|
|
|
|
|
:root {
|
|
|
|
|
--bg: #f6f8fc;
|
|
|
|
|
--card: #ffffff;
|
|
|
|
|
--gold: #0f3c88;
|
|
|
|
|
--muted: #5b6a86;
|
|
|
|
|
--glass: rgba(15, 60, 136, 0.06);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|