@charset "utf-8";
/*******************************************************************************
 * Version 1.0 Release;
 * Copyright 2017
 ******************************************************************************/
/*========================================基本樣式*/
body {
	background: #fff;
	color: #555;
	font:100%/1.2 Helvetica, "蘋果儷中黑", "微軟正黑體", Verdana, Arial, sans-serif, "新細明體";
}
/*heading*/
h1, h2, h3, h4, h5, h6 {}
/*圖片 img*/
img {
	border: 0;
	margin: 0;
	vertical-align: middle;
	/*width: 100%;
	max-width: 100%;*/
	height: auto;
}
/*i元素-目前專給icon使用*/
i {
	display: inline-block;
	/*overflow: hidden;*/
	vertical-align: middle;
}
/*強調重點*/
strong {
	font-weight: normal;
}
em {
	font-style: normal;
}
/*連結 a-文字連結*/
a {
	color: #071e3d;
	text-decoration: none !important; 
}
/*連結 a-文字連結-滑過*/
a:active {}
/*表格 table*/
table {
	max-width: 100%;
	background-color: transparent;
	border-collapse: collapse;
	border-spacing: 0;
}
table > caption {
	height: 0;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	width: 0;
}
/*表單元素*/
form{
	width: 100%;
}
fieldset > legend {
	overflow: hidden;
	width: 100%;
}
/*按鈕 Button*/
a.Btn,
button,
input[type=button],
input[type=reset],
input[type=submit]{
	border:none;/*去除button元素border*/
	cursor:pointer;/*預設為手型*/
	display: inline-block;
	font-family:"蘋果儷中黑", "微軟正黑體", Verdana, Arial, sans-serif, "新細明體";
	font-size: 100%;/*16px*/
	text-align:center;
	text-decoration: none;
	vertical-align: middle;
	width: 33.3%;
}
/*按鈕 Button-disable*/
button:disabled,
button:hover:disabled,
button:active:disabled,
.Btn.BtnBase:disabled,
.Btn.BtnBase:hover:disabled,
.Btn.BtnBase:active:disabled,
.Btn.BtnDark:disabled,
.Btn.BtnDark:hover:disabled,
.Btn.BtnDark:active:disabled,
.Btn.BtnOther:disabled,
.Btn.BtnOther:hover:disabled,
.Btn.BtnOther:active:disabled,
.Disabled,
select:disabled,
textarea:disabled {
	background: #ccc;
	border: 1px solid #ccc;
	color: #fff;
	cursor: default;
}
/*表單元素-單行輸入欄位(文字、密碼)、下拉選單、多行輸入欄位(留言)*/
input[type=text],
input[type=password],
input[type=date],
input[type=month],
input[type=time],
input[type=number],
input[type=email],
input[type=tel],
input [type=url],
select,
textarea {
	border: 1px solid #ccc;
	color: #333;
	font-family:"微軟正黑體",Verdana,Arial,Helvetica,sans-serif,"新細明體";
	font-size: 16px;
	padding: 10px 2%;
	width: 100%;
}
/*消除iphone/ipad預設值*/
input[type=text],
input[type=password],
input[type=date],
input[type=month],
input[type=time],
input[type=number],
input[type=email],
input[type=tel],
input [type=url],
select,
textarea {
	-webkit-appearance:none;/*內陰影*/
	border-radius: 0;/*導圓角*/
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
}
/*消除上下小箭頭*/
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none !important;
	margin: 0;
}
input[type=number] {
	-moz-appearance: textfield;
}
/*input focus*/
textarea:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=time]:focus,
input[type=number]:focus,
input[type=email]:focus,
input[type=tel]:focus {
	border: 1px solid #e4ecf0;
	-webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 0px 5px rgba(0,0,0,0.75);
	box-shadow: 0px 0px 5px rgba(0,0,0,0.75);
}
textarea:disabled,
input[type=text]:disabled,
input[type=password]:disabled,
input[type=date]:disabled,
input[type=month]:disabled,
input[type=time]:disabled,
input[type=number]:disabled,
input[type=email]:disabled,
input[type=tel]:disabled {
	background: #ccc;
	cursor: no-drop;
}
/*input - 多擇一選項*/
input[type=radio] {
	vertical-align: top;
}
/*input - checkbox核取方塊*/
input[type=checkbox] {
 	vertical-align: middle;
}
/*radio、checkbox和下一個物件間距
input[type=radio] + label, input[type=checkbox] + label {
	margin: 0 10px 0 3px;
}*/
/*select 下拉選單*/
select {
	background: url("../images/icon/icon_select.svg?t=20160701") no-repeat scroll 99% 50% #fff;
}
/*textarea 多行文本輸入欄位(留言)*/
textarea {
	height: 100px;
}
/*========================================元件樣式*/
/*------------------------------無序列項目------------------------------*/
.UlList {
	padding: 0 0 0 30px;
}
/*無序項目列表-實心圓形*/
.Disc > li {
	list-style-type: disc;
}
/*無序項目列表-空心圓點*/
.Circle > li {
	list-style-type:circle;
}
/*無序項目列表-實心方形*/
.Square > li {
	list-style-type: square;
}
/*------------------------------有序列項目------------------------------*/
.OlList {
	padding: 0 0 0 30px;
}
/*序列項目列表-數字(1,2,3)*/
.Decimal > li {
	list-style-type: decimal;
}
/*序列項目列表-中文數字(一,二,三)*/
.Cjk > li {
	list-style-type: cjk-ideographic;
}
/*序列項目列表-小寫英文字母*/
.LowerLatin > li {
	list-style-type: lower-latin;
}
/*------------------------------按鈕的家------------------------------*/
.BtnBox {
	text-align: center;
}
.BtnBox.Half {
	margin: 0 -9px;
}
.BtnBox.Half > .Btn {
	margin: 0 6px;
	width: 129px;
	width: -webkit-calc(100% / 2 - 18px);
	width: -moz-calc(100% / 2 - 18px);
	width: calc(100% / 2 - 18px);
}
/*------------------------------按鈕尺寸------------------------------*/
.Btn.BtnS {
	padding:0.5em 0.625em;/*8px 10px*/
	font-size:1em;/*16px*/
}
.Btn.BtnM {
	padding:0.5em 0.9375em;/*8px 15px*/
	font-size:1em;/*16px*/
	/*max-width: 300px;*/
}
.Btn.BtnL {
	padding:0.5em 1.25em;/*8px 20px*/
	font-size:1em;/*16px*/
}
/*------------------------------按鈕-基本型Base------------------------------*/
.Btn.BtnBase {
	background:#fff;
	border: 1px solid #bbb;
	color:#888;
}
.Btn.BtnBase:active {
	border-color: #777;
}
/*------------------------------按鈕-誘導型Dark------------------------------*/
.Btn.BtnDark {
	background: #e12876;
	border: 1px solid #e12876;
	color:#fff;
	border-radius:100px;
	height: 35px;
	padding: 5px;
	margin: 20px;
	width: 200px;
}
.Btn.BtnDark:active {
	background: #eb2700;
	border-color: #eb2700;
	color:#fff;
}
/*------------------------------按鈕-其他Other------------------------------*/
.Btn.BtnOther {
	background: #2fb800;
	border: 1px solid #2fb800;
	color:#fff;
}
.Btn.BtnOther:active {
	background: #269600;
	border-color: #269600;
	color:#fff;
}
/*------------------------------按鈕-Disabled------------------------------*/
.Btn.Disabled {
	background: #eee;
	border-color: #eee;
	color: #ccc;
	cursor: no-drop;
	/*pointer-events: none;*/
}
/*------------------------------隱藏------------------------------*/
.Hide {
	display: none;
}
/*------------------------------表格------------------------------*/
/*無外框*/
.SimpleBox {
	border: none;
}
/*有外框*/
.Panel {
	border: 1px solid #ddd;
}
.TableBasic {
	display: table;/*table*/
}
.TableHeader {
	display: table-header-group;/*thead*/
}
.TableBody {
	display: table-row-group;/*tbody*/
}
.TableFooter {
	display: table-footer-group;/*footer*/
}
.TableRow {
	display: table-row;/*tr*/
}
.TableHead, .TableData {
	display:table-cell;/*th, td*/
}
/*------------------------------表單------------------------------*/
/*表單元件-錯誤*/
.Error {
	color: #f00;
}
/*表單元件-input-輸入欄位錯誤*/
input.InputError,
textarea.InputError {
	border: 1px solid #f00;
}
select.SelectError,
select.InputError {
	border: 1px solid #f00;
}
/*表單元件-input - 數量-輸入數字框*/
input.InputCount {
	margin: 0;
	padding: 8px 15px;
	text-align: center;
	border: none;
}
/*表單元件-input - radio、checkbox*/
.RadioBox,
.CheckedBox {
	display: none;
	position: absolute;
}
.RadioBox[disabled],
.CheckedBox[disabled] {
	cursor: not-allowed;
}
.RadioBox + label,
.CheckedBox + label {
	border: 1px solid #ddd;
	color: #333;
	cursor: pointer;
	display: block;
	padding: 0.875em 1em;/*14/16 16/16*/
	padding-left: 2.5em;/*40/16*/
	position: relative;
	vertical-align: middle;
}
.RadioBox + label:hover:before,
.CheckedBox + label:hover:before {
	animation-duration: 0.4s;
	animation-fill-mode: both;
	animation-name: hover-color;
}
.RadioBox + label:before,
.CheckedBox + label:before {
	border: 1px solid #ccc;
	content: "";
	display: inline-block;
	height: 14px;
	left: 1em;
	margin-top: -8px;
	position: absolute;
	top: 50%;
	width: 14px;
}
.RadioBox + label:after,
.CheckedBox + label:after {
	content: '';
	display: none;
	position: absolute;
}
.RadioBox[disabled] + label,
.CheckedBox[disabled] + label {
	color: #e4e4e4;
	cursor: not-allowed;
}
.RadioBox[disabled] + label:hover, .RadioBox[disabled] + label:before, .RadioBox[disabled] + label:after,
.CheckedBox[disabled] + label:hover,
.CheckedBox[disabled] + label:before,
.CheckedBox[disabled] + label:after {
	cursor: not-allowed;
}
.RadioBox[disabled] + label:hover:before,
.CheckedBox[disabled] + label:hover:before {
	animation-name: none;
	border: 1px solid #e4e4e4;
}
.RadioBox[disabled] + label:before,
.CheckedBox[disabled] + label:before {
	border-color: #e4e4e4;
}
.RadioBox:checked + label,
.CheckedBox:checked + label {
	border: 1px solid #ddd;
}
.RadioBox:checked + label:before,
.CheckedBox:checked + label:before {
	animation-name: none;
}
.RadioBox:checked + label:after,
.CheckedBox:checked + label:after {
	display: block;
}
.RadioBox + label:before {
	border-radius: 50%;
}
.RadioBox + label:after {
	background: #40210f;
	border-radius: 50%;
	height: 10px;
	left: 19px;
	top: 50%;
	margin-top: -5px;
	width: 10px;
}
.RadioBox:checked + label:before {
	border: 1px solid #ddd;
}
.RadioBox:checked[disabled] + label:before {
	border: 1px solid #c9e2f9;
}
.RadioBox:checked[disabled] + label:after {
	background: #c9e2f9;
}
.CheckedBox + label:before {}
.CheckedBox + label:after {
	top: 0px;
	left: 4px;
	box-sizing: border-box;
	width: 8px;
	height: 12px;
	transform: rotate(45deg);
	border-width: 3px;
	border-style: solid;
	border-color: #40210f;
	border-top: 0;
	border-left: 0;
}
.CheckedBox:checked + label:before {
	/*border-color: #ddd;
	background: #ddd;*/
}
.CheckedBox:checked[disabled] + label:before {
	border: #c9e2f9;
	background: #c9e2f9;
}
/*表單樣式*/
/*表單樣式-有框*/
fieldset.Panel {
	border: 1px solid #ccc;
}
/*表單樣式-無框*/
fieldset.SimplePanel {
	border: none;
}
fieldset.SimplePanel > legend {}
/*表單樣式-內部元件*/
fieldset > .PanelBody {
	padding: 1.5em 0;/*24/16 0*/
}
fieldset > .PanelBody div.Error,
fieldset > .PanelBody .Possible,
fieldset > .PanelBody .Impossible {
	font-size: 14px;
}
fieldset > .PanelBody div.Error > i,
fieldset > .PanelBody .Possible > i,
fieldset > .PanelBody .Impossible > i {
	font-size: 1em;/*14/16*/
	margin: -3px 6px 0 0;
	vertical-align: middle;
}
fieldset > .PanelBody div.Error > i {}
fieldset > .PanelBody .Possible > i,
fieldset > .PanelBody .Impossible > i {}
/*表單樣式-錯誤訊息*/
fieldset > .PanelBody div.Error {
	display: none;
}
fieldset > .PanelBody .InputError ~ div.Error {
	display: block;
}
/*表單樣式-註解訊息*/
fieldset > .PanelBody div.Comment {
	color: #00bcbe;
	font-size: 0.875em;/*14/16*/
}
/*表單樣式-可使用訊息*/
fieldset > .PanelBody .Possible {
	font-size: 0.875em;/*14/16*/
	display: none;
}
fieldset > .PanelBody .InputPossible ~ .Possible {
	display: block;
}
/*表單樣式-不可使用訊息*/
fieldset > .PanelBody .Impossible {
	font-size: 0.875em;/*14/16*/
	display: none;
}
fieldset > .PanelBody input.InputImpossible {
	border: 1px solid #f00;
}
fieldset > .PanelBody .InputImpossible ~ .Impossible {
	display: block;
}
/*表單樣式-select 下拉選單*/
fieldset > .PanelBody select {
	background-position: 95% 50%;
	background-size: 9px 9px;
}
/*表單樣式-一般欄位、必填欄位共用*/
fieldset > .PanelBody > div {}
fieldset > .PanelBody > div > label,
fieldset > .PanelBody > div > div > label,
fieldset > .PanelBody > div > div > div > label {
	display: inline-block;
	text-align: left;
	vertical-align: middle;
}
fieldset > .PanelBody > div > input,
fieldset > .PanelBody > div > div > input,
fieldset > .PanelBody > div > div > div > input {
	margin: 0.5em 0;/*8/16 0*/
}
/*表單樣式-select 下拉選單*/
fieldset > .PanelBody > div > select,
fieldset > .PanelBody > div > div > select,
fieldset > .PanelBody > div > div > div > select {
	margin: 0.5em 0;/*8/16 0*/
}
fieldset > .PanelBody > div > textarea,
fieldset > .PanelBody > div > div > textarea,
fieldset > .PanelBody > div > div > div > textarea {
	margin: 0.5em 0;/*8/16 0*/
}
/*表單樣式-一般欄位*/
fieldset > .PanelBody div.Field {
	margin: 0 0 1.25em;/*0 0 20/16*/
}
/*表單-必填欄位(*)*/
fieldset > .PanelBody div.Must {
	margin: 0 0 1.25em;/*0 0 20/16*/
}
fieldset > .PanelBody div.Must > label:after {
	content: "*";
	display: inline-block;
	color: #dc0a00;
}
fieldset > .PanelBody .RadioBox + label,
fieldset > .PanelBody .CheckedBox + label {
	border: none;
	display: block;
}
/*表單樣式-數量控制bar*/
fieldset.QtyControl > legend {
	display: none;
}
fieldset.QtyControl > .QtyBox {
	border: 1px solid #ccc;
	background: #fff;
	overflow: hidden;
	padding: 0 38px;
	position: relative;
}
fieldset.QtyControl > .QtyBox.Disabled:after{
	content: "";
	background: rgba(109, 88, 74 ,.7);
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 2;
}
fieldset.QtyControl > .QtyBox > input.InputCount {
	padding: 5px;
	height: 38px;
}
fieldset.QtyControl > .QtyBox > button {
	position: absolute;
	top: 0;
	height: 38px;
	width: 38px;
}
fieldset.QtyControl > .QtyBox > button.BtnSubtract {
	left: 0;
}
fieldset.QtyControl > .QtyBox > button.BtnAdd {
	right: 0;
}
fieldset.QtyControl > .BtnBox > button {}
/*------------------------------分頁------------------------------*/
/*頁碼*/
.Pagination {
	color: #555;
	text-align: center;
	padding: 1.875em 0 0.125em;/*30px/16px 0 2px/16px*/
}
.Pagination > div {
	display: inline-block;
	vertical-align: middle;
	margin: 0 2px;
}
.Pagination > div > span {
	padding: 0 5px;
}
.Pagination > div > a {
	background: #ccc;
	color: #fff;
	display: block;
	height: 40px;
	width: 40px;
}
.Pagination > div > a:active {
	background: #b2a69a;
}
.Pagination > div.Previous.Disabled,
.Pagination > div.Next.Disabled {
	border:none;
}
.Pagination > div.Previous.Disabled > a,
.Pagination > div.Next.Disabled > a {
	background: #ece6dd;
	color: #fefefe;
	cursor:default;
	pointer-events: none;
	border:none;
}
.Pagination > div > a > i {
	font-size: 20px;
	font-weight: bold;
	margin: 10px;
}
.Pagination > div.Page {
	vertical-align: middle;
}
.Pagination > ul.PagingNumber {
	display: none;
}
/*------------------------------提示框tooltips------------------------------*/
.TooltipsBox {
	position: fixed;
	top: -100%;
	width: 100%;
	background: rgba(0,0,0,.5);
	opacity: 0;
	overflow: hidden;
	-webkit-transition: all .25s ease;
	-moz-transition: all .25s ease;
	transition: all .25s ease;
}
.TooltipsBox.Active {
	opacity: 1;
	top: 0;
	bottom: 0;
	z-index: 1000;
}
.TooltipsBox > .Tooltips {
	color: #fff;
	height: 48px;
	margin: -24px 0 0 -150px;
	position: absolute;
	padding: 0.875em;/*14/16*/
	top: -100%;
	left: 50%;
	width: 300px;
	-webkit-transition: top .5s ease .05s;
	-moz-transition: top .5s ease .05s;
	transition: top .5s ease .05s;
}
.TooltipsBox > .Tooltips > i, .TooltipsBox > .Tooltips > span {
	display: inline-block;
	vertical-align: middle;
}
.TooltipsBox > .Tooltips > i {
	font-size: 20px;
	margin: 0 8px 0 0;
}
.TooltipsBox.Active > .Tooltips {
	top: 50%;
}
.TooltipsBox > .Tooltips.Info {
	background: #333;
}
.TooltipsBox > .Tooltips.Danger {
	background: #ff3e3e;
}
.TooltipsBox > .Tooltips.Success {
	background: #05a901;
}
/*------------------------------燈箱lightbox------------------------------*/
/* LightBox Basic Start */
.LightBox {
	left: 50%;
	top: 50%;
	position: fixed;
	z-index: 1002;
	background: #fff;
	zoom: 1;
	padding: 1em;
	*filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#99ffffff, endColorstr=#99ffffff);
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#99ffffff, endColorstr=#99ffffff)";
	display: none;
}
.LightBox:before{
	content: "";
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	position: fixed;
	z-index: 1000;
	background: #000;
	background: rgba(0,0,0,0.5);
	background: transparent\0/;
	zoom: 1;
	*filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000);
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000)";
	overflow-y: hidden;
	z-index: 999;
}
/*Loading Start*/
.LightBox.LoadingBox {
	/*width: 100%;*/
	padding: 0;
	background: transparent;
	top: 50%;
	left: 50%;
	margin: -44px 0 0 -44px;
}
.LightBox.LoadingBox.Active{
	display: block;
}
.LightBox.LoadingBox > .LoadingText{
	color: #fff;
	text-indent: 6px;
}
#floatingCirclesG{
	position:relative;
	width:88px;
	height:88px;
	-moz-transform:scale(0.6);
	-webkit-transform:scale(0.6);
	-ms-transform:scale(0.6);
	-o-transform:scale(0.6);
	transform:scale(0.6);
	z-index: 1000;
}
.f_circleG{
	position:absolute;
	background-color:#FFFFFF;
	height:16px;
	width:16px;
	-moz-border-radius:8px;
	-moz-animation-name:f_fadeG;
	-moz-animation-duration:0.64s;
	-moz-animation-iteration-count:infinite;
	-moz-animation-direction:linear;
	-webkit-border-radius:8px;
	-webkit-animation-name:f_fadeG;
	-webkit-animation-duration:0.64s;
	-webkit-animation-iteration-count:infinite;
	-webkit-animation-direction:linear;
	-ms-border-radius:8px;
	-ms-animation-name:f_fadeG;
	-ms-animation-duration:0.64s;
	-ms-animation-iteration-count:infinite;
	-ms-animation-direction:linear;
	-o-border-radius:8px;
	-o-animation-name:f_fadeG;
	-o-animation-duration:0.64s;
	-o-animation-iteration-count:infinite;
	-o-animation-direction:linear;
	border-radius:8px;
	animation-name:f_fadeG;
	animation-duration:0.64s;
	animation-iteration-count:infinite;
	animation-direction:linear;
}

