@charset "utf-8";
html {
	color: #222;
	height: 100vh;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	font-family: "微軟正黑體", "微软雅黑", "Microsoft JhengHei", "新細明體", "PMingLiu", AppleGothic, Dotum, Lucida Grande, Verdana Sana-serif;
	font-size: 15px;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	text-size-adjust: 100%;
}
body {
	margin: 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

/* reset */ 
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section { display: block;}
blockquote { margin: 1em 40px;}
ul, ol { margin: 0.5em auto; padding: 0 10px;}
nav ul, nav ol {
	list-style: none;
	margin: 0; padding: 0;
}

.clearfix::before, .clearfix::after {
	content: "";
	display: table;
}
.clearfix::after { clear: both;}
.clearfix { *zoom: 1;}

a, a:visited, a:active, a:hover, a:focus { text-decoration: none;}

img {
	border: 0;
	max-width: 100%;
}

.blue { color:#005bac;}
.red { color:#e22028;}
.orange { color:#fa6e0b;}

.fluid {
	clear: both;
	margin-left: 0;
	width: 100%;
	float: left;
	display: block;
}
.fluidList {
    list-style:none;
    list-style-image:none;
    margin:0;
    padding:0;        
}

/* hide-header */
.auto-hide-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  /* Force Hardware Acceleration */
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  will-change: transform;
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
}
.auto-hide-header.is-hidden {
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
}

/* header */
#logoBar {
	background: url(../images/mbg.png) top center no-repeat;
	width:100%;
}
#logoBar h1 {
	width:100%;
	background:url(../images/mtopbar.png) left center no-repeat;
	-webkit-background-size:cover;
	-moz-background-size:cover;
	background-size:cover;
	text-indent:-9999px;
	margin:0;
	height:52px;
}
#brandBar {
	background-color:#e9eff3;
	padding-top:10px;
}
#brandBar > a {
	display:block;
	width:186px;
	height:70px;
	margin:0 auto;
	padding-right: 5%;
}

/* nav */
.toggle {
	background-color:#fff;
	border-radius:6px;
	display: block;
	position: absolute;
	padding:2px 8px 8px;
	width: 40px;
	height: 36px;
	right:0;
	top: -80px;
	z-index: 200;
}
.nav_icon {
  display: inline-block;
  position: relative;
  width: 24px;
  height: 2px;
  background-color: #aaaaaa;
  -webkit-transition-property: background-color, -webkit-transform;
  transition-property: background-color, -webkit-transform;
  transition-property: background-color, transform;
  transition-property: background-color, transform, -webkit-transform;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
}
.nav_icon::before, .nav_icon::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  position: absolute;
  background: #aaaaaa;
  -webkit-transition-property: margin, -webkit-transform;
  transition-property: margin, -webkit-transform;
  transition-property: margin, transform;
  transition-property: margin, transform, -webkit-transform;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
}
.nav_icon::before { margin-top: -6px;}
.nav_icon::after { margin-top: 6px;}
.active .nav_icon { background: rgba(0, 0, 0, 0);}
.active .nav_icon::before {
  margin-top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.active .nav_icon::after {
  margin-top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* breadcrumb */
.breadcrumb {
	width: 100%;
	max-width: 768px;
	padding-top: 0.5em;
}
.breadcrumb::after {
  content: "";
  display: table;
  clear: both;
}
.breadcrumb li {
	display: inline-block;
	float: left;
    position: relative;
    padding: 0;
	margin-right: 4px;
 }
.breadcrumb li:last-of-type { margin-right: 0;}
.breadcrumb li > * {
	background-color: #005BAC;
    border-color: #005BAC;
	color: #fff;
	display: inline-block;
	font-size: 0.8em;
    padding: 0.8em 0.8em 0.8em 1.5em;
}
.breadcrumb li.current > * {
	color: #f0f0f0;
    background-color: #B4BFC8;
    border-color:#B4BFC8;
  }
.breadcrumb li:first-of-type > * {
    padding-left: 1em;
    border-radius: 0.6em 0 0 0.6em;
  }
.breadcrumb li:last-of-type > * {
    padding-right: 1em;
    border-radius: 0 0.6em 0.6em 0;
  }
.no-touch .breadcrumb a:hover {
    color: #fff;
    background-color: #00A0E9;
    border-color: #00A0E9;
  }
.breadcrumb li::after, .breadcrumb li > *::after {
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    height: 0;
    width: 0;
    border: 1.45em solid transparent;
    border-right-width: 0;
    border-left-width: 1em;
 }
.breadcrumb li::after {
    z-index: 1;
    -webkit-transform: translateX(1px);
    -moz-transform: translateX(1px);
    transform: translateX(1px);
    border-left-color: #ffffff;
	top: -4px;
 }
.breadcrumb li > *::after {
    z-index: 2;
    border-left-color: inherit;
 }
.breadcrumb li:last-of-type::after, .breadcrumb li:last-of-type > *::after { display: none;}

@-moz-document url-prefix() {
	.breadcrumb.triangle li::after,
	.breadcrumb.triangle li > *::after { border-left-style: dashed;}
}

/* main */
.gridContainer, .Container {
	flex: 1;
	width: 100%;
	padding:10px;
	margin: 8.5em auto 0;
}
#main { display:block;}
#main h1 { font-size: 1.6em;}
#main h1 > i {
	display:inline-block;
	margin-right:6px;
	width: 30px;
	height:30px;
}
#main h1 > i.i1 { background:url(../images/item.png) 0 -30px no-repeat;}
#main > h3 {
	width:140px;
	height:140px;
	margin:1% auto;
}
#main > h3:after {
	background: #e3e8ea;
	content: '';
	display: block;
	width: 1px;
	height: 15vh;
	margin:1% auto;
}
.mtext {
	color:#445a61;
	display: block;
	font-size:0.9em;
	padding:5px;
	text-align:center;
	margin:33% auto 0;
}
#main > h4 {
	font-size:1.6em;
	font-weight:600;
	text-align:center;
	letter-spacing:0.2em;
}

