/*20160930 by kevin*/
@charset "utf-8";
/* CSS Document */

/*------------------------------------------CSS Reset 開始-------------------------------*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, div, span, applet, object, iframe, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, dt, dd, li,
fieldset, form, label, legend,
 caption, tbody, tfoot, thead, th,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	/*font: inherit;*//*修改部分 by kevin 20140822*/
	/*vertical-align: baseline;*//*修改部分 by kevin 20140822*/
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	/*list-style: none;*//*修改部分 by kevin 20140822 會影響到網邊*/
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	/*border-collapse: collapse;
	border-spacing: 0;*/
}

body{ 
	margin: 0; 
	padding: 0;
	background: #fff;
	color: #333;
	font-family: Arial, Helvetica, sans-serif, "Century Gothic", "Times New Roman", Times, serif, "微軟正黑體", "新細明體";
	/*overflow-x: hidden;*/
	letter-spacing: 1px;
	-webkit-text-size-adjust: none;/*解決iphone橫平轉豎屏時字變大的問題*/
}

/* ~~ 元素/標籤選取器 ~~ */
ul, ol, dl { /* 由於瀏覽器之間的差異，最佳作法是在清單中使用零寬度的欄位間隔及邊界。為了保持一致，您可以在這裡指定所要的量，或在清單包含的清單項目 (LI、DT、DD) 上指定所要的量。請記住，除非您寫入較為特定的選取器，否則在此執行的作業將重疊顯示到 .nav 清單。 */
	padding: 0;
	margin: 0;
}

/*-----↓↓↓↓新增部分 by kevin 20150108 為了網編↓↓↓↓-----*/
ul, ol {
	padding-left:40px;
}
/*-----↑↑↑↑新增部分 by kevin 20150108 為了網編↑↑↑↑-----*/

/*h1, h2, h3, h4, h5, h6,*/ p {	margin: 0; padding: 0;}

/*img{ display:block;}*//*清除IE7下方溢位*/

a img { /* 這個選取器會移除某些瀏覽器在影像由連結所圍繞時，影像周圍所顯示的預設藍色邊框 */
	border: none;}

.clearfloat { /* 這個類別可放置在 <br /> 或空白的 Div 上，當做接在 #container 內最後一個浮動 Div 後方的最後一個元素 (如果從 #container 移除或取出 #footer) */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
a{ 
	/*color:#ccc;*//*修改部分 by kevin 20140814 會影響到網編區 不宜使用*/
	text-decoration: none;
	outline: none;/* for Firefox Google Chrome  *//*讓a點擊時不會出現框線*/
  	behavior:expression(this.onFocus=this.blur());  /* for IE *//*讓a點擊時不會出現框線*/
	word-break: break-all;
}
a:hover { 
	/*color:#ccc;*//*修改部分 by kevin 201450108 太醜了所以刪掉*/
	text-decoration:underline;
	/*opacity:0.9;新增部分 by kevin 20150121*//*會影響到輪播 刪除 by kevin 20150324*/
}
	
a:active, a:focus {/* 這個選取器群組可以讓使用鍵盤導覽的使用者，也和使用滑鼠的使用者一樣擁有相同的滑過體驗。 */
	text-decoration: none; }
	
area {
	outline:none;
}
/*------------------------------------------CSS Reset 結束-------------------------------*/

/*------------------------------------------icon-字型 開始-------------------------------*/
@font-face {
    font-family: 'LigatureSymbols';
    src: url('../icon_fonts/ligature_symbols/LigatureSymbols-2.11.eot');
    src: url('../icon_fonts/ligature_symbols/LigatureSymbols-2.11.eot?#iefix') format('embedded-opentype'),
         url('../icon_fonts/ligature_symbols/LigatureSymbols-2.11.woff') format('woff'),
         url('../icon_fonts/ligature_symbols/LigatureSymbols-2.11.ttf') format('truetype'),
         url('../icon_fonts/ligature_symbols/LigatureSymbols-2.11.svg#LigatureSymbols') format('svg');
    src: url('../icon_fonts/ligature_symbols/LigatureSymbols-2.11.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
.lsf, .lsf-icon:before {
  font-family: 'LigatureSymbols';
  -webkit-text-rendering: optimizeLegibility;
  -moz-text-rendering: optimizeLegibility;
  -ms-text-rendering: optimizeLegibility;
  -o-text-rendering: optimizeLegibility;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -ms-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-font-feature-settings: "liga" 1, "dlig" 1;
  -moz-font-feature-settings: "liga=1, dlig=1";
  -ms-font-feature-settings: "liga" 1, "dlig" 1;
  -o-font-feature-settings: "liga" 1, "dlig" 1;
  font-feature-settings: "liga" 1, "dlig" 1;
}

.lsf-icon:before {
  content:attr(title);
  /*margin-right:0.3em;*/
}
/*------------------------------------------icon-字型 結束-------------------------------*/

/*--------------------------------------loading畫面 開始---------------------------------*/
.loading {
 	position: fixed;
    top: 0; 
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    background: #FFF;
	text-align:center;
	
	/*新增by pekey 20171211*/
	padding-top:250px;
 } 
 
	
	/*Loading畫面CSS開始*/
	#circularG{
		position:relative;
		width:58px;
		height:58px;
		margin: auto;
	}
	
	.circularG{
		position:absolute;
		background-color: #f29206 ;  /*此為Loding的點點顏色*/
		width:14px;
		height:14px;
		border-radius:9px;
			-o-border-radius:9px;
			-ms-border-radius:9px;
			-webkit-border-radius:9px;
			-moz-border-radius:9px;
		animation-name:bounce_circularG;
			-o-animation-name:bounce_circularG;
			-ms-animation-name:bounce_circularG;
			-webkit-animation-name:bounce_circularG;
			-moz-animation-name:bounce_circularG;
		animation-duration:1.1s;
			-o-animation-duration:1.1s;
			-ms-animation-duration:1.1s;
			-webkit-animation-duration:1.1s;
			-moz-animation-duration:1.1s;
		animation-iteration-count:infinite;
			-o-animation-iteration-count:infinite;
			-ms-animation-iteration-count:infinite;
			-webkit-animation-iteration-count:infinite;
			-moz-animation-iteration-count:infinite;
		animation-direction:normal;
			-o-animation-direction:normal;
			-ms-animation-direction:normal;
			-webkit-animation-direction:normal;
			-moz-animation-direction:normal;
	}
	
		#circularG_1{
			left:0;
			top:23px;
			animation-delay:0.41s;
				-o-animation-delay:0.41s;
				-ms-animation-delay:0.41s;
				-webkit-animation-delay:0.41s;
				-moz-animation-delay:0.41s;
		}
		
		#circularG_2{
			left:6px;
			top:6px;
			animation-delay:0.55s;
				-o-animation-delay:0.55s;
				-ms-animation-delay:0.55s;
				-webkit-animation-delay:0.55s;
				-moz-animation-delay:0.55s;
		}
		
		#circularG_3{
			top:0;
			left:23px;
			animation-delay:0.69s;
				-o-animation-delay:0.69s;
				-ms-animation-delay:0.69s;
				-webkit-animation-delay:0.69s;
				-moz-animation-delay:0.69s;
		}
		
		#circularG_4{
			right:6px;
			top:6px;
			animation-delay:0.83s;
				-o-animation-delay:0.83s;
				-ms-animation-delay:0.83s;
				-webkit-animation-delay:0.83s;
				-moz-animation-delay:0.83s;
		}
		
		#circularG_5{
			right:0;
			top:23px;
			animation-delay:0.97s;
				-o-animation-delay:0.97s;
				-ms-animation-delay:0.97s;
				-webkit-animation-delay:0.97s;
				-moz-animation-delay:0.97s;
		}
		
		#circularG_6{
			right:6px;
			bottom:6px;
			animation-delay:1.1s;
				-o-animation-delay:1.1s;
				-ms-animation-delay:1.1s;
				-webkit-animation-delay:1.1s;
				-moz-animation-delay:1.1s;
		}
		
		#circularG_7{
			left:23px;
			bottom:0;
			animation-delay:1.24s;
				-o-animation-delay:1.24s;
				-ms-animation-delay:1.24s;
				-webkit-animation-delay:1.24s;
				-moz-animation-delay:1.24s;
		}
		
		#circularG_8{
			left:6px;
			bottom:6px;
			animation-delay:1.38s;
				-o-animation-delay:1.38s;
				-ms-animation-delay:1.38s;
				-webkit-animation-delay:1.38s;
				-moz-animation-delay:1.38s;
		}
		
		
		
		@keyframes bounce_circularG{
			0%{
				transform:scale(1);
			}
		
			100%{
				transform:scale(.3);
			}
		}
		
		@-o-keyframes bounce_circularG{
			0%{
				-o-transform:scale(1);
			}
		
			100%{
				-o-transform:scale(.3);
			}
		}
		
		@-ms-keyframes bounce_circularG{
			0%{
				-ms-transform:scale(1);
			}
		
			100%{
				-ms-transform:scale(.3);
			}
		}
		
		@-webkit-keyframes bounce_circularG{
			0%{
				-webkit-transform:scale(1);
			}
		
			100%{
				-webkit-transform:scale(.3);
			}
		}
		
		@-moz-keyframes bounce_circularG{
			0%{
				-moz-transform:scale(1);
			}
		
			100%{
				-moz-transform:scale(.3);
			}
		}
	/*Loading畫面CSS結束*/

.loading_tit{
	padding:20px 0px 0px 15px;
	display:inline-block;
	font-size:16px;
	font-weight:bold;
	color:#333;
	font-family:微軟正黑體;
	text-align:center;
}
/*-------------------------------------loading畫面 結束---------------------------------*/


/*Webkit,Opera9.5+,Ie9+ 控制文字選取時的顏色*/
::selection {
	background:#d70010;
	color:#fff;
}

/*Mozilla Firefox 控制文字選取時的顏色*/
::-moz-selection {
	background:#d70010;
	color:#fff;
}

.wrap {
	width: 1120px;
	margin:0 auto;
	padding: 0;
	box-sizing: border-box;
}

@media (max-width: 1200px){
	.wrap {
		width: 1170px;
		padding: 0;
	}
}
@media (max-width: 1190px){
	.wrap {
		width: 970px;
	}
}

@media (max-width: 990px){
	.wrap {
		width: 724px;
	}
}

@media (max-width: 768px){
	.wrap {
		/*width: 624px;*/
		width: 724px;
	}
}

@media (max-width: 724px){
	.wrap {
		width: 624px;
		margin: 0px auto;	
	}
}

@media (max-width: 640px){
	.wrap {
		/*width: 100%;
		padding: 0px 15px;*/
		width: auto;
		padding: 0px 15px;
		box-sizing: border-box;
	}
}