#frotateG_01{
	left:0;
	top:36px;
	-moz-animation-delay:0.24s;
	-webkit-animation-delay:0.24s;
	-ms-animation-delay:0.24s;
	-o-animation-delay:0.24s;
	animation-delay:0.24s;
}

#frotateG_02{
	left:10px;
	top:10px;
	-moz-animation-delay:0.32s;
	-webkit-animation-delay:0.32s;
	-ms-animation-delay:0.32s;
	-o-animation-delay:0.32s;
	animation-delay:0.32s;
}

#frotateG_03{
	left:36px;
	top:0;
	-moz-animation-delay:0.4s;
	-webkit-animation-delay:0.4s;
	-ms-animation-delay:0.4s;
	-o-animation-delay:0.4s;
	animation-delay:0.4s;
}

#frotateG_04{
	right:10px;
	top:10px;
	-moz-animation-delay:0.48s;
	-webkit-animation-delay:0.48s;
	-ms-animation-delay:0.48s;
	-o-animation-delay:0.48s;
	animation-delay:0.48s;
}

#frotateG_05{
	right:0;
	top:36px;
	-moz-animation-delay:0.56s;
	-webkit-animation-delay:0.56s;
	-ms-animation-delay:0.56s;
	-o-animation-delay:0.56s;
	animation-delay:0.56s;
}

