@font-face {
    font-family: 'CustomFont';
    src: url('../fonts/SourceHanSansCN-Regular.otf') format('opentype');
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
input,
button,
textarea,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    font-weight: normal;
    box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

ol,
ul,
li {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}
input,
textarea,
button,
select{
    outline: none;
    padding:1px 3px;
}
/* custom */
html,
body {
    width: 100%;
    font-family: 'CustomFont', sans-serif !important;
}

html {
    overflow-y: scroll;
}

body {
    line-height: 1.5;
    color: #333;
}

a {
    color: inherit;
    text-decoration: none; 
    cursor: pointer;
}

a,
a:hover {
    color: inherit;
}

a:hover {
    text-decoration: none;
}


button {
    outline: none;
    border: 0;
}

input {
    -webkit-appearance: none;
    /* 去除webkit内核浏览器（如Chrome、Safari）的默认样式 */
    -moz-appearance: none;
    /* 去除Firefox浏览器的默认样式 */
    appearance: none;
    /* 标准的去除默认样式属性 */
    border: none;
    /* 去除默认边框 */
    outline: none;
    /* 去除聚焦时的默认轮廓 */
}


::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track-piece {
    background-color: rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 6px;
}

::-webkit-scrollbar-thumb:vertical {
    height: 5px;
    background-color: rgba(125, 125, 125, 0.7);
    -webkit-border-radius: 6px;
}

::-webkit-scrollbar-thumb:horizontal {
    width: 5px;
    background-color: rgba(125, 125, 125, 0.7);
    -webkit-border-radius: 6px;
}













h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
    font-weight: 500!important;
}


h1 {
    font-size: 36px;
}

h2 {
    font-size: 32px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 22px;
}

h6 {
    font-size: 20px;
}



.flex {
    display: flex;
}


.flex-col {
    flex-direction: column;
}




.justify-start {
    justify-content: flex-start;
}

.justify-end {
    justify-content: flex-end;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}


.items-start {
    align-items: flex-start;
}

.items-end {
    align-items: flex-end;
}

.items-center {
    align-items: center;
}

.items-baseline {
    align-items: baseline;
}

.items-stretch {
    align-items: stretch;
}



.grow {
    flex-grow: 1;
}

.grow-0 {
    flex-grow: 0;
}


.shrink {
    flex-shrink: 1;
}

.shrink-0 {
    flex-shrink: 0;
}



.flex-wrap {
    flex-wrap: wrap;
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse;
}


.relative {
    position: relative;
}

.absolute {
    position: absolute;
}



div:focus-visible{
    outline: none !important;
    border:0;
}