/*-------input reset--------------------------------------------------------*/
input, textarea, select {
	font-family: Arial, Helvetica, sans-serif, "Century Gothic", "Times New Roman", Times, serif, "微軟正黑體", "Microsoft JhengHei", "新細明體";
	font-size:15px;
	border-radius:3px;
	border: solid 1px #aeaeae;
}
input[type="text"], .input, input[type="password"], .input, input[type="search"] {
	margin: 0;
    padding: 0;
    outline: none;
    vertical-align: middle;
    height: 42px;
    line-height: 42px;
    width: 100%;
    transition: 0.2s ease all;
    padding: 0px 6px 0px 6px;
    webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
	input[type="text"]:focus, input[type="password"]:focus {
		border: solid 1px #d5d5d5;
	}
	
input[type="button"], input[type="submit"], input[type="reset"] {
	-webkit-appearance:none;
	-webkit-border-radius:0px;
	margin:0;
	padding:0;
	outline:none;
	cursor:pointer;
	vertical-align: middle;
	border:none;
	width:162px;
	height:42px;
	background:#de484d;
	color:#fff;
	border-radius:5px;
	line-height:42px;
	transition: 0.2s ease all;
	letter-spacing:1px;
}
	input[type="button"]:hover, input[type="submit"]:hover, input[type="reset"]:hover {
		opacity:0.7;
	}
	
	input[type="reset"] {
		background:#555;
	}
	
input[type="radio"], input[type="checkbox"] {
	margin:0px;
	padding:0px;
	outline:none;
	vertical-align: baseline;
	cursor:pointer;
}
textarea {
	margin: 0;
    padding: 0;
    outline: none;
    vertical-align: middle;
    line-height: 24px;
    width: 100%;
    resize: none;
    height: 117px;
    transition: 0.2s ease all;
    webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
    padding: 3px;
}
	textarea:focus {
		border: solid 1px #d5d5d5;
	}
	
select {
	margin:0;
	padding:0;
	outline:none;
	vertical-align: middle;
	padding: 9px 0px 10px 7px;
	transition: 0.2s ease all;
	background:#fff;
	letter-spacing:1px;
	-webkit-appearance: none;	/* Safari 和 Chrome */
       -moz-appearance: none;	/* Firefox */
        -ms-appearance: none;	/*for Internet Explorer*/
         -o-appearance: none;	/*for Opera*/
            appearance: none;
	background: #fff url(../images/select_arrow.png) no-repeat;
	background-size: 13px;
	background-position:right;
	padding-right:18px !important;
}
	select::-ms-expand {	/*for Internet Explorer*/
		display: none;
	}
	select:focus {
		border: solid 1px #d5d5d5;
	}
	
label {
	cursor:pointer;
}


/*-------輪播----------------------------------------------------------------------------*/
.banner {
	background:#fff;
	position:relative;
	
	/*modify by pekey 20190119*/
	height: 400px;
	overflow: hidden;
}
	.device {
		position:relative;
		overflow:hidden;
	}
		/*左右鍵*/
		.device .arrow-left, .device .arrow-right {
			position:absolute;
			/*z-index:9;
			top:50%;
			margin:-18px 0px 0px 0px;
			opacity:0;
			transition:0.3s ease all;*/
			position: absolute;
			top: 0;
			/*left: 0;*/
			bottom: 0;
			width: 15%;
			opacity: .5;
			filter: alpha(opacity=50);
			font-size: 20px;
			color: #fff;
			text-align: center;
			text-shadow: 0 1px 2px rgba(0,0,0,.6);
			
			background-image: none;
			background-repeat: no-repeat;
			opacity: 1;
			
			z-index: 3;
		}
		
			/*左鍵*/
			.device .arrow-left {
				/*left:-20px;*/
				left: 0px;
			}
				.device .arrow-left span{
					position: absolute;
					top: 50%;
					z-index: 5;
					
					display: block;
					background: url(../images/slide_arrow.png) no-repeat left 0;
					background-size: auto 104px;
					width: 49px;
					height: 104px;
					left: 0;
					margin-top: -52px;
					margin-left: 0;
					
					-webkit-transition: all 0.4s;
					-moz-transition: all 0.4s;
				}
				
				/*hover*/
				.device .arrow-left span:hover{
					background-size: auto 155px;
					width: 73px;
					height: 155px;
					margin-top: -77px;
					opacity: 0.25;
					filter: alpha(opacity=25);
					-webkit-transition: all 0.4s;
					-moz-transition: all 0.4s;
				}
			
			/*右鍵*/
			.device .arrow-right {
				/*right:-20px;*/
				right: 0px;
				
			}
				.device .arrow-right span{
					position: absolute;
					top: 50%;
					z-index: 5;
					
					display: block;
					background: url(../images/slide_arrow.png) no-repeat right 0;
					background-size: auto 104px;
					width: 49px;
					height: 104px;
					/*right: 0;*/
					right: -1px;
					margin-top: -52px;
					
					-webkit-transition: all 0.4s;
					-moz-transition: all 0.4s;
				}
				/*hover*/
				.device .arrow-right span:hover{
					background-size: auto 155px;
					width: 73px;
					height: 155px;
					margin-top: -77px;
					opacity: 0.25;
					filter: alpha(opacity=25);
					-webkit-transition: all 0.4s;
					-moz-transition: all 0.4s;
				}
				
				
				.device:hover .arrow-left {
					opacity:1;
					/*left:20px;*/
				}
				.device:hover .arrow-right {
					opacity:1;
					/*right:20px;*/
				}
		
		/*輪播區*/
		.swiper-container {
			height:auto;
		}
			.swiper-wrapper {
			}
				.swiper-slide {
				}
					.swiper-slide img {
						width:100%;
						height:auto;
					}
					
					/*文字區塊*/
					.bannerSlide_titArea{
						position: absolute;
						/*padding-top: 20px;*/
						color: #fff;
						text-align: center;
						text-shadow: 0 1px 2px rgba(0,0,0,.6);
						right: 20%;
						left: 13%;
						bottom: 20%;
						/*display: none;*/
						opacity: 0;
						padding-bottom: 0px!important;
						z-index: 99;

						-webkit-transition: all 2.5s;
						-moz-transition: all 2.5s;
						transition: all 2.5s;
					}
					/*active*/
					.swiper-slide.swiper-slide-visible.swiper-slide-active .bannerSlide_titArea{
						/*display: block;*/
						opacity: 1;

						-webkit-transition: all 2.5s;
						-moz-transition: all 2.5s;
						transition: all 2.5s;
					}
					
						.bannerSlide_titArea h3{
							color: #fff;
							font-size: 36px;
							text-transform: uppercase;
							text-align: left;
							margin-bottom: 12px;
						}
						
							.bannerSlide_titArea a{
								text-decoration: none;
    							color: #fff;
							}
								.bannerSlide_titArea .more {
									display: inline-block;
									margin-left: 5px;
									width: 35px;
									height: 35px;
									background: #f29206 url(../images/home_more.png) no-repeat 0 0;
									background-size: 35px auto;
									cursor: pointer;
									position: relative;
									overflow: hidden;
									-webkit-transition: all 0.4s;
									-moz-transition: all 0.4s;
									transition: all 0.4s;
								}
								
								.bannerSlide_titArea .more:after {
									width: 100%;
									height: 0;
									top: 50%;
									left: 50%;
									background: #fff;
									opacity: 0;
									filter: alpha(opacity=0);
									-webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
									-moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
									-ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
									transform: translateX(-50%) translateY(-50%) rotate(45deg);
									content: '';
									position: absolute;
									z-index: 1;
									-webkit-transition: all 0.4s;
									-moz-transition: all 0.4s;
									transition: all 0.4s;
								}
								
								.bannerSlide_titArea .more:hover:after {
									height: 100%;
									opacity: 0.25;
									width: 160%;
									filter: alpha(opacity=25);
								}
								
						.bannerSlide_titArea p{
							text-align: justify;
							font-size: 15px;
							text-transform: none;
							line-height: 18px;
						}
		
		/*輪播點點*/
		.pagination {
		  position: absolute;
		  z-index: 1;
		  bottom: 35px;
		  width: 100%;
		  text-align: center;
		}
			.swiper-pagination-switch {
			  display: inline-block;
			  width: 14px;
			  height: 14px;
			  border-radius: 10px;
			  background: #fff;
			  margin: 0 10px;
			  cursor: pointer;
			}
			.swiper-active-switch {/*輪播點點當前模式*/
			  background: #f29206 ;
			}
				/*客制區塊*/
				.swiper-slide {
					position:relative;
				}
				.pcBanner {
				}
				.mobileBanner {
					display:none;
				}

/*modify by pekey 20190119 start*/
@media (max-width: 1200px){
	.banner {
		height: 417px;
	}
}
@media (max-width: 1190px){
	.banner {
		height: 338px;
	}
}
@media (max-width: 990px){
	.banner {
		height: 318px;
	}
}
/*modify by pekey 20190119 end*/
					
					
@media (max-width: 880px){
	.device {
		height:auto;
	}
		/*左右鍵*/
		.device .arrow-left, .device .arrow-right {
			/*display:none;*/
		}
}


/*modify by pekey 20190119 start*/
@media (max-width: 768px){
	.banner {
		height: 318px;
	}
}
/*modify by pekey 20190119 end*/
					
@media (max-width: 640px){
	

	.banner {
		/*modify by pekey 20190119*/
		height: auto;
	}	
	
	/*.pcBanner {
		display: none;
	}
	.mobileBanner {
		display:block;
	}*/
	
	.bannerSlide_titArea{
		/*bottom: 14%;
		padding: 0px 0px 20px;*/
	}
		.bannerSlide_titArea h3{
			font-size: 25px;
			margin-bottom: 7px;
		}
		.bannerSlide_titArea .more {
			background-size: auto 25px;
			width: 25px;
			height: 25px;
		}
		.bannerSlide_titArea p{
			display: none;
		}
		.pagination{
			bottom: 8%;
		}
}
						
						
.mask {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
    background: url(../images/mask.png) no-repeat;
    /*background-size: 100% auto;*/
	background-size: cover;
}				
				
/*-------頁次--RWD版 by kevin 20150921------------------------------------------------------------------------*/			
.page_area_rwd {
	text-align:center;
	/*padding:25px 0px 0px 0px;*/
	padding: 50px 0px 0px;
}
	.page_left_arrow, .page_right_arrow {
		width:83px;
		font-size:15px;
		font-weight:bold;
		text-align:center;
		display: inline-block;
		vertical-align: top;
	}
		.page_left_arrow a, .page_right_arrow a {
			text-decoration:none;
			display:block;
			transition:0.2s ease all;
			color:#fff;
			line-height:40px;
			background:#777777;
			border-radius:2px;
		}
			.page_left_arrow a:hover, .page_right_arrow a:hover {
				background:#f29206 ;
			}
	.page_select {
		display:inline-block;
		padding:0px 7px;
		vertical-align: top;
	}
		.page_select select {
			width: auto !important;
			font-size:15px !important;
			padding:8px 18px 7px 16px !important;
			border: solid 1px #a4a4a4 !important;
			height:40px !important;
			webkit-box-sizing: border-box;
			-moz-box-sizing: border-box;
			box-sizing: border-box;
			border-radius:3px;
		}

/*-------頁次--置中版--修改 by kevin 20150328------------------------------------------------------------------------*/			
.page_area {
	margin: 0px 0px 0px 0px;
}
	.page_area table {
		margin: 0 auto;/*置中*/
		/*margin: 0px 0px 0px auto;*//*靠右*/
	}
	.page_area table td {
		vertical-align:top;
	}
	.page_bot {
		float:left;
		padding-top: 3px;
		margin-right:5px;
	}
	.page_pages {
		float: left;
		font-size: 12px;
		text-align: center;
		color: #000;
		line-height: 17px;
		margin-top: -5px;
		width: 55px;
	}
	.page_text {
		float: left;
		margin: 0;
		padding: 0;
		border: solid 1px #b5b5b5 !important;
		background: #fff !important;
		width: 54px !important;
		height: 19px !important;
		line-height:17px !important;
		margin-left: 8px !important;
		margin-right: 5px !important;
	}
	
	.page_area a {
		transition:0.2s ease all;
	}
	
	.page_area a:hover {
		opacity:0.7;
		filter:alpha(opacity=70); /* 针对 IE8 以及更早的版本 */
	}

/*-------頁籤------------------------------------------------------------------------*/
.tab_area {
	/*border-bottom: solid 1px #c4c4c4;*/
}
	.tabs_btn_now {
		transition:0.3s ease all;
		font-size:16px;
		line-height:39px;
		padding:0px 36px 0px 36px;
		text-align:center;
		display:none;
		position:relative;
		background:#fff;
		border-bottom: solid 1px #e3e3e3;
		font-weight:bold;
	}
		.tabs_btn_now:hover {
			background:#fff;
		}
		.tabs_btn_now_arrow {
			position: absolute;
			border-top: solid 5px #333;
			top: 17px;
			right: 20px;
			border-left: solid 5px rgba(255, 255, 255, 0);
			border-right: solid 5px rgba(255, 255, 255, 0);
		}
		
	.img-scroll { 
		/*height:39px;*/ 
		position:relative;
	}
		.img-list { 
			position:relative; 
			
			height: 86px;
			overflow: hidden;
			padding-left: 0;
			font-size: 17px;
			background: #eee;
			border-bottom: #d1d1d1 solid 1px;
		}
			ul.tabs {
				margin:0; 
				padding:0; 
				list-style:none;
			}
				.tabs li { 
					/*line-height:39px;
					float:left;
					position: relative;
					font-size:14px;
					width: auto;
					color:#808080;
					border-right: solid 1px #c4c4c4;*/
					line-height: 1.2;
					width: 16.666666666666664%;
					/*width: 12%;*/
					padding: 0 2.55102040816327%;
					float: left;
					height: 85px;
					display: table;
					
					webkit-box-sizing: border-box;
					-moz-box-sizing: border-box;
					box-sizing: border-box;
				}
					.tabs span { 
						text-decoration:none;
						display:block;
						padding:0px 18px;
						transition:0.3s ease all;
						background:#fff;
						text-align:center;
						cursor:pointer;
					}
						.tabs li span:hover {
							color:#333;
							box-shadow: 0 0 #3d3d3d inset;
						}
					
					
					/*hover*/
					.tabs li:hover {
						border: 0;
						border-radius: 0;
						background: url(../images/hover_arrow_down.png) 50% 0 no-repeat #434343;
						background-size: 26px auto;
						color: #fff;
					}
					
					/*active*/	
					.tabs li.active {
						/*當前模式*/
						border: 0;
						border-radius: 0;
						background: url(../images/hover_arrow_down.png) 50% 0 no-repeat #434343;
						background-size: 26px auto;
						color: #fff;
					}
						.tabs li.active span {
							box-shadow: 0 -2px #3d3d3d inset;
						}
						.tabs li.active:after {
							position:absolute;
							bottom:-6px;
							left:50%;
							margin:0px 0px 0px -10px;
						}
					
						.tabs li a {
							text-align: center;
							display: table-cell;
							vertical-align: middle;
							color: #898989;
							border: 0;
							border-radius: 0;
							cursor: pointer;
							background: 0 0;
							text-decoration: none;
							font-weight: bold;
						}
						
						/*hover*/
						.tabs li:hover a {
							color: #fff;
						}
						/*active*/
						.tabs li.active a {
							color: #fff;
						}
		
		#tab1{}
		.tab_content{}

/*產品內頁頁籤的網編區*/
.p_tab_text_area {
	/*background:#fff;
	padding:10px;*/
	
	padding: 20px 24px;
	background: #eee;
    border-top: #fff solid 1px;
}

.p_tab_text_area .text_area table{
	max-width: 100%;
	width: 100%;
}
	.p_tab_text_area .text_area img{
		/*width: 100%;*/
		max-width: 100%;
		height: auto;
	}
	
	.p_tab_text_area .text_area p{
		font-size: 18px;
		line-height: 22px;
	}
	
	.p_tab_text_area .text_area ul{
		display: inline-block; 
		vertical-align: top; 
	}

		.p_tab_text_area .text_area li{
			font-size: 18px;

			line-height: 36px;
		}


@media (max-width: 760px){
	/*頁籤*/
	.tab_area {
		position:relative;
	}
		.tabs_btn_now {
			/*display:block;*/
		}
		
		.img-scroll {
			/*display:none;*/
			height:auto;
			/*position: absolute;*/
			width: 100%;
			z-index: 999;
		}
			.img-list{
				height: 45px;
			}
			
			.tabs li, .img-scroll1 .tabs li, .img-scroll2 .tabs li, .img-scroll3 .tabs li, .img-scroll4 .tabs li, .img-scroll5 .tabs li {
				/*float:none;*/
				text-align:center;
				/*width:100%;*/
				font-size:15px;
				border-radius:0px;
				border: none;
				border-bottom: solid 1px #f3f3f3;
				
				height: 45px;
			}
				.tabs li.active:after {
					content:"";
				}
				
			/*active*/
			.tabs li.active{
				background: url(../images/hover_arrow_down.png) 50% 0 no-repeat #434343;
    			background-size: 13px auto;
			}
			
				
			.p_tab_text_area .text_area p{
				font-size: 14px;
				line-height: 18px;
			}

			.p_tab_text_area .text_area li{
				font-size: 14px;
				line-height: 24px;
			}
}

@media (max-width: 640px){
	/*產品內頁頁籤的網編區*/
	.p_tab_text_area {
		padding: 10px 12px 15px;
	}

	.img-list{
		height: auto;
	}
	.tabs li { 
		width: 20%;
	}
		.tabs li a {
			font-size: 13px;
		}
		
		.p_tab_text_area .text_area ul{
			display: block;
			padding: 7px 0px 20px;
		}
		
}









/*-------浮動top鍵----------------------------------------------------------------------------*/
.topBtn {
		position:fixed;
		bottom:-70px;
		right:14px;
		z-index:999;
		/*z-index:3;*/
	}
		.topBtn a {
			display:block;
			text-align:center;
			webkit-box-sizing: border-box;
			-moz-box-sizing: border-box;
			box-sizing: border-box;
			width:33px;
			height:33px;
			border: solid 2px #4c4944;
			position:relative;
			text-decoration:none;
			transition:0.3s ease all;
			border-radius:100%;
			background:#fff;
			padding: 13px 0px 0px;
			color:#4c4944;
		}
			.topBtn a:before {
				position:absolute;
				content:'';
				border-bottom: solid 8px #4c4944;
				border-left: solid 4px rgba(0,0,0,0);
				border-right: solid 4px rgba(0,0,0,0);
				top: 4px;
				left: 10px;
			}
			.topBtn a span {
				font-size:12px;
				transform:scale(0.8);
				display:block;
			}
				/*hover*/
				.topBtn a:hover {
					border-color:#fff;
					box-shadow:0px 0px 10px rgba(0,0,0,0.2);
					color:#006e38;
				}
					.topBtn a:hover:before {
						border-bottom: solid 8px #006e38;
					}
/*-------驗證碼----------------------------------------------------------------------------*/
.captcha {
	line-height: 37px;
    padding: 0px 0px 5px 0px !important;
}
	.captcha  input[type="text"] {
		width:80px;
		margin-right:5px;
	}
	.captcha a {
		transition: 0.5s ease all;
		color: #000;
		/*background: #333;*/
		border-radius: 5px;
		padding: 0px 11px;
		font-size: 14px;
		display: inline-block;
		margin: 9px 0px 7px;
		line-height: 29px;
		text-decoration:none;
	}
	.captcha a:hover {
	}
			
		.captcha img {
			vertical-align:middle;
		}
		.captcha span {
			color:#c30000;
			display:inline-block;
		}


/*-------表單區----------------------------------------------------------------------------*/
/*表單區底*/
.form_area_bg {
	width: 100%;
    max-width: 800px; 
    margin: 0 auto;
    webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
    padding: 0px 20px;
}
	@media (max-width: 800px){
		.form_area_bg {
			padding:0px;
		}
	}
	
	/*表單區備註*/
	.form_remark {
		text-align:center;
		font-size:15px;
		line-height:22px;
		padding:10px 0px 5px 0px;
	}
		/*必填icon*/
		.requirde_icon {
			display:inline-block;
			border-radius:3px;
			font-size:12px;
			color:#fff;
			background:#c13e42;
			line-height:18px;
			padding:0px 5px;
		}

	/*表單區*/
	.form_area {
	}
		/*表單區左*/
		.form_left {
			width:48%;
			float:left;
		}
		/*表單區右*/
		.form_right {
			width:48%;
			float:right;
		}
			.form_list {
				font-size:15px;
				line-height:21px;
				/*border-bottom: dotted 1px #0f0f0f;*/
				padding:12px 0px 0px 0px;
			}
				.fL_tit {
					font-weight:bold;
					padding:3px 0px 6px 0px;
					position:relative;
				}
					/*必填icon*/
					.fL_tit .requirde_icon {
						position:absolute;
						right:0px;
					}
					
				.fL_info {
					padding:0px 0px 9px 0px;
					/*padding:0px 0px 17px 0px;*/
				}
				
				.form_list select {
					width: 100%;
					
					border: 0 none;
					box-sizing: border-box;
					
					display: block;
					width: 100%;
					padding: 6px 12px;
					line-height: 1.42857143;
					color: #555;
					background-color: #fff;
					transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
					
					font-size: 17px;
					height: 45px;
					border-radius: 0;
					box-shadow: 2px 2px 2px 2px rgba(0,0,0,0.15) inset;
				}
					/*沒有輸入框時*/
					.fL_info.no_input {
						padding: 10px 0px 25px 0px;
    					line-height: 24px;
					}
					
					.fL_info label {
						display:inline-block;
					}
					
					/*地址樣式*/
					.fL_info.address select {
						margin:0px 5px 0px 0px;
					}
					.fL_info.address input[type='text']:nth-of-type(1) {
						width:97px;
					}
					.fL_info.address input[type='text']:last-of-type {
						margin:12px 0px 0px 0px;
					}
					
					/*生日樣式*/
					.fL_info.birthday {
					}
						.fL_info.birthday select {
							margin:0px 0px 0px 0px;
						}
						@media (max-width: 800px){
							/*表單區左*//*表單區右*/
							.form_left, .form_right {
								float:none;
								width:auto;
							}
								/*沒有輸入框時*/
								.fL_info.no_input {
									padding: 0px 0px 5px 0px;
								}
								.fL_info label {
									/*padding: 6px 0px;*/
								}
						}
							@media (max-width: 575px){
								.cart_big_tit span.red {
									padding:0px;
								}
							}
								@media (max-width: 500px){
									.cBT_checkbox {
										display: block;
										padding: 5px 0px 0px 0px;
									}
									.receiving_record {
										padding:0px;
									}
								}
									@media (max-width: 320px){
										/*生日樣式*/
										.fL_info.birthday {
											letter-spacing: 0px;
											white-space: nowrap;
											font-size: 12px;
										}
									}
								
			.form_list_remark {
				font-size: 15px;
				line-height: 21px;
				color: #c13e42;
				padding: 12px 0px 0px 0px;
			}

/*-------hack----------------------------------------------------------------------------*/
.hack {
	padding:20px;
}
	.hack_demo {
		float:left;
		width:50%;
		line-height:200px;
		text-align:center;
		webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		border: solid 1px #CCC;
	}
	
/* IE10、11、edge模式 */
@media all and (-ms-high-contrast:none) {
	.ie10Up {
		color: #fff;
		background:#06F;
	}
	*::-ms-backdrop, .ie10Up {
		color: #fff;
		background:#06F;
	}
}

/*firefox*/
@-moz-document url-prefix() { 
	.firefox {
		color: #fff;
		background: #C00;
	}
}

/*Safari和chrome*/
@media screen and (-webkit-min-device-pixel-ratio:0) {
	.safariAndChrome {
		color: #fff;
		background: #333;
	}
}


/*/////////////////////////////////////////////////////////*/
/*-------版頭--------*/
/*/////////////////////////////////////////////////////////*/


.header_allArea{
	position: fixed;
	width: 100%;
	z-index: 7777;
	background-color: #fff;
}

/*版頭上方區塊*/
.body_topArea{
	/*position: fixed;
	width: 100%;
	z-index: 99;*/
}
	/*上半部*/
	.bodyTop_inTop{
		background-color: #892337;
		overflow: hidden;
		padding: 40px 24px 15px;
		
		display: none;
	}
	
	/*active*/
	.bodyTop_inTop.active{
		display: block;
	}
	
		.bodyTop_inTop > .wrap{
			position: relative;
		}

			.search_area{
				float: left;
				width: 70%;
				webkit-box-sizing: border-box;
				-moz-box-sizing: border-box;
				box-sizing: border-box;
			}
				.bodyTop_titArea{
					display: block;
					font-size: 16px;
					color: #fff;
					margin-bottom: 10px;
				}
				.search_inArea{
					position: relative;
					padding-right: 160px;
					margin-bottom: 15px;
				}
					.search_inArea input[type="text"]{
						width: 100%;
						background-color: #fff;
						padding: 5px 15px;
						height: 50px;
						color: #4c4849;
						font-size: 20px;
						font-weight: 700;
						-webkit-box-shadow: 0 -2px 3px 2px rgba(0,0,0,.15) inset;
						-moz-box-shadow: 0 -2px 3px 2px rgba(0,0,0,.15) inset;
						box-shadow: 0 -2px 3px 2px rgba(0,0,0,.15) inset;
					}
					.search_inArea label{
						webkit-box-sizing: border-box;
						-moz-box-sizing: border-box;
						box-sizing: border-box;
						
						display: inline-block;
						padding: 6px 12px;
						margin-bottom: 0;
						font-size: 14px;
						font-weight: bold;
						line-height: 1.42857143;
						text-align: center;
						white-space: nowrap;
						vertical-align: middle;
						cursor: pointer;
						-webkit-user-select: none;
						-moz-user-select: none;
						-ms-user-select: none;
						user-select: none;
						border: 1px solid transparent;
						border-radius: 4px;
					
						text-transform: uppercase;
						
						line-height: 42px;
						position: absolute;
						right: 0;
						top: 0;
						width: 140px;
						border: 0;
						border-radius: 0;
						background-color: #f29206;
						height: 50px;
						color: #fff;
						font-size: 20px;
						text-align: center;
					}
						.search_inArea label span{
							font-size: 20px;
							color: #fff;
							margin: 0;
							display: inline-block;
							position: relative;
							top: 3px;
							font-weight: 400;
							line-height: 1;
							-webkit-font-smoothing: antialiased;
							-moz-osx-font-smoothing: grayscale;
						}
						
			/*語系區塊_PC*/
			.language_area{
				width: 260px;
				float: right;
				overflow: hidden;
			}
				.language_inArea{
				}
					.language_list{
						float: left;
						padding: 0 0 0 20px;
					}
					.language_list:first-of-type {
						padding-left: 0;
					}
						.language_list a{
							display: block;
							width: 50px;
							height: 50px;
							line-height: 50px;
							text-align: center;
							font-size: 20px;
							text-transform: uppercase;
							color: #fff;
							background-color: #b4b4b4;
							text-decoration: none;
							font-weight: bold;
						}
						
						/*hover*/
						.language_list a:hover{
							background-color: #f29206;
						}
						
						/*active*/
						.language_list.active a{
							background-color: #f29206;
							cursor: default;
						}
			
			
			/*關閉區塊之按鈕*/
			.headerTop_closeArea{
				float: none;
				position: absolute;
				right: -5px;
    			top: -25px;
				opacity: 1;
			}
				.headerTop_closeArea a{
					font-size: 46px;
					/*font-weight: bold;*/
					color: #fff;
					text-decoration: none;
    				outline: none;
				}
			

	/*下半部*/
	.bodyTop_inBottom{
		background-color: #892337;
		text-align: right;
		position: relative;
		padding: 13px 24px 15px 0;
	}
		.bodyTop_inBottom > .wrap{
		}
		
			/*下半部內容區塊*/
			.bodyTop_inBottomContent{
				webkit-box-sizing: border-box;
				-moz-box-sizing: border-box;
				box-sizing: border-box;
				font-weight: bold;
				width: 21.02127659574468%;
				float: right;
				margin-right: 60px;
				text-align: center;
				cursor: pointer;
				color: #fff;
				font-size: 16px;
				position: relative;
			}
				/*搜尋點擊按鈕*/
				.search_iconBtn{
					float: left;
					width: 49%;
					text-align: right;
					padding-right: 20px;
				}
					.search_iconBtn span{
						position: relative;
						top: 2px;
						display: inline-block;
						line-height: 1;
						-webkit-font-smoothing: antialiased;
						-moz-osx-font-smoothing: grayscale;
						font-size: 16px;
						color: #fff;
						margin: 0;
					}
				
				/*語系點擊按鈕*/
				.language_iconBtn{
					float: right;
					width: 30%;
					text-align: left;
					line-height: 23px;
					padding-left: 0;
					width: 43%;
					margin-right: -40px;
				}
				
				/*收合點擊按鈕*/
				.bodyTop_arrowBtn{
					display: block; 
					position: absolute;
					left: 55%;
					bottom: -28px;
					width: 30px;
					height: 37px;
					background: url(../images/arrow.png) no-repeat 50% 0;
					background-size: 30px auto;
				}
				
				/*active*/
				.bodyTop_inBottomContent.active .bodyTop_arrowBtn{
					background: url(../images/arrow.png) no-repeat 50% -37px;
					background-size: 30px auto;
				}
					
@media (max-width: 990px){
	.bodyTop_inBottom{
		padding: 8px 24px 7px 0px;
	}
	
		/*下半部內容區塊*/
		.bodyTop_inBottomContent{
			font-size: 14px;
		}
			.bodyTop_arrowBtn{
				bottom: -20px;
			}
			.bodyTop_titArea{
				font-size: 14px;
			}
			.search_area{
				width: 60%;
			}
				.search_inArea input[type="text"] {
					height: 44px;
					line-height: 32px;
				}
				.search_inArea label {
					height: 44px;
					line-height: 32px;
				}
				
			.language_area{
				width: 221px;
			}
				.language_list {
					padding-left: 15px;
				}
					.language_list a{
						width: 44px;
						height: 44px;
						line-height: 44px;
						font-size: 18px;

					}
}

@media (max-width: 768px){
	
	/*下半部內容區塊*/
	.bodyTop_inBottomContent{
		font-size: 12px;
	}
		.search_iconBtn{
			width: 45%;
		}
		.headerTop_closeArea {
			font-size: 40px;
			right: 17px;
			top: -35px;
		}
}

@media (max-width: 640px){
	
	.bodyTop_inTop{
		padding: 0px;
	}
		.bodyTop_inTop > .wrap {
			padding: 8px 0 5px;
		}
	
			.search_area {
				width: 100%;
				float: none;
				padding: 0 10px 0 62px;
			}
				.bodyTop_titArea {
					margin-bottom: 6px;
				}
				.search_inArea {
					padding-right: 127px;
				}
					.search_inArea input[type="text"] {
						height: 30px;
						font-size: 13px;
						line-height: 20px;
					}
					.search_inArea label {
						width: 127px;
						height: 30px;
						font-size: 13px;
						line-height: 20px;
					}
						
						.search_inArea label span {
							font-size: 13px;
						}
						.search_inArea label span img {
							width: 13px;
							height: auto;
						}
						
			.language_area{
				display: none;
			}
			
			.headerTop_closeArea {
				left: 13px;
				top: 20px;
				
				/*modify by pekey 20190119*/
				width: 30px;
			}
			
			/*下半部*/
			.bodyTop_inBottom{
				display: none;
			}
}			



.header {
	padding: 20px 0px 6px;
	/*position: fixed;
    width: 100%;
    z-index: 98;*/
}	
	.header > .wrap{
		position: relative;
	}
	
		/*手機menu按鍵*/
		.menu_btn {
			position:absolute;
			/*width:20px;*/
			width: 23px;
			top: 50%;
			/*right: 15px;*/
			left: 15px;
			cursor:pointer;
			display:none;
			z-index: 99;
			margin: -13px 0px 0px;
		}
			.menu_btn span {
				display:block;
				background: #4e4a49;
				/*height:2px;*/
				height: 4px;
				margin: 3px 0px;
				/*margin: 6px 0px;*/
				transition:0.3s ease all;
				border-radius:3px;
			}
				/*點擊*/
				.menu_btn.active {
					/*top: 22px;
					position: fixed;
					margin: 0px;
					right: 15px;*/
					margin: -12px 0px 0px;
				}
					.menu_btn.active span {
						background:#fff;
					}
					.menu_btn.active span:nth-of-type(1) {
						/*transform: rotate(39deg);*/
						transform: rotate(42deg);
						transform-origin: top left;
					}
					.menu_btn.active span:nth-of-type(2) {
						opacity: 0;
					}
					.menu_btn.active span:nth-of-type(3) {
						/*transform: rotate(-39deg);*/
						transform: rotate(-42deg);
						transform-origin: bottom left;
					}
		
		.logo{
			/*width: 220px;*/ /*modify by karol 20201007*/
			width: 265px;
			float: left;
			webkit-box-sizing: border-box;
			-moz-box-sizing: border-box;
			box-sizing: border-box;
		}
			.logo a{
				display: block;
			}
				.logo img{
					width: 100%;
					height: auto;
				}
		
		/*hover*/
		.logo a:hover{
			opacity: 0.7;
		}
		
		/*.logo_deco{
			float: left;
			webkit-box-sizing: border-box;
			-moz-box-sizing: border-box;
			box-sizing: border-box;
		}*/
		
		.logo_foreign{
			/*width: 180px;*/ /*modify by karol 20201007*/
			width: 200px;
			float: right;
			webkit-box-sizing: border-box;
			-moz-box-sizing: border-box;
			box-sizing: border-box;
			padding: 0px 0px 0px 20px;
		}
			.logo_foreign a{
				display: block;
			}
				.logo_foreign img{
					width: 100%;
					height: auto;
				}
	
		/*hover*/
		.logo_foreign a:hover{
			opacity: 0.7;
		}
		
		
		
		.navbar{
			float: right;
			webkit-box-sizing: border-box;
			-moz-box-sizing: border-box;
			box-sizing: border-box;
			padding: 5px 0px 0px 75px;
		}
			.navbar_titArea{
				display: none;
			}
			
			
			.nav{
				float: left;
				webkit-box-sizing: border-box;
				-moz-box-sizing: border-box;
				box-sizing: border-box;
			}
			.nav.language{
				display: none;
			}
			.nav.MB{
				display: none;
			}
			
				.nav > a{
					display: block;
					padding: 12px 19.5px;
					text-decoration: none;
					color: #4e4a49;
					font-size: 16px;
					/*line-height: 24px;*/
					transition: 0.3s ease all;
					background-position: 50% bottom;
					font-weight: bold;
				}	
				
				/*hover*/
				.nav:hover > a {
					background: url(../images/hover_arrow_up_white.png) 50% bottom no-repeat #4e4a49;
					background-size: 18px auto;
					color: #fff;
					transition: all .3s ease 0s;
					-webkit-transition: all .3s ease 0s;
					-moz-transition: all .3s ease 0s;
				}	
		
			
			/*手機版_搜尋按鈕*/
			.MB_searchBtn{
				display: none;
			}
			
			/*手機版_主選單裡下方logo*/
			.MB_logoArea{
				display: none;
			}
				.MB_logoArea a{
					display: block;
				}
					.MB_logoArea img{
						width: 100%;
						height: auto;
					}
			
@media (max-width: 1190px){
	.logo{
		/*width: 170px;*/ /*modify by karol 20201007*/
		width: 200px;
		padding: 10px 0px 0px;
	}
	.navbar{
		padding: 5px 0px 0px;
	}
}

@media(max-width: 990px){
	.navbar{
		float: none;
		display: inline-block;
		text-align: center;
		width: 100%;
	}
		.nav{
			text-align: center;
			width: 20%;
		}
			.nav > a{
				padding: 12px 10px;
			}
}

@media (max-width: 640px){

	.header{
		background-color: #eee;
		padding: 20px 0px;
		/*padding: 11px 0px;*/
	}
		.header_inArea{
			text-align: center;
		}
			.logo{
				padding: 0px;
				float: none;
				/*display: inline-block;*/
				display: block;
				margin: 0px auto;
				text-align: center;
			}
			.logo_foreign {
				padding: 0px;
				width: 83px;
				float: none;
				/*display: inline-block;*/
				display: block;
				margin: 0px auto;
				text-align: center;
				padding: 15px 0px 0px;
				
				display: none;
			}
		
		.menu_btn {
			display: block;
		}
		
		.navbar {
			/*display: none;*/
			position:fixed;
			top:0px;
			/*right:-225px;*/
			/*left:-225px;
			width:225px;*/
			left: -90%;
			width: 90%;
			transition:0.3s ease all;
			webkit-box-sizing: border-box;
			-moz-box-sizing: border-box;
			box-sizing: border-box;
			/*background: rgba(0, 0, 0, 0.8);*/
			background: url(../images/m_nav_bg.png) 100% 0 repeat-y #eee;
			height: 100%;
			overflow-y: auto;
			/*z-index: 98;*/ /*modify by pekey 20180626*/
			z-index: 3; 
			float: none;
			padding: 69px 0px 0px;
			/*padding: 0px;*/
		}
			.navbar.active {
				/*right:0px;*/
				left:0px;
				box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.16);
			}
		
	/*.body_inArea{
		position: relative;
		left: 0px;
		transition: 0.3s ease all;
	}
	.body_inArea.active{
		left: 80%;
		transition: 0.3s ease all;
	}		
		
		.MB_navbar {
			display: block;
			position: absolute;
			top:0px;
			left: -80%;
			width: 80%;
			transition:0.3s ease all;
			box-sizing:border-box;
			background: url(../images/m_nav_bg.png) 100% 0 repeat-y #eee;
			height: 100%;
			overflow-y: auto;
			z-index: 3; 
			float: none;
			padding: 80px 0px 0px;
		}
			.MB_navbar.active {
				left:0px;
				box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.16);
			}*/
				
				
			.navbar_titArea{
				display: block;
				position: absolute;
				top: 0px;
				width: 100%;
				background-color: #4e4a49;
			}
				.navbar_titArea span{
					float: left;
					webkit-box-sizing: border-box;
					-moz-box-sizing: border-box;
					box-sizing: border-box;
					position: relative;
					top: 28px;
    				left: 15px;
				}
				.navbar_titArea h2{
					height: 66px;
					font-size: 20px;
					line-height: 68px;
					color: #fff;
					/*background: url(../images/m_nav_bg.png) 100% 0 repeat-y #4e4a49;*/
					/*padding: 0 45px;*/
					position: relative;
					left: 50px;
					overflow: hidden;
					margin: 0px;
					float: left;
					webkit-box-sizing: border-box;
					-moz-box-sizing: border-box;
					box-sizing: border-box;
				}
					
				.nav {
					float:none;
					/*padding: 0px;*/
					padding: 0px 15px;
					width: 100%;
					text-align: left;
				}
			
				
					
					.nav  a {
						/*color:#fff;*/
						border:none;
					}
						.nav > a {
							line-height:23px;
							/*padding: 20px 15px;*/
							/*padding: 12px 15px;*/
							padding: 8px 10px 8px 30px;
							font-size:16px;  
							border-bottom: solid 1px #d1d1d1;
							position: relative;
						}
							.nav > a:before {
								position: absolute;
								content:'';
								display: inline-block;
								width: 10px;
								height: 22px;
								margin-left: -20px;
								margin-right: 10px;
								background: url(../images/m_left_arrow.png) 0 50% no-repeat;
								background-size: 10px 14px;
								vertical-align: middle;
							}
						
							/*hover*/
							.nav:hover  > a{
								/*border:none;*/
								background: transparent;
								/*color: #fff;*/
								color: #f29206;
								opacity: 0.7;
							}
							
							
							/*當前模式*/
							.nav.active > a{
								background: transparent;
							}
						
	

.nav.PC{
	display: none;
}
									
.nav.MB{
	display: block;
}
	.nav.MB img{
		width: 28px;
		height: auto;
		padding-right: 10px;
		
		display: inline-block;
		vertical-align: middle;
		position: relative;
		top: -2px;
	}
	.nav.MB span{
		display: inline-block;
		vertical-align: middle;
	}


							
								/*展開選單*/
								.navOpen {
									position:relative;
									top:0px;
									left:0px;
									margin:0px;
									width:auto;
									border-radius:0px;
									background:#444;
								}
									.navOpen:before, .navOpen:after {
										border-bottom: solid 8px #444;
										left: 23px;
									}
										.nO_list a {
											text-align:left;
											padding: 15px 15px;
										}
										
								
								/*hover*/
								.nav:hover .navOpen.pc {
									display:none;
								}	
								.fixed_nav:hover .navOpen.pc {
									display:none;
								}
									
									.navOpen.mobile {
										display: none;
										opacity: 1;
										z-index: 1;
										position: relative;
									}
										.navOpenBg {
											box-shadow: none;
										}
											.navOpen.mobile  .navOpenList {
											}
											.navOpen.mobile  .navOpenList > a {
													text-align:left;
													font-size:14px;
													color:#fff;
													line-height:22px;
													/*padding: 15px 15px;*/
													padding: 12px 15px;
													/*background: rgba(126, 126, 126,0.8);*/
													background: rgba(255, 255, 255, 0.5);
													transition:0.3s ease all;
													text-decoration:none;
													display:block;
												}
													.navOpenList > a:hover {
														opacity: 0.7;
													}
					
				.nav.language{
					display: block;
					padding: 15px 15px;
				}
					.MB_languageList{
						float: left;
						webkit-box-sizing: border-box;
						-moz-box-sizing: border-box;
						box-sizing: border-box;
						padding-right: 15px; 
					}
						.MB_languageList a{
							display: block;
							width: 44px;
							height: 44px;
							line-height: 44px;
							font-size: 18px;
							text-transform: uppercase;
    						background-color: #b4b4b4;
							color: #fff;
							text-decoration: none;
    						font-weight: bold;
							text-align: center;
						}
						/*hover*/
						.MB_languageList a:hover{
							background-color: #f29206;
						}
						/*active*/
						.MB_languageList.active a{
							background-color: #f29206;
    						cursor: default;
						}
			
			/*手機版_搜尋按鈕*/
			.MB_searchBtn{
				display: block;
				position: absolute;
				right: 15px;
				top: 50%;
				margin: -13px 0px 0px;
				width: 23px;
			}	
				.MB_searchBtn img{
					width: 100%;
					height: auto;
				}
				
			/*手機版_主選單裡下方logo*/
			.MB_logoArea{
				display: block;
				width: 190px;
				padding: 20px 0px;
			}
}

