@font-face {
    font-family: 'Alata';
    src: url('/fonts/Alata-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

*{
    margin: 0;
    padding: 0;
}

:root {
    --font-family: 'Alata', sans-serif;
    --width: 1920px;
    --height: 1080px;

    /* 品牌色 */
    --primary-color: #0BCA73;
    --primary-hover-color: #09A85F;
    --primary-soft: rgba(11, 202, 115, 0.1);

    /* 文本色 */
    --color-text: #000000;
    --color-text-secondary: rgba(0, 0, 0, 0.55);
    --color-text-muted: rgba(0, 0, 0, 0.4);
    --color-text-faint: rgba(0, 0, 0, 0.28);
    --color-text-watermark: rgba(0, 0, 0, 0.12);
    --color-text-inverse: #ffffff;
    --color-text-inverse-secondary: rgba(255, 255, 255, 0.7);
    --color-text-inverse-muted: rgba(255, 255, 255, 0.4);
    --color-text-inverse-faint: rgba(255, 255, 255, 0.2);

    /* 背景 / 边框 */
    --color-bg-page: #F9F9F9;
    --color-bg-surface: #ffffff;
    --color-bg-muted: #F6F6F6;
    --color-bg-dark: #000000;
    --color-border: rgba(0, 0, 0, 0.12);

    /* 状态色 */
    --color-danger: #f56c6c;
    --color-info: #4A90E2;
    --color-warning-bg: #FFF8E8;
    --color-warning-text: #8A6A1A;
    --color-notice-bg: #EAF4FF;
    --color-notice-text: #2F6AA8;

    /* 字号阶梯：12 / 14 / 16 / 18 / 20 / 24 / 32 / 40 / 50 / 80 */
    --font-xs: 12px;
    --font-sm: 14px;
    --font-md: 16px;
    --font-lg: 18px;
    --font-xl: 20px;
    --font-2xl: 24px;
    --font-3xl: 32px;
    --font-4xl: 40px;
    --font-5xl: 50px;
    --font-hero: 80px;
}

/* 1090 * 1080 */
/* 2560 * 1430 */
html,
body {
    font-family: var(--font-family);
    font-size: var(--font-md);
    color: var(--color-text);
    margin: 0 auto;
    overflow-x: hidden;
    position: relative;
    background: var(--color-bg-surface);
}

button,
input,
select,
textarea {
    font-family: inherit;
}

a{
    text-decoration: none;
    cursor: pointer;
}

.app-container{
    width: 1600px;
    margin: 0 auto;
}

#app{
    background: var(--color-bg-surface);
    width: var(--width);
    overflow: hidden;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}