@charset "utf-8";
/* CSS Document */

@import url(font-awesome/css/font-awesome.min.css);


body {
    font-family: 'Open Sans', 微軟正黑體, 新細明體, sans-serif;
	font-size: 18px;
	color: #3c3c3c;
	background: #fff;
}

a {
	cursor: pointer;
	color: #3c3c3c;
	text-decoration: none;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

a:hover, a:focus { 
	color: #e0a800;  
	text-decoration: none; 
}

img { 
	max-width: 100%; 
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;			   
}

p {
	margin: 0;
}

ul, label {
	margin: 0;
	padding: 0;
}

ul, li {
	list-style-type: none;
}

h1 {
    font-family: 'Open Sans', "微軟正黑體", "新細明體", sans-serif;
    font-size: 32px;
    color: #333;
    line-height: 40px;
    font-weight: normal;
}

input[type="text"]{
	-webkit-appearance: none;
	font-size: 14px;
}

textarea {
	-webkit-appearance: none;
}

.border-box {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

.wrap{
	width: 1200px;
	margin: 0 auto;
	padding:0 15px; 
}



/*----- header -----*/
header {
	width: 100%;
	height: 85px; 
	position: fixed;
	top: 0; 
	left: 0;
	z-index: 1000;
	background-color:#000; 
}

header .logo {
	float: left;
	display: block;
	width: 358px;
	height: 85px;
}

/*
header .logo a {
	display: block;
	background: url(../images/en/logo.png) no-repeat center center;
	background-size: cover;
	width: 373px;
	min-height: 85px;
	text-indent: -9999px;
}
*/
	
header .language {
	line-height: 25px;
	margin: 8px -5px 10px 0;
	font-size: 13px;
	color: #a7a7a7;
	text-align: right;
}

header .language a {
	padding: 0 5px;
	color: #a7a7a7;
}	

header .language a:hover {
	color: #fac709;
}	



/*----- nav -----*/
header nav {
	float: right;
}

header nav ul.menu {
	
}

header nav ul.menu li {
	float: left;
	margin: 0 27px;
	position: relative;
	z-index: 1;
	font-size: 16px;
}

header nav ul.menu li:last-child {
	margin-right: 0;
}

header nav ul.menu li > a {
	color: #fff;
	padding: 0 0 0.5em;
	position: relative;
	display: block;
}

header nav ul.menu li > a:hover {
	color: #fac709;
}

header nav ul.menu li.current > a {
	color: #fac709;
}

header nav ul.menu li.current > a:before {
	background: #fac709;
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-o-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
}

header nav ul.menu li ul {
	margin-top: 11px;
	padding: 0;
	border: 0;
	background-color: #000;
	filter: alpha(opacity=85);
	background: rgba(0, 0, 0, 0.85); 
	-moz-border-radius: 0; 
	-webkit-border-radius: 0; 
	border-radius: 0;
	box-shadow: none; 
}

header nav ul.menu li ul li {
	float: none;
	margin: 0;
	padding-bottom: 0;
}

header nav ul.menu li ul li > a {
	font-size: 14px;
	color: #c7c7c7;
	text-align: left;
	padding: 10px 15px;
}

header nav ul.menu li ul li > a:hover {
	color: #fac709;
	background-color: #474747;
}

.mobile-menu {
	display:none;
}



/* nav effect */
.nav-effect {
	overflow: hidden;
}

.nav-effect:before {
	left: -1px;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: #fac709;
	content: '';
    position: absolute;
    transition: transform .5s ease;
	-webkit-transform: translateX(-100%);
	-moz-transform: translateX(-100%);
	-o-transform: translateX(-100%);
	-ms-transform: translateX(-100%);
	transform: translateX(-100%);

}

.nav-effect:hover:before {
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-o-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
}




/*----- banner -----*/
.bannerArea {
	clear: both;
	position: relative;
	margin-top: 85px;
}

.banner-m {
	display: none;
}



/*----- 子選單區 -----*/
.submenuArea {
	width: 100%;
	position: fixed;
	top: 85px; 
	left: 0;
	padding: 25px 0 30px;
	z-index: 99;
	background: #fff;
}

.subMenu {
	text-align:center; 
}

.subMenu li {
	min-width: 80px;
	display: inline-block;
	margin: 0 10px 17px;
	background-color: #dadada; 
	text-align: center;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.subMenu li h3 a {
	font-size: 15px;
	color: #151515;
	font-weight: normal;
	padding: 15px 15px;
	display: block;
}

.subMenu li h3 a:hover {
	color: #fff;
}

.subMenu li:hover, 
.subMenu li.active {
	color: #fff;
	background-color: #bb9407;
}

.subMenu li.active a {
	color :#fff;
}

.subMenuTw li h3 a {
	font-size: 17px;
	padding: 14px 18px;
}




/*----- 內容區 -----*/
.mainArea {
	padding: 0 0 90px 0;
	margin-top: 277px;
	position: relative;
	background: #fff;
}

.mainArea02 {
	padding: 35px 0 90px 0;
	margin-top: 0;
	position: relative;
	background: #fff;
}

.titleBox h1 {
	color: #1e1e1e;
	font-size: 1.87em;
	font-weight: normal;
	margin: 0 0 30px 0;
	text-align: center;
	font-family: 'Philosopher', 微軟正黑體, 新細明體, sans-serif; 
}

.m_submenuList {
	display: none;
}

.imgCenter {
	text-align: center;
}

	


/*----- 網站導覽bread -----*/
.bread{
	font-size: 13px;
	color: #686868;
	text-align: right;	
	margin: 0 0 20px 0;
}

.bread a {
	color: #686868;
}

.bread a:hover {
	color: #cf9b00;
}

.bread a i {
	font-size: 20px;
	vertical-align: bottom;
}

.bread span.sign {
	padding: 0 5px;
	color: #a8a8a8;
}

.bread span.current,
.bread span.current a {
	color: #cf9b00;
}




/*----- 頁尾資訊 -----*/
footer .footerArea {
	padding: 50px 0 30px;
	background-color: #111;
}
footer .qrcode {
	width: 11%;
	float: left;
	margin: 4px 30px 0 0;
}
footer .footermenuBox {
	width: 57%;
	float: left;
	margin-right: 30px;
}
ul.footerMenu {
	list-style: none;
	margin-bottom: 15px;
}
ul.footerMenu li {
	margin: 0; 
	font-size: 14px;
	color: #e0e0e0;
}
ul.footerMenu li a {
	padding: 0 0 15px 0; 
	position: relative; 
	color: #e0e0e0;
}
ul.footerMenu li a:hover {
	color: #fcbf00; 
}
h5.footerInfo {
	width: 26%;
	float: left;
	font-weight: normal;
}
h5.footerInfo .companyName {
	font-size: 27px;
	color: #ca9903;
	margin: -5px 0 10px -3px;
	font-family: 'PT Serif', 微軟正黑體, 新細明體, sans-serif;
}
h5.footerInfo p.infotext {
	font-size: 14px;
	color: #cdcdcd;
	line-height: 1.7;
}
h5.footerInfo p.infotext a {
	color: #cdcdcd;
}
h5.footerInfo p.infotext a:hover {
	color: #fff;
}
h5.footerInfo a[href^=tel] {
    color: inherit;
    text-decoration: none;
}
.footerApp {
	padding-top: 10px; 
}
.copyright {
	padding: 15px 0 0;
	font-size: 0.8em;
	color: #797979;
	line-height: 1.7;
	clear: both;
}
.copyright a {
	color: #797979;
}
.copyright a:hover {
	color: #fcbf00;
}
.copyright em {
	color: #797979;
	font-style: normal;
}



/*----- Go Top -----*/
.gotop {
    width: 40px;
    height: 40px;
	-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    filter: alpha(opacity=80);
    opacity: 0.8;
    position: fixed;
    bottom: 100px;
    right: 15px;
    display: none;
    text-align: center;
    color: #fff;
    font-size: 18px;
	border-radius: 2px;
    background: #000;
    z-index: 9999;
	cursor: pointer;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.gotop:hover {
	 background: #bb9407;
}

.gotop i,
.gotop:hover i,
.gotop:focus i {
	color: #fff;
    line-height: 38px;
}





/*----- 響應式 -----*/
@media (max-width: 1199px){
.wrap{
	width: 100%;
	padding: 0 3.5%;
}

header nav ul.menu li {
	margin: 0 15px 0 16px;
}

.mainArea {
	margin-top: 270px;
}




/*----- 子選單 -----*/
.subMenu {
	display: none;
}


/*----- 下拉子分類選單 -----*/	
.m_submenuList {
	display: block;
	width: 100%;
}
.m_submenuHead {
	width: 100%;
	padding: 10px;
	font-size: 16px;
	color: #fff;
	cursor: pointer;
	border: 1px solid #000;
	position: relative;
	background: #000 url(../images/en/pro_down.png) center right no-repeat;
}

.m_submenuBody {
	width: 100%;
	height: auto;
	overflow: hidden;
	font-size: 15px;
	backguound: #454545;
	border: 1px solid #454545;
	border-top: none;
	box-sizing: border-box;
}

.m_submenuBody a {
	display: block;
	padding: 15px 5px 15px 27px;
	position: relative;
	color: #fff;
	background: #454545;
	text-decoration: none;
	border-top: 1px solid #1b1b1b;
}

.m_submenuBody a:hover {
	color: #fff;
	background: #bb9407;
	text-decoration: none;
}

.m_submenuBody a:before{
	content:"．";
	position:absolute;
	top:9px;
	left:6px;
	font-size:1.5em;
	width:20px;
	height:20px;
	display:block;
}

.m_submenuBody a:first-child {
	border-top: none;
}


/*----- footer -----*/
footer .qrcode,
footer .footermenuBox {
	margin-right: 25px;
}

footer .footermenuBox {
	width: 58%;
}

h5.footerInfo {
	width: 25%;
}


}


/*991*/
@media (max-width: 991px){
.wrap{
	padding: 0 5%;
	overflow: hidden;
}

header{
	display: none;
}

.submenuArea {
	top: 60px; 
}

.mainArea{
	margin-top: 235px;
}


/*----- banner -----*/
.bannerArea{
	min-height: auto;
	margin-top: 60px;
}






/*----- mobile menu -----*/
.mobile-menu {
	display: block;
}
.mobile-menu {
	width: 100%; 
	position: fixed;	
	top: 0; 
	left: 0; 
	z-index: 9999;
}
.mobile-menu .mask {	
	display: none;
	background: #fff; 
	opacity: 0.7; 
	position: fixed; 
	width: 100%; 
	height: 100%;
	padding-bottom: 60px; 
	top: 0; 
	left: 0;
}
.mobile-menu .controlBox {
	background: #000;
	/* background: -webkit-linear-gradient(270deg,rgba(255,255,255,1) 0%,rgba(219,219,219,1) 100%);
	background: -moz-linear-gradient(270deg,rgba(255,255,255,1) 0%,rgba(219,219,219,1) 100%);
	background: -o-linear-gradient(270deg,rgba(255,255,255,1) 0%,rgba(219,219,219,1) 100%);
	background: linear-gradient(180deg,rgba(255,255,255,1) 0%,rgba(219,219,219,1) 100%); */
}
.mobile-menu .controlBox a.main { 
	cursor: pointer;
	display: block;	
	float: left; 
	margin-right:5px; 
	width: 50px;
	height: 60px; 
	font-size: 20px; 
	color: #fff; 
	line-height: 60px;
	text-align: center; 
	background: #000; /* Old browsers */
}
.mobile-menu .controlBox .m_logo {
	width: 100%;
	text-align: center;
}	


/*----- mobile menu 內容 -----*/
.mobile-menu .hideBox { 
	display: none; 
	background: #272727; 
	width: 300px; 
	height: 100%;
	padding-bottom: 50px; 
	overflow-y: auto; 
	position: fixed; 
	left: 0; 
	top: 0;
}
.mobile-menu .hideBox p.sp { 
	padding: 10px; 
	font-size: 13px;	
	color: #fff; 
	background: #d8ab0a;
}
.mobile-menu .hideBox p.language_m { 
	padding: 20px 0 20px 10px; 
	font-size: 14px;	
	color: #fff; 
}
.mobile-menu .hideBox p.language_m a { 
	color: #fff; 
}
.mobile-menu .hideBox p.language_m a:hover { 
	color: #fac709; 
}
.mobile-menu .hideBox p.language_m span { 
	margin:0 12px; 
}

.mobile-menu ul.nav{}
.mobile-menu ul.nav li {
	border-bottom:1px solid #383838;
}
.mobile-menu ul.nav li > a:hover,
.mobile-menu ul.nav li > a:focus {
	color: #fac709; 
	background-color: #383838;
}

.mobile-menu ul.nav li a {
	padding: 20px 10px; 
	font-family: 'Open Sans', "微軟正黑體", "新細明體", sans-serif; 
	display: block; 
	font-size: 15px; 
	color: #fff; 
	text-transform: capitalize;
}
.mobile-menu ul.nav li a i {
	float: right;
	font-size: 13px;
	padding-top: 4px; 
}
.mobile-menu ul.nav li .submenu {
	display: none;
}
.mobile-menu ul.nav li .submenu a {	
	padding: 10px 20px;
}
.mobile-menu ul.nav li .submenu a:hover {
	background: #9c7f26;
}



/*----- footer -----*/
footer .qrcode,
footer .footermenuBox,
h5.footerInfo {
	width: 100%;
	float: none;
	margin-right: 0;
}

footer .qrcode,
h5.footerInfo,
.copyright {
	text-align: center;
}

footer .qrcode {
	margin-top: 0;
	margin-bottom: 40px;
}

footer .footermenuBox {
	display: none;
}

h5.footerInfo {
	margin-bottom: 20px;
}

h5.footerInfo .companyName {
	margin-top: 0;
}



		

}


/*767*/
@media (max-width: 767px){

.banner {
	display: none;
}
	
.banner-m {
	display: block;
}


/*----- bread -----*/
.bread {
	display: none;
}



}


/*640*/
@media (max-width: 640px){


	
	

}




/*480*/
@media (max-width: 480px){




}