@media (max-width: 425px){
	
		.logo{
			/*padding: 0px 0px 0px 30px;*/
    		width: 195px;
		}
		.logo_foreign {
			/*padding: 0px 0px 0px 5px;*/
			width: 85px;
		}
		
			.navbar_titArea h2{
				font-size: 16px;
				left: 46px;
			}
}

/*/////////////////////////////////////////////////////////*/
/*-------首頁內容--------*/
/*/////////////////////////////////////////////////////////*/

.main{
	padding: 123px 0 50px;
}
.indexMain{
	padding: 136px 0 50px;
}
	.indexMain > .wrap{
		/*display: table;
		content: " ";*/
	}

	/*首頁內容_上方方塊*/
	.indexMain_topArea{
		/*margin-bottom: 35px;*/
		overflow: hidden;
		/*padding: 0px 12px;*/
	}
		
		/*左側區塊*/
		.indexMain_left{
			/*padding: 0px 12px;*/
			padding: 0px 24px 0px 0px;
			float: left;
    		width: 18.75%;
			webkit-box-sizing: border-box;
			-moz-box-sizing: border-box;
			box-sizing: border-box;
		}
			.indexMain_left h3{
				font-size: 14px;
				text-transform: uppercase;
				padding-bottom: 10px;
				border-bottom: #b4b4b4 solid 1px;
				color: #747474;
				margin: 0;
				font-weight: bold;
			}
			
			/*首頁_最新消息列表區塊*/
			.indexNews_sliderArea{
				background-color: #eeeeee;
				/*padding: 44px 10px 41px 10px;*/
				padding: 32px 10px 30px 10px;
				position: relative;
			}
				.indexNews_sliderArea .bxslider{
					padding-left: 0px;
				}
					.indexNews_sliderIn li{
						padding: 0;
						border-top: #fff solid 1px;
						border-bottom: #b4b4b4 solid 1px;
						padding: 11.5px 0;
					}
						.indexNews_sliderIn li .slider-caption {
							position: relative;
							overflow: hidden;
						}
							.indexNews_sliderIn li a{
								color: #434343;
								/*text-decoration: none;*/
								outline: none;
							}
								.indexNews_sliderIn .date {
									display: block;
									font-size: 12px;
									color: #898989;
								}
								.indexNews_sliderIn .slider-caption p {
									/*width: 80%;*/
									width: 87%;
									font-size: 14px;
									color: #434343;
									line-height: 1.4;
									height: 60px;
									margin-bottom: 0;
									padding-top: 7px;
									font-weight: bold;
									webkit-box-sizing: border-box;
									-moz-box-sizing: border-box;
									box-sizing: border-box;
									overflow: hidden;
								}
								.indexNews_sliderIn li .more {
									webkit-box-sizing: border-box;
									-moz-box-sizing: border-box;
									box-sizing: border-box;
									position: relative;
									padding: 9px 0;
									overflow: hidden;
									-webkit-transition: all .8s;
									-moz-transition: all .8s;
									transition: all .8s;
									display: block;
									cursor: pointer;
									
									position: absolute;
									right: 0;
									bottom: 0;
									display: inline-block;
									width: 18px;
									height: 18px;
									background: url(../images/more.png) no-repeat #f29206;
									background-size: 18px auto;
								}
								
								.indexNews_sliderIn li .more:after {
									width: 100%;
									height: 0;
									top: 50%;
									left: 50%;
									background: #fff;
									opacity: 0;
									filter: alpha(opacity=0);
									-webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
									-moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
									-ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
									transform: translateX(-50%) translateY(-50%) rotate(45deg);
									content: '';
									position: absolute;
									z-index: 1;
									-webkit-transition: all 0.4s;
									-moz-transition: all 0.4s;
									transition: all 0.4s;
								}
								
								.indexNews_sliderIn li .more:hover:after {
									height: 100%;
									opacity: 0.25;
									width: 160%;
									filter: alpha(opacity=25);
								}
				
					/*上一則按鈕*/
					.indexNews_sliderArea .bx-prev {
						position: absolute;
						top: 0;
						left: 50%;
						margin-left: -30px;
						display: block;
						width: 60px;
						height: 28px;
						background: url(../images/bx_prev.png) no-repeat 0 0;
						background-size: 60px auto;
						text-indent: -99999px;
					}
					.indexNews_sliderArea .bx-prev.disabled {
						background: url(../images/bx_prev.png) no-repeat 0 -30px;
						background-size: 60px auto;
					}
					
					/*下一則按鈕*/
					.indexNews_sliderArea  .bx-next {
						position: absolute;
						bottom: -1px;
						left: 50%;
						margin-left: -30px;
						display: block;
						width: 60px;
						height: 28px;
						background: url(../images/bx_next.png) no-repeat 0 0;
						background-size: 60px auto;
						text-indent: -99999px;
					}
					.indexNews_sliderArea .bx-next.disabled {
						background: url(../images/bx_next.png) no-repeat 0 -30px;
						background-size: 60px auto;
					}
					
					
			
		/*中間區塊_banner*/
		.indexMain_middle {
			webkit-box-sizing: border-box;
			-moz-box-sizing: border-box;
			box-sizing: border-box;
			width: 62.5%;
			float: left;
			/*padding: 0px 12px;*/
		}
		
		
		/*右側區塊*/
		.indexMain_right{
			webkit-box-sizing: border-box;
			-moz-box-sizing: border-box;
			box-sizing: border-box;
			display: block;
			float: left;
			width: 18.75%;
			padding-left: 24px;
		}
			/*自訂連結區塊*/
			.indexAd_listArea{
			}
				.indexAd_listArea .row {
					padding: 0px;
				}
					.indexAd_listArea li {
						margin-bottom: 18px;
						list-style: none;
					}
					.indexAd_listArea li:first-child {
						margin-bottom: 17px;
					}
						.indexAd_listArea a{
							
						}
							.indexAd_listArea li .cover {
								position: relative;
								overflow: hidden;
								-webkit-transition: all .6s;
								-moz-transition: all .6s;
								transition: all .6s;
								display: block;
							}
							.indexAd_listArea li .cover:after {
								width: 100%;
								height: 0;
								top: 50%;
								left: 50%;
								background: #fff;
								opacity: 0;
								filter: alpha(opacity=0);
								-webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
								-moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
								-ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
								transform: translateX(-50%) translateY(-50%) rotate(45deg);
								content: '';
								position: absolute;
								z-index: 1;
								-webkit-transition: all 0.6s;
								-moz-transition: all 0.6s;
								transition: all 0.6s;
							}
							
							.indexAd_listArea li .cover:hover:after {
								height: 130%;
								opacity: 0.25;
								width: 160%;
								filter: alpha(opacity=25);
							}
							
							
							
								/*圖片*/
								.indexAd_listImg{
									
								}
									.indexAd_listImg img{
										width: 100%;
										height: auto;
									}
								
								.indexAd_listArea li .cover {
									position: relative;
									overflow: hidden;
									-webkit-transition: all 0.6s;
									-moz-transition: all 0.6s;
									transition: all 0.6s;
									display: block;
									
									/*height: 124px;
									width:191px;*/
									background-size: cover;
									background-repeat: no-repeat;
								}
								
									.indexAd_listText {
										position: absolute;
										bottom: 0;
										height: 38px;
										width: 101%;
										background-color: rgba(106, 106, 106, 0.83);
										display: table;
										padding: 4px 20px;
										webkit-box-sizing: border-box;
										-moz-box-sizing: border-box;
										box-sizing: border-box;
									}
									
										.indexAd_listText:after {
											webkit-box-sizing: border-box;
											-moz-box-sizing: border-box;
											box-sizing: border-box;
											content: "";
											position: absolute;
											right: -2px;
											top: 13px;
											width: 0;
											height: 0;
											border-top: 25px solid transparent;
											border-left: 33px solid white;
											border-bottom: 47px solid transparent;
											transform: rotate(45deg);
											-webkit-transform: rotate(45deg);
											-moz-transform: rotate(45deg);
										}
									
										.indexAd_listText p{
											color: white;
											/*display: table-cell;*/
											vertical-align: middle;
											font-size: 12px;
											letter-spacing: 1px;
											line-height: 16px;
											
											display: -webkit-box;
											overflow: hidden;
											text-overflow: ellipsis;
											-webkit-text-overflow: ellipsis;
											-webkit-line-clamp: 2;
											-webkit-box-orient: vertical;
										}
							
		
