
:root {
    --primary: #0086ff;
    --primary-light: #e8f3ff;
    --primary-dark: #0465b9;

    --secondary: #1677ff;
    --secondary-light: #e8f3ff;
    --secondary-dark: #0958d9;

    --success: #00b42a;
    --success-light: #e6ffea;
    --warning: #ff7d00;
    --warning-light: #fff7e6;
    --danger: #ff4d4f;
    --danger-dark:#e13a3d;
    --danger-light: #fff1f0;

    --text-primary: #1d2129;
    --text-regular: #4e5969;
    --text-secondary: #86909c;
    --text-placeholder: #c9cdd4;

    --white: #ffffff;
    --color-alipay: #00a0e9;
    --color-wechat: #00b15b;
    --color-usdt: #26a17b; 


    --bg-page: #F5FAFF;
    --bg-card: #ffffff;
    --bg-hover: #f5f7fa;
    --bg-tag:#ffbb00;
    --bg-glass: rgba(255, 255, 255, 0.7);

    --border: #e5e6eb;
    --border-light: #f2f3f5;

    --radius: 1em;
    --shadow-sm: 0 2px 8px rgba(22, 93, 255, 0.06);
    --shadow-md: 0 4px 20px rgba(22, 93, 255, 0.08);
    --shadow-lg: 0 8px 30px rgba(22, 93, 255, 0.1);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", sans-serif, Arial;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-size: 1.4rem;
    color: var(--text-regular);
    line-height: 2;
    background-color: var(--bg-page);
    overflow-x: hidden;
    min-height: 100dvh;
}

a {
  text-decoration: none;
}

a:hover{
    text-decoration: underline;
}

p{
    margin: .5em 0;
}


@media(max-width:768px){
    html {
        /* font-size: 55%; */
        scroll-behavior: smooth;
    }
}

