2023-06-07 23:10:02 +08:00
|
|
|
@font-face {
|
2023-06-08 07:06:27 +08:00
|
|
|
font-family: "Inter";
|
|
|
|
src: url('fonts/Inter-VariableFont_slnt,wght.ttf') format('truetype');
|
2023-06-07 23:10:02 +08:00
|
|
|
}
|
2023-01-06 17:43:30 +08:00
|
|
|
|
|
|
|
@min768: ~"(min-width: 768px)";
|
|
|
|
@min992: ~"(min-width: 992px)";
|
|
|
|
|
2023-06-10 21:38:52 +08:00
|
|
|
// https://typescale.com/?size=17&scale=1.250&text=Abc&font=Inter&fontweight=800&bodyfont=body_font_default&bodyfontweight=400&lineheight=1.75&backgroundcolor=%23ffffff&fontcolor=%23000000&preview=false
|
2023-06-08 07:06:27 +08:00
|
|
|
html {
|
|
|
|
font-size: 103%;
|
|
|
|
} /*18px*/
|
2023-01-06 17:43:30 +08:00
|
|
|
|
2023-06-08 07:06:27 +08:00
|
|
|
body {
|
|
|
|
font-family: Inter, sans-serif;
|
|
|
|
font-weight: 400;
|
|
|
|
line-height: 1.75;
|
|
|
|
font-size: 100%;
|
2023-01-06 17:43:30 +08:00
|
|
|
}
|
|
|
|
|
2023-06-08 07:06:27 +08:00
|
|
|
p {
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
}
|
2023-01-06 17:43:30 +08:00
|
|
|
|
2023-06-08 07:06:27 +08:00
|
|
|
h1, h2, h3, h4, h5 {
|
|
|
|
// margin: 3rem 0 1.38rem;
|
|
|
|
font-family: Inter, sans-serif;
|
|
|
|
font-weight: 800;
|
|
|
|
line-height: 1.3;
|
2023-01-06 17:43:30 +08:00
|
|
|
}
|
|
|
|
|
2023-06-08 07:06:27 +08:00
|
|
|
h1 {
|
|
|
|
margin-top: 0;
|
|
|
|
font-size: 3.052rem;
|
|
|
|
}
|
2023-01-06 17:43:30 +08:00
|
|
|
|
2023-06-08 07:06:27 +08:00
|
|
|
h2 {
|
|
|
|
font-size: 2.441rem;
|
|
|
|
}
|
2023-01-06 17:43:30 +08:00
|
|
|
|
2023-06-08 07:06:27 +08:00
|
|
|
h3 {
|
|
|
|
font-size: 1.953rem;
|
2023-01-06 17:43:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
h4 {
|
2023-06-08 07:06:27 +08:00
|
|
|
font-size: 1.563rem;
|
|
|
|
font-weight: 500;
|
2023-01-06 17:43:30 +08:00
|
|
|
}
|
|
|
|
|
2023-04-21 20:10:34 +08:00
|
|
|
h5 {
|
2023-06-08 07:06:27 +08:00
|
|
|
font-size: 1.25rem;
|
|
|
|
font-weight: 500;
|
2023-04-21 20:10:34 +08:00
|
|
|
}
|
|
|
|
|
2023-06-08 07:06:27 +08:00
|
|
|
small, .text_small {font-size: 0.8rem;}
|
|
|
|
|
|
|
|
ul.checks {
|
|
|
|
list-style: none;
|
|
|
|
padding-inline-start: 0;
|
2023-06-07 21:52:42 +08:00
|
|
|
}
|
|
|
|
|
2023-06-08 07:06:27 +08:00
|
|
|
ul.checks li:before {
|
|
|
|
content: '✓';
|
|
|
|
color: #1890ff;
|
|
|
|
padding-right: 1rem;
|
2023-06-07 23:10:02 +08:00
|
|
|
}
|
|
|
|
|
2023-01-06 17:43:30 +08:00
|
|
|
hr {
|
|
|
|
height: 2px;
|
|
|
|
width:30%;
|
|
|
|
background-color:#1890ff;
|
|
|
|
border-width: 0;
|
|
|
|
}
|
2023-06-01 15:08:05 +08:00
|
|
|
|
|
|
|
// marquee component
|
|
|
|
@keyframes marquee {
|
|
|
|
0% {
|
|
|
|
transform: translate3d(0%, 0, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
100% {
|
|
|
|
transform: translate3d(-100%, 0, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.marqueelogo {
|
|
|
|
height: 40px;
|
|
|
|
padding-right: 5.4rem;
|
|
|
|
filter: grayscale(100%) opacity(40%);
|
|
|
|
}
|