@media (max-width: 1200px){
}

@media (max-width: 1190px){
	
	.indexMain_left{
		/*display: none;*/
		width: 20%;
	}
		.indexNews_sliderIn .slider-caption p {
			font-size: 12px;
			height: 50px;
			padding: 3px 0px 0px;
		}
	
	.indexMain_middle {
		padding: 0;
		/*width: 77%;*/
		width: 61%;
	}
		
	.indexMain_right {
		/*width: 23%;*/
		/*width: 20%;*/
		width: 18.37%;
	}
		.indexAd_listArea li{
			margin-bottom: 19px;
		}
		.indexAd_listArea li:first-child {
		}
		.indexAd_listArea li:last-child {
		}
}	

@media (max-width: 990px){
	
.main{
	padding: 150px 0 50px;
}
.indexMain{
	padding: 166px 0 50px;
}	

	.indexMain_left{
		display: none;
	}
	
	.indexMain_middle {
		width: 77%;
	}
		
	.indexMain_right {
		width: 23%;
	}
	
		
		.indexAd_listText:after {
			display: none;
		}
}

@media (max-width: 768px){
	
}


@media (max-width:640px){

.main{
	/*padding: 100px 0px 20px;*/
	padding: 68px 0px 20px;
}

.body_inArea > .main{
	padding: 68px 0px 20px;
}

.body_inArea > .indexMain{
	/*padding: 100px 0px 20px;*/
	padding: 68px 0px 20px;
}
	
	.indexMain > .wrap{
		/*padding: 0px;*/
	}

		.indexMain_topArea{
			margin: 0px -5px;
		}
		
			/*中間區塊_banner*/
			.indexMain_middle {
				float: none;
				width: 100%;
				margin-bottom: 20px;
			}
			
			
			/*右側區塊*/
			.indexMain_right{
				display: none;
			}
			
				.indexAd_listText {
					position: relative;
					min-height: 38px;
					height: auto;
					padding: 4px 5px;
				}
	
}



/*平板版之後會出現的區塊*/
.indexMain_TBarea{
	display: none;
}
	/*最新消息區塊*/
	.indexMain_TBarea .bxslider{
		display: none;
	}
	/*自訂連結區塊*/
	.indexMain_TBarea .indexAd_listArea{
		display: none;
	}


@media (max-width: 990px){
	
	.indexMain_TBarea{
		display: block;
	}
		/*最新消息區塊*/
		.indexMain_TBarea .bxslider{
			display: block;
		}
			.indexMain_TBarea .indexNews_sliderArea{
				padding: 16px 0 14px 43px;
				margin-bottom: 20px;
			}
			
			.indexMain_TBarea .indexNews_sliderArea h3{
				margin: 0px;
				margin-bottom: 7px;
				text-transform: uppercase;
				color: #898989;
				/*font-size: 14px;*/
				font-size: 18px;
			}
			
			.indexMain_TBarea .indexNews_sliderArea .bx-prev {
				position: absolute;
				top: 50%;
				left: 0;
				margin-top: -37px;
				display: block;
				width: 35px;
				height: 74px;
				background: url(../images/h_bx_prev.png) -45px 0 no-repeat;
				text-indent: -99999px;
				z-index: 3;
				margin-left: 0px;
			}
			.indexMain_TBarea .indexNews_sliderArea .bx-prev.disabled {
				background: url(../images/h_bx_prev.png) no-repeat
			}
	
			.indexMain_TBarea .indexNews_sliderArea .bx-next {
				position: absolute;
				right: 0;
				top: 50%;
				margin-top: -37px;
				display: block;
				width: 35px;
				height: 74px;
				background: url(../images/h_bx_next.png) -45px 0 no-repeat;
				text-indent: -99999px;
				z-index: 3;
				left: unset;
			}
			.indexMain_TBarea .indexNews_sliderArea .bx-next.disabled {
				background: url(../images/h_bx_next.png) no-repeat
			}
			
			
		
			.indexMain_TBarea .indexNews_sliderArea li {
				float: left;
				width: 166px;
				background: url(../images/line.jpg) right 0 repeat-y;
				border-top: 0px;
				border-bottom: 0px;
				padding: 0px;
			}
		
			.indexMain_TBarea .indexNews_sliderArea li:first-child {
				border-left: none
			}
				.indexMain_TBarea .indexNews_sliderArea li p {
					width: 80%;
					height: 50px;
					margin-bottom: 0;
				}
				.indexMain_TBarea .indexNews_sliderArea li .more{
					position: absolute;
					right: 16px;
					bottom: 0;
					width: 18px;
					height: 18px;
					background-size: 18px auto;
				}
	
	
	
}

@media (max-width: 640px){

	.indexMain_TBarea {
		margin: 0px -5px;
	}
	
		.indexMain_TBarea .indexNews_sliderArea {
			padding: 16px 0 14px 33px;
		}
	
			.indexMain_TBarea .indexNews_sliderArea li p {
				width: 91%;
				height: 35px;
				margin-bottom: 22px;
			}
			.indexMain_TBarea .indexNews_sliderArea li .more{
				/*left: 0px;*/
				right: 15px;
			}
			
			/*自訂連結區塊*/
			.indexMain_TBarea .indexAd_listArea{
				display: block;
			}		
				.indexMain_TBarea .indexAd_listArea ul{
					/*padding: 0px 5px;*/
					/*margin: 0px -5px;*/
				}
					
					.indexMain_TBarea .indexAd_listArea li{
						width: 33.3%;
						webkit-box-sizing: border-box;
						-moz-box-sizing: border-box;
						box-sizing: border-box;
						float: left;
						padding: 0px 5px;
					}
	}

@media (max-width: 414px){
		/*自訂連結區塊*/
		.indexMain_TBarea .indexAd_listArea{
			
		}		
			.indexMain_TBarea .indexAd_listArea li{
				/*width: 100%;
				float: none;*/
			}
}


		
	/*首頁內容_下方方塊*/
	.indexMain_bottomArea{
		padding: 35px 0px 0px;
	}
	
		/*標題*/
		.indexMain_bottomTit{
			font-size: 40px;
			color: #898989;
			font-weight: bold;
		}
		
		.indexMain_bottomArea ul{
			margin: 0px -17px;
			padding: 25px 0px 0px;
			display: flex;
			flex-wrap: wrap;
			flex-direction: row;
			align-items: flex-start;
		}
			.indexMain_bottomArea li{
				width: 25%;
				/*float: left;*/ /*modify by karol 20201007*/
				webkit-box-sizing: border-box;
				-moz-box-sizing: border-box;
				box-sizing: border-box;
				padding: 0px 17px 30px;
				list-style: none;
			}
				.indexProduct_list{
					background: #eee;
				}
					.indexProduct_list a{
						overflow: hidden;
						text-decoration: none;
						outline: none;
    					webkit-box-sizing: border-box;
						-moz-box-sizing: border-box;
						box-sizing: border-box;
						display: block;
						position: relative;
						font-size: 20px;
						color: #898989;
						text-align: center;
						text-transform: uppercase;
						background: #eeeeee;
					}
						.indexProduct_list cover{
							width: 100%;
							line-height: 30px;
							text-align: center;
							
							position: relative;
							overflow: hidden;
							-webkit-transition: all 0.8s;
							-moz-transition: all 0.8s;
							transition: all 0.8s;
							display: block;
						}
						.indexProduct_list .cover:after {
							width: 100%;
							height: 0;
							top: 50%;
							left: 50%;
							background: #fff;
							opacity: 0;
							filter: alpha(opacity=0);
							-webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
							-moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
							-ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
							transform: translateX(-50%) translateY(-50%) rotate(45deg);
							content: '';
							position: absolute;
							z-index: 1;
							-webkit-transition: all 0.8s;
							-moz-transition: all 0.8s;
							transition: all 0.8s;
						}
						/*hover*/		
						.indexProduct_list .cover:hover:after {
							height: 122%;
							opacity: 0.25;
							width: 160%;
							filter: alpha(opacity=25);
						}
						
							.indexProduct_list img{
								height: auto;
								max-width: 100%;
								vertical-align: middle;
								border: 0;
								
								margin-bottom: 8px;
							}
							.indexProduct_list .cover > span{
								width: 100%;
								line-height: 30px;
								text-align: center;
								position: absolute;
								bottom: 0px;
								/*bottom: 25px;*/
								/*letter-spacing: 2px;*//*modify by pekey 20190227*/
								letter-spacing: 0;

								color: #898989;
								background-color: rgb(238, 238, 238);
								/*left: 2px;*/
								left: 0px;
								font-weight: bold;
							}
	

@media (max-width: 990px){
	

.indexMain_bottomArea ul{
	margin: 0px -10px;
}
	.indexMain_bottomArea li{
		padding: 0px 10px;
	}

	
	
	.indexProduct_list .cover > span{
		font-size: 15px;
		bottom: 7%;
	}
	
	.indexMain_bottomArea{
		padding: 20px 0px 0px;
	}
	
	/*標題*/
	.indexMain_bottomTit{
		font-size: 18px;
		/*padding-left: 43px;*/  /*modify by pekey 20190128*/
		padding-left: 30px;
	}
}

@media (max-width: 768px){
	.indexMain_bottomTit {
		/*font-size: 35px;*/
		font-size: 18px;
	}
		.indexProduct_list .cover > span{
			font-size: 15px;
			bottom: 6%;
		}
		
		
		/*.indexMain_bottomArea ul{
			margin: 0px;
		}
			.indexMain_bottomArea li{
				padding: 0px 5px;
			}*/
			
}

@media (max-width: 640px){
	
	.indexMain_bottomArea {
		padding: 0px;
	}
		
		/*首頁內容_下方方塊*/
		.indexMain_bottomArea > .wrap{
			padding: 0px;
		}
			.indexMain_bottomArea ul{
				margin: 0px -5px;
			}
		
				.indexMain_bottomArea li{
					width: 50%;
					padding: 5px 5px;
				}
					.indexProduct_list .cover > span{
						/*bottom: 3%;*/
						font-size: 20px;
						bottom: 10%;
					}
}

@media (max-width: 425px){
	.indexMain_bottomArea{
		/*padding: 5px 0px 0px;*/
	}
		.indexMain_bottomTit {
			/*font-size: 18px;*/
		}
		.indexMain_bottomArea ul{
			padding: 15px 0px 0px;
		}
				.indexProduct_list .cover > span{
					/*bottom: 3%;*/
					font-size: 15px;
    				bottom: 4%;
				}
}



/*/////////////////////////////////////////////////////////*/
/*-------版腳區塊--------*/
/*/////////////////////////////////////////////////////////*/