.pageBox > h2 {
	background-color:#EB6100;
	color:#FFFFFF;
	font-size:1.2em;
	padding:10px;
	-webkit-border-radius:8px;
	-moz-border-radius:8px;
	border-radius:8px;
	text-align:center;
	letter-spacing:0.2em;
}
.pageBox > h3 {
	color: #005BAC; 
	margin-top: 0;
}
.pageBox > p.sub {
	font-size:1.4em;
	color:#0050B0;
}
.pageBox p span.click {
	background-color:#00A0E9;
	-webkit-border-radius:6px;
	-moz-border-radius:6px;
	border-radius:6px;
	behavior: url(PIE.htc);
	color:#FFFFFF;
	display: block;
	text-align:center;
	padding:4px 8px;
	margin-bottom: 5px;
}

section {
	display:block;
	padding:10px;
	margin:0 auto 2.5em;
}
section:last-child { margin-bottom:1em;}
section > img { margin: 0 auto 1em;}
section > p {
	width:100%;
	padding:3px;
	line-height:1.4em;
	font-size:1em;
	text-align:left;
}
section > p.tcenter {
	background-color:#099CED;
	-webkit-border-radius:10px;
	-moz-border-radius:10px;
	border-radius:10px;
	color:#FFFFFF;
	text-align:center;
	padding:5px;
	width:160px;
	margin:0 auto 10px;
}
section > span.nb {
	color: #EFEFEF;
	font-size:46px;
	font-family:Arial, sans-serif;
	position:absolute;
}
.two { left:0;}
section dt {
	color:#C30B28;
	font-size:1em;
	margin-top: 1em;
	padding: 5px;
}
section dt:first-child { margin-top: 0;}
section > dd { font-size:0.9em;}

.ps {
	color:#B7070A;
	padding:10px;
	letter-spacing:0.1em;
}

.finger-ps {
	color: #197CD9;
	padding:8px 8px 8px 12px;
	letter-spacing:0.1em;
	line-height: 1.4em;
}
.finger-ps > span {
	background-color: #197CD9;
	color: #ffffff;
	display: block;
	padding:5px 10px;
	-webkit-border-radius:6px;
	-moz-border-radius:6px;
	border-radius:6px;
	behavior: url(PIE.htc);	
	letter-spacing:0;
	margin-bottom: 10px;
}

