/* ==========================================================
   深圳市显科科技有限公司
   官网 V2.0
   Reset CSS
   Author : ChatGPT
========================================================== */


/* ===========================================
   Box Model
=========================================== */

*,
*::before,
*::after{

    margin:0;
    padding:0;

    box-sizing:border-box;

}


/* ===========================================
   HTML
=========================================== */

html{

    scroll-behavior:smooth;

    -webkit-text-size-adjust:100%;

}


/* ===========================================
   Body
=========================================== */

body{

    font-family:var(--font-family);

    font-size:16px;

    color:var(--text-primary);

    background:var(--body-bg);

    line-height:1.75;

    overflow-x:hidden;

    text-rendering:optimizeLegibility;

    -webkit-font-smoothing:antialiased;

    -moz-osx-font-smoothing:grayscale;

}


/* ===========================================
   Heading
=========================================== */

h1,
h2,
h3,
h4,
h5,
h6{

    font-weight:600;

    line-height:1.25;

    color:inherit;

}


/* ===========================================
   Paragraph
=========================================== */

p{

    margin:0;

}


/* ===========================================
   List
=========================================== */

ul,
ol{

    list-style:none;

}


/* ===========================================
   Link
=========================================== */

a{

    color:inherit;

    text-decoration:none;

    transition:var(--transition);

}


/* ===========================================
   Image
=========================================== */

img{

    display:block;

    width:100%;

    height:auto;

    border:none;

    user-select:none;

}


/* ===========================================
   SVG
=========================================== */

svg{

    display:block;

}


/* ===========================================
   Video
=========================================== */

video{

    display:block;

    width:100%;

}


/* ===========================================
   Button
=========================================== */

button{

    border:none;

    background:none;

    outline:none;

    cursor:pointer;

    font:inherit;

}


/* ===========================================
   Input
=========================================== */

input,
textarea,
select{

    border:none;

    outline:none;

    background:none;

    font:inherit;

}


/* ===========================================
   Table
=========================================== */

table{

    border-collapse:collapse;

    border-spacing:0;

}




/* ===========================================
   Selection
=========================================== */

::selection{

    background:var(--primary);

    color:#fff;

}


/* ===========================================
   Scrollbar
=========================================== */

::-webkit-scrollbar{

    width:10px;

    height:10px;

}

::-webkit-scrollbar-track{

    background:#edf2f7;

}

::-webkit-scrollbar-thumb{

    background:#9fb7cf;

    border-radius:999px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--primary);

}


/* ===========================================
   Form Placeholder
=========================================== */

::placeholder{

    color:#9aa4b2;

}


/* ===========================================
   Disabled
=========================================== */

:disabled{

    cursor:not-allowed;

}


/* ===========================================
   Focus Visible
=========================================== */

:focus-visible{

    outline:2px solid var(--primary);

    outline-offset:2px;

}


/* ===========================================
   Hidden
=========================================== */

[hidden]{

    display:none !important;

}