/* ---------------------通用設定:--------------------- */
/* 標準字體: 思源黑體 */
@import url(http://fonts.googleapis.com/earlyaccess/notosanstc.css);

/* 輔助字體: 仿宋體 */
@import url(https://fonts.googleapis.com/earlyaccess/cwtexfangsong.css);

/* 重設HTML標籤內定參數 */
body {
	margin: 0px;
}

a { 
	text-decoration: none; 
}

input {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
}

/* 作者名設定(首頁及查詢頁) */
.artist{
	display: inline-block;
	margin: 0;
	float: center;
	border: 1px solid white;
	padding: 5px;
	font-family: 'cwTeXFangSong', serif;
	font-weight: 400;
	font-size: 20px;
	color: grey;
	vertical-align: middle;
}

/* 作者名反應設定 */
.artist:hover{
	color: #332d2b;
}

.artist:active{
	color: red;
}

/* ---------------------首頁主視覺設定:--------------------- */
/* 首頁主視覺容器設定 */
.index-header-container {
	font-family: 'Noto Sans TC', sans-serif;
	font-size: 22px;
	font-weight: bold;
	color: #332d2b;
	margin: 0px;
	padding: 10px 0 0 0;
	background-image: linear-gradient(lightgrey, white);
	background-repeat: no-repeat	
	}

/* 首頁主視覺圖案設定 */
.index-banner {
	margin: 0px;
	height: 50px;
	background-color: lightgrey;
}

/* ---------------------其他頁面共用設定:--------------------- */
/* 主視覺容器設定 */
.header-container {
	width: 100%;
	margin: 0px;
	background-image: linear-gradient(lightgrey, white);
	background-repeat: no-repeat
}

/* 主視覺大標題設定 */
.header {
	height: 45px;
	padding: 5px;
	}

.header img {
	float: left;
}

.title {
	display: block;
	font-family: 'Noto Sans TC', sans-serif;
	font-size: 22px;
	font-weight: bold;
	color: #332d2b;
	float: left;
}

/* 主視覺圖案設定 */
.banner {
	margin: 0px;
	width: 100%;
	height: 10px;
	background-color: lightgrey;
	float: left;
}

/* 次標題設定 */
.sub-header {
	display: block;
	margin: 0;
	padding: 5px;
	font-family: 'Noto Sans TC', sans-serif;
	font-size: 15px;
	font-weight: 500;
	color: #332d2b;
}

/* 動態篩選及導引功能列設定 */
.nav {
	font-weight: 500;
	float: right;
	padding-right: 5px;
}
.nav a {
	text-decoration: none;
	color: #332d2b;
}

.nav a:hover {
	color: red;
}

/* 圖版設定 */
.plate {
	display: inline-block;
	padding: 5px;
	z-index: 500;
	vertical-align: middle;
}

.plate img {
	margin-left: auto;
	margin-right: auto;
	width: 80px;
	height: auto;
	padding: 5px;
	border: 2px solid white; /* 圖版外框 */
}

/* 圖版外框反應設定 */
.plate img:hover {
	border: 2px solid #f4dc90;
	border-radius: 6px;
}