.footer{
	position: relative;
}
	.footer > .wrap{
	}
		
		/*版腳_上方區塊*/
		.footer_topArea{
			padding: 15px 0px 10px;
			background-color: #eeeeee;
		}
			/*版腳上方_版權連結區塊*/
			.footerTop_linkArea{
				float: left;
				webkit-box-sizing: border-box;
				-moz-box-sizing: border-box;
				box-sizing: border-box;
			}
				.footerTop_linkList{
					float:left;
					webkit-box-sizing: border-box;
					-moz-box-sizing: border-box;
					box-sizing: border-box;
					font-size: 14px;
					line-height: 16px;
					/*font-weight: bold;*/
					color: #2c353c;
				}
					.footerTop_linkList a{
						font-size: 13px;
						display: block;
						color: #2c353c;
						padding: 0px 10px;
						border-left: 1px solid #000;
						border-right: 1px solid #000;
						margin-left: 20px;
						font-weight: normal;
					}
			
			/*版腳_社群連結區塊*/
			.footerTop_snsArea{
				float: right;
				webkit-box-sizing: border-box;
				-moz-box-sizing: border-box;
				box-sizing: border-box;
			}
				.footerTop_snsList{
					float:left;
					webkit-box-sizing: border-box;
					-moz-box-sizing: border-box;
					box-sizing: border-box;
				}
					.footerTop_snsList a{
						display: block;
						padding: 0px 10px;
						border-left: solid 1px #b6b6b6;
					}
					.footerTop_snsList:nth-of-type(1) a{
						border-left: 0px;
					}
					
						.footerTop_snsList img{
							width: 16px;
							height: auto;
						}
					
		
		/*版腳_收合點擊按鈕*/
		.footer_arrowBtn{
		}
			a.footer_arrowIcon{
				display: block;
				cursor: pointer;
				position: absolute;
				left: 50%;
				top: 14px;
				z-index: 10;
				margin-left: -30px;
				width: 60px;
				height: 53px;
				background: url(../images/d_arrow_bot.png) no-repeat 50% -55px;
				background-size: 60px auto;
			}
			
			/*當前模式*/
			a.footer_arrowIcon.active{
				background: url(../images/d_arrow_bot.png) no-repeat 50% 0;
   				background-size: 60px auto;
			}
			
		
		
		/*版腳_中間區塊*/
		.footer_middleArea{
		}
			/*版腳_中間區塊內容*/
			.footer_middleIn{
				position: relative;
				display: none;
			}
			.footer_arrowBtn.active .footer_middleIn.active{
				display: block;
			}
			
			
			/*版腳_主按鍵區塊*/
			.footer_navbar{
				padding: 38px 0px 30px;
				
				background-color: #913547;
				background-image: url(../images/transparent_bot.png);
				background-position: 50% 0;
				background-size: 653px auto;
				background-repeat: no-repeat;
			}
				.footer_nav{
					float: left;
					webkit-box-sizing: border-box;
					-moz-box-sizing: border-box;
					box-sizing: border-box;
					width: 20%;
				}
					.footerNav_titArea{
						color: #e1e1e1;
						font-size: 19px;
						text-transform: uppercase;
						font-weight: bold;
						padding: 15px 5px 0px 0px;
						box-sizing: border-box;
					}
					.footerNav_inArea{
						padding: 15px 5px 0px 0px;
					}
						.footerNav_inList{
							padding: 0px 0px 10px;
						}
							.footerNav_inList a{
								display: block;
								/*text-decoration: none;*/
								color: #d9d9d9;
								font-size: 14px;
								letter-spacing: 0.08em;
								word-break: break-word;
								line-height: 18px;
							}
						
						
						
			
			/*版腳_公司資訊區塊*/
			.footer_infoArea{
				background-color: #892337;
    			padding: 38px 0px 35px;    
			}
				/*版腳logo*/
				.footerInfo_logo{
					float: left;
					webkit-box-sizing: border-box;
					-moz-box-sizing: border-box;
					box-sizing: border-box;
					padding-right: 17px;
				}
					.footerInfo_logo img{
						width: 100%;
						height: auto;
					}
				
				.footerInfo_inArae{
					float: left;
					webkit-box-sizing: border-box;
					-moz-box-sizing: border-box;
					box-sizing: border-box;
				}
					.footerInfo_inList{
						float: left;
						webkit-box-sizing: border-box;
						-moz-box-sizing: border-box;
						box-sizing: border-box;
						padding: 0px 43px;
					}
					.footerInfo_inList:last-of-type{
						padding-left: 30px;
					}
						.footerInfo_inList span{
							color: #B5B3B3;
							font-size: 13px;
							margin-bottom: 0;
							display: inline-block;
							vertical-align: middle;
							line-height: 22px;
							/*letter-spacing: 2px;*/
						}
					
			
			
		/*版權宣告*/
		.copyright{
			background-color: #892337;
			padding: 15px 0px;
			color: #b5b3b3;
			font-size: 13px;
		}
		/*active*/
		.copyright.active{
			background-color: #892337;
		}
			.copyright > .wrap{
			}
				.copyright a{
					/*display: block;*/
					color: #b5b3b3;
					font-size: 13px;
				}

@media (max-width: 990px){
	.footerInfo_inArea{
		float: right;
		webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}
		.footerInfo_inList{
			padding: 0px 15px;
		}
}

@media (max-width: 768px){
	.footerTop_linkList{
		letter-spacing: 0px;
		font-size: 13px;
	}
		.footerTop_linkList a{
			margin-left: 10px;
		}
		
	.footer_infoArea{
		padding: 20px 0px;
	}
		.footerInfo_logo{
			float: none;
			width: 142px;
			padding: 0px;
			margin: 0px auto;
			text-align: center;
		}
		.footerInfo_inArea{
			float: none;
			padding: 20px 0px 0px;
			margin: 0px -15px;
		}
			.footerInfo_inList{
				padding: 0px 15px;
				width: 50%;
			}
	
		
		/*版權宣告*/
		.copyright{
			/*modify by pekey 20190220*/
    		padding: 35px 0px 15px;
		}
			
}

				
@media (max-width: 640px){
	
	/*版腳_收合點擊按鈕*/
	.footer_arrowBtn{
		/*display: none;*/
		
		/*modify by pekey 20190220*/
		position: relative;
	}
	.footer_arrowBtn a{
		/*top: 45px;*/ /*modify by pekey 20190220*/
		top: -26px;
		margin-left: -26px;
		width: 58px;
		height: 29px;
		background: url(../images/m_arrow_bot.png) no-repeat;
		background-size: 58px auto;
		
		/*modify by pekey 20190220*/
		position: absolute;
	}
	.footer_arrowBtn.active a{
		background: url(../images/m_arrow_bot.png) 0 -31px no-repeat;
		background-size: 58px auto;
	}
	
	
	.footerTop_linkArea{
		float: none;
		width: 100%;
		text-align: center;
		margin-bottom: 18px;
	}
		.footerTop_linkList{
			float: none;
			display: inline-block;
			text-align: center;
		}
		
	.footerTop_snsArea{
		float: none;
		width: 100%;
		text-align: center;
		margin-bottom: 23px;
	}
		.footerTop_snsList{
			float: none;
			display: inline-block;
			text-align: center;
		}
		
	.footer_navbar{
		display: none;
	}
	
	.footer_infoArea{
		/*background-color: #4e4a49;*/
	}
		.footerInfo_inArea{
			margin: 0px 0px;
		}
			.footerInfo_inList{
				float: none;
				width: 100%;
				padding: 10px 0px;
				text-align: center;
			}
		
	.copyright{
		text-align: center;
		line-height: 16px;
		
		/*modify by pekey 20190220*/
		padding: 18px 0px 15px;
	}
	.copyright.active{
		/*background-color: #4e4a49;*/
	}
}

@media (max-width: 320px){
	.footerTop_linkList a{
		margin: 15px 0px 0px;
	}
	.footer_arrowBtn a{
		/*top: 55px;*/ /*20190116leo*/ /*modify by pekey 20190220*/
	}
	
	/*modify by pekey 20190220*/
	.copyright{
		letter-spacing: 0px;
	}
}

			

/*/////////////////////////////////////////////////////////*/
/*-------共用區塊--------*/
/*/////////////////////////////////////////////////////////*/

/*麵包屑*/
.crumb {
	font-size: 14px;
	line-height: 18px;
	color: #898989;
	padding: 18px 0px;
	/*margin-bottom: 24px;*/
}
	.crumb a {
		color:#898989;
		text-decoration: underline;
		/*text-decoration:none;*/
	}
		.crumb i {
			font-size: 15px;
			vertical-align: middle;
			position: relative;
			top: -1px;
		}
	.crumb span{
		/*color: #f29206;*/
	}


/*內頁_大標區塊*/
.pageMain_titArea{
	overflow: hidden;
    background: #eee;
    margin: 0px 0 20px;
    position: relative;
}
	.pageMain_titIn{
		height: 80px;
		padding: 0 0 0 110px;
		position: relative;
	}
		/*圖片*/
		.pageMain_titImg{
			position: absolute;
			top: 0;
			left: 0;
			display: block;
			/*width: 87px;*/
			width: 80px;
			height: 80px;
		}
			.pageMain_titImg a{
				display: block;
			}
				.pageMain_titImg img{
					width: 100%;
					height: auto;
					/*padding: 0px 5px 0px 7px;*/
					padding: 0px 3px 0px 5px;
					border-right: 1px solid #d5d5d5;
				}
		
		/*文字內容*/
		.pageMain_titContent{
			position: static;
			width: 100%;
			/*height: 87px;*/
			height: 80px;
			padding: 0;
			overflow: hidden;
			/*font-size: 60px;*/
			font-size: 40px;
			line-height: 87px;
			margin-bottom: 0;
			font-weight: bold;
		}


@media (max-width: 990px){
	.pageMain_titIn {
		height: 70px;
		padding: 0 0 0 90px;
	}
		.pageMain_titImg{
			width: 70px;
			height: 70px;
		}
		
		/*文字內容*/
		.pageMain_titContent{
			height: 70px;
			font-size: 31px;
			line-height: 73px;
		}
}

@media (max-width: 768px){

.pageMain_titArea{
	/*margin: 0px 0 13px;*/
	margin: 0px 0 18px;
}

	.pageMain_titIn {
		height: 57px;
		padding: 0 0 0 90px;
	}
		.pageMain_titImg{
			width: 57px;
			height: 57px;
		}
		
		/*文字內容*/
		.pageMain_titContent{
			height: 57px;
			font-size: 24px;
			line-height: 60px;
		}
	
	.leftList > a{
		height: 35px;
		line-height: 35px;
		font-size: 12px;
	}
	.leftList.active > a{
		line-height: 35px;
	}
	
	.leftList.active > a span{
		background: url(../images/hover_arrow_down.png) no-repeat 50% 0;
    	background-size: 26px auto;
		padding: 0px;
		line-height: 35px;
		font-size: 14px;
	}
		
	
		
}

@media (max-width: 640px){
	

/*麵包屑*/
.crumb {
	padding: 13px 0px;
		
	/*modify by pekey 20190222*/
	color:#000;
	

	/*modify by pekey 20190227*/
	letter-spacing: 0;
}	

	.crumb a{		
		/*modify by pekey 20190222*/
		color:#000;
	}
	
	
.pageMain_titIn{
    height: 42px;
    background: #eee;
    /*padding: 0 40px 0 63px;*/
	padding: 0 12px 0 63px;
}	
	.pageMain_titImg{
		width: 42px;
    	height: 42px;
	}
		.pageMain_titImg img{
			width: 42px;
			height: 42px;
			/*padding: 0px;*/
    		padding: 1px 5px 0px;
		}
		.pageMain_titContent{
			height: 42px;
			font-size: 18px;
			line-height: 42px;
			
			/*modify by pekey 20190227*/
			letter-spacing: 0;
		}
		
		.leftList.active > a span{
			letter-spacing: 0px;
			font-weight: bold;
			font-size: 16px;
		}
}
				/*modify by pekey 20190222*/
				.leftList_open_list a{
					font-weight: normal;
				}
					/*modify by pekey 20190222*/
					.leftList_open_list a > span{
						padding: 7px 35px 5px 15px;
						line-height: 24px;
						font-size: 16px;
						color: #000;
						height: auto;
					}


		

/*內頁_內容區塊*/
.pageMain_inArea{
	padding: 35px 0px 50px;
}		
	.pageMain_content{
		
	}

/*左側*/
.left{
	float:left;
	width:256px;
	/*width: 292px;*/
	webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	
	background-color: #eee;
	-webkit-box-shadow: 1px 3px 2px 2px rgba(0,0,0,0.15) inset;
	-moz-box-shadow: 1px 3px 2px 2px rgba(0,0,0,0.15) inset;
	box-shadow: 1px 3px 2px 2px rgba(0,0,0,0.15) inset;
}
	
	/*左側表單名稱*/
	.leftList_tit{
		/*background-color: #fcfcfc;
		line-height:70px;
		text-align:center;
		font-size:25px;*/
		
		padding: 0 24px;
		text-transform: uppercase;
		text-align: center;
		line-height: 45px;
		background: #434343;
		color: #fff;
		overflow: hidden;
		margin-bottom: 0;
	}
	
	/*左側選單列表*/
	.leftListArea{
		/*background-color: #fcfcfc;*/
		/*background-color: #eee;
		-webkit-box-shadow: 1px 3px 2px 2px rgba(0,0,0,0.15) inset;
		-moz-box-shadow: 1px 3px 2px 2px rgba(0,0,0,0.15) inset;
		box-shadow: 1px 3px 2px 2px rgba(0,0,0,0.15) inset;*/
		font-size: 18px;
	}
		.leftList{
			/*border-bottom:1px dashed #bebfc0;
			padding:7px 0px;*/
			font-size:18px;
		}
			.leftList > a{
				display: block;
				
    			color: #434343;
				font-size: 16px;
				letter-spacing: 2px;
				/*letter-spacing: 3px;*/
				display: block;
				padding: 0 24px;
				text-transform: uppercase;
				
				line-height: 60px;
				
				overflow: hidden;
				margin-bottom: 0;
				
				text-align: left;
				cursor: pointer;
				text-decoration: none;
				position: relative;
			    background: none;
				
				word-wrap: break-word;
				position: relative;
				
			}
			.leftList_title {
				background: url(../images/pannel_line.png) repeat-x 0 top;
				background-size: 100% 2px;
			}
				.leftList > a span{
					display: block;
					line-height: 20px;
					position: relative;
					padding: 21px 30px 21px 0;
					word-wrap: break-word;
					background: url(../images/pannel_line.png) repeat-x 0 top;
					background-size: 100% 2px;
					display: block;
				}
				
				.leftList.active > a {
					display: block;
					color: #fff;
					position: relative;
					/*background: #999 url(../images/pannel_line.png) repeat-x 0 0;*/ /*modify by pekey 20190223*/
					background: #f29206 url(../images/pannel_line.png) repeat-x 0 0;
					background-size: 100% 2px;
				}
			
			
				/*方向標誌*/
				.leftList_icon.direction{
					position: absolute;
					right: 10px;
					top: 16px;
				}
					/*方向標誌_向下展開*/
					.leftList_icon.direction i.down{
						display: block;
					}
					/*方向標誌_向上收合*/
					.leftList_icon.direction i.up{
						display: none;
					}
					
					
				/*active*/ /*方向標誌_向下展開*/
				.leftList.active .leftList_icon.direction i.down{
					display: none;
				}
				/*active*/ /*方向標誌_向上收合*/
				.leftList.active .leftList_icon.direction i.up{
					display: block;
				}
				
			
			/*左側選單列表第二層*/
			.leftList_open{
				display: none;
			}
			.leftList_open.active{
				display:block;
			}
				.leftList_open_list{
				}
					.leftList_open_list a {
						display: block;
						/*font-size: 16px;*/
						font-size: 15px;
						/*letter-spacing: 3px;*/
						letter-spacing: 2px;
						padding: 0 24px;
						text-transform: uppercase;
						text-align: center;
						line-height: 45px;
						background: #434343;
						color: #fff;
						overflow: hidden;
						margin-bottom: 0;
						background: none;
						color: #434343;
						text-align: left;
						cursor: pointer;
					}
						.leftList_open_list a > span{
							display: block;
							line-height: 20px;
							position: relative;
							/*padding: 21px 30px 21px 0;*/
							padding: 21px 0px;
							word-wrap: break-word;
							background: url(../images/pannel_line.png) repeat-x 0 top;
							background-size: 100% 2px;
							padding-left: 20px;
						}
						.leftList_open_list .leftList_open_list:nth-of-type(1) a > span {
							background: none;
						}
											
					/*active*/
					.leftList_open_list.active a {
						color: #f29206;
					}
						.leftList_open_list.active a >　span{
						}
						
					/*hover*/	
					.leftList_open_list a:hover {
						color: #f29206;
						text-decoration:none;
					}


