:root {
	--theme-font-family-sans: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", "Heiti TC", sans-serif;
	--theme-font-size-base: 16px;
	--theme-line-height-base: 1.5;
	--theme-font-weight-base: 400;
	--theme-heading-line-height: 1.25;

	--theme-color-text: #243b63;
	--theme-color-heading: #1e3f86;
	--theme-color-muted: #5e6f8d;
	--theme-color-link: #1e3f86;
	--theme-color-link-hover: #2f61bc;
	--theme-color-border: rgba(30, 63, 134, 0.16);
	--theme-color-surface: #ffffff;
	--theme-color-surface-alt: #f6f9ff;
	--theme-color-selection-bg: rgba(30, 63, 134, 0.18);
	--theme-color-selection-text: #12213f;

	--theme-body-background-color: #ffffff;
	--theme-body-background-image: url("../img/bg.png");
	--theme-body-background-repeat: repeat;
	--theme-body-background-position: center center;
	--theme-body-background-size: 2000px 1400px;

	--theme-content-max-width: 100%;
	--theme-radius-sm: 6px;
	--theme-radius-md: 10px;
	--theme-shadow-sm: 0 2px 8px rgba(18, 33, 63, 0.08);

	--theme-link-decoration: none;
	--theme-link-hover-decoration: underline;
	--theme-link-transition: color 0.18s ease, text-decoration-color 0.18s ease;

	--theme-list-padding-left: 1.5rem;

	--theme-table-background: #ffffff;
	--theme-table-head-background: #eef3ff;
	--theme-table-row-alt-background: #f9fbff;
	--theme-table-border-color: rgba(30, 63, 134, 0.16);
	--theme-table-cell-padding-y: 0.75rem;
	--theme-table-cell-padding-x: 1rem;
	--theme-table-header-font-weight: 600;
}

html {
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

html,
body {
	margin: 0;
	padding: 0;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	min-width: 320px;
	font-family: var(--theme-font-family-sans);
	font-size: var(--theme-font-size-base);
	line-height: var(--theme-line-height-base);
	font-weight: var(--theme-font-weight-base);
	color: var(--theme-color-text);
	background-color: var(--theme-body-background-color);
	background-image: var(--theme-body-background-image);
	background-repeat: var(--theme-body-background-repeat);
	background-position: var(--theme-body-background-position);
	background-size: var(--theme-body-background-size);
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* p,
ul,
ol,
dl,
blockquote,
figure,
table {
	margin-top: 0;
	margin-bottom: 1rem;
} */

/* ul,
ol {
	padding-left: var(--theme-list-padding-left);
} */

h1,
h2,
h3,
h4,
h5,
h6 {
	/* margin-top: 0;
	margin-bottom: 0.75rem; */
	color: var(--theme-color-heading);
	line-height: var(--theme-heading-line-height);
	font-weight: 700;
}

small {
	font-size: 0.875em;
}

strong,
b {
	font-weight: 700;
}

a {
	color: var(--theme-color-link);
	text-decoration: var(--theme-link-decoration);
	transition: var(--theme-link-transition);
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.14em;
}

a:hover,
a:focus-visible {
	color: var(--theme-color-link-hover);
	text-decoration: var(--theme-link-hover-decoration);
	outline: none;
}

button,
input,
select,
textarea {
	font: inherit;
	color: inherit;
}

button {
	-webkit-appearance: none;
	appearance: none;
}

hr {
	border: 0;
	border-top: 1px solid var(--theme-color-border);
	margin: 1.5rem 0;
}

/* table {
	width: 100%;
	max-width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	background: var(--theme-table-background);
	color: inherit;
	box-shadow: var(--theme-shadow-sm);
	border-radius: var(--theme-radius-md);
	overflow: hidden;
} */

caption {
	/* padding: 0.75rem 0; */
	color: var(--theme-color-muted);
	text-align: left;
	caption-side: bottom;
}

/* thead th {
	background: var(--theme-table-head-background);
	color: var(--theme-color-heading);
	font-weight: var(--theme-table-header-font-weight);
} */

/* tbody tr:nth-child(even) td {
	background: var(--theme-table-row-alt-background);
}

th,
td {
	padding: var(--theme-table-cell-padding-y) var(--theme-table-cell-padding-x);
	border: 1px solid var(--theme-table-border-color);
	text-align: left;
	vertical-align: top;
} */


.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin: 0;
}
a {
  color: #426eb4;
  text-decoration: none;
  transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
}
a:hover,
a:focus {
  color: #3483db;
  text-decoration: none;
}
label {
  font-weight: normal;
}
ol,
ul,
li {
  list-style: none;
  padding: 0;
  margin: 0;
}

::selection {
	background: var(--theme-color-selection-bg);
	color: var(--theme-color-selection-text);
}