﻿@charset "utf-8";
/** errorWrap **/
#errorWrap {
	width:100%;
	margin:0 auto;
}
@media screen and (min-width:991px) {
	#errorWrap{
		display:flex;		
		align-items:center;
		height:100%;
	}
}
/** errorPage **/
#errorPage {
	position:relative;
	width:100%;
	margin:0 auto;
}
#errorPage .logo {
    display:block;
    width:320px;
	height:50px;
	background:url(../images/logo.png) no-repeat 50% 50%;
	background-size:contain;
	margin:20px auto;
}
#errorPage .errorBox {
	position:relative;
    width:100%;
	text-align:center;
    padding:50px 0;
	box-sizing:border-box;
    margin:0 auto;
	background:#8cbe41; /* Old browsers */
	background:-moz-linear-gradient(-45deg,  #8cbe41 0%, #1b9282 50%, #095fa4 100%); /* FF3.6-15 */
	background:-webkit-linear-gradient(-45deg,  #8cbe41 0%,#1b9282 50%,#095fa4 100%); /* Chrome10-25,Safari5.1-6 */
	background:linear-gradient(135deg,  #8cbe41 0%,#1b9282 50%,#095fa4 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#8cbe41', endColorstr='#095fa4',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
	background-size:cover;
}
#errorPage .errorBox .acKey {
	position:absolute;
	top:20px;
	left:20px;
	color:transparent;
	font-size:1.1em;
}
#errorPage .errorBox .acKey:hover,
#errorPage .errorBox .acKey:focus {
	color:#FFF;
	outline:1px dashed #FF6600;
}
#errorPage .errorBox h2 {
    color:#FFF;
	font-family:"PingFang TC Semibold", "微软雅黑", "Microsoft YaHei";
	font-size:4.3em;
	margin:0 0 10px 0;
	-webkit-text-shadow:0px 1px 5px rgba(0,0,0,.5), 0px 1px 15px rgba(0,0,0,.5);
	   -moz-text-shadow:0px 1px 5px rgba(0,0,0,.5), 0px 1px 15px rgba(0,0,0,.5);
	    -ms-text-shadow:0px 1px 5px rgba(0,0,0,.5), 0px 1px 15px rgba(0,0,0,.5);
	        text-shadow:0px 1px 5px rgba(0,0,0,.5), 0px 1px 15px rgba(0,0,0,.5);
}
#errorPage .errorBox h3 {
	color:#FFF;
	font-size:2.1em;
	margin:10px 0 25px 0;
	-webkit-text-shadow:0px 1px 5px rgba(0,0,0,.5), 0px 1px 15px rgba(0,0,0,.5);
	   -moz-text-shadow:0px 1px 5px rgba(0,0,0,.5), 0px 1px 15px rgba(0,0,0,.5);
	    -ms-text-shadow:0px 1px 5px rgba(0,0,0,.5), 0px 1px 15px rgba(0,0,0,.5);
	        text-shadow:0px 1px 5px rgba(0,0,0,.5), 0px 1px 15px rgba(0,0,0,.5);
}
#errorPage .errorBox p {
	color:#FFF;
	font-size:1.9em;
	line-height:150%;
	font-weight:bold;
	-webkit-text-shadow:0px 1px 5px rgba(0,0,0,.5), 0px 1px 15px rgba(0,0,0,.5);
	   -moz-text-shadow:0px 1px 5px rgba(0,0,0,.5), 0px 1px 15px rgba(0,0,0,.5);
	    -ms-text-shadow:0px 1px 5px rgba(0,0,0,.5), 0px 1px 15px rgba(0,0,0,.5);
	        text-shadow:0px 1px 5px rgba(0,0,0,.5), 0px 1px 15px rgba(0,0,0,.5);
}
#errorPage .errorBox p.eng {
	font-family:Arial, Helvetica, sans-serif;
	font-size:1.9em;
}
#errorPage .errorBtn {
	width:100%;
	text-align:center;
    margin:2rem auto 1rem auto;
}
#errorPage .errorBtn a {
	display:inline-block;
	width:calc(100% - 10px);
	max-width:300px;
    color:#000;
    font-size:1.7em;
	padding:10px 0;
	border:1px solid #000;
	box-sizing:border-box;
	-webkit-border-radius:50px;
	   -moz-border-radius:50px;
			border-radius:50px;
	margin:5px;
}
#errorPage .errorBtn a:hover,
#errorPage .errorBtn a:focus {
	color:#FFF;
    background:#000;
}
#errorPage .mark {
	text-align:center;
	margin-top:1rem;
}
#errorPage .mark a {
	display:inline-block;
	vertical-align:middle;
	margin:0 5px;
}
#errorPage .wd {
	text-align:center;
	margin-top:1rem;
}
#errorPage .wd p {
	color:#000;
	font-size:1rem;
	line-height:165%;
	margin:0;
}
#errorPage .wd p strong {
    font-family:"PingFang TC Semibold", "微软雅黑", "Microsoft YaHei";
	font-size:1.2rem;
}
#errorPage .wd p span {
	display:inline-block;
	margin:0 10px;
}
@media screen and (max-width:480px) {
	#errorPage .logo {
		width:210px;
		height:30px;
		background:url(../images/logo_mobile.png) no-repeat 50% 50%;
		background-size:contain;
	}
	#errorPage .errorBox h2 {
		font-size:3.9em;
	}
	#errorPage .errorBox h3 {
		font-size:1.7em;
	}	
}
@media screen and (min-width:991px) {
	#errorPage{
		min-height:640px;
	}
	#errorPage .logo {
		width:320px;
		height:50px;
		background-size:contain;
		margin:30px auto;
	}
	#errorPage .errorBox {	
		padding:60px 0;
	}	
	#errorPage .errorBox .acKey {
		top:30px;
		left:50%;
		margin-left:-450px;
	}
	#errorPage .errorBox h2 {
		font-size:4.9em;
	}
	#errorPage .errorBox h3 {
		font-size:2.1em;
	}
}
@media screen and (min-width:1200px) {
	#errorPage .errorBox h2 {
		font-size:5.9em;
	}
	#errorPage .errorBox h3 {
		font-size:2.7em;
	}
}
.ui-widget,
.ui-datepicker {
	font-family:"PingFang TC", "微軟正黑體", "Microsoft JhengHei", Arial, Helvetica, sans-serif !important;
    font-size:1rem !important;
	z-index:2 !important;
}
/** comPage **/
#comPage{
	position:relative;
	width:100%;
	padding:20px;
	margin:20px auto 0;
	box-sizing:border-box;
	background-color:transparent;
	border:1px solid #ddd;
	border-bottom:none;
	border-radius:4px 4px 0 0;
	min-height:420px;
}
#comPage img {
	max-width:100%;
	height:auto;
}
#comPage .acKey {
	position:absolute;
	margin-top:-15px;
	z-index:2;
}
/* ----- pageWord ----- */
.pageWord {
	width:100%;
	font-size:1.7em;
	line-height:165%;
	margin:15px auto 0 auto;
	color:#787878;
}
.pageWord .en{
	font-size:90%;
	color:#333;
}
.pageWord img {
	max-width:100%;
	height:auto !important;
	margin:0 auto;
}
.pageWord > ol,.pageWord > ul,
.pageWord li ol,.pageWord li ul {
	margin-left:1.5em;
}
.pageWord .stit{
	position:relative;
	color:#000;
	font-size:1.125em;
	font-weight:bold;
	line-height:135%;
}
.pageWord .stit{
	padding-left:0.75em;
}
.pageWord .stit::before,
.pageWord .stit::after{
	content:"";
	display:block;
	position:absolute;
	width:4px;
	height:8px;
	background-color:#d82500;
	transform-origin:bottom;
	transform:skewX(-20deg);
}
.pageWord .stit::before{top:6px;left:0;}
.pageWord .stit::after{top:14px;left:1px;}
.pageWord > * + h3{ margin-top:1em;}
.pageWord > h3{ font-size:1.25em;}
.pageWord table {
	font-size:1rem;
	border:1px solid #c2cad6;
	border-collapse:collapse;
}
.pageWord table caption {
	margin-bottom:10px;
}
.pageWord table th {
	color:#FFF;
	text-align:center;
	vertical-align:middle;
	padding:15px 5px;
	border:1px solid #c2cad6;
	border-collapse:collapse;
	background:#2e466b;	
	box-sizing:border-box;
}
.pageWord table td {
	color:#000;
	padding:15px 5px;
	vertical-align:middle;
	border:1px solid #c2cad6;
	border-collapse:collapse;
	box-sizing:border-box;
}
/** pageBack **/
#pageBack {
	width:100%;
	text-align:center;
	margin:30px auto 0;	
}
#pageBack a {
	position:relative;
	display:inline-block;
	font-family:"微軟正黑體",Arial, Helvetica, sans-serif;
	color:#000;
	font-size:1.7em;
	line-height:120%;
	font-weight:bold;
	padding:8px 22px;
	margin:0 auto;
	background:none;
	border-radius:50px;
}
#pageBack a:hover,
#pageBack a:focus{color:#57a5e3;}
#pageBack a span {
	position:relative;
	display:inline-block;
	padding:0 24px 0 0;
}
#pageBack a::before{
	content:"";display:block;
    position:absolute;
	right:15px;top:50%;
	width:24px; height:24px;
	border-radius:20px;
	margin-top:-12px;
	transition:all 0.4s ease;
}
#pageBack a:hover::before,
#pageBack a:focus::before{
	background-color:#57a5e3;
}
#pageBack a span::before {
    content:"";display:block;
    position:absolute;z-index:2;
    right:0px;top:50%;
	margin-top:-5px;
	width:8px;height:8px;
	border-bottom:2px solid #000;
	border-right:2px solid #000;
	transition:all 0.3s ease;
	transform: rotate(-45deg);
}
#pageBack a span::after{
    content:"";display:block;
    position:absolute;z-index:2;
	right: 0;top: 50%;
    width: 12px;height:2px;
	background-color:#000;
	margin-top:-1px;
	transition:all 0.3s ease;
}
#pageBack a:hover span::before,
#pageBack a:focus span::before{
	border-color:#fff;
}
#pageBack a:hover span::after,
#pageBack a:focus span::after{
	background-color:#fff;
}