/*右側*/
.right{
	width: 70%;
	float: right;
	webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
	.right_inArea{
		padding: 0px 0px 50px;
	}
		.right_inArea video, .right_inArea iframe{
			width: 100%;
			height: 450px;
		}
		
		/*網編區塊*/
		section.text_area{
			color: #434343;
			font-size: 14px;
			line-height: 21px;
			letter-spacing: 0px;
		}
			section.text_area img{
				/*width: 100%;*/
				max-width: 100%;
				height: auto;
			}
			
			section.text_area p{
				position: relative;
			}
			section.text_area h2{
				margin: 0px;
				font-size: 30px;
				line-height: 34px;
				font-weight: bold;
			}
			section.text_area h3{
				margin: 0px;
				font-size: 22px;
				line-height: 26px;
				font-weight: bold;
			}
			
			section.text_area h4{
				margin: 0px;
				font-size: 20px;
				line-height: 24px;
				font-weight: bold;
			}
				section.text_area h4 a{
					color: #434343;
				}


@media (max-width: 990px){
		
	/*左側*/
	.left{
		width: 34%;
	}
	
	/*右側*/
	.right{
		width: 60%;
	}
		.right_inArea video, .right_inArea iframe{
			width: 100%;
			height: 245px;
		}
	
	.pageMain_inArea{
		padding: 20px 0px 50px;
	}
			section.text_area img{
				max-width: 60%;
			}
	
			section.text_area h2{
				font-size: 24px;
				line-height: 30px;
			}
			section.text_area h3{
				font-size: 20px;
				line-height: 24px;
			}
			section.text_area h4{
				font-size: 18px;
				line-height: 22px;
			}
}


@media (max-width: 950px){

	/*左側*/
	.left{
		float: none;
		width:100%;
		margin-bottom: 10px;
	}
	
		/*左側表單名稱*/
		.leftList_tit{
			border: 1px #dbdbdb solid;
			border-radius:3px;
			line-height: 50px;
			position:relative;
			cursor:pointer;
			padding: 0 50px;
		}
		.leftList_tit:after {
			/*position: absolute;
			content: '';
			top: 22px;
			right: 20px;
			border-top: solid 8px #fff;
			border-left: solid 4px transparent;
			border-right: solid 4px transparent;
			margin: 0 0 0 10px;*/
			
			content:'';
			position: absolute;
			top: 0;
			right: 0;
			width: 68px;
			height: 50px;
			background: url(../images/pannel_arrow_B.png) no-repeat 50% -5px;
			background-size: 20px auto;
			cursor: pointer;
			z-index: 1;
		}
		.leftList_tit.active:after {
			background-position: 50% -67px;
		}
		
		/*左側表單*/
		.leftListArea{
			/*display:none;*/
			display: block;
			background: #f7f7f7;
		}
			.leftList > a{
				line-height: 35px;
				font-size: 14px;
			}
			
			/*.leftList_open.active{
				display:block;
			}*/
		
	/*右側*/
	.right{
		float: none;
		width: 100%;
	}
	
	
}

@media (max-width: 768px){
	.pageMain_inArea{
		padding: 0px 0px 50px;
	}
	
	
	.leftList_tit{
		height: 35px;
		line-height: 35px;
		font-size: 14px;
		border-radius: 0px;
		border: 0px;
		text-align: left;
		padding: 0 50px 0px 13px;
		
		/*modify by pekey 20190223*/
		font-weight: bold;
	}
		.leftList_tit:after {
			width: 68px;
			height: 35px;
			background: url(../images/pannel_arrow_B.png) no-repeat 50% -6px;
			background-size: 15px auto;
		}
		
		.leftList_tit.active:after {
			background-position: 50% -53px;
		}
		
			.leftList > a{
				padding: 0px 24px 0px 13px;
				
				/*modidfy 20190223*/
				color: #000;
			}
			
				.leftList > a:after{
					background: url(../images/pannel_arrow.png) no-repeat 50% -6px;
					background-size: 15px auto;
					height: 35px;
				}
				
				.leftList.active > a:after {
					background-position: 50% -52px;
				}
				
						
					.leftList > a span{
						line-height: 36px;
						padding: 0px;
					}
					
					.leftList.active > a span{
						background-size: 20px auto;
					}
						
						.leftList_open_list a{
							line-height: 35px;
							padding: 0px 13px;
						}
						
						.leftList_open_list a > span{
							padding: 0px 35px 0px 15px;
							line-height: 35px;
							height: 35px;
						}
			
		
		
		
	.right_inArea video, .right_inArea iframe {
		height: 407px;
	}	
		
	
			section.text_area h2{
				font-size: 22px;
				line-height: 26px;
			}
			section.text_area h3{
				font-size: 18px;
				line-height: 22px;
			}
			section.text_area h4{
				font-size: 16px;
				line-height: 20px;
			}
		
		
}


@media (max-width: 640px){
	.pageMain_inArea{
		padding: 0px;
	}
	
	/*左側表單名稱*/
	.leftList_tit{
		/*modify by pekey 20190222*/
		height: auto;
		letter-spacing: 0px;
		font-weight: bold;
		font-size: 17px;
		line-height: 37px;
		padding-top: 2px;
	}

		.leftList > a{
			/*modify by pekey 20190222*/
			color: #000;
		}
	
			/*modify by pekey 20190222*/
			.leftList > a span{
				letter-spacing: 0px;
				font-weight: bold;
				font-size: 16px;
			}
			
				/*modify by pekey 20190222*/
				.leftList_open_list a > span{
					padding: 7px 35px 5px 15px;
					line-height: 24px;
					font-size: 15px;
					color: #000;
					height: auto;
					
					/*modify by pekey 20190227*/
					letter-spacing: 0px;
				}
			
		
			
	.right_inArea video, .right_inArea iframe{
		height: 355px;
	}
			section.text_area h2{
				font-size: 18px;
				line-height: 24px;
			}
			section.text_area img{
				max-width: 75%;
			}
}

@media (max-width: 425px){
	.right_inArea video, .right_inArea iframe{
		height: 235px;
	}
}

@media (max-width: 414px){
	.right_inArea video, .right_inArea iframe{
		height: 225px;
	}
}

@media (max-width: 375px){
	.right_inArea video, .right_inArea iframe{
		height: 205px;
	}
}

@media (max-width: 320px){
	.right_inArea video, .right_inArea iframe{
		height: 175px;
	}
}







/*/////////////////////////////////////////////////////////*/
/*-------春保森拉天時 主按鍵--------*/
/*/////////////////////////////////////////////////////////*/

/*公司簡介_業務架構*/

.pageMain_content .indexMain_bottomArea{
	padding: 0px;
}
	.pageMain_content .indexMain_bottomArea ul{
		padding: 0px;
	}


/*創新與科技_硬質合金簡介*/

/*輪播區塊*/
.innovation_sliderArea{
	padding: 15px 0px 0px;
}

/*業務據點_業務據點*/

/*據點列表區塊*/
.location_area{
}
	.location_inArea{
	}
		/*列表_一列兩個*/
		.location_content{
			margin: 0px -15px;
			padding: 20px 0px;
			border-bottom: 1px solid #ccc;
		}
			/*列表_單*/
			.location_list{
				float: left;
				webkit-box-sizing: border-box;
				-moz-box-sizing: border-box;
				box-sizing: border-box;
				
				width: 50%;
				padding: 0px 15px;
			}
				.location_listIn{
					margin: 0px -10px;
				}
				
					/*圖片*/
					.location_listImg{
						float: left;
						webkit-box-sizing: border-box;
						-moz-box-sizing: border-box;
						box-sizing: border-box;
						
						padding: 0px 10px;
						width: 35%;
					}
						.location_listImg img{
							width: 100%;
							height: auto;
						}
						
					/*文字*/
					.location_listContent{
						float: left;
						webkit-box-sizing: border-box;
						-moz-box-sizing: border-box;
						box-sizing: border-box;
						
						padding: 0px 10px;
						width: 65%;
					}
						/*標題*/
						.location_listTit{
							color: #696969;
							font-size: 18px;
							font-weight: bold;
							line-height: 24px;
						}
						
						/*內容*/
						.location_listText{
							padding: 15px 0px 0px;
						}
							.locationList_textIn{
								color: #696969;
								font-size: 14px;
								/*font-weight: bold;*/
								padding: 1px 0px;
								line-height: 18px;
							}
						
						/*googleMap連結*/
						.location_listMap{
							padding: 15px 0px 0px;
						}
							/*.location_listMap a{
								display: block;
								color: #e71d0f;
								font-size: 14px;
								text-decoration: none;
								font-weight: bold;
								display: inline-block;
								vertical-align: middle;
								transition: 0.2s ease all;
							}
								.location_listMap i{
									display: inline-block;
									vertical-align: middle;
									font-size: 22px;
								}*/
								
							/*hover*/
							/*.location_listMap a:hover{
								color: #086735;
								transition: 0.2s ease all;
							}*/	
							
							
							.map_icon{
								width: 28px;
								height: 28px;
								display: inline-block;
							}
								.map_icon a{
									display: block;
									text-decoration: none;
									transition: 0.2s ease all;
								}
									.map_icon img{
										width: 100%;
										height: auto;
									}
								
								
							/*hover*/
							.map_icon a:hover{
								opacity: 0.5;
								transition: 0.2s ease all;
							}	
							


/*銷售網絡*/
.circle_red{
	width: 13px;
    height: 13px;
    content: '';
    left: 2px;
    top: 4.5px;
    background-color: rgba(255, 0, 0, 0.86);
    position: absolute;
    -moz-border-radius: 50%;	
    -webkit-border-radius: 50%;	
    border-radius: 50%;	
}
.circle_green{
	width: 13px;
    height: 13px;
    content: '';
    left: 2px;
    top: 4.5px;
    background-color: rgba(27, 182, 101, 0.86);
    position: absolute;
    -moz-border-radius: 50%;	
    -webkit-border-radius: 50%;	
    border-radius: 50%;	
}

@media (max-width: 768px){
	
		/*列表_一列兩個*/
		.location_content{
			margin: 0px;
			border-bottom: 0px;
			padding: 0px;
		}
			/*列表_單*/
			.location_list{
				float: none;
				
				width: 100%;
				padding: 15px 0px; 
				border-bottom: 1px solid #ccc;
			}
}

@media (max-width: 640px){
	/*列表_單*/
	/*modify by pekey 20190121*/
	/*.location_list:nth-of-type(1){  
		padding-top: 0px; 
	}*/
		
		.map_icon{
			width: 30px;
			height: 30px;
		}
}

@media (max-width: 320px){
	
	.location_listIn {
		margin: 0px;
	}
		
		/*圖片*/
		.location_listImg{
			float: none;
			width: 50%;
			padding: 0px;
		}
			
		/*文字*/
		.location_listContent{
			float: none;
			
			padding: 20px 0px 0px;
			width: 100%;
		}
}






/*最新消息*/

/*最新消息列表區塊*/
.news_area{
}
	.news_inArea{
	}
		
		/*列表*/
		.news_list{
			padding: 20px 0px;
			border-bottom: 1px solid #ccc;
		}
		.news_list:nth-of-type(1){
			border-top: 1px solid #ccc;
		}
			.news_listIn{
				position: relative;
			}
			
				/*圖片*/
				.news_listImg{
					position: absolute;
					left: 0px;
					width: 283px;
					
					/*modify by pekey 20190119*/
					height: 188px;
    				overflow: hidden;
				}
					.news_listImg img{
						width: 100%;
						height: auto;
					}
					
				/*文字*/
				.news_listContent{
					position: static;
					min-height: 188px;
					padding: 0px 0px 0px 324px;
				}
					/*日期*/
					.news_listDate{
						font-size: 14px;
						color: #434343;
					}
					
					/*標題*/
					.news_listTit{
						color: #434343;
						font-size: 17px;
						font-weight: bold;
						line-height: 22px;
						padding: 5px 0px 0px;
						display: -webkit-box;	/*20190116leo*/
    					-webkit-box-orient: vertical;
					    -webkit-line-clamp: 4;
					    overflow: hidden;
					}
					
					/*內容*/
					.news_listText{
						padding: 5px 0px 0px;
						color: #434343;
						font-size: 14px;
						/*font-weight: bold;*/
						line-height: 18px;
						display: -webkit-box;
					    -webkit-box-orient: vertical;
					    -webkit-line-clamp: 4;
					    overflow: hidden;
					}
					
					/*more連結*/
					.news_listMore{
						padding: 15px 0px 0px;
					}
						.news_listMore a{
							display: inline-block;
							width: auto!important;
							padding-left: 20px;
							padding-right: 70px;
							font-size: 17px;
							line-height: 45px;
							text-transform: uppercase;
							color: #fff;
							background: #f29206 url(../images/detail_arrow.png) no-repeat right 0;
							background-size: auto 45px;
							text-decoration: none !important;
							transition: 0.2s ease all;
						}
							
						/*hover*/
						/*.news_listMore a:hover{
							opacity: 0.7;
							transition: 0.2s ease all;
						}*/	



@media (max-width: 768px){
	
	/*more連結*/
	.news_listMore{
	}
		.news_listMore a{
			padding-left: 12px;
			font-size: 12px;
			height: 35px;
			line-height: 35px;
			background-size: auto 35px;
		}
}

@media (max-width: 640px){
	
	.news_list{
		padding: 10px 0px;
	}
	
		/*圖片*/
		.news_listImg{
			width: 50%;
			position: static;
			
			/*modify by pekey 20190119*/
			height: auto;
		}
			
		/*文字*/
		.news_listContent{
			padding: 15px 0px 0px;
			min-height: unset;
		}
		
		.news_listMore a{
			padding-left: 10px;
			font-size: 12px;
			height: 28px;
			line-height: 28px;
			background-size: auto 28px;
		}
}

@media (max-width: 320px){
	/*圖片*/
	.news_listImg{
		width: 100%;
	}
		
}
	
/*最新消息_內頁*/
	
	/*日期*/
	.pageMain_newsInDate{
		font-size: 20px;
		font-weight: bold;
		color: #434343;
	}
	
	/*標題*/
	.pageMain_newsInTit{
		font-size: 20px;
		line-height: 24px;
		font-weight: bold;
		color: #434343;
		padding: 20px 0px 30px;
	}
	
	
	
	/*內頁_換頁按鈕區塊*/
	.pageMain_BtnArea{
		overflow: hidden;
		height: 45px;
		margin: 70px 0px 0px;
		position: relative;
	}
		/*上一篇*/
		.pageMain_btnPrev{
			-webkit-box-sizing: border-box;
			-moz-box-sizing: border-box;
			box-sizing: border-box;
			
			display: inline-block;
			line-height: 45px;
			text-transform: uppercase;
			color: #fff;
			text-decoration: none !important;
			
			position: relative;
			z-index: 3;
			float: left;
			background: #f29206 url(../images/detail_arrow_left.png) left 0 no-repeat;
			background-size: auto 45px;
			padding-left: 60px;
			padding-right: 20px;
			
			width: 200px !important;
		}
			.pageMain_btnPrev a{
				font-size: 15px;
				font-weight: bold;
				color: #fff;
    			text-decoration: none!important;
			}
		
		/*總覽按鈕*/
		.pageMain_btnMenu{
			-webkit-box-sizing: border-box;
			-moz-box-sizing: border-box;
			box-sizing: border-box;
			
			display: inline-block;
			line-height: 45px;
			text-transform: uppercase;
			color: #fff;
			text-decoration: none !important;
			
			background: #f29206;
			text-align: center;
			padding: 0 20px;
			position: absolute;
			left: 50%;
			margin-left: -9.15%;
			
			width: 200px !important;
		}
			.pageMain_btnMenu a{
				font-size: 15px;
				font-weight: bold;
				color: #fff;
    			text-decoration: none!important;
			}
		
		/*下一篇*/
		.pageMain_btnNext{
			-webkit-box-sizing: border-box;
			-moz-box-sizing: border-box;
			box-sizing: border-box;
			
			display: inline-block;
			line-height: 45px;
			text-transform: uppercase;
			color: #fff;
			text-decoration: none !important;
			
			position: relative;
			z-index: 3;
			float: right;
			text-align: right;
			background: #f29206 url(../images/detail_arrow.png) no-repeat right 0;
			background-size: auto 45px;
			padding-left: 20px;
			padding-right: 60px;
			
			width: 200px !important;
		}
			.pageMain_btnNext a{
				font-size: 15px;
				font-weight: bold;
				color: #fff;
    			text-decoration: none!important;
			}


@media (max-width: 768px){
	
/*最新消息_內頁*/
	
	/*日期*/
	.pageMain_newsInDate{
		font-size: 16px;
		line-height: 20px;
	}
	
	/*標題*/
	.pageMain_newsInTit{
		font-size: 16px;
		line-height: 20px;
		padding: 10px 0px 25px;
	}
	
	
	/*內頁_換頁按鈕區塊*/
	.pageMain_BtnArea{
		height: 35px;
		margin: 70px 0px 0px;
		line-height: 35px;
	}
	
		/*上一篇*/
		.pageMain_btnPrev{
			width: 195px!important;
			margin: 0;
			padding-left: 45px;
			background-size: auto 35px;
		}
			.pageMain_btnPrev a{
				font-size: 14px;
				line-height: 35px;
			}
		
		/*總覽按鈕*/
		.pageMain_btnMenu{
			width: 195px!important;
			padding: 0 20px;
			margin-left: -97px;
			background-size: auto 35px;
		}
			.pageMain_btnMenu a{
				font-size: 14px;
				line-height: 35px;
			}
		
		/*下一篇*/
		.pageMain_btnNext{
			width: 195px!important;
			margin: 0;
			padding-right: 70px;
			background-size: auto 35px;
		}
			.pageMain_btnNext a{
				font-size: 14px;
				line-height: 35px;
			}
			
}

@media (max-width: 640px){

	
	
	/*內頁_換頁按鈕區塊*/
	.pageMain_BtnArea{
		height: 25px;
		margin: 50px 0px 0px;
		line-height: 25px
	}
	
	/*上一篇*/
	.pageMain_btnPrev{
		width: 31%!important;
		padding: 0 0 0 11%;
		margin: 0;
		position: static;
		background-size: auto 25px;
		line-height: 25px;
		height: 25px;
	}
		.pageMain_btnPrev a{
			font-size: 13px;
			height: 25px;
			line-height: 25px;
		}
	
	/*總覽按鈕*/
	.pageMain_btnMenu{
		width: 31%!important;
		margin: 0px 0px 0px 3.5%;
		position: static;
		padding: 0;
		text-align: center;
		background-size: auto 25px;
		line-height: 25px;
		height: 25px;
	}
		.pageMain_btnMenu a{
			font-size: 13px;
			height: 25px;
			line-height: 25px;
		}
	
	/*下一篇*/
	.pageMain_btnNext{
		padding: 0 0 0 11%;
		width: 31%!important;
		margin: 0;
		position: static;
		background-size: auto 25px;
		line-height: 25px;
		height: 25px;
		text-align: left;
	}
		.pageMain_btnNext a{
			font-size: 13px;
			height: 25px;
			line-height: 25px;
		}		
}


@media (max-width: 425px){
	
	/*內頁_換頁按鈕區塊*/
	.pageMain_BtnArea{
	}
	
	/*上一篇*/
	.pageMain_btnPrev{
		width: 28%!important;
	}
	
	/*總覽按鈕*/
	.pageMain_btnMenu{
		width: 37%!important;
	}
	
	/*下一篇*/
	.pageMain_btnNext{
		padding: 0 0 0 7%;
		width: 28%!important;
	}
			
}

@media (max-width: 320px){
	
	/*內頁_換頁按鈕區塊*/
	.pageMain_BtnArea{
	}
	
	/*上一篇*/
	.pageMain_btnPrev{
	}
	
	/*總覽按鈕*/
	.pageMain_btnMenu{
	}
	
	/*下一篇*/
	.pageMain_btnNext{
		padding: 0 0 0 3%;
	}
			
}




/*展覽資訊*/
.exhibition_area{
}
	.exhibition_inArea{
		
	}
		/*列表*/
		.exhibition_list{
			webkit-box-sizing: border-box;
			-moz-box-sizing: border-box;
			box-sizing: border-box;
		}
			.exhibition_listIn{
				position: relative;
				border-bottom: 1px solid #ccc;
				background-color: #eeeeee;
			}
			
				/*列表圖片*/
				.exhibition_listImg{
					/*float: left;
					width: 27%;*/
					webkit-box-sizing: border-box;
					-moz-box-sizing: border-box;
					box-sizing: border-box;
					position: absolute;
					/*left: 0px;*/
					right: 0px;
					/*width: 310px;*/
					width: 160px;
					padding: 7px;
					top: 0px;
					background-color: #eee;
				}
					.exhibition_listImg img{
						width: 100%;
						max-width: 100%;
						height: auto;
					}
				
				
				/*列表內容*/
				.exhibition_content{
					/*float: left;
					width: 73%;*/
					box-sizing: border-box;
					position: static;
					/*padding: 0px 0px 0px 310px;*/
					padding: 0px ;
				}
					/*標題區塊*/
					.exhibition_titArea{
						padding: 12px 10px;
						background-color: #efd6cc;
					}	
						/*日期*/
						.exhibition_titDate{
							padding: 10px 0px;
							font-size: 15px;
							line-height: 19px;
							font-weight: bold;
							color: #c37859;
						}
							.exhibition_titDate span{
								display: inline-block;
							}
						
						/*內容*/	
						.exhibition_titContent{
							padding: 10px 0px;
							font-size: 15px;
							line-height: 19px;
							font-weight: bold;
							color: #c37859;
						}
						
						
					/*內容細項*/
					.exhibition_detailArea{
						background-color: #fff;
					}
						.exhibition_detailList{
							padding: 11px 10px;
							position: relative;
							border-top: 1px solid #ccc;
						}
						.exhibition_detailList:nth-of-type(1){
							border-top: 0px;
						}
							.exhibition_detaiTit{
								position: absolute;
								left: 10px;
								width: 230px;
								box-sizing: border-box;
								font-size: 15px;
								line-height: 19px;
							}
							.exhibition_detaiIn{
								position: static;
								padding: 0px 0px 0px 230px;
								box-sizing: border-box;
								font-size: 15px;
								line-height: 19px;
							}
								.exhibition_detaiIn a{
									color: #3a61aa;
								}
					

@media (max-width: 990px){
	.exhibition_detaiTit{
		width: 85px;
	}
	.exhibition_detaiIn{
		padding: 0px 0px 0px 85px;
	}	
}

@media (max-width: 768px){
	
.exhibition_titArea {
	padding: 12px 140px 12px 10px;
}

	.exhibition_listIn{
		border-bottom: 2px solid #777;
	}
		.exhibition_listImg{
			/*width: 30%;
			float: left;
			position: static;*/
			/*width: 105px;*/
			width: 127px;
			/*padding: 7px;*/
		}
		.exhibition_content {
			width: 70%;
			float: left;
			padding: 0px;
		}
			.exhibition_titDate{
				padding: 5px 0px;
			}
			.exhibition_titContent{
				padding: 5px 0px;
			}
}

@media (max-width: 640px){
	
	.exhibition_titArea {
		
	}
		
		/*列表圖片*/
		.exhibition_listImg{
			/*width: 50%;
			float: none;
			padding: 15px 10px;*/
		}
		.exhibition_content {
			width: 100%;
			float: none;
		}
				
}

@media (max-width: 320px){
	.exhibition_titArea {
		padding: 7px 140px 7px 10px;
	}
		.exhibition_listImg{
			/*width: 100%;*/
			width: 110px;
		}
	
	
	
		.exhibition_titDate{
			padding: 0px;
			font-size: 13px;
		}
			.exhibition_titDate span{
				font-size: 12px;
			}
		.exhibition_titContent{
			padding: 0px;
		}
	
}





/*聯絡我們*/

/*聯絡我們_選項區塊*/
.contact_selectArea{
	margin-bottom: 20px;
}
	.contact_selectIn{
		margin: 0 -10px;
	}
		.contactSelect_list{
			box-sizing: border-box;
			width: 20%;
			float: left;
			padding: 0 10px 10px;

		}
			.contactSelect_listIn{
				-webkit-box-sizing: border-box;
				-moz-box-sizing: border-box;
				box-sizing: border-box;
	
				position: relative;
				display: inline-block;
				vertical-align: middle;
				width: 100%;	
							
				background: url(../contact/images/btn_bg.jpg) no-repeat;
    			height: 45px;
			}
				
				
				/*下拉選單*/
				.contactSelect_content{
					position: relative;
						
					background: url(../contact/images/btn_bg.jpg) no-repeat;
					position: relative;
				}
					.contactSelect_content select{
						-webkit-box-sizing: border-box;
						-moz-box-sizing: border-box;
						box-sizing: border-box;
						
						width: 100%;
						height: 45px;
						line-height: 32px;
						border: 0px;
						border-radius: 0px;
						padding: 9px 0px 10px 13px;
						padding-right: 70px !important;
						cursor: pointer;
						
						background: url(../contact/images/select_white_arrow.png) no-repeat;
						background-position: right;
						background-size: auto 45px;
						z-index: 98;
						font-size: 12px;
						color: #434343;
					}
					.contactSelect_content2 select{ /*20190118leo*/
						-webkit-box-sizing: border-box;
						-moz-box-sizing: border-box;
						box-sizing: border-box;
						
						width: 100%;
						height: 45px;
						line-height: 32px;
						border: 0px;
						border-radius: 0px;
						padding: 9px 0px 10px 13px;
						padding-right: 70px !important;
						cursor: pointer;
						
						background: url(../contact/images/select_white_arrow2.png) no-repeat;
						background-position: right;
						background-size: auto 45px;
						z-index: 98;
						font-size: 12px;
						color: #434343;
					}

						.contactSelect_content option{
							-webkit-box-sizing: border-box;
							-moz-box-sizing: border-box;
							box-sizing: border-box;
							
							width: 100%;
							border: 0px;
							
							cursor: pointer;
							height: 31px;
							line-height: 31px;
							padding: 0 10px;
							color: #1d1d1b;
						}
						.contactSelect_content2 option{
							-webkit-box-sizing: border-box;
							-moz-box-sizing: border-box;
							box-sizing: border-box;
							
							width: 100%;
							border: 0px;
							
							cursor: pointer;
							height: 31px;
							line-height: 31px;
							padding: 0 10px;
							color: #1d1d1b;
						}
					
					
	
			input[type="submit"].contactSelect_listSubmit, input[type="button"].contactSelect_listSubmit{
				-webkit-box-sizing: border-box;
				-moz-box-sizing: border-box;
				box-sizing: border-box;
				white-space: nowrap;
				vertical-align: middle;
				cursor: pointer;
				margin-bottom: 0;
				padding: 8px 12px;
    			font-size: 13px;
				display: block;
				padding-left: 15px;
				text-transform: uppercase;
				width: 100%;
				background: url(../images/detail_arrow.png) right 0 no-repeat #f29206;
				background-size: auto 45px;
				text-align: left;
				height: 45px;
				background-color: #f29206;
				border: 1px solid #f29206;
				color: #fff;
				border-radius: 0;
				line-height: 29px;
			}
		



@media (max-width: 768px){
	.contactSelect_list{
		width: 33.333333%;
	}
}
@media (max-width: 640px){
	
	.contactSelect_listIn{
		height: 32px;
	}
	.contactSelect_content select {
		height: 32px;
		line-height: 16px;
   		padding-right: 48px !important;
		background-size: auto 32px;
	}
	.contactSelect_content2 select { /*20190118leo*/
		height: 32px;
		line-height: 16px;
   		padding-right: 48px !important;
		background-size: auto 32px;
	}
	
	input[type="submit"].contactSelect_listSubmit, input[type="button"].contactSelect_listSubmit {
		background-size: auto 30px;
		height: 32px;
		line-height: 16px;
	}
}


/*聯絡我們_地圖區塊*/
.contact_mapArea{
}
	.contact_mapIn{
		
	}
		.contact_mapIn iframe{
			width: 100%;
			height: 280px;
		}
		


@media (max-width: 768px){
		
}
@media (max-width: 640px){
	.contactSelect_list{
		width: 100%;
	}
}


/*聯絡我們_表單區塊*/
.contact_formArea{
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
	
	float: left;
	
	padding: 24px 24px 80px;
    background: #eee;
    width: 100%;
    margin: 0px auto;
}
	.contact_formIn{
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
   	 	position: relative;
	}
		.contact_formContent input[type="text"]{
			border: 0 none;
			-webkit-box-sizing: border-box;
			-moz-box-sizing: border-box;
			box-sizing: border-box;
			
			display: block;
			width: 100%;
			padding: 6px 12px;
			line-height: 1.42857143;
			color: #555;
			background-color: #fff;
			background-image: none;
			transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
			
			font-size: 17px;
			height: 45px;
			border-radius: 0;
			border: 0 none;
			-webkit-box-shadow: 2px 2px 2px 2px rgba(0,0,0,0.15) inset;
			-moz-box-shadow: 2px 2px 2px 2px rgba(0,0,0,0.15) inset;
			box-shadow: 2px 2px 2px 2px rgba(0,0,0,0.15) inset;
			

		}
		.contact_formContent  textarea{
			-webkit-box-sizing: border-box;
			-moz-box-sizing: border-box;
			box-sizing: border-box;
			overflow: auto;
			border-radius: 0;
			border: 0 none;
			
			padding: 6px 12px;
			width: 100%;
			resize: none;
			
			webkit-box-shadow: 2px 2px 2px 2px rgba(0,0,0,0.15) inset;
			-moz-box-shadow: 2px 2px 2px 2px rgba(0,0,0,0.15) inset;
			box-shadow: 2px 2px 2px 2px rgba(0,0,0,0.15) inset;
	
			height: 245px;
			max-height: 245px;
			min-height: 245px;
			
			font-size: 17px;
			line-height: 1.42857143;
			color: #555;
		}
		
		.contact_formContent .add input[type="text"]{
			width: 31.9672131147541%;
		}
		
		.contact_formContent .captcha input[type="text"]{
			width: 31.9672131147541%;
			display: inline-block;
			margin-right: 20px;
		}
		
/*新增 modify by karol 20200512 start*/
		.telArea {
			position: relative;
		}
			.form_list.tel {
				padding-right: 160px;
			}
			
			.form_list.ext {
				vertical-align: top;
				position: absolute;
				right: 0;
				top: 0;
			}
				.form_list.ext input {
					width: 150px;
				}
@media (max-width: 425px){
	.form_list.tel {
		padding: 0;
	}
	.form_list.ext {
		position: static;
	}
		.form_list.ext input {
			width: 100%;
		}
}
/*新增 modify by karol 20200512 end*/
	
	
	.contact_formEnter{
		padding: 12px 0px 0px 0px;
		position: absolute;
		bottom: -35px;
		right: 0;
	}
		.contact_formEnter input[type="submit"], .contact_formEnter input[type="button"]{
			display: block;
			height: 104px;
			background: #fff url(../contact/images/submitBtn.png) no-repeat center center;
			/*background-size: auto 30px;*/
			text-align: center;
			/*font-size: 18px;*/
			font-size: 0px;
			color: #f29206;
			line-height: 1.18;
			text-transform: uppercase;
			
			width: 107px;
			float: right;
		}
		
			/*檔案上傳樣式*/
			.inputFile {
				position:relative;
				border: solid 1px #aeaeae;
				background:#fff;
				border-radius: 3px;
				padding:0px 80px 0px 0px;
			}
				.inputFile input[type='text'] {
					border:none;
					background:none;
				}
				.inputFile label {
					position: absolute;
					top: 0px;
					left:0px;
					width:100%;
					text-align:right;
				}
					.inputFile label div {
						background: #333;
						color: #fff;
						font-size: 15px;
						line-height: 46px;
						text-align:center;
						width:80px;
						display: inline-block;
						transition:0.3s ease all;
					}
						.inputFile label:hover div {
							background: #f29206;
						}
				.inputFile input[type='file'] {
					display:none;
				}
				

@media (max-width: 1190px){
	.contact_formEnter{
		position: static;
	}
		.contact_formEnter input[type="submit"], .contact_formEnter input[type="button"]{
			float: none;
		}
}

@media (max-width: 990px){
	.contact_formIn {
		padding-right: 0%;
	}
		.contact_formEnter input[type="submit"], .contact_formEnter input[type="button"]{
			height: 41px;
			width: 135px;
			background: #fff url(../contact/images/small_submitBtn.png) no-repeat center center;
		}
}

@media (max-width: 768px){
	.contact_formArea{
		width: 100%;
	}
}

@media (max-width: 640px){
	.contact_formEnter {
		padding: 20px 0px 0px;
	}
		.contact_formArea{
			padding: 15px;
		}
			.contact_formContent .captcha input[type="text"] {
				width: 38%;
				margin-right: 10px;
			}
			.captcha a{
				padding: 0px 5px;
			}
			
			.contact_formEnter input[type="submit"], .contact_formEnter input[type="button"]{
				width: 100%;
			}
			
			.contact_formContent .add input[type="text"]{
				width: 50%;
			}
}




/*產品資訊*/
.product_area{
	padding: 0px 0px 50px;
}
	/*產品標題區塊*/
	.product_titArea{
		font-size: 28px;
		text-transform: none;
		padding: 0 0 18px;
		border-bottom: #d4d4d4 solid 1px;
		font-weight: bold;
		
		/*modify by pekey 20190227*/
		letter-spacing: 0;
	}
		
	
	/*產品列表區塊*/
	.product_listArea{
		margin: 0px -10px;
		display: flex;
		flex-wrap: wrap;
		flex-direction: row;
		align-items: flex-start;
	}
	
		/*清單*/
		.product_list{
			box-sizing: border-box;
			width: 33.333%;
			padding: 25px 10px 15px;
		}
			.product_listIn{
			}
				.product_listIn a{
					display: block;
					color: #434343;
					text-decoration: none;
					outline: none;
				}				
					/*圖片*/
					.productList_inImg{
					}
						.productList_inImg img{
							width: 100%;
							max-width: 100%;
							height: auto;
						}
						
					/*標題*/
					.productList_inTit{
						font-size: 16px;
						font-weight: bold;
						padding: 10px 0px 0px;
						margin-bottom: 0;
						line-height: 20px;
						overflow: hidden;
						text-overflow: ellipsis;
						display: -webkit-box;
						-webkit-text-overflow: ellipsis;
						-webkit-line-clamp: 2;
						-webkit-box-orient: vertical;
					}
		
	

@media (max-width: 950px){
	.product_area{
		padding: 30px 0px 0px;
	}
		.product_list{
			
		}
}

@media (max-width: 640px){
	
	/*產品列表區塊*/
	.product_listArea{
		margin: 0px -5px;
	}	
		.product_list{
			width: 50%;
			padding: 25px 5px 15px;
		}
}



/*產品資訊_內頁*/
.page_productArea{
}
	/*上方區塊*/
	.page_productTop{
		overflow: hidden;
    	margin-bottom: 50px;
		position: relative;
	}
		/*左側區塊*/
		.page_productLeft{
			float: left;
			box-sizing: border-box;
			width: 45%;
			position: relative;
		}
			.pageProduct_leftIn{
			}
			
		
					/**/
					#slider .flex-direction-nav .flex-prev{
						display: block;
						width: 50px;
						height: 104px;
						text-indent: -99999px;
						position: absolute;
						top: 50%;
						left: -1px;
						margin-top: -50px;
						background: url(../images/slide_arrow.png) no-repeat 0 0;
						background-size: auto 105px;
						text-align: center;
					}
					
					/*下一個_按鈕*/
					#slider .flex-direction-nav .flex-next{			
						display: block;
						width: 50px;
						height: 104px;
						text-indent: -99999px;
						position: absolute;
						top: 50%;
						right: -1px;
						margin-top: -50px;
						background: url(../images/slide_arrow.png) no-repeat -52px 0;
						background-size: auto 105px;
						text-align: center;
					}
				
				
				#carousel{
					background: url(../images/thumbs_bg.png) repeat-x 0 0;
					background-size: auto 96px;
					height: 96px;
					margin-top: 28px;
				}
				
					#carousel .slides > li img{
						padding: 13% 12% 22% 12%;
						box-sizing: border-box;
						cursor: pointer;
					}
					#carousel .slides > li.flex-active-slide{
						background: #f29206 url(../images/hover_border.png) no-repeat 50% 0;
						background-size: auto 6px;
					}
					.flex-direction-nav .flex-next, .flex-direction-nav .flex-prev{
						display: none;
					}
			
		
		/*右側區塊*/
		.page_productRight{
			float: right;
			box-sizing: border-box;
			width: 48%;
			margin-right: 2.04081632653061%;
			
			/*border: #eee solid 1px;*/
			
			padding-bottom: 24px;
			border-bottom: #d4d4d4 solid 1px;
		}	
			.pageProduct_rightIn{
			}
				
				/*標題*/
				.pageProduct_rightTit{
					font-size: 22px;
					margin-bottom: 20px;
					padding: 0;
					font-weight: bold;
					line-height: 30px;
				}
				
				/*簡述*/
				.pageProduct_rightText{
					font-size: 16px;
					margin-bottom: 15px;
					line-height: 25px;
				}
				
				
				
