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.
43 lines
967 B
43 lines
967 B
/* 设计变量(tokens) */
|
|
|
|
:root {
|
|
/* padding-x */
|
|
--p-x: 16.25rem;
|
|
/* 基准:1rem = 16px(由 01-base.css 的 html font-size 决定) */
|
|
|
|
/* Layout */
|
|
--page-max: 120rem; /* 1920px */
|
|
--header-h: 8.0625rem; /* 129px */
|
|
--gutter-x: 3.75rem; /* 60px */
|
|
|
|
/* Colors */
|
|
--color-white: #ffffff;
|
|
/* 蓝色主色 */
|
|
--color-blue-80: #204d79;
|
|
--color-blue-30: #c9d5df;
|
|
/* #FFEFE1 */
|
|
--color-primary-10: #ffeefe;
|
|
/* 橙色主色 */
|
|
--color-primary: #CC261F;
|
|
/* 橙色主色 hover */
|
|
--color-primary-hover: #b30600;
|
|
--color-secondary-hover:#386C9E;
|
|
--color-blue-90: #143a63;
|
|
--color-blue-100: #0c2d5c;
|
|
--color-text: #11304f;
|
|
--color-text-muted: #6b7a8a;
|
|
--color-line: #e8eaed;
|
|
|
|
/* 搜索框 */
|
|
--color-search-bg: #e7ebef;
|
|
--color-grey-placeholder: #8f96a3;
|
|
--color-search-border: #d0d5dc;
|
|
|
|
/* Radius */
|
|
--radius-sm: 0.5rem;
|
|
--radius-md: 1rem;
|
|
--radius-lg: 1.5rem;
|
|
|
|
--transition-ease: all 0.3s ease;
|
|
}
|
|
|