/* 设置全站默认样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 定义 Poppins 字体 */
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-BoldItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}

/* 设置全站背景颜色为黑色，字体为 Microsoft JhengHei */
body {
    background-color: #000000; /* 黑色背景 */
    color: #ffffff; /* 默认白色文字 */
    font-family: 'Poppins','Microsoft JhengHei', Arial, sans-serif; /* 设置字体 */
}

/* 确保所有元素都使用相同的字体 */
body, html, 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,
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 {
    font-family: 'Poppins','Microsoft JhengHei', Arial, sans-serif;
}


/* 链接样式 */
a {
    color: #ffffff;
    text-decoration: none;
}

a:hover {
    color: #14f7be; /* 悬停时的颜色，可根据需要调整 */
}

/* 表格默认样式 */
table {
    color: #ffffff;
}

/* 输入框默认样式 */
input, textarea, select {
    background-color: #333333;
    color: #ffffff;
    border: 1px solid #555555;
    font-family: 'Poppins','Microsoft JhengHei', Arial, sans-serif;
}

/* 按钮默认样式 */
button {
    background-color: #333333;
    color: #ffffff;
    border: 1px solid #555555;
    font-family: 'Poppins','Microsoft JhengHei', Arial, sans-serif;
}

/* 确保表单元素也使用指定字体 */
input, textarea, select, button, label {
    font-family: 'Poppins','Microsoft JhengHei', Arial, sans-serif;
}