#frotateG_06{
	right:10px;
	bottom:10px;
	-moz-animation-delay:0.64s;
	-webkit-animation-delay:0.64s;
	-ms-animation-delay:0.64s;
	-o-animation-delay:0.64s;
	animation-delay:0.64s;
}

#frotateG_07{
	left:36px;
	bottom:0;
	-moz-animation-delay:0.72s;
	-webkit-animation-delay:0.72s;
	-ms-animation-delay:0.72s;
	-o-animation-delay:0.72s;
	animation-delay:0.72s;
}

#frotateG_08 {
	left:10px;
	bottom:10px;
	-moz-animation-delay:0.8s;
	-webkit-animation-delay:0.8s;
	-ms-animation-delay:0.8s;
	-o-animation-delay:0.8s;
	animation-delay:0.8s;
	}

	@-moz-keyframes f_fadeG{
	0%{
	background-color:#999999}

	100%{
	background-color:#FFFFFF}

	}

	@-webkit-keyframes f_fadeG{
	0%{
	background-color:#999999}

	100%{
	background-color:#FFFFFF}

	}

	@-ms-keyframes f_fadeG{
	0%{
	background-color:#999999}

	100%{
	background-color:#FFFFFF}

	}

	@-o-keyframes f_fadeG{
	0%{
	background-color:#999999}

	100%{
	background-color:#FFFFFF}

	}

	@keyframes f_fadeG{
	0%{
	background-color:#999999}

	100%{
	background-color:#FFFFFF}

}
.LightBoxTarget {
	background: rgba(0,0,0,.5);
	padding: 10px;
	position: fixed;
	top: -100%;
	opacity: 0;
	overflow-x: hidden;
	overflow-y: auto;
	webkit-overflow-scrolling: touch;
	-webkit-transition: all .25s ease;
	-moz-transition: all .25s ease;
	transition: all .25s ease;
	width: 100%;
}
.LightBoxTarget.Active {
	opacity: 1;
	top: 0;
	bottom: 0;
	z-index: 1000;
}
/*一般提示燈箱*/
.LightBoxContent {
	background: #fff;
	border: 1px solid #ddd;
	/*height: 270px;*/
	margin: 68px auto 10px;
	padding: 1.25em 1.25em 2.25em ;/*20/16*/
	position: relative;
	opacity: 0;
	width: 280px;
	-webkit-transform: translate(0,-25%);
	-ms-transform: translate(0,-25%);
	-o-transform: translate(0,-25%);
	transform: translate(0,-25%);
	-webkit-transition: -webkit-transform .3s ease-out;
	-moz-transition: -moz-transform .3s ease-out;
	-o-transition: -o-transform .3s ease-out;
	transition: transform .3s ease-out;
}
.LightBoxTarget.Active > .LightBoxContent {
	opacity: 1;
	-webkit-transform: translate(0,0);
	-ms-transform: translate(0,0);
	-o-transform: translate(0,0);
	transform: translate(0,0);
}
.LightBoxContent > .Title {
	border-bottom: 1px solid #ddd;
	font-size: 1.125em;/*18/16*/
	/*font-weight: bold;*/
	margin: -1.11em -1.11em 0;/*20/18 20/18 0*/
	padding: 0.67em 1.11em;/*12/18 20/18*/
	text-align: center;
}
.LightBoxContent > .Desc {
	line-height: 1.5;
	margin: 1.5em 0 2.7em;/*20/16 0*/
	text-align: center;
	overflow: hidden;
}
.LightBoxContent > .BtnBox {
	position: absolute;
	right: 1.25em;/*20/16*/
	left: 1.25em;/*20/16*/
	bottom: 1.25em;/*20/16*/
}
.LightBoxContent > .BtnBox > .Btn {
	padding: 7px 5px;
}
.LightBoxContent > .BtnBox.Half > .Btn {
	width: 113px;
}
/*崁入影片 Start*/
.Video {
	position: relative;
	padding-bottom: 56.25%;
	/*padding-top: 30px;*/
	height: 0;
	overflow: hidden;
}
.Video iframe,
.Video object,
.Video embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/*崁入影片 End*/
/*如果使用者之視窗寬度 >=375px，將會再載入這裡的 CSS。*/
@media screen and (min-width: 375px) {}
/*如果使用者之視窗寬度>=600px，將會再載入這裡的 CSS。*/
@media screen and (min-width: 600px) {}
/*如果使用者之視窗寬度>=768px，將會再載入這裡的 CSS。*/
@media screen and (min-width: 768px) {
	/*========================================基本樣式*/
	input[type=text],
	input[type=password],
	input[type=date],
	input[type=month],
	input[type=time],
	input[type=number],
	input[type=email],
	input[type=tel],
	input [type=url],
	select,
	textarea {
		padding: 0.625em;/*10/16*/
	}
	/*========================================元件樣式*/
	/*------------------------------表單------------------------------*/
	/*表單元件-input - radio、checkbox*/
	.RadioBox + label,
	.CheckedBox + label {
		border: none;
	}
	.RadioBox:checked + label,
	.CheckedBox:checked + label {
		border: none;
	}
	/*表單樣式*/
	/*表單樣式-一般欄位、必填欄位共用*/
	fieldset > .PanelBody {
		padding: 1.875em 1.25em;/*30/16 20/16*/
	}
	/*------------------------------麵包屑------------------------------*/
	.Breadcrumb {}
	/*------------------------------分頁------------------------------*/
	.Pagination {
		text-align: center;
		padding: 5px 0;
		margin: 1.875em 0;
	}
	.Pagination > div > a {
		height: 30px;
		padding: 0;
		width: 30px;
	}
	.Pagination > div > a > i {
		font-size: 12px;
		margin: 9px;
	}
	.Pagination > div.Page {
		display: none;
	}
	.Pagination > ul.PagingNumber {
		display: inline-block;
		vertical-align: middle;
		font-size: 0;
		letter-spacing: -4px;
		word-spacing: 0;
	}
	.Pagination > ul.PagingNumber > li {
		font-size: 16px;
		letter-spacing: normal;
		margin: 0 4px;
		word-spacing: normal;
		display: inline-block;
		line-height: 1.5;
		zoom: 1;
	}
	.Pagination > ul.PagingNumber > li > a {
		color: #593b2a;
		display: block;
		padding: 3px;
		text-decoration: none;
	}
	.Pagination > ul > li > a:active, .Pagination > ul > li.Current > a {
		color: #971600;
		text-decoration: underline;
	}
	/*------------------------------LightBox-----------------------------*/
	/*一般提示燈箱*/
	.LightBoxContent {
		margin: 150px auto 20px;
	}
}
/*如果使用者之視窗寬度>=800px，將會再載入這裡的 CSS。*/
@media screen and (min-width: 800px) {}
/*如果使用者之視窗寬度 =1024px(橫向)iPad，將會再載入這裡的 CSS。*/
@media (max-device-width: 1024px) and (orientation: landscape) {}
/*如果使用者之視窗寬度>=1024px，將會再載入這裡的 CSS。*/
@media screen and (min-width: 1024px) {
	/*========================================基本樣式*/
	body {}
	/*連結 a-文字連結-滑過*/
	a:hover {
		text-decoration: none;
	}
	/*按鈕樣式*/
	a.Btn,
	button,
	input[type=button],
	input[type=reset],
	input[type=submit] {}
	/*表單元素-單行輸入欄位(文字、密碼)、下拉選單、多行輸入欄位(留言)*/
	input[type=text],
	input[type=password],
	input[type=date],
	input[type=month],
	input[type=time],
	input[type=number],
	input[type=email],
	input[type=tel],
	input [type=url],
	select,
	textarea {
		padding: 10px;
	}
	/*========================================元件樣式*/
	/*------------------------------按鈕的家------------------------------*/
	.BtnBox.Half > .Btn {
		width: 170px;
	}
	/*------------------------------按鈕尺寸------------------------------*/
	/*------------------------------按鈕-基本型Base------------------------------*/
	.Btn.BtnBase:hover {
		border-color: #ddd;
	}
	/*按鈕 Button-誘導型Dark*/
	/*按鈕 Button-其他Other*/
	/*------------------------------按鈕-誘導型Dark------------------------------*/
	.Btn.BtnDark:hover {
		background: #d51968;
		border-color: #d51968;
		color:#fff;
	}
	/*------------------------------按鈕-其他Other------------------------------*/
	.Btn.BtnOther:hover {
		background: #269600;
		border-color: #269600;
		color:#fff;
	}
	/*------------------------------麵包屑------------------------------*/
	.Breadcrumb {
		margin: 15px auto;
	}
	.Breadcrumb > li > a:hover {
		color: #761404;
		text-decoration: underline;
	}
	/*------------------------------分頁------------------------------*/
	.Pagination > ul > li > a:hover {
		color: #971600;
		text-decoration: underline;
	}
	/*------------------------------表單------------------------------*/
}
/*如果使用者之視窗寬度>=1280px，將會再載入這裡的 CSS。*/
@media screen and (min-width: 1280px) {}
/*如果使用者之視窗寬度>=1920px，將會再載入這裡的 CSS。*/
@media screen and (min-width: 1920px) {}