/* reset */
body,
div,
p,
ul,
li,
table,
tbody,
tr,
td,
textarea,
form,
input,
h1,
h2,
h3,
h4,
h5,
dl,
dt,
dd,
img,
iframe,
header,
nav,
section,
article,
footer,
figure,
figcaption,
menu {
	margin: 0;
	padding: 0;
	list-style: none;
}
body {
	-webkit-text-size-adjust: none;
}
header,
nav,
section,
article,
footer,
figure,
figcaption {
	display: block;
}
ol,
ul {
	margin: 0;
	padding: 0;
}
fieldset {
	border: none;
	margin: 0;
	padding: 0;
}
a,
li,
ul,
[onclick] {
	-webkit-tap-highlight-color: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
em,
strong {
	font-weight: normal;
	font-style: normal;
}
a {
	text-decoration: none;
}
.hide {
	display: block;
	width: 0;
	height: 0;
	overflow: hidden;
}
.c:before,
.c:after {
	content: "";
	display: table;
}
.c:after {
	clear: both;
}
* {
	box-sizing: border-box;
}
@font-face {
	font-family: "font";
	src: url(../img/font.ttf);
	font-display: swap;
}
.font,
* {
	font-family: "font";
}

html,
body {
	width: 100%;
	height: 100%;
	overflow: hidden;
	background-color: #000;
}

/* 基本样式 */
.scrollable {
	overflow-y: auto; /* 或 overflow-x: auto; */
	height: 100%; /* 设置高度以显示滚动条 */
	padding-right: 5px;
}
/* WebKit/Blink 浏览器专用 */
.scrollable::-webkit-scrollbar {
	width: 4px; /* 滚动条宽度 */
	height: 80px; /* 滚动条高度 */
}
.scrollable::-webkit-scrollbar-track {
	background: #93bae7; /* 轨道颜色 */
}
.scrollable::-webkit-scrollbar-thumb {
	background: #456988; /* 滑块颜色 */
}
.scrollable::-webkit-scrollbar-thumb:hover {
	background: #ff0000; /* 滑块活动状态颜色 */
}

/* 表格样式 */
.reward-table {
	width: 721px;
	border-collapse: collapse;
	table-layout: fixed; /* 可选：让列宽更均匀 */
	margin: 10px auto;
	table-layout: auto;
}

.reward-table th,
.reward-table td {
	border: 1px solid #666;
	text-align: center;
	padding: 12px 8px;
	font-weight: normal;
}
.reward-table th {
	font-size: 25px;
	width: fit-content;
}
.reward-table td {
	font-size: 22px;
}

p {
	margin: 5px 0 !important;
}
.bold {
	font-weight: bold;
}
.btn {
	cursor: pointer;
}