.finger-set {
	background-color: #E7E7E7;
	padding: 6px 20px;
	-webkit-border-radius:8px;
	-moz-border-radius:8px;
	border-radius:8px;
	behavior: url(PIE.htc);	
}
.finger {
	font-size: 1em;
	line-height: 1.4em;
	margin-left: 10px;
}
.finger li, .finger-note li { margin-bottom: 10px;}
.finger .ps {
	display: block;
	font-size: 1em;
}
.finger-note li {
	color: #197CD9;
	line-height: 1.5em;
	margin-left: 10px;
}

ul.QRcode {
	display:block;
	text-align:center;
	margin:10% auto 2%;
	margin-left: 0;
}
.QRcode > li {
	display:inline-block;
	width:110px;
	height:138px;
	margin: 0 4px;
}
.QRcode > li > a { width:100%;}

/* footer */
footer {
	background-color:#005BAC;
	width:100%;
	padding-top:10px;
	padding-bottom: 6px;
}
footer span {
	display:block;
	margin-top:10px;
	margin:8px auto;
	text-align: center;
}
footer span > img {
	width: 90%;
	max-width: 290px;
	height: auto;
}
footer > p {
	color:#FFFFFF;
	display:block;
	padding:3px;
	text-align:center;
	margin:0;
	font-size:0.8em;
}
footer > p > a {
	color:#FFFFFF;
	margin-right:10px;
}
footer > p > a:hover { color:#FFEE0A;}
	
@media only screen and (min-width: 360px) {
#logoBar h1 {
	background:url(../images/mtopbar.png) center center no-repeat;
	height:52px;
}
#brandBar > a {
	width:220px;
	height:86px;
}
	
.gridContainer, .Container { margin:9.5em auto 0;}
	
.QRcode > li {
	width:130px;
	height:163px;
}
footer > p { font-size:0.9em;}
	
}
@media only screen and (min-width: 400px) {
#logoBar h1 {
	background:url(../images/topbar.png) center center no-repeat;
	height:64px;
}
#brandBar > a {
	width:260px;
	height:91px;
}
	
.breadcrumb li > * {
	font-size: 1em;
    padding: 1em 1em 1em 2em;
}
.breadcrumb li:first-of-type > *, .breadcrumb li:last-of-type > * { padding-right: 1.2em;}
.breadcrumb li::after, .breadcrumb li > *::after {
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    height: 0;
    width: 0;
    border: 1.65em solid transparent;
    border-right-width: 0;
    border-left-width: 1.1em;
 }
.breadcrumb li::after {
    z-index: 1;
    -webkit-transform: translateX(4px);
    -moz-transform: translateX(4px);
    transform: translateX(4px);
    border-left-color: #ffffff;
	top: 0;
 }
.breadcrumb li > *::after {
    z-index: 2;
    border-left-color: inherit;
 }

.gridContainer, .Container { margin:10.5em auto 0;}
.QRcode > li {
	width:140px;
	height:175px;
}
footer > p { font-size:1em;}

}
@media only screen and (min-width: 480px) {
	#logoBar h1 {
		background:url(../images/ltopbar.png) center center no-repeat;
		height:70px;
	}
	
	.mtext {margin:32% auto 0;}
	
	.QRcode > li {
		width:160px;
		height:200px;
		margin-bottom: 0;
	}
	
	footer > p { letter-spacing:0.1em;}

}

@media only screen and (min-width: 481px) {
.gridContainer, .Container {
	width: 90.675%;
	padding-left: 1.1625%;
	padding-right: 1.1625%;
	clear: none;
	float: none;
}
	#main > h3:after { height: 23vh;}
	
	.mtext { margin:45% auto 0;}
}

@media only screen and (min-width: 769px) {
.gridContainer, .Container {
	width: 88.5%;
	max-width: 1232px;
	padding-left: 0.75%;
	padding-right: 0.75%;
	clear: none;
	float: none;
	margin:11.5em auto 0;
}
}