@media (max-width: 768px){


/*上方區塊*/
.page_productTop{
	margin-bottom: 20px;
}	
	
	/*左側區塊*/
		.page_productLeft{
			width: 55%;
			padding: 0px 30px 0px 0px;
		}
		
		/*右側區塊*/
		.page_productRight{
			width: 45%;
			margin: 0px;
		}
			
			/*標題*/
			.pageProduct_rightTit{
				font-size: 20px;
				line-height: 24px;
				
				
				/*modify by pekey 20190227*/
				letter-spacing: 0;

			}
			
			/*簡述*/
			.pageProduct_rightText{
				font-size: 15px;
    			line-height: 20px;
			}
			
			
}
				
@media (max-width: 640px){
	/*左側區塊*/
	.page_productLeft{
		float: none;
		width: 100%;
		padding: 0px;
	}

		#carousel{
			margin-top: 0px;
		}
		
				
	
	/*右側區塊*/
	.page_productRight{
		float: none;
		width: 100%;
		padding: 10px 0px 0px;
		border-bottom: 0px;
	}
	
		/*簡述*/
		.pageProduct_rightText{
			font-size: 14px;
			line-height: 18px;
		}
		
	
		
}
		

	/*下方區塊*/
	.page_productBottom{
		background: #eee;
    	margin-bottom: 40px;
	}	
	
	
	
		/*產品文件下載專區*/
		.product_downloadArea{
			padding: 20px 25px 25px;
		}
			.p_tab_text_area .product_downloadArea table{
				width: 50%;
			}
				.product_downloadArea tbody{
				}
					.product_downloadArea tr{
					}
					.product_downloadArea tr:first-child{
						font-weight: bold;
						height: 52px;
						vertical-align: top;
					}
						.product_downloadArea td{
							padding: 4px 0px 1px;
							font-size: 17px;
						}
						.product_downloadArea td:nth-of-type(2){
							color: #e61d0e;
						}
						.product_downloadArea tr:first-child td:nth-of-type(2){
							color: #333;
						}
						.product_downloadArea td:nth-of-type(5) a{
							color: #333;
							text-decoration: underline;
						}
	