/** newsBox **/
#resBox {
	width:100%;
	margin:15px auto 0 auto;
}
#resBox > ul { position:relative; }
#resBox > ul::before{
	content:"";
	display:block;
	background-color:#bbd9ee;
	width:100%;
	height:55px;
	position:absolute;
	left:0;top:0;
	border-radius:2px;
}
#resBox > ul > li { list-style:none; }
#resBox > ul > li > a {
	position:absolute;
	top:10px;
	display:block;
	width:calc(20% - 10px);
	text-align:center;
	color:#000;
	background-color:transparent;
	border:none;
	min-height:45px;
}
#resBox > ul > li > a:hover,
#resBox > ul > li > a:focus {
	color:#D60000;
}
#resBox > ul > li > a.saTabOn {
	position:relative; cursor:text; z-index:1;
}
#resBox > ul > li:has(.tab1) > a {left:10px;}
#resBox > ul > li:has(.tab2) > a {left:calc(20% + 10px);}
#resBox > ul > li:has(.tab3) > a {left:calc(40% + 10px);}
#resBox > ul > li:has(.tab4) > a {left:calc(60% + 10px);}
#resBox > ul > li:has(.tab5) > a {left:calc(80% + 10px);}
#resBox > ul > li > a h3 {
    font-size:1.5em;
	font-weight:bold;
	display:flex;flex-wrap:wrap;
    justify-content:center;
    align-items:center;
    flex-direction:column;
    position:relative;
    min-height:35px;
	background-color:#E6F0F5;
}
#resBox > ul > li > a.saTabOn h3 {
	color:#FF9834;
	background:#fff;
	min-height:45px;
	overflow:hidden;
}
#resBox > ul > li > a,
#resBox > ul > li > a h3 {
	box-sizing:border-box;
	border-radius:2px;
}
#resBox > ul > li > a.saTabOn,
#resBox > ul > li > a.saTabOn h3 {
	border-radius:2px 2px 0 0;
}
#resBox > ul > li .saCont {
	position:relative;	
	float:left;
	width:100%;
	margin:15px auto;
}
#resBox > ul > li .saCont.mTop {
	margin-bottom:0 !important;
}
@media screen and (max-width:767px) {
	#resBox > ul > li > a h3 {
		font-size:1.4em;
	}
}
@media screen and (max-width:480px) {
	#resBox > ul > li > a h3 {
		font-size:1.3em;
	}
}

