@charset "UTF-8";

/* ============================================================
   base.css
   共用重置、字型、色彩與按鈕樣式
   兩個頁面（index.html / inquiry.html）都會載入
   ============================================================ */


/* ------------------------------------------------------------
   重置
   ------------------------------------------------------------ */

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
	font-family: Arial, "Helvetica Neue", Helvetica, sans-serif, "微軟正黑體";
	color: #464B4E;
	line-height: 1.6;
}

h1,
h2,
h3 {
	margin: 0;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

a {
	color: inherit;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s;
}

img {
	max-width: 100%;
	height: auto;
}

button {
	font: inherit;
	color: inherit;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
}


/* ------------------------------------------------------------
   共用工具類別
   ------------------------------------------------------------ */

.text-blod {
	font-weight: bold;
}

.text-sm {
	font-size: 12px;
}

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

.text-right {
	text-align: right;
}