@media (max-width: 990px){
	
	.p_tab_text_area .product_downloadArea table{
		width: 100%;
	}
}
@media (max-width: 640px){
	/*產品文件下載專區*/
	.product_downloadArea{
		padding: 10px 10px;
	}
		.product_downloadArea td{
			font-size: 14px;
		}
}
@media (max-width: 425px){
	/*產品文件下載專區*/
	.product_downloadArea{
		padding: 5px 5px;
	}
		.product_downloadArea td{
			font-size: 12px;
			letter-spacing: 0px;
		}
}



/*網站地圖*/

/*列表區塊*/	
.sitemap_area{
}
	/*列表內容區塊*/
	.sitemap_inArea{
		/*border-bottom: 1px solid #d8d8d8;*/
	}
	
		/*大標區塊*/		
		.page_titArea{
			color: #434343;
			font-size: 28px;
			line-height: 32px;
			font-weight: bold;
		}
		
		/*列表內容區塊*/
		.sitemap_listArea{
			margin: 0px -10px;
			display: flex;
			flex-wrap: wrap;
			flex-direction: row;
			align-items: flex-start;
		}	
			/*列表*/
			.sitemap_list{
				padding: 0px 10px;
				width: 20%;
				webkit-box-sizing: border-box;
				-moz-box-sizing: border-box;
				box-sizing: border-box;
			}	
				.sitemapList_inArea{
					width: 100%;
					webkit-box-sizing: border-box;
					-moz-box-sizing: border-box;
					box-sizing: border-box;
					background-color: #eee;
					-webkit-box-shadow: 1px 3px 2px 2px rgba(0,0,0,0.15) inset;
					-moz-box-shadow: 1px 3px 2px 2px rgba(0,0,0,0.15) inset;
					box-shadow: 1px 3px 2px 2px rgba(0,0,0,0.15) inset;
				}
					/*標題*/
					.sitemapList_inTit{
							padding: 0 24px;
							text-transform: uppercase;
							text-align: center;
							line-height: 45px;
							background: #434343;
							color: #fff;
							overflow: hidden;
							margin-bottom: 0;
					}
						.sitemapList_inTit a{
							display: block;
							color: #fff;
							font-size: 16px;
						}
					
					
					/*內容*/
					.sitemapList_inContent{
					}
						.sitemapList_inContentList{
						}
							.sitemapList_inContentList a{
								display: block;
								font-size: 15px;
								letter-spacing: 2px;
								padding: 0 24px;
								text-transform: uppercase;
								text-align: center;
								line-height: 45px;
								background: #434343;
								color: #fff;
								overflow: hidden;
								margin-bottom: 0;
								background: none;
								color: #434343;
								text-align: left;
								cursor: pointer;
							}
								.sitemapList_inContentList a > span{
									display: block;
									line-height: 20px;
									position: relative;
									padding: 21px 0px;
									word-wrap: break-word;
									background: url(../images/pannel_line.png) repeat-x 0 top;
									background-size: 100% 2px;
									/*padding-left: 20px;*/
								}
								.sitemapList_inContentList:first-of-type a > span{
									background: none;
								}
									
								/*hover*/	
								.sitemapList_inContentList a:hover {
									color: #f29206;
									text-decoration:none;
								}

@media (max-width: 990px){
	
/*大標區塊*/		
.page_titArea{
	font-size: 22px;
	line-height: 26px;
}
	
	/*列表內容區塊*/
	.sitemap_inArea{
		padding: 35px 0px 15px;
	}
	.sitemap_inArea:first-of-type{
		padding: 0px 0px 15px;
	}
		.sitemapList_inTit {
    		padding: 0 5px;
		}
		
		/*列表內容區塊*/
		.sitemap_listArea{
			margin: 0px -10px;
		}	
			.sitemap_list{
				float: none;
				width: 49%;
				display: inline-block;
				vertical-align: top;
				padding: 0px 10px 20px;
			}
}

@media (max-width: 640px){
		
	/*大標區塊*/		
	.page_titArea{
		font-size: 18px;
		line-height: 24px;
	}
}

@media (max-width: 414px){
	
	/*列表內容區塊*/
	.sitemap_listArea{
		margin: 0px;
	}	
	
	.sitemap_list{
		width: 100%;
		padding: 0px 0px 20px;
	}
}




/*搜尋結果頁面*/


/*內頁搜尋區塊*/
.page_searchArea{
    width: 100%;
    margin: 0px 0 43px;
}
	.page_searchIn{
		position: relative;
		padding-right: 200px;
		margin-bottom: 15px;
	}
		.page_searchIn input[type="text"]{
			margin: 0;
			font: inherit;
			-webkit-appearance: none;
			border-radius: 0;
			-webkit-box-sizing: border-box;
			-moz-box-sizing: border-box;
			box-sizing: border-box;
	
			width: 100%;
			background-color: #fff;
			padding: 5px 15px;
			height: 50px;
			color: #4c4849;
			font-size: 20px;
			font-weight: 700;
			-webkit-box-shadow: 2px 2px 2px 2px rgba(0,0,0,.15) inset;
			-moz-box-shadow: 2px 2px 2px 2px rgba(0,0,0,.15) inset;
			box-shadow: 2px 2px 2px 2px rgba(0,0,0,.15) inset;
			
			border: 0px;
		}
		.page_searchIn label {
			webkit-box-sizing: border-box;
			-moz-box-sizing: border-box;
			box-sizing: border-box;
			display: inline-block;
			padding: 6px 12px;
			margin-bottom: 0;
			font-size: 14px;
			font-weight: bold;
			line-height: 1.42857143;
			text-align: center;
			white-space: nowrap;
			vertical-align: middle;
			cursor: pointer;
			-webkit-user-select: none;
			-moz-user-select: none;
			-ms-user-select: none;
			user-select: none;
			border: 1px solid transparent;
			border-radius: 4px;
			text-transform: uppercase;
			line-height: 42px;
			position: absolute;
			right: 0;
			top: 0;
			width: 180px;
			border: 0;
			border-radius: 0;
			background-color: #f29206;
			height: 50px;
			color: #fff;
			font-size: 20px;
			text-align: center;
		}


@media (max-width: 640px){
	
	.page_searchIn {
		padding-right: 120px;
	}
		.page_searchIn input[type="text"] {
			height: 30px;
			font-size: 13px;
			line-height: 20px;
		}
		
		.page_searchIn label {
			width: 96px;
		    height: 30px;
			font-size: 10px;
			line-height: 18px;
		}
			.page_searchIn label span > img{
				width: 13px;
				height: auto;
				position: relative;
				top: 2px;
			}
}




/*左側*/
/*hover*/
.leftList.search:hover a {
	color: #f29206;
}

/*active*/
.leftList.search.active > a {
    color: #f29206;
	background: none;
}
	
	/*hover*/
	.leftList.search > a span {
		/*padding: 21px 0px;*/ /*20190116leo*/
		background: url(../images/pannel_line.png) repeat-x 0 top;
    	background-size: 100% 2px;
	}

		.leftList.search > a:after{
			display: none;
		}
	
	
.search_titArea{
	font-size: 28px;
    text-transform: none;
    padding: 0 0 18px;
    border-bottom: #d4d4d4 solid 1px;
    font-weight: bold;
}

	/*內容*/
	.news_area.search .news_listContent{
		padding: 0px;
		min-height: inherit;
	}
	
	/*麵包屑*/
	.news_area.search .crumb{
		padding: 0px 0px 10px;
	}
	
	/*標題*/
	.news_area.search .news_listTit	{
		/*font-size: 24px;
		line-height: 28px;*/
		font-size: 17px;
		line-height: 22px;
	}
	
	/*簡述*/
	.news_area.search .news_listText{
		padding: 15px 0px 0px;
	}





/*/////////////////////////////////////////////////////////*/
/*-------認證--------*/
/*/////////////////////////////////////////////////////////*/

.photo_listArea{
	
}
	.photo_listIn {
		margin: 20px -15px 30px;
		display: flex;
		flex-wrap: wrap;
		flex-direction: row;
		align-items: flex-start;
	}
		.photo_list{
			width: 33.3%;
			box-sizing: border-box;
			padding: 0px 15px 30px;
		}
			.photo_listContent{
				padding: 15px 15px;
				background-color: #eee5e6;
				border: 1px #d4d2d2 solid;
				box-shadow: 5px 8px 9px 0px rgba(10%,10%,10%,0.09);
				background: rgba(255,255,255,1);
			}
				.photo_list a{
					display:block;
					background-color: #333;
				}
					.photo_list img{
						width:100%;
						height: auto;
						border:1px solid #fff;
						opacity:0.8;
					}
					.photo_list:hover img {
						opacity:1;
					}
					
				.photo_listTit{
					font-size: 16px;
					line-height: 22px;
					padding: 15px 0px 0px;
					text-align: center;
				}
		
	
@media (max-width: 640px){
	.photo_list{
		width: 50%;
	}
}		
@media (max-width: 414px){
.photo_listIn {
	margin: 0;
}
	.photo_listArea {
		margin: 20px 0px 30px;
	}
		.photo_list{
			width: 100%;
			padding: 0px 0px 20px;
		}
}	





/*--------------------------------燈箱效果--------------------------------*/
/*
    Colorbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox, #cboxOverlay, #cboxWrapper{position:absolute; top:0; left:0; z-index:9999; overflow:hidden;}
#cboxWrapper {max-width:none;}
#cboxOverlay{position:fixed; width:100%; height:100%;}
#cboxMiddleLeft, #cboxBottomLeft{clear:left;}
#cboxContent{position:relative;}
#cboxLoadedContent{overflow:auto; -webkit-overflow-scrolling: touch;}
#cboxTitle{margin:0;}
#cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%; height:100%;}
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{cursor:pointer;}
.cboxPhoto{float:left; margin:auto; border:0; display:block; max-width:none; -ms-interpolation-mode:bicubic;}
.cboxIframe{width:100%; height:100%; display:block; border:0; padding:0; margin:0;}
#colorbox, #cboxContent, #cboxLoadedContent{box-sizing:content-box; -moz-box-sizing:content-box; -webkit-box-sizing:content-box;}

/* 
    User Style:
    Change the following styles to modify the appearance of Colorbox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay{background:#000; opacity: 0.9; filter: alpha(opacity = 90);}
#colorbox{outline:0;}
    #cboxContent{margin-top:20px;background:#000;}
        .cboxIframe{background:#fff;}
        #cboxError{padding:50px; border:1px solid #ccc;}
        #cboxLoadedContent{border:5px solid #000; background:#000;}
        #cboxTitle{position:absolute; top:-20px; left:0; color:#ccc;}
        #cboxCurrent{position:absolute; top:-20px; right:0px; color:#ccc;}
        #cboxLoadingGraphic{background:url(images/loading.gif) no-repeat center center;}

        /* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
        #cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {border:0; padding:0; margin:0; overflow:visible; width:auto; background:none; }
        
        /* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
        #cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {outline:0;}
        
        #cboxSlideshow{position:absolute; top:-20px; right:90px; color:#fff;}
        #cboxPrevious{position:absolute; top:50%; left:5px; margin-top:-32px; background:url(images/controls.png) no-repeat top left; width:28px; height:65px; text-indent:-9999px;}
        #cboxPrevious:hover{background-position:bottom left;}
        #cboxNext{position:absolute; top:50%; right:5px; margin-top:-32px; background:url(images/controls.png) no-repeat top right; width:28px; height:65px; text-indent:-9999px;}
        #cboxNext:hover{background-position:bottom right;}
        #cboxClose{position:absolute; top:5px; right:5px; display:block; background:url(images/controls.png) no-repeat top center; width:38px; height:19px; text-indent:-9999px;}
        #cboxClose:hover{background-position:bottom center;}
			





/*/////////////////////////////////////////////////////////*/
/*-------首頁_認證--------*/
/*/////////////////////////////////////////////////////////*/
.logo_listArea{
	padding-top: 50px;
}	
	.logo_listIn{
	}
		.device2{
			
		}
			.device2 .logoLeft{
				left: -25px;
				/*margin: -15px 0px 0px 0px;*/ /*modify by karol 20201012*/
				margin: -22px 0 0;
				bottom: unset;
				top: 50%;
			}
			.device2 .logoRight{
				right: -25px;
				/*margin: -15px 0px 0px 0px;*/ /*modify by karol 20201012*/
				margin: -22px 0 0;
				bottom: unset;
				top: 50%;
			}
				.loverItemArea{
				}
			
				.logo_Item{
					background:#fff;
					overflow:hidden;
					/*border:1px solid #c9caca;
					height:132px;*/ /*modify by karol 20201012*/
					height: 80px;
					margin:0px 6px;
					transition: 0.3s ease all;
				}
				.logo_Item:hover{
					opacity:0.5;
					transition: 0.3s ease all;
				}
					.logo_Item a{
						display:-webkit-box;
						text-align: -webkit-center;
					}
						.logo_Item img{
						}

/*@media (max-width:880px){*/  /*modify by karol 20201012*/
@media (max-width:990px){
	.device2 .logoLeft{
		display:block;
		left:0px;
	}
	 .device2 .logoRight{
		display:block;
		right:0px;
	 }	 	
		.logo_Item {
			height:auto;
		}
}
	
/*@media (max-width:768px){
	.logo_Item {
		height:auto;
	}
}

@media (max-width:694px){
		
	.logo_listArea{
		margin: 20px 0px;
	}	
}
@media (max-width:640px){
	.logo_Item {
		height:134px;
	}
}
@media (max-width:425px){
	.logo_Item {
		height:129px;
	}
}	
@media (max-width:375px){
	.logo_Item {
		height:auto;
	}
}	
@media (max-width:320px){
	.logo_Item {
		height:92px;
	}
}	
*/
	



/*/////////////////////////////////////////////////////////*/
/*-------產品方案--------*/
/*/////////////////////////////////////////////////////////*/

.group_list_area {
	padding: 20px 0px 10px;
}
	.group_list {
		position:relative;
		display: table;
		border-bottom: solid 1px #ccc;
		padding: 20px 0px;
		width:100%;
	}
	.group_list:first-of-type {
		border-top: 1px solid #ccc;
	}
		.group_list a {
			display:block;
			text-decoration:none;
			transition:0.3s ease all;
		}
			.group_list a:hover {
				opacity:0.7;
			}
			
		.nL_img {
			width:200px;
			display:table-cell;
			vertical-align: middle;
		}
			.nL_img a {
			}
				.nL_img img {
					width:100%;
					height:auto;
				}
		.nL_right {
			display:table-cell;
			vertical-align: middle;
			padding: 0px 20px;
		}
			.nLR_time {
				font-size: 12px;
				background: #d31875;
				display: inline-block;
				color: #fdfdfd;
				padding: 5px 5px;
				border-radius: 2px;
			}
			.nLR_img {
				width: 120px;
				padding-bottom: 10px;
    			box-sizing: border-box;
			}
				.nLR_img img {
					width: 100%;
					height: auto;
				}
				.nLR_img a {
					display: block;
					text-decoration: none;
				}
					.nLR_tit a:hover {
						opacity: 0.7;
					}
			.nLR_remark {
				color:#7b7b7b;
				font-size:14px;
				line-height:22px;
			}

				@media (max-width: 920px){
					.nL_right {
						padding: 0px 0px 0px 20px;
					}
				}
					@media (max-width: 425px){
						.nL_img {
							display:block;
							width:100%;
						}
						.nL_right {
							display:block;
							padding: 15px 0px 0px;
						}
					}
	
	
	

/*/////////////////////////////////////////////////////////*/
/*-------聯絡我們_公司資訊--------*/
/*/////////////////////////////////////////////////////////*/

.strongholdArea{
}


/*全國據點列表*/
.strongholdList{
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 30px;
	padding: 15px 15px 15px;
	/*border-radius: 15px;*/
}
.strongholdList:nth-child(2n){
	background-color: #fffaf2;
}
.strongholdList:last-child{
	margin-bottom:0px;
}


									
	/*全國據點資訊區*/
	.strongholdInfoArea{
		box-sizing:border-box;
		width:60%;
		padding-right:30px;
	}
	
		/*全國據點資訊標題*/
		.strongholdTitle{
			font-size:18px;
			line-height: 35px;
			color:#333;
			font-weight: bold;
		}
			.strongholdTitle span{
			}
		
		/*全國據點資訊*/
		.strongholdInfo{
			position: relative;
			font-size: 13px;
			line-height: 20px;
			padding: 5px 0px;
			color: #333;
			word-wrap: break-word;
			word-break: break-all;
		}  
		
		.strongholdInfo:before {
			content:attr(data-name);
		}		
		                    
										
	/*全國據點map*/
	.strongholdMap{
		box-sizing:border-box;
		width:40%;		
	}
		.strongholdMap iframe{
			width:100%;
			height:auto;
		}   
	



@media (max-width:  990px){

/*全國據點列表*/
.strongholdList{
	display:block;
	flex-wrap: unset;
	flex-direction: unset;
	align-items: unset;
	justify-content: unset;
	margin-bottom:15px;
	padding: 20px 20px 20px;
	/*border-radius: 15px;*/
}

	/*全國據點資訊標題*/
	.strongholdTitle{
		font-size:17px;
		line-height: 27px;
	}
		
	/*全國據點資訊區*/
	.strongholdInfoArea{
		width:100%;
		padding-right:0px;
		margin-bottom: 10px;
	}

	/*全國據點map*/
	.strongholdMap{
		width:100%;		
	}
		.strongholdMap iframe{
			width:100%;
			height:200px !important;
		} 

}








/*平板版*/
/*---------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------*/
@media (min-width: 541px) and  (max-width: 950px){
}


/*手機版*/
/*---------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------*/
@media (max-width: 540px){
}