/** resList **/
.resList{
	width:100%;
	margin-top:2px;
}
.resList ul {
	list-style:none;
	padding-left:0;	
}
.resList li {
	width:100%;
	text-align:left;
}
.resList li + li{
	border-top:1px dotted #aaa;
}
.resList li a.oneFiles,
.resList li .mulWrap {
	width:100%;		
	display:flex;
	flex-wrap:wrap;
	align-items:center;		
	padding: 10px 10px 10px 15px;
	box-sizing:border-box;
	position:relative;	
}
.resList li .oneFiles::before,
.resList li .oneFiles::after,
.resList li .mulWrap::before,
.resList li .mulWrap::after{
	content:"";
	display:block;
	width:8px;
	height:2px;
	background-color:#d08c50;
	position:absolute;
	left:0;top:17px;
}
.resList li .oneFiles::after,
.resList li .mulWrap::after{
	transform: rotate(90deg);
}
.resList .mulFiles{
	width:30px;
	height:30px;
	display:inline-block;
	margin:4px;
	background-image:url(../images/files_download.svg);
	background-repeat:no-repeat;
	background-position:center;
	background-size:contain;
}
.resList li .oneFiles:has(.filesWrap),
.resList li .mulWrap:has(.filesWrap){
	justify-content:space-between;
}
.resList .textWrap{
	width:calc(100% - 85px);
}
.resList .filesWrap{
	width:85px;
	display: flex;
	flex-wrap: wrap;
	justify-content:flex-end;
	align-items: center;
}
.resList time {
	width:85px;	
	color:#AA8264;
	font-size:1.3em;
}
.resList strong {
	width:calc(100% - 85px);	
	color:#0096C8;
	font-size:1.5em;	
	overflow:hidden;
	white-space: nowrap;
	text-overflow: ellipsis;	
}
.resList strong + p{ margin-top:0.5em;}
.resList p{
	width:100%;
	color:#787878;
	line-height:150%;
	text-align:justify;
}
.resList a:hover strong,
.resList a:focus strong {
	color:#D23A2A;
	text-decoration:underline;
}
@media screen and (max-width:767px) {
	.resList p{
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
	}
}
/** prodWrap **/
.prodWrap{
	width:100%;
	box-sizing:border-box;
	padding:10px 0;
}
.prodWrap + .prodWrap{
	border-top: 1px dotted #aaa;
}
.prodWrap h3{
	font-size:1.6em;
	line-height:150%;
	font-weight:bold;
	color:#000;
	margin-bottom:0.25em;
}
.prodNo{
	font-family:Arial, Helvetica, sans-serif;
	color:#ff9834;
}
.prodNo::after{
	content:"-";
	display:inline-block;
	margin:0 0.25em;
}
.prodWrap > ul{
	width:100%;
	list-style:none;
	position:relative;
	box-sizing:border-box;
	display:flex;
	flex-wrap:wrap;
}
.prodWrap > ul > li{width:100%;}
.prodWrap .oneProd{
	width:100%;
	display:flex;
	flex-wrap:wrap;
	align-items: center;
}
.prodWrap .postUrl{
	width:calc(100% - 60px);		
	display:flex;
	flex-wrap:wrap;
	align-items:center;		
	padding: 6px 10px 6px 15px;
	box-sizing:border-box;
	position:relative;
	color:#1d7723;
	font-size:1.5em;
	max-width:100%;
}
.prodWrap .postUrl:hover,
.prodWrap .postUrl:focus,
.prodWrap .postUrl.open{
	text-decoration:underline;
	color:#D23A2A;
}
.prodWrap .postUrl::before,
.prodWrap .postUrl::after{
	content:"";
	display:block;
	width:8px;
	height:2px;
	background-color:#909090;
	position:absolute;
	left:0;top:13px;
}
.prodWrap .postUrl::after{
	transform: rotate(90deg);
}
.prodWrap .photo {
	width:50px;
	border:1px solid #ddd;
	margin:5px;
	box-sizing:border-box;
}
.prodWrap .photo .img{
	width:100%;
	padding-bottom:100%;
	display:block;
	background-color:#fff;
	background-image:url(../images/noimg.jpg);
	background-repeat:no-repeat;
	background-position:50% 50%;
	background-size: contain;
}
@media screen and (min-width:768px) {
	.prodWrap{ min-height:200px;}
	.prodWrap > ul{padding-left:200px;}
	.prodWrap > ul > li{width:50%;}
	.prodWrap .postUrl{width:auto;}
	.prodWrap .photo{
		width:140px;
		position:absolute;
		left:0;top:0;
		visibility:hidden;
	}
	.prodWrap > ul > li:first-of-type .photo,
	.prodWrap .oneProd:has(.postUrl:hover) .photo,
	.prodWrap .oneProd:has(.postUrl:focus) .photo,
	.prodWrap .oneProd:has(.postUrl.open) .photo{
		visibility:visible;
	}
	.prodWrap .oneProd:has(.postUrl:focus) .photo{
		z-index:2;
	}
	.prodWrap .postUrl strong {
		overflow:hidden;
		white-space: nowrap;
		text-overflow: ellipsis;	
	}
}
/** prodAlbum **/
.prodAlbum{width:100%;}
.prodHead{
	width:100%;
	background-color:#bbd9ee;
	box-sizing:border-box;
	padding:5px 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content:space-between;
}
.prodHead > h3{
	color: #0098c9;
    font-size:1.8em;
    font-weight: bold;
    line-height: 135%;
}
.prodHead > strong{
	font-size:1.4em;
	color:#d82500;
}
.galleryWrap .lightbox{
	width:100%;
	display:block;
}
.galleryWrap{
	width:100%;
	background-image:linear-gradient(180deg, #eaeaea 0%, rgba(255,255,255,0) 100%);
	box-sizing:border-box;
	padding:20px;
}
.galleryWrap:has(.albumWrap){
	display:flex;flex-wrap:wrap;
	align-items:flex-start;
}
.sliderWrap{width:100%;}
.albumWrap{width:100%;}
.galleryWrap > figure{
	width:100%;
	display:flex;flex-wrap:wrap;
	align-items:flex-start;
}
.galleryWrap > figure figcaption,
.galleryWrap .prodName{
	width:100%;
	position:relative;
	color:#333;
	font-size:1.5em;
	font-weight:bold;
	padding-left:1.5em;
	margin-top:1.5em;
	box-sizing:border-box;
}
.galleryWrap .prodName{ display:block;}
.galleryWrap > figure figcaption::before,
.galleryWrap .prodName::before{
	content:"";display:block;
	position:absolute;
	left:0;top:50%;
	width:4px; height:4px;
	border:4px solid #d82500;
	border-radius:10px;
	margin-top:-4px;
}
.galleryWrap figure .inBox{
	width:100%;
	max-width:400px;
}
.albumWrap .sliderNav{ margin-top:0.5em;}
.albumWrap .sliderNav .slick-track{
	margin-left:0;
	margin-right:0;
}
.albumWrap .sliderNav .slick-slide{
	box-sizing:border-box;
	padding:4px;
	cursor:pointer;
}
.galleryWrap .pic{
	width:100%;
	padding-bottom:100%;
	display:block;
	position:relative;
	border:1px solid #ddd;
	background-color:#fff;
	box-sizing:border-box;
}
.galleryWrap .sliderNav .slick-current .pic{
	border-color:#bbd9ee;
}
.galleryWrap .pic .img{
	position:absolute;
	left:0;top:0;
	width:100%;
	height:100%;
	display:flex;flex-wrap:wrap;
	align-items:center;
	justify-content:center;
	flex-direction: column;
}
.galleryWrap img{
	max-width:100%;
	max-height:100%;
	width:auto;
	height:auto;
}
.lineRow{
	width:calc(100% - 40px);
	margin-left:auto;
	margin-right:auto;
}
.lineRow + .lineRow,
* .lineRow{
	border-top:1px dotted #aaa;
	padding-top:1em;
	margin-top:1em;
	box-sizing:border-box;
}
@media screen and (min-width:481px) {
	.galleryWrap > figure .inBox{width:40%;}
	.galleryWrap > figure figcaption{
		width:calc(60% - 20px);
		margin-left:20px;
		font-size:1.6em;
	}
	.sliderWrap{width:40%;}
	.albumWrap{
		width:calc(60% - 20px);
		margin-left:20px;
	}
	.galleryWrap .prodName{font-size:1.6em;}
}
/** video-wrapper **/
.video-wrapper {
	position:relative;
	width:100%;
	padding-bottom:56.25%;
	overflow:hidden;
	margin:0 auto;
}
* + .video-wrapper{margin-top:0.5em;}
.video-wrapper iframe,
.video-wrapper object,
.video-wrapper embed {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}
.video-wrapper .inVideo{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-color:#000;
}
.video-wrapper .inVideo video{
	max-height:100%;
}
@media print {

}