html, body {
	margin: 0;
	padding: 0;
	box-sizing: content-box; 
	font-family: 'Helvetica','Arial','微軟正黑體','sans-serif';
	scroll-behavior: smooth;
}
/* 網頁捲軸【寬度】 */
::-webkit-scrollbar {
  width: 4px;
}

/* 網頁捲軸【背景】顏色 */
::-webkit-scrollbar-track {
  background: #448fc8;
}

/* 網頁捲軸【把手】顏色 */
::-webkit-scrollbar-thumb {
  background: #e1e5e8;
}

/* 網頁捲軸【滑過時】把手的顏色 */
::-webkit-scrollbar-thumb:hover {
  background: #fff;
}
#load_msg {
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.2);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1001;
	padding-top: 15%;
}
input, textarea {
	font-size: initial;
}