/*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橫平轉豎屏時字變大的問題*/
	font-family: 'Raleway', sans-serif;
}

/* ~~ 元素/標籤選取器 ~~ */
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點擊時不會出現框線*/
}
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:rgb(201,9,21);  /*此為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:#2b4075;
	font-family:微軟正黑體;
	text-align:center;
}
/*-------------------------------------loading畫面 結束---------------------------------*/


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

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

.wrap {
	width:80%;
	/*width:984px;*/
	margin:0 auto;
	padding: 0;
}



	  
@media (max-width: 1280px){

	.wrap {
		width:95%;
	}			
					
}	

	  
@media (max-width: 990px){

	.wrap {
		width:85%;
	}			
					
}	





/*-------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 #cacaca;
}
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;
    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:100px;
	height:42px;
	background: #fff0;
	color: #231815;
    border: 1px solid #231815;
	border-radius:2px;
	font-size: 13px;
	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.5;
	}
	
	input[type="reset"] {
		background:#231815;
		color: #fff;
	}
	

	
	
	
	
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;
    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區*/
.BannerArea{
}



/*首頁banner----------------------*/
.banner {
	box-sizing:border-box;
	/*width:75%;*/
	background:#fff;
	position:relative;
}
	.device {
		position:relative;
		overflow:hidden;
	}
		/*左右鍵*/
		.device .arrow-left, .device .arrow-right {
			position:absolute;
			/*z-index:9;*/
			z-index:3;
			top:50%;
			margin:-18px 0px 0px 0px;
			opacity:0;
			transition:0.3s ease all;
		}

		.banner .swiper-button-prev , 
		.banner .swiper-button-next {
			opacity: 0;
		}

		.banner:hover  .swiper-button-prev , 
		.banner:hover  .swiper-button-next {
			opacity: 1;
			transition:0.5s ease all;
		}
		
		
			/*左鍵*/
			.device .arrow-left {
				left:-20px;
			}
			
			/*右鍵*/
			.device .arrow-right {
				right:-20px;
			}
				.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;
					}
		
		
		/*輪播點點*/
		.pagination {
		  position: absolute;
		  z-index: 1;
		  bottom: -39px;
		  width: 100%;
		  text-align: center;
		}
			.swiper-pagination-switch {
			  display: inline-block;
			  width: 20px;
			  height: 20px;
			  border-radius: 5px;
			  background: #edbdb4;
			  margin: 0 7px;
			  cursor: pointer;
			}
			.swiper-active-switch {/*輪播點點當前模式*/
			  background: #c42605;
			}
				/*客制區塊*/
				.swiper-slide {
					position:relative;
				}

			.banner .swiper-pagination-bullet-active {
			  /*opacity: 1;*/
			  background:#231815;
			}	
		
			



		/* 播放鍵----------------------------------*/
		.banner .swiper-button-play{
		}
		/* 停止鍵----------------------------------*/
		.banner .swiper-button-pause{
		}
		.swiperPSbtn{
			position:absolute;
			/* right: 10px; */
			/* left: 50%; */
			left: 25px;		
			bottom: 25px;		
			z-index:1;
			/* -webkit-transform:translateX(-50%);
			transform:translateX(-50%); */
			display: flex;
			/* border: 1px #fff solid; */
			color: rgb(255 255 255 / 50%);
		}
			.swiperPSbtn i{
				cursor: pointer; 
				font-size: 20px;
				line-height: 20px;
				color:#fff;
				padding: 5px;
			}

		.banner .swiper-button-play ,
		.banner .swiper-button-pause{
			box-sizing: border-box;
			/* border: 1px #fff solid; */
			display: none;
		}	
		.swiperPSbtn .swiper-button-play{
			/* border-right: 0px #fff solid; */
		}
		.banner .swiper-button-play.active ,
		.banner .swiper-button-pause.active{
			/* background-color: #fff; */
			background-color: rgb(255 255 255 / 20%);
			display: block;
		}
		.banner .swiper-button-play.active i ,
		.banner .swiper-button-pause.active i{
			/* color: #000; */
			color: rgb(255 255 255 / 80%);
		}




			.pcBanner{				
			}

			.mobileBanner{
				display: none;
			}

				
						

@media (max-width: 640px){

	.banner {
		/*width:100%;*/
	}	
		
		.pcBanner{
			display: none;
		}
		.mobileBanner {
			display: block;
		}
		
	
}
				










				
				
/*-------頁次--RWD版 by kevin 20150921------------------------------------------------------------------------*/			
.page_area_rwd {
	text-align:center;
	padding:25px 0px 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:#231815;
			border-radius:2px;
		}
			.page_left_arrow a:hover, .page_right_arrow a:hover {
				background:#f39800;
			}
	.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;
			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 {
}
	.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; 
		}
			ul.tabs {
				margin:0; 
				padding:0; 
				list-style:none;
			}




				.tabs li { 
					line-height:39px;
					float:left;
					position: relative;
					font-size:15px;
					width: auto;
				}
					/*.tabs li a { 
						line-height:39px;
						float:left;
						position: relative;
						font-size:15px;
						width: auto;
						text-decoration:none;
					}*/				
					.tabs span { 
						text-decoration:none;
						display:block;
						padding:0px 18px;
						transition:0.3s ease all;
						background:#E8E8E8;
						text-align:center;
						cursor:pointer;
    					border-bottom: solid 1px #bebebe;
					}
						.tabs li span:hover {
							background:#fff;
						}
						
					.tabs li.active {
						/*當前模式*/
					}
						.tabs li.active span {
							background:#fff;    
						}
						.tabs li.active:after {
							/*content:url(../product/images/tabs_arrow.png);*/
							position:absolute;
							bottom:-6px;
							left:50%;
							margin:0px 0px 0px -10px;
						}
		
		#tab1{}
		.tab_content{}




/*產品內頁頁籤的網編區*/
.p_tab_text_area {
	background:#fff;
	padding:10px;
}






@media (max-width: 1320px){

/*頁籤*/
.tab_area.TeamTabArea {
	position:relative;
}
	.TeamTabArea .tabs_btn_now {
		display:block;
	}
	
	.TeamTabArea .img-scroll {
		display:none;
		height:auto;
		/*position: absolute;*/
		width: 100%;
		/* z-index: 999; */
		z-index: 2;
	}
		.TeamTabArea .tabs li, 
		.TeamTabArea .img-scroll1 .tabs li, 
		.TeamTabArea .img-scroll2 .tabs li, 
		.TeamTabArea .img-scroll3 .tabs li, 
		.TeamTabArea .img-scroll4 .tabs li, 
		.TeamTabArea .img-scroll5 .tabs li,
		.TeamTabArea .img-scroll6 .tabs li, 
		.TeamTabArea .img-scroll7 .tabs li, 
		.TeamTabArea .img-scroll8 .tabs li, 
		.TeamTabArea .img-scroll9 .tabs li {
			float:none;
			text-align:center;
			width:100%;
			font-size:15px;
			border-radius:0px;
		}
			.TeamTabArea .tabs li.active:after {
				content:"";
			}

}


					@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;
							}
								.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;
								}
									.tabs li.active:after {
										content:"";
									}
					}






















/*-------驗證碼----------------------------------------------------------------------------*/
.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: #fff;
		background: #2b4075;
		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;
	}





/*-------表單區----------------------------------------------------------------------------*/

/*表單區底*/
.form_area_bg {
	width: 100%;
    max-width: 800px; 
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0px 20px;
}
	@media (max-width: 800px){
		.form_area_bg {
			padding:0px;
		}
	}
	
	/*表單區備註*/
	.form_remark {
		font-size:15px;
		line-height:22px;
		padding:10px 0px 25px 0px;
	}
		/*必填icon*/
		.requirde_icon {
			display:inline-block;
			font-size:18px;
			line-height:18px;
			color:#cb2923;
			background: #ffffff00;
			padding: 0px;
		}

	/*表單區*/
	.form_area {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		vertical-align: top;
		justify-content: space-between;
		align-content: flex-start;
	}
		/*表單區左*/
		.form_left {
			width:48%;
			float:left;
		}
		/*表單區右*/
		.form_right {
			width:48%;
			float:right;
		}
			.form_list {
				box-sizing:border-box;
				font-size:15px;
				line-height:21px;
				width:100%;
			}
			.form_list.fLType2{
				width:49%;
			}
			
			
				.fL_tit {
					font-size: 16px;
    				font-weight: bold;
					padding:3px 0px 6px 0px;
					position:relative;
				}
					/*必填icon*/
					.fL_tit .requirde_icon {
					}
					
				.fL_info {
					padding:0px 0px 9px 0px;
					padding:0px 0px 17px 0px;
				}
					
					.fL_info select{
						width:100%;
					}
					
				
					/*沒有輸入框時*/
					.fL_info.no_input {
						padding: 10px 0px 25px 0px;
    					line-height: 24px;
					}
					
					.fL_info label {
						display:inline-block;
					}
					
					/*地址樣式*/
					.fL_info.address{
						position: relative;
						padding-left: 320px;
					}
						.fL_info.address select {
							width: 75px;
							height: 42px;
							position: absolute;
							left: 0px;
						}
						.fL_info.address select:nth-of-type(2) {
							left:80px;
						}	
						.fL_info.address select:nth-of-type(3) {
							left:160px;
						}				
						.fL_info.address > input[type='text'] {
							position: absolute;
							width:75px;
							left:240px;
						}
						.fL_info.address div{
						}
						.fL_info.address div > input[type='text']{
						}
					
					
					
					/*地址樣式*/
					.fL_info.country{
					}
					
					.fL_info.country div{
						position: relative;
						padding-left: 80px;
					}     
						
						.fL_info.country select{
							position: absolute;
							width:75px;
							left:0px;
						}     
						
						.fL_info.country input{
						}					
					       
					
					
					
					
					
					
					
					
					
					
					
					/*生日樣式*/
					.fL_info.birthday {
					}
						.fL_info.birthday select {
							width: auto;
							margin:0px 0px 0px 0px;
						}
						
						
						
						
				.find_out_area{
					padding: 0px 0px 17px 0px;
					display: flex;
					flex-direction: row;
					flex-wrap: wrap;
					vertical-align: top;
					/* justify-content: space-between; */
					align-content: flex-start;
				}
					.find_out{
						padding: 0px 10px 0px 0px;
					}
					.find_out label{
					}
						.find_out input[type="checkbox"]{
						}
	



			/*檔案上傳樣式*/
			.inputFile {
				position:relative;
				border: solid 1px #aeaeae;
				background:#fff;
				border-radius: 3px;
				padding:0px 80px 0px 0px;
				margin: 0px 0px 17px;
			}
				.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: #6d3007;
						color: #fff;
						font-size: 15px;
						line-height: 42px;
						text-align:center;
						width:80px;
						display: inline-block;
						transition:0.3s ease all;
					}
						.inputFile label:hover div {
							background: #ca0000;
						}
				.inputFile input[type='file'] {
					display:none;
				}
				
				


						
				/*多選----------------------------*/		
				.find_out_area{
					padding: 0px 0px 17px 0px;
					display: flex;
					flex-direction: row;
					flex-wrap: wrap;
					vertical-align: top;
					/* justify-content: space-between; */
					align-content: flex-start;
				}
					.find_out{
						padding: 0px 10px 0px 0px;
					}
					.find_out label{
					}
						.find_out input[type="checkbox"]{
						}
	
						
				/*同意條款*/
				.agreeToTerms {
					font-size:15px;
					line-height:23px;
					text-align:center; 
					margin: 20px 0px 0px;
				}
					.agreeToTerms strong {
						padding:10px 0px;
						display:inline-block;
					}
					.agreeToTerms a {
						color:#ca0000;
					}	
					
					
					
					
					
					
						@media (max-width: 990px){					
						
							/*地址樣式*/
							.fL_info.address{
								position: relative;
								padding-left: 280px;
							}
								.fL_info.address select {
									width: 65px;
								}
								.fL_info.address select:nth-of-type(2) {
									left: 70px;
								}	
								.fL_info.address select:nth-of-type(3) {
									left: 140px;
								}				
								.fL_info.address > input[type='text'] {
									position: absolute;
									width:65px;
									left: 210px;
								}					

						}
						
						
						@media (max-width: 800px){
							/*表單區左*//*表單區右*/
							.form_left, .form_right {
								float:none;
								width:auto;
							}
							
								.form_list.fLType2{
									width:100%;
								}
							
								/*沒有輸入框時*/
								.fL_info.no_input {
									padding: 0px 0px 5px 0px;
								}
								.fL_info label {
									padding: 6px 0px;
								}
								
								.inputFile label {
									top: -6px;
								}
								
								
						}
							@media (max-width: 575px){
								.cart_big_tit span.red {
									padding:0px;
								}
									/*地址樣式*/
									.fL_info.address{
										position: static;
										padding-left: 0px;
										display: flex;
										flex-wrap: wrap;
										flex-direction: row;
										align-items: flex-start;
										justify-content: space-between;
									}
										.fL_info.address select {
											width: 24%;
											height: 42px;
											position: static;
											left: inherit;
										}
										.fL_info.address select:nth-of-type(2) ,
										.fL_info.address select:nth-of-type(3) {
											left:inherit;
										}					
										.fL_info.address > input[type='text'] {
											position: static;
											width: 24%;
											left: inherit;
										}
										.fL_info.address div{
											margin-top: 6px;
											width: 100%;
										}	
							}
								@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;
			}













/*未出貨*/
.no_shipping {
	color:#007be4;
}

/*未付款*/
.unpaid {
	color:#d70d13;
}

/*已取消*/
.cancel {
	color:#929292;
}


	/*兩個按鍵時*/
	 table .cPL_twoBtn input[type='button'] {
		float:left;
		width:48%;
		padding: 0px 8px;
		text-align: center;
	}
	table .cPL_twoBtn input[type='button']:nth-of-type(2) {
		float: right;
		background-color: #757575;
		color: #fff;
		border: 1px #757575 solid;
	}











/*-------hack----------------------------------------------------------------------------*/
.hack {
	padding:20px;
}
	.hack_demo {
		float:left;
		width:50%;
		line-height:200px;
		text-align:center;
		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: #2b4075;
	}
}










/*/////////////////////////////////////////////////////////*/
/*表格*/
/*/////////////////////////////////////////////////////////*/	





	table {
		width:100%;
		margin:0 auto;
		border-radius: 3px;
		overflow: hidden;
	}
		tr {
		}
			td {
				text-align:center;
				/*vertical-align:middle;*/
				vertical-align:top;
				font-size:15px;
				line-height: 24px;
				color:#2b4075;
				padding:10px 15px;
				box-sizing:border-box;
				border-bottom: solid 1px #e5e9ea;
				border-right: solid 1px #e5e9ea;
				
				/*background: #f4f4f4;*/
			}
			tr:first-child td{
			    border-top: solid 1px #e5e9ea;
			}
			td:first-child{
			    border-left: solid 1px #e5e9ea;
			}
			
			


			@media (max-width: 640px){

				tr td {
					position:relative;
					display:block;
					border-left: solid 1px #e5e9ea;
					border-bottom: solid 0px #e5e9ea;
					border-top: solid 0px #e5e9ea;
				}
				td:before {
					content: attr(data-name);
				}
								
				tr:first-child td{
					display:none;
				}
				
				tr td:last-child{
					border-bottom: solid 1px #e5e9ea;
				}	
				tr:nth-child(2) td:first-child{
					border-top: solid 1px #e5e9ea;
				}				

			}










/*購物車大標*/
.cart_big_tit {
	position:relative;
	font-size:18px;
	font-weight:bold;
	line-height:25px;
	padding:0px 0px 0px 44px;
	margin-bottom: 30px;
}
	.cart_big_tit span {
		position:absolute;
		display:block;
		border-radius:100%;
		font-size:15px;
		font-weight:100;
		color:#fff;
		text-align:center;
		width:25px;
		background:#231815;
		left:0px;
		letter-spacing: 0px;
	}
	
.cart_big_tit span.red {
    position: unset;
    display: inline-block;
    border-radius: 0;
    /* font-size: 15px; */
    /* font-weight: 100; */
    color: #f00;
    text-align: left;
    width: auto;
    background: #ffffff00;
    left: unset;
    /* letter-spacing: 0px; */
}	
	
.order_complate_remark {
    font-size: 15px;
    line-height: 24px;
    padding: 25px 0px 30px;
}







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

	

.main{
	margin-top: 68px;
}
.index_main {
	/* background-color: #f4f4f2; */
	background-color: rgb(244 244 242 / 50%);
}




.iN_tit{
	font-size: 46px;
	font-weight: bold;
	margin-bottom: 50px;
	/* color: #02378d;
	text-align:center; */
	text-shadow: rgb(251 251 251) 0px 0px 12px;
}







@media (max-width: 1280px){
	.main{
	}	

}

@media (max-width: 990px){	

	.main{
		margin-top: 50px;
	}	


		.iN_tit{
			font-size: 30px;
			margin-bottom: 30px;
		}

}






/*.index_tit {
	font-size: 1.95em;
	color: #58595B;
}
	.index_titTW{
		position:relative;	
		font-size: 1em;
	}
	
	.index_titTW > h2 {
		font-size:inherit;
		display: unset;
		margin-block-start: unset;
		margin-block-end: unset;
		margin-inline-start: unset;
		margin-inline-end: unset;
		font-weight: unset;
	}
	
	.index_titTW:before{
		position:absolute;
		content:"";
		background-color:#00a73c;
		width:30px;
		height:3px;
		bottom:-25%;
		left: 0%;
		-webkit-transform: translateX(0%) translateY(200%);
		transform: translateX(0%) translateY(200%);
	}*/














        







/*/////////////////////////////////////////////////////////*/
/*-------*首頁關於學院--------*/
/*/////////////////////////////////////////////////////////*/




/*首頁關於學院--------------------------------------------*/
/*.indexabout{	
	display: none;
	padding: 100px 0px;
}
	.indexabout .wrap {
		font-size: 0px;
	}	

	.indexabout .iN_tit{
		font-weight: bold;
		color: #02378d;
		text-align:center;
		text-shadow: rgb(251 251 251) 0px 0px 12px;
	}
		.iN_tit h1{
			display: inherit;
			font-size: inherit;
			margin-block-start: inherit;
			margin-block-end: inherit;
			margin-inline-start: inherit;
			margin-inline-end: inherit;
			font-weight: inherit;
		}	
		.indexabout .indextite {
		}

		.indexaboutInfo{
			text-align:center;
			font-size:16px;
			color: #333;
			line-height:30px;
		}


		.indexabout .textArea {
			font-size: 19px;
			line-height: 35px;
			color: #5d5d5d;
			letter-spacing: 2px;

			display: -webkit-box; 
			-webkit-box-orient: vertical; 
			-webkit-line-clamp: 5; 
			overflow: hidden;
		}*/


		@media (max-width: 990px){

			/*首頁關於學院-----*/
			/*.indexabout{	
				padding: 50px 0px;
			}
				.indexabout .wrap {
					width:85%;
				}	
					.indexaboutInfo {
					}*/
		}









/*/////////////////////////////////////////////////////////*/
/*-------*首頁_最新消息區塊--------*/
/*/////////////////////////////////////////////////////////*/


.indexNewsBg{
	padding-bottom: 70px;
	padding-top: 110px;
}
	.indexNewsBg .wrap{
		width: 65%;
	}

	.indexNewsArea{	
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		margin: 0 -15px;	
	}


		/* 首頁最新消息列表 */
		.indexNewsList{
			box-sizing: border-box;
			width: 33.3%;
			padding: 0px 15px 30px;
		}
		.indexNewsListIn{
			position: relative;
			overflow: hidden;
			border: 1px #f0f0f000 solid; 
			box-shadow: 0 18px 40px #3333331a;
		}

		.indexNewsTop{
			position: absolute;
			width: 100%;
			 top: -100%;
			transition: 0.5s ease all;
			z-index: 1;
		}
        /* 首頁最新消息分享區塊 */
		.indexNewsTopIn{
			background-color: #f0f0f0;
			position: relative;
			padding: 20px 90px 20px 20px;
		}	
			.indexNewsTop span{
			    display: block;
			    font-weight: bold;
			    box-sizing: border-box;
			    overflow: hidden;
			    text-overflow:ellipsis;
			    white-space: nowrap;
			    /* word-wrap: break-word; */
			    word-break: break-all;
			}

			ul.indexNewsTopIcon{
				position: absolute;
				box-sizing: border-box;
				padding: 0;
				list-style-type: none;
				display: flex;
				flex-direction: row;
				flex-wrap: wrap;
				margin: 0 -5px;
				/* justify-content: flex-end; */
				top: 50%;
				right: 20px;
				-webkit-transform: translateY(-50%);
				transform: translateY(-50%);
			}	

			ul.indexNewsTopIcon li{
				padding: 0 5px;
				box-sizing: border-box;
			}				
				ul.indexNewsTopIcon a{
					cursor: pointer; 
					/* padding: 5px; */
					display: block;
					/* background-color: #000; */
				}	
				ul.indexNewsTopIcon a:hover{
					opacity: 0.5;
				}
				.indexNewsTopIcon img{
					width: 25px;
					height: auto;
				}				
			
				


        /* 首頁最新消息圖片 */
		.indexNewsImg{
		    padding-bottom: 135px;
		}
		.indexNewsImg span{
		   overflow: hidden;
			background-color: #000;
			position: relative;
			padding-top: 100%;
			display:block;
		}
			.indexNewsImg img{
				position: absolute;
				top: 0;
				left: 0;
				bottom: 0;
				right: 0;
				float: none;
				/* border-radius: 50%; */
				width: 100% !important;
				height: 100% !important;
				object-fit: cover;
				transition: 0.3s ease all;
			}


        /* 首頁最新消息下方文字區塊 */
		.indexNewsBottom{
			/* background-color: #f0f0f0;*/
			background-color: #fff; 
			position: absolute;
			bottom: 0px;
			left: 0;
			width: 100%;
			height: 135px;
			/*transition: 5s ease all;*/
		}
		.indexNewsBottomIn{
			padding: 20px 20px;
		}
			.indexNewsBottom a{
				display: block;
				width: 100%;
    			height: 100%;
				text-decoration: none;
			}
				.indexNewsTag{
					font-size: 15px;
					color: #fff;
					background-color: #2b4075;
					padding: 5px;
					display: inline-block;
					margin-bottom: 10px;
				}
				.indexNewsDate{
					font-size: 15px;
					color: #005ead;
					display: inline-block;
					margin-left: 20px;
				}
				.indexNewsTit{
					font-size: 18px;
					line-height: 20px;
					color: #2b4075;
					margin: 10px 0;
					font-weight: bold;
					min-height: 40px;
					display: -webkit-box; 
					-webkit-box-orient: vertical; 
					-webkit-line-clamp: 2; 
					overflow: hidden;
				}
				.indexNewsText{
					/* font-size: 14px;
					line-height: 24px; */
					font-size: 18px;
					line-height: 30px;
					color: #000;
					opacity:0;
					display: -webkit-box; 
					-webkit-box-orient: vertical;
					-webkit-line-clamp: 10; 
					overflow: hidden;	
				}	

				/* 首頁最新消息hover效果 */
				.indexNewsList:hover .indexNewsListIn {
					border: 1px #f0f0f0 solid; 
					box-shadow: 0 18px 40px #33333300;
				}
				.indexNewsList:hover  .indexNewsText{
					/*display: block;*/
					opacity:1;
					transition:2s ease all;
					/*color: #7f7f7f;*/									
				}	

				.indexNewsList:hover  .indexNewsTag ,
				.indexNewsList:hover  .indexNewsDate ,
				.indexNewsList:hover  .indexNewsTit{
				    display: none;				    
				}	
				.indexNewsList:hover .indexNewsImg{					
				}
				
				.indexNewsList:hover .indexNewsTop{
					transition: 0.3s ease all;
				    top:0;
				}

				.indexNewsList:hover .indexNewsBottom {
					height:calc(100% - 56px);
					z-index: 9;
					/* background-color: #f0f0f0; */
					background-color: #fff;
					transition:1.5s ease all;
				}
				.indexNewsList:hover .indexNewsBottomIn {
					position: absolute;
				}



@media (max-width: 1280px){
	.indexNewsBg .wrap{
		width: 95%;
	}			
}


@media (max-width: 990px){
	
	.indexNewsBg{
		padding-bottom: 20px;
		padding-top: 50px;
	}

		.indexNewsBg .wrap{
			width: 85%;
		}

}

@media (max-width: 860px){

	/* 首頁最新消息列表 */
	.indexNewsList{
		/* box-sizing: border-box;
		padding: 0px 15px 30px; */
		width: 50%;			
	}

}

@media (max-width: 640px){

	/* 首頁最新消息列表 */
	.indexNewsList{
		width: 100%;			
	}

}












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




.inmain .wrap {
    /*width: 990px;*/
}



/*首頁網編區塊標題*/
.index_tit {
	font-size: 35px;
	line-height:35px;
	font-weight: bold;
	/*color: #2b4075;*/
	color: #ffffff;
	text-align:center;
	margin-bottom: 40px;
}
.index_tit > h1 {
    display:inherit;
    font-size:inherit;
    margin-block-start:inherit;
    margin-block-end:inherit;
    margin-inline-start:inherit;
    margin-inline-end:inherit;
    font-weight:inherit;
}
	.index_titTW{
	}

	









/*內頁banner*/
.inbanner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
	background-attachment: fixed;
	height:350px;
	overflow: hidden;
}
.inbanner #particles-js {
    z-index: 0;
    /* width: 100%; */
    /* height: 100%; */
	height:350px;
}

	.inbanner:before {
		display: none;
		position: absolute;
		content: '';
		width: 100%;		
		height: 350px;
		
		background: -moz-linear-gradient(top,  rgba(255,255,255,0) 44%, rgba(255,255,255,0.5) 65%, rgba(255,255,255,0.8) 79%, rgba(255,255,255,0.93) 92%, rgba(255,255,255,1) 99%);
		background: -webkit-linear-gradient(top,  rgba(255,255,255,0) 44%,rgba(255,255,255,0.5) 65%,rgba(255,255,255,0.8) 79%,rgba(255,255,255,0.93) 92%,rgba(255,255,255,1) 99%);
		background: linear-gradient(to bottom,  rgba(255,255,255,0) 44%,rgba(255,255,255,0.5) 65%,rgba(255,255,255,0.8) 79%,rgba(255,255,255,0.93) 92%,rgba(255,255,255,1) 99%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
		
	}


	/*.inbannerTit{
		color: rgb(255 255 255 / 0.9);
		font-size: 50px;
		line-height: 50px;
		padding: 200px 0px 50px;
		width: 70%;
		margin: 0 auto;
		text-shadow: rgb(82 82 82 / 0.5) 0px 0px 10px;
	}*/



.pageContent {
    /* padding: 50px 0px; */
    position: relative;
}






/*麵包屑*/
.crumb {
	font-size: 13px;
	line-height: 15px;
	color: #5f6267;
	padding: 15px 0px;
	word-wrap: break-word;
	/*margin-top:20px;*/
}
	.crumb a:first-of-type {
		color: #2b4075;
		text-decoration:none;
	}
	.crumb a {
		color: #5f6267;
		text-decoration:none;
	}

	.crumb a:hover {
		opacity:0.5;
	}	
	.crumb span.crumbActive {
		color: #2b4075;
	}	
	.crumb span.crumbActive  a{
		color: #2b4075;
		text-decoration:none;
	}

.crumb.pc {
	/* display: none; */
}
.crumb.mobile {
	display: none;
}
	














/*內頁標題樣式1-----------------------------------------*/
.titStyle1{
	font-size: 30px;
    line-height: 35px;
	color: #2e282a;
	font-weight:bolder;
	/*text-align: center;*/
}

	.titStyle1 > h1 {
		display:inherit;
		font-size:inherit;
		margin-block-start:inherit;
		margin-block-end:inherit;

		margin-inline-start:inherit;
		margin-inline-end:inherit;
		font-weight:inherit;
	}



/*內頁標題樣式2-----------------------------------------*/
.titStyle2{
	font-size: 30px;
    line-height: 35px;
	color: #2e282a;
	font-weight:bolder;
}
	.titStyle2 > h1 {
		display:inherit;
		font-size:inherit;
		margin-block-start:inherit;
		margin-block-end:inherit;
		margin-inline-start:inherit;
		margin-inline-end:inherit;
		font-weight:inherit;
	}
	.titStyle2Date {
		padding-bottom: 5px;
		color: #2b4075;
		font-size: 16px;
		/* font-family: 'Raleway', sans-serif; */
		font-weight: normal;
	}





/*內頁標題樣式3-----------------------------------------*/
.titStyle3{
	font-size: 25px;
    line-height: 35px;
	color:#2b4075;
	font-weight:bolder;
	margin:20px 0px 30px;
}

	.titStyle3 > h1 {
		display:inherit;
		font-size:inherit;
		margin-block-start:inherit;
		margin-block-end:inherit;
		margin-inline-start:inherit;
		margin-inline-end:inherit;
		font-weight:inherit;
	}
	
	
.containerIn{
	padding:30px 0px 0px;
}










	
	
	
/*左右側--------------------------------------------------------------------*/	
	
		
.container{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	/* padding-bottom:40px; */
	/* padding-top:10px; */
	/* display: grid;
	grid-template-columns: 275px auto;*/
}
		
			
	/*左側*/
	.left{
		width: 100%;
		width:320px;
		min-width:320px;
		box-sizing:border-box;
		padding-top: 50px;
		/* margin-bottom: 30px; */
		background-color: #f8f7f6;
		position: relative;
	}
	.left:before{
		position: absolute;
		content: '';
		background-image: url(../images/bg_left.png);
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center top;
		width: 100%;
		height: 100%;
		left: 0;
		bottom: 0;
		opacity: 0.3;
		z-index: 0;
	}
	
	/* .left.leftPc{
		display:block;
	} */
		
		/*左側表單名稱*/
		.leftList_tit{
			/*background-color: #fcfcfc;*/
			/* text-align:center; */
			font-size: 26px;
			line-height: 28px;
			font-weight: bold;
			word-break: break-word;
			padding: 15px 0px;
			color:#2b4075;
			display:none;
			/*font-family: 'Noto Sans JP', sans-serif;*/
		}
		
		/*左側選單列表*/
		.leftListArea{
			/* margin: 10px 0px 0px; */
			/* margin: 0 -2px; */
			margin: 0 auto;
			max-width: 80%;
			position: relative;
			z-index: 1;
		}
			.leftList{
				font-size:18px;
				/* display: inline-block; */
				box-sizing: border-box;
				/* padding: 5px 2px; */
				/* padding: 5px 0px; */
			}
			
			.leftList.leftList2 > a{
				position:relative;
			}	

					
			/*.leftList.leftList2 > a:before{
				position: absolute;
				content:"+";
				font-size:15px;
				color:#3e3e3e;
				right:12px;
				top: 50%;
				transform:translateX(0%) translateY(-50%);
				-webkit-transform:translateX(0%) translateY(-50%);
				transition: 0.3s ease all;
				font-family: 'Kulim Park', sans-serif;
			}
			.leftList.leftList2.show > a:before{
				content:"-";
				transition: 0.3s ease all;
			}			

			.leftList.leftList2.active > a{
				position:relative;
			}	
					
			.leftList.leftList2.active > a:before{
				content:"-";
			}
			.leftList.leftList2.active.show > a:before{
				content:"-";
			}*/			
			
			
			
						
				.leftList > a{
					display:block;
					text-decoration:none;
					color: #3d3d3d;
					/* padding: 10px 0px; */
					/* border-bottom: 1px #b3b3b3 dashed; */
					position: relative;
					font-size: 18px;
					line-height: 19px;
					word-break: break-word;
					padding: 15px 10px;
					background-color: #fff;
					/* border-radius: 3px; */
					border: 1px #b3b3b3 solid;
					border-top-color: #ffffff00;
				}
				.leftList:first-of-type > a{
					border-top-color: #b3b3b3;
				}					
				.leftList.active > a{
					color: #ffffff;
					/*background-color:#eaeaea;*/
					border: 1px #2b4075 solid;
					background-color: #2b4075;
				}
				.leftList:hover > a{
					color: #231815;
					background-color:#e5e5e5;
					opacity:1;
					border-color:#ffffff00;
				}
				
				
				
			
					.leftList_top {
						position:relative;
						padding-right: 30px;
					}	
									
					.leftList_top a{
						display: block;
						text-decoration: none;
						/*color: #8e8e8e;*/
						color:#2b4075;
						padding: 10px 10px 10px 10px;
						/* position: relative; */
						font-size: 18px;
						line-height: 22px;
						word-break: break-word;
					}
					
					/*.leftList_top.active a{
						color:#231815;
					}*/
					
					
					.leftList.leftList2.active .leftList_top a{
						/*color:#231815;*/
					}
					.leftList.leftList2.active .leftList_top a:hover{
						/*color: #8e8e8e;
						opacity:0.5;*/
					}	
					.leftList.leftList2 .leftList_top:hover{
						background-color: rgb(218 218 218 / 0.7);
					}							
					
								
				
					.leftList.leftList2 .leftList_Add {
                        position: absolute;
                        top: 50%;
                        right:0px;
                        max-width: 100%;
                        max-height: 100%;
                        transform:translateX(0%) translateY(-50%);
                        -webkit-transform: translateX(0%) translateY(-50%);
                        z-index: 2;
                     }	
					 .leftList_Add:hover {
                       cursor: pointer;
					   transition: 0.3s ease all;
					   opacity:0.5;
                     }
				
					.leftList.leftList2.active .leftList_Add:before {
						position: absolute;
						content: "-";
						font-size: 19px;
						font-weight: lighter;
						color: #8e8e8e;
						transition: 0.3s ease all;
						top: 50%;
						transform: translateX(0%) translateY(-50%);
						-webkit-transform: translateX(0%) translateY(-50%);
						width: 30px;
					}				
					
					.leftList.leftList2 .leftList_Add:before {
						position: absolute;
						text-align: center;
						content: "+";
						transform: translateX(0%) translateY(-50%);
						-webkit-transform: translateX(0%) translateY(-50%);
						font-size: 15px;
						color: #8e8e8e;
						transition: 0.3s ease all;
						top: 50%;
						left: -30px;
						transform: translateX(0%) translateY(-50%);
						-webkit-transform: translateX(0%) translateY(-50%);
						width: 30px;
						font-family: 'Raleway', sans-serif;
					}									
				
				
				
				
					/*第二層選單樣式*/
					.leftListArea.two > .leftList:hover > a:before, .leftListArea.two > .leftList.active > a:before {
						content: '';
						position: absolute;
						
						border-top: solid 6px #000;
						border-left: solid 4px rgba(255,255,255,0);
						border-right: solid 4px rgba(255,255,255,0);	
						
						border-bottom-width: 0px;
						top: 24px;
						right: 12px;
					}
				
				/*左側選單列表第二層*/
				.leftList_open{
					display: none;
				}
				.leftList_open.active{
					display:block;
				}
					.leftList_open_list{
					}
						.leftList_open_list a {
							border-bottom: 1px #b5b5b5 dashed;
							display: block;
							transition: 0.3s ease all;
							color: #b0c6d8;
							padding: 10px 30px 10px 27px;
							font-size:16px;
							line-height: 20px;
							font-weight:normal;
							word-break: break-word;
							text-decoration:none;
						}
						.leftList_open_list:last-of-type a {
							/* border-bottom: 0px #b5b5b5 dashed; */
						}

						.leftList_open_list.active a {
							color: #2e282a;
							/* color: #2b4075; 
							background-color: rgb(218 218 218 / 0.7);*/
						}
						.leftList_open_list a:hover {
							color: #2e282a;
							/* color: #2b4075; 
							background-color: rgb(218 218 218 / 0.7);*/			
						}
		
		
	/*右側*/
	.right{
		box-sizing:border-box;
		/* padding: 50px 2%; */
		padding: 50px 5%;
		min-height:400px;
		width: calc(100% - 320px);
		/*width: 100%;*/
	}
	
	/*右側_無左選單*/
	.right.noleft{
		width:100%;
		/* padding-left: 0px; */
	}

		/*右側名稱*/
		.right_tit{
			font-size:24px;
			line-height:34px;
			padding-bottom:15px;
			color:#221912;
			font-weight:bold;
			border-bottom: 1px #dbdbdb solid;
		}
		
		
		
		
	
/*內頁上方選單*/
.rightTopArea{
	display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-start;
    margin: 0px -5px 20px;
}
	.rightTopList{
		box-sizing:border-box;
		width:20%;
		text-align:center;
		margin-bottom:10px;
		padding:0px 5px 0px;
	} 
	.rightTopList.active {
	}
	.rightTopList.active a {
		background-color: #000;
	}	
		.rightTopList a{
			display:block;
			text-decoration:none;
			background-color: #231815;
    		padding: 10px 5px;
			/*padding: 0px 3px;
			margin:10px 0px;*/
			font-size:13px;
			line-height:15px;
			color:#fff;
			overflow: hidden;
			text-overflow:ellipsis;
			white-space: nowrap;
		}     
		.rightTopList a:hover{
			transition: all 0.3s ease-out;
			background-color: #000;
			opacity:0.5;
		} 		
	
	
	
		
		
		
		/*網編區------------------------------------------*/
		.textArea{
			/*padding: 20px 0px;*/
			font-size:19px;
			line-height:1.8;
			color: #6f6f6f;
			word-wrap: break-word;
			/*word-break: break-all;*/
		}
			.textArea img {
				max-width:100%;
				height:auto;
			}
			.textArea a {
				text-decoration:none;
				transition: 0.3s ease all;
			}			
			.textArea a:hover {
				opacity:0.5;
				transition: 0.3s ease all;
			}	
			
			.textArea ul {
				padding-left: 20px;
			}	
			
			
			
			
			
			
			
			
			
						
			
		/*按鈕*/
		.btn_area {
			text-align:center;
			margin:50px 0px 0px;
		}
		.btn_area > input{
			margin:0px 10px;
			border-radius: 5px;
			background-color: #2b4075;
			color: #fff;
			/*width:49%;*/
		}
		.btn_area input:nth-child(2n+1) {
			/* background: #fff0; */
			/* color: #231815; */
			border: 0px solid #231815;
		}	
		.btn_area input:nth-child(2n) {
			background:#231815;
			color: #fff;
			border: 0px solid #231815;
		}	
			
		
				
		/*右側返回按鈕*/
		/* .btn_area.one {
			text-align:center;
			margin:30px 0px 0px;
		} */
		
		
		
		
		
		
		
		
		
		
@media (max-width: 1280px){		
	
	.inmain .wrap {
		width: 85%;
	}
	
}		
		
		
		
@media (max-width: 1200px){
		
.container > .wrap {
    width: 80%;
}	
	
	
	/*首頁輪播點點*/
	.wrap.pagination_wrap{
		width: 98%;
		padding: 0;
	}
	
	/*左側*/
	/* .left{
		width:200px;
		min-width: 200px;
	} */
		
	/*右側*/
	/*.right{
		width:65%;
	}*/
	
}



@media (max-width: 990px){

	/*麵包屑*/
	/* .crumb {
		font-size: 15px;
		line-height: 20px;
	} */
	.crumb.pc {
		display: none;
	}
	.crumb.mobile {
		display:block;
	}

	.pageContent {
		/*max-width: 85%;*/
		max-width: 80%;
		margin: 0 auto;
	}


	.containerIn {
		padding: 20px 0px 0px;
	}



/*內頁上方選單*/
.rightTopArea{
	display:none;
}

/* 主要是針對Webkit內核的瀏覽器，如Google Chrome 和 Safari瀏覽器 */
@media screen and (-webkit-min-device-pixel-ratio:0) { 		
	/*內頁banner*/
	.inbanner {
		background-attachment:unset;
	}	
 }

	
.container{
	display: block;
    flex-direction: unset;
    flex-wrap: unset;
    justify-content: unset;
	 /*padding-top: 20px; */
}

	/*左側*/
	.left{
		/* display:block; */
		width:100%;
		min-width:inherit;
		margin-bottom: 20px;
		padding-top: 0px;
		background-color: #e4e4e400;
		margin-top: 5px;
	}
	.left:before{
		display:none;
	}	
		/*左側表單名稱*/
		.leftList_tit{
			border: 1px #dbdbdb solid;
			position:relative;
			cursor:pointer;
			padding: 10px 0px;
			display: block;
			font-size: 25px;
			line-height: 25px;
			text-align: center;
		}
		.leftList_tit:after {
			position: absolute;
			content: '';
			top: 22px;
			right: 20px;
			border-top: solid 6px #000;
			border-left: solid 4px rgba(255,255,255,0);
			border-right: solid 4px rgba(255,255,255,0);
			border-bottom-width: 0px;
			transition: 0.3s ease all;
		}
		
		.leftList_tit.active:after {
			transform: rotate(180deg);
			transition: 0.3s ease all;
		}
		
		
		
		/*左側表單*/
		.leftListArea{
			display:none;
			margin: 0;
			max-width:unset;
			/*background: #f7f7f7;
			margin: 20px 0px 0px;*/
		}
		.leftList {
			font-size: 16px;
			display: block;
			padding: 0;
		}
		
		.leftListArea.show {
			display: block;
		}
		.leftList > a {
			background-color: #fff;
			border-radius:0px;
			border: 0px #b3b3b3 solid;
			border-bottom: 1px #b3b3b3 dashed;
		}
	
	
			/*.leftList > a {
				font-size: 20px;
			}*/	
	
	
	
	
	
	
	
	/*右側*/
	.right{
		width:100%;
		/* padding-left:0px;
		padding-top: 0px; */
		padding: 0 0 30px;
		min-height: 200px;
		/*min-height: unset;*/
	}




		/*網編區------------------------------------------*/
		.textArea{
			font-size:15px;
		}



	

}


@media (max-width: 768px){


	/*內頁banner--------------------------*/
	.inbanner{
		height: 200px;
	}	
	.inbanner:before {		
		height: 200px;
		/*background: -moz-linear-gradient(top,  rgba(255,255,255,0) 40%, rgba(255,255,255,0.2) 61%, rgba(255,255,255,0.4) 85%, rgba(255,255,255,1) 100%);
		background: -webkit-linear-gradient(top,  rgba(255,255,255,0) 40%,rgba(255,255,255,0.2) 61%,rgba(255,255,255,0.4) 85%,rgba(255,255,255,1) 100%);
		background: linear-gradient(to bottom,  rgba(255,255,255,0) 40%,rgba(255,255,255,0.2) 61%,rgba(255,255,255,0.4) 85%,rgba(255,255,255,1) 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );*/
	}
	
	.inbannerTit{
		font-size: 27px;
		line-height: 27px;
		padding: 100px 0px 25px;
		width: 90%;
	}


	/*麵包屑*/
	.crumb {
		text-align: left;
	}




	/*左側*/
	.left{
		margin-bottom: 30px;
	}	
			
		/*左側表單名稱*/
		.leftList_tit{
			display: block;
			font-size: 22px;
			line-height: 25px;
		}	
		
		
		
		/*內頁標題樣式1-----------------------------------------*/
		.titStyle1{
			font-size: 18px;
			line-height: 23px;
		}
		
		
		/*內頁標題樣式2-----------------------------------------*/
		.titStyle2{
			font-size: 18px;
			line-height: 23px;
		}
		
		/*內頁標題樣式3-----------------------------------------*/
		.titStyle3{
			font-size: 16px;
			line-height: 20px;
			margin: -5px 0px 20px;
		}

}


	
	

@media (max-width: 425px){


	/*按鈕*/
	.btn_area {
	}
	
		.btn_area input {
			/*width: 45%;*/
			margin: 0px 5px;
		}


}
	
	
	
	
	
	
























/*/////////////////////////////////////////////////////////*/
/*產品內頁*/
/*/////////////////////////////////////////////////////////*/	




		
/*-----------產品內頁------------------------------------------------------------------*/


.product_in {
	/*background:#fff;	*/
}
	/*產品內頁上*/
	.pI_top{
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		align-items: flex-start;
	}
	
		/*產品內頁上左*/
		/*.pIT_left {
			float:left;
			width:40%;
			box-sizing:border-box;
		}*/
			
			/*商品內頁圖*/
			/*.pIT_left img{
				width:100%;
				height:auto;
				padding:15px 0px 0px;
			}*/
				/*.az-wrap-inner {
					width:100% !important;
				}
					.az-overly {
						width:100% !important;
					}*/
			
			
			
			
			
			
			
	/*產品內頁產品圖*/
	.product_in_img {
		box-sizing: border-box;
		padding: 0px 0px 0px;
		width: 40%;
	}
		/*.product_in_img img {
			width:100%;
			height: auto;
			border-radius:5px;
		}*/
		
		/*大圖*/
		.pII_big {
			/*border: 1px #c3c3c3 solid;*/
			border-radius: 5px;
			overflow: hidden;
		}
			.pIIB_img {
				display:none;
			}
				.pIIB_img img {
					width:100%;
					height:auto;
					border-radius:5px;
				}
			#b_img1 {
				display:block;
			}
		
		/*小圖*/
		.pII_s {
			margin:0px -5px;
			padding:20px 0px 0px;
		}
			.pII_s .device {
			}
				.pII_s .swiper-slide {
					box-sizing:border-box;
					padding:0px 5px;
					/*margin: 0px 2px;
					border: 1px #c3c3c3 solid;*/
				}
					.pII_s .swiper-slide a {
						display: block;
						/*border: 1px #c3c3c3 solid;*/
					}				
					.pII_s .swiper-slide img {
						width:100%;
						height:auto;
						/*border-radius:5px;*/
					}
					img.imgLisH {
						/*width:100% !important;
						height:auto !important;*/
					}
					
					
					
					
			.pII_s .arrow-left {
				left:-17px;
			}
			.pII_s .arrow-right {
				right:-14px;
			}
				
			

			
			
			
			
		/*產品內頁上右*/
		.pIT_right {
			box-sizing: border-box;
			/*padding-top: 30px;*/
			padding-left: 100px;
			width: 60%;
		}
		
		.pITR_In{
			/*float:left;
			box-sizing:border-box;
			width:45%;*/
		}
		.pITR_In:nth-child(2){
			margin: 30px 0px 0px;
			/*float:right;
			width:50%;*/
		}	
		

		
			/*標籤*/
			.pITR_label {
				background: #C00;
				color: #fff;
				font-size: 14px;
				padding: 5px 10px;
				display:inline-block;
				margin:10px 0px 0px 0px;
			}
			
			.pITR_tit {
				font-size: 22px;
				line-height: 30px;
				color: #2e282a;
				font-weight: bolder;
			}
				.pITR_tit > h1 {
					display: inherit;
					font-size: inherit;
					margin-block-start: inherit;
					margin-block-end: inherit;
					margin-inline-start: inherit;
					margin-inline-end: inherit;
					font-weight: inherit;
				}			
			
			
			/*商品說明短文字*/
			.pITR_remark {
				padding: 20px 0px 0px 0px;
				font-size: 16px;
				line-height: 23px;
				color: #656565;
				margin-bottom: 30px;
			}
			
			/* .pITR_original_price {
				color:#999;
				font-size:16px;
				line-height:26px;
				margin: 15px 0px 0px 0px;
				font-family: 'Kulim Park', sans-serif;
				position:relative;
				letter-spacing: 3px;
				display: inline-block;
			}
			
			.pITR_original_price:before {
				position:absolute;
				content: "";
				background-color: #b5b5b5;
				width: 50px;
				height: 1px;
				top: 50%;
				right: 0px;
				-webkit-transform: rotate(9deg) translateX(0%) translateY(-50%);
				transform: rotate(9deg) translateX(0%) translateY(-50%);
			}				
			
			
			.pITR_price {
				font-size:14px;
				line-height:30px;
				padding: 15px 0px 0px 0px;
			}
				.pITR_price span {
					color:#c5261a;
					font-weight:bold;
					font-size:22px;
					letter-spacing: 5px;
					font-family: 'Kulim Park', sans-serif;
				} 
				
			.pITR_quantityAndAddCart {
				margin: 0px -5px;
			}	
				.pITR_quantity {
					padding: 0px 5px;
					width: 33%;
					box-sizing: border-box;
					float: left;
				}
				.pITR_quantity select {					
					font-size: 12px;				
					height: 42px;				
					letter-spacing: 0.5px;				
					width: 100%;
				}*/
			
				.pITR_btn_area {
					width: 33%;
					box-sizing: border-box;
					/* float: left; 
					padding: 0px 5px;*/
				}
					.pITR_btn_area input {
						-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: #231815;

						color: #fff;
						border: 1px #231815 solid;
						border-radius: 3px;
						line-height: 42px;
						transition: 0.2s ease all;
						letter-spacing: 1px;
					}
						
						/* .pITR_btn_area input.add {
							background: #231815;
							color: #ffffff;
							width: 100%;
						}
						
						.pITR_btn_area input.none {
							background: #C7C7C7;
							cursor:auto;
						} */
							/*兩個按鍵時*/
							/* .pITR_btn_area.two_btn {
							}
								.pITR_btn_area.two_btn input {
									width:47%;
								}	 */
								
								
								
								

/*-----分享按鍵區---------------------------------------------------------------------*/

/* .shareArea{

padding-top: 40px;
}


.function {
	display: inline-block;
	vertical-align: middle;
	box-sizing: border-box;
	padding-right: 5px;
	font-size: 16px;
	color: #333;
}
	.function  a {
		display: block;
		padding: 0;
		text-decoration: none;
		width: 39px;
		height: 39px;
		background-repeat: no-repeat;
		background-position: 0 0;
		border-radius: 50%;
	}
	
	.function a:hover {
		opacity:0.7;
	}	
	
	.function img {
		width: 39px;
		height:auto;
	} */
	
											
						

								
	/*產品內頁下*/
	.pI_bottom{
		background: #fff;
		border-radius: 3px;
		padding: 50px 0px 0px;
	}
		.pIB_tit {
			color: #8e8e8e;
			font-size: 20px;
			font-weight: bold;
			line-height: 22px;
			margin-bottom: 10px;
		}	
		.pI_bottom section.text_area p{
		}
		.pI_bottom ul li:before {
			content: attr(data-name);
			color: #464646;
			font-size: 16px;
		}


@media (max-width: 1280px){
	
	/*產品內頁產品圖*/
	/* .product_in_img {
		width: 40%;
	} */
	/*產品內頁上右*/
	.pIT_right {
		padding-left: 50px;
		/* width: 60%; */
	}
}






@media (max-width: 990px){

	.pII_s .device .arrow-left, 
	.pII_s .device .arrow-right {
		display:block;
	}

	.pI_top {
		display: block;
		flex-direction: unset;
		flex-wrap: unset;
		align-items: unset;
	}	
		/*產品內頁產品圖*/
		.product_in_img {
			width: 100%;
		}
		/*產品內頁上右*/
		.pIT_right {
			padding:50px 0px 0px;
			width: 100%;
		}
		
				/*.pITR_price {
					padding: 20px 0px 0px 0px;
				}	
				.pITR_In:nth-child(2) {
					margin: 0px 0px 0px;
				}*/	

}





@media (max-width: 640px){
	
	
	
	/*產品內頁上右*/
	/* .pIT_right {
		padding:20px 0px 0px;
	}	
		
	.pITR_In:nth-child(2) {
		margin: 20px 0px 0px;
	}*/
	
	
	/*.pIT_left{
		width:100%;
		float:none;
	}
	.pIT_right{
		width:100%;
		float:none;
	}
		.pIT_left img{
			padding:0px;
		}
		.pITR_tit {
			padding:50px 0px 0px;
		}*/
		
		/*.pITR_In ,
		.pITR_In:nth-child(2) {
			float:none;
			width: 100%;
		}

		.pITR_quantityAndAddCart{
			padding:30px 0px 0px;
		}*/
		/*.pITR_quantity {
			padding:15px 0px 0px;
			float:none;
			margin:0px;
		}
			.pITR_quantity select{
				width:100%;
			}
	
		.pITR_btn_area {
			padding:20px 0px 0px 0px;
			float:none;	
			margin:0px;
		}
			.pITR_btn_area input{
				width:100%;
			}*/
}


@media (max-width: 425px){

	/*產品內頁附加ProductInRight*/
	/* .right.ProductInRight{
		max-width:inherit;
	}
	
	.pITR_quantityAndAddCart{
		padding:20px 0px 0px;
		margin:0 auto;
	}	
	.pITR_quantity ,
	.pITR_btn_area {
		padding: 5px 0px;
		width: 100%;
		float:none;
	} */
	
}













/*/////////////////////////////////////////////////////////*/
/*最新消息模組*/
/*/////////////////////////////////////////////////////////*/	

/*.NewsArea{	
}
.NewsList{
	box-sizing: border-box;
	padding: 0 0px 30px;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
}*/

/* 沒有圖片 */
/*.noImg{
}
		.NewsList a{
			display: block;
			text-decoration: none;
			transition: 0.3s ease all;
			color: #000;
		} 

		.NewsList a:hover{
			opacity: 0.5;
			transition: 0.3s ease all;
		}*/

	/* news列表圖片 */
	/*.NewsImg{
	width: 250px;
	padding-right: 20px;
	min-width: 250px;
	}
		.NewsImg img{
			width: 100%;
			height: auto;
			border-radius: 10px;
			overflow: hidden;							
		}*/

	/* news列表下方資訊 */
	/*.NewsBottom{
		width: 100%;
	}*/

		/* news列表日期 */
		/*.NewsDate{
			font-size: 15px;
			line-height: 25px;
			color: #000;
		}*/
		/* news列表標題 */
		/*.NewsTit{
			margin-top: 5px;
			font-size: 18px;
			line-height: 25px;
			color: #000;

			display: -webkit-box; 
			-webkit-box-orient: vertical; 
			-webkit-line-clamp: 2; 
			overflow: hidden;
		}
		.NewsText{
			margin-top: 15px;
			font-size: 15px;
			line-height: 25px;
			color: #333;
			overflow : hidden;
			text-overflow: ellipsis;
			display: -webkit-box;
			-webkit-line-clamp: 6;
			-webkit-box-orient: vertical;
		}


	

@media (max-width: 768px){

	.NewsArea{
	}
	.NewsList{
		width: 100%;
		display: block;
		flex-direction: unset;
		flex-wrap: unset;
		padding: 0 0px 20px;
		margin-bottom: 30px;
		border-bottom: 1px #dadce0 solid;
	}	
	.NewsImg {
		width: 100%;
		padding: 0 0 20px;
		min-width: unset;
	}

}*/		




















/*/////////////////////////////////////////////////////////*/
/*系所單位內頁模組*/
/*/////////////////////////////////////////////////////////*/	

/* .DepartmentArea{
}
	.DepartmentArea .indexDepartmentList {
		width: 100%;
		padding: 30px 0px 0px;
	}
	.DepartmentArea .indexDepartmentList:first-of-type {
		padding-top: 0;
	} */









/*/////////////////////////////////////////////////////////*/
/*Faculty學院模組*/
/*/////////////////////////////////////////////////////////*/	

.peopleBg{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	/* margin: 0 -15px; */
	margin: 0 auto -30px;
	max-width: 80%;
}
	/* 學院人員列表 */
	.peopleList{
		/* width: 25%; */
		width: 33.3%;
		box-sizing: border-box;
		padding: 0px 4% 30px;
		/* padding: 0 15px 30px; */
	}
		.peopleList a{	
			display: block;
			text-decoration: none;
			/* color: #2b4075; */
			color: #696969;
		}

		.peopleListImg{	
			overflow: hidden;
			/* background-color: #000; */
			position: relative;
			padding-top: 100%;
			display: block;
		} 
			.peopleListImg img{	
				position: absolute;
				top: 0;
				left: 0;
				bottom: 0;
				right: 0;
				float: none;
				border-radius: 50%; 
				width: 100% !important;
				height: 100% !important;
				object-fit: cover;
				transition: 0.3s ease all;
				/* background-color: #f5f5f5; */
			} 	
		
		/* 學院人員列表資訊 */
		.peopleList ul{
			text-align: center;
			list-style-type: none;
			/* padding-left: 40px; */
			padding: 0;
			font-size: 14px;
			line-height: 16px;
			margin-top: 15px;
			font-weight: bolder;
		}
			.peopleList li{	
				padding: 5px 0;					
				font-size: 14px;
				line-height: 16px;
				color: #696969;
				word-wrap: break-word;
				/* word-break: break-all; */
			}
			.peopleList li:first-of-type{	
				color: #2b4075;
				font-size: 16px;
    			line-height: 18px;
			}	
			
			
		.peopleList a:hover .peopleListImg img{	
			/* opacity: 0.5; */
			transition: 0.3s ease all;
			/*transform: scale(0.8);*/
		}
		.peopleList a:hover{
			opacity: 0.5;
			transition: 0.3s ease all;
		}




@media (max-width: 1280px){

	.peopleBg {
		max-width: unset;
	}

}


@media (max-width: 860px){

	.peopleBg {
		max-width: unset;
		margin: 0 -25px -50px;
	}	
		.peopleList {
			width: 33.3%;
			padding: 0px 25px 50px;
		}

}

@media (max-width: 510px){

	.peopleBg {
		margin: 0 -15px -30px;
	}	
		.peopleList {
			width: 50%;
			padding: 0px 15px 30px;
		}

}




/*/////////////////////////////////////////////////////////*/
/*師資介紹模組*/
/*/////////////////////////////////////////////////////////*/	

    
/* 師資介紹區 */
.teamArea{
	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: -40px -20px 0px;
}

	/* 師資介紹列表 */
	.teamList{
		width: 50%;
		padding: 40px 20px 0;
		box-sizing: border-box;
	}
		.teamListIn{
			padding: 15px;
			display: flex;
			flex-direction: row;
			flex-wrap: nowrap;
			border-radius: 15px;
			box-shadow: 0 18px 40px #3333331a;
			border: 1px solid #f5f5f5;
		}

		/* 師資介紹列表圖 */
		.teamListPic{
			box-sizing: border-box;
			min-width:200px;
			width:200px;
			padding-right: 30px;
		}
			.teamListPic img{
				width: 100%;
				height: auto;
				border: 1px #bebebe solid;
			}

        /* 師資介紹列表資訊 */
        ul.teamListText{
			width: 100%;
			box-sizing: border-box;
			padding: 0;
			color: #464646;
			list-style-type: none;
			font-size: 16px;
		}
			ul.teamListText li{
				padding: 10px 0;
				word-wrap: break-word;
				word-break: break-word;
				/*word-break: break-all;*/
			}
			ul.teamListText li a{
				display: inline-block;
				color: #2b4075;
				text-decoration: none;
				position: relative;
			}
			ul.teamListText li a:hover{
				opacity: 0.5;
			}
			ul.teamListText li:first-of-type a{
				font-size: 18px;
				font-weight: bolder;
			}
			ul.teamListText li:before {
				content: attr(data-name);
				color: #464646;
				font-size: 16px;
				min-width: 150px;
			}



@media (max-width: 1200px){

/* 師資介紹區 */
.teamArea{
	/* display: flex;
    flex-direction: row;
    flex-wrap: wrap; */
    margin: -40px 0px 0px;
}

	/* 師資介紹列表 */
	.teamList{
		width: 100%;
		padding: 40px 0px 0;
	}

}



@media (max-width: 640px){

.teamListIn{
	padding: 20px;
	display: block;
	flex-direction: unset;
	flex-wrap: unset;
	border-radius: 3px;
}
	/* 師資介紹列表圖 */
	.teamListPic{
		min-width:unset;
		width:100%;
		padding-right: 0px;
	}
	/* 師資介紹列表資訊 */
	ul.teamListText{
		margin-top: 10px;
		font-size: 13px;
		letter-spacing: 0;
	}
	ul.teamListText li:first-of-type a {
		font-size: 13px;
	}
		ul.teamListText li:before {
			font-size: 12px;
			letter-spacing: 0;
			min-width: 95px;
		}

}









/*/////////////////////////////////////////////////////////*/
/*師資介紹內頁模組*/
/*/////////////////////////////////////////////////////////*/	

.teamListIn2{
    border-radius: 0;
    box-shadow: none;
    border: 0px solid #f5f5f5;
    padding: 0;
}
	.teamListIn2{
		border-radius: 0;
		box-shadow: none;
		border: 0px solid #f5f5f5;
		padding: 0;
	}
	.teamListIn2 .teamListPic {
		min-width: 350px;
		width: 350px;
		padding-right: 50px;
	}
	.teamListIn2 ul.teamListText li {
		border-bottom: 1px #dadce0 solid;
		padding: 20px 0;
		display: flex;
		flex-wrap: nowrap;
		flex-direction: row;
		align-items: center;
		line-height: 1.4;
	}




	@media (max-width: 768px){

		.teamListIn2{
			display: block;
			flex-direction: unset;
			flex-wrap: unset;
		}
			/* 師資介紹列表圖 */
			.teamListIn2 .teamListPic{
				min-width:unset;
				width:100%;
				padding-right: 0px;
			}
			.teamListIn2 ul.teamListText li {
				padding: 10px 0;
			}
		
		}
		










/*/////////////////////////////////////////////////////////*/
/*-------師資頁籤列表內容--------*/
/*/////////////////////////////////////////////////////////*/



.TeamInTable{
	margin: 20px 0px;
}

.TeamInTable table {
    width: 100%;
    margin: 0 auto;
    /*border-radius: 3px;*/
    overflow: hidden;
}

	.TeamInTable tr:first-of-type{
		/*background: #e8e8e8;*/
	}
	.TeamInTable tr:first-of-type td{
		border-top: solid 1px #bebebe;
		border-bottom: solid 1px #bebebe;
		font-size:17px;
		padding:18px 0px;
		/*line-height:26px;*/
		font-weight: bold;
		text-align: center;
	}

	.TeamInTable tr td{
		/*border-top: solid 1px #bebebe;*/
		border-bottom: solid 1px #bebebe;
		font-size:14px;
		line-height:25px;
		padding:15px 5px;
		color:#333;
		text-align: left;
		/*line-height:26px;*/
	}
	
		.TeamInTable tr td a{
			text-decoration:none;
			/*display:block;*/
			display:inline-block;
			color:#333;
			/*margin-right:15px;*/
		}
		.TeamInTable tr td a:hover{
			color:#007bc2;
		}
		
		.TeamInTable td:before {
			content:attr(data-name);
			display:none;
		}

	

@media (max-width: 1280px){
	
	.TeamInTable.TeamInTabProject table {
		border-top: solid 1px #bebebe;
		border-radius: 5px;
	}
	.TeamInTable.TeamInTabProject tr{
		border-bottom: solid 2px #bebebe;
	}	
	.TeamInTable.TeamInTabProject tr:first-of-type {
		display: none;
	}
	
	.TeamInTable.TeamInTabProject tr td {
		display: block;
		text-align: left;
		padding: 5px 14px;
		border-left: solid 1px #bebebe;
		border-right: solid 1px #bebebe;
		border-bottom: solid 0px #bebebe;
	}	
	.TeamInTable.TeamInTabProject tr td:last-of-type {
		border-bottom: solid 1px #bebebe;
	}
	.TeamInTable.TeamInTabProject tr:first-of-type td {
		border-top: solid 1px #bebebe;
	}
		
	.TeamInTable.TeamInTabProject td:before {
		/*content:attr(data-name);*/
		display:inline-block;
	}	
	/*.TeamInTable.TeamInTabProject tr td a{
		margin-right:0px;
	}	*/
}

	
		
		

@media (max-width: 768px){
	
	.TeamInTable table {
		border-top: solid 1px #bebebe;
		border-radius: 5px;
	}
	.TeamInTable tr{
		border-bottom: solid 2px #bebebe;
	}	
	.TeamInTable tr:first-of-type {
		display: none;
	}
	
	.TeamInTable tr td {
		display: block;
		text-align: left;
		padding: 5px 14px;
		border-left: solid 1px #bebebe;
		border-right: solid 1px #bebebe;
		border-bottom: solid 0px #bebebe;
	}	
	.TeamInTable tr td:last-of-type {
		border-bottom: solid 1px #bebebe;
	}
	.TeamInTable tr:first-of-type td {
		border-top: solid 1px #bebebe;
	}
		
	.TeamInTable td:before {
		/*content:attr(data-name);*/
		display:inline-block;
	}	
	/*.TeamInTable tr td a{
		margin-right:0px;
	}*/	
}



























/*/////////////////////////////////////////////////////////*/
/*招生資訊模組*/
/*/////////////////////////////////////////////////////////*/	

                          
	/*.enrollmentArea{
	}*/
	
		/* 招生資訊列表 */
		/*.enrollmentList{
			box-sizing: border-box;
			padding: 30px 0px 0px;
		}
		.enrollmentList:first-of-type{
			padding-top: 0;
		}

			.enrollmentList a{
				font-size: 18px;
				line-height: 1.5;
				color: #007bc2;
				font-weight: bold;
				display: block;
				padding-bottom: 20px;
				text-decoration: none;
				border-bottom: 1px #dadce0 solid;
			}
			.enrollmentList a:hover{
				opacity: 0.5;
				transition: 0.3s ease all;
			}*/
			







/*/////////////////////////////////////////////////////////*/
/*最新消息模組*/
/*/////////////////////////////////////////////////////////*/	


.inNewsBg{
	display: flex;
	flex-wrap: nowrap;
	flex-direction: row;
	justify-content: space-between;
	/* margin: 0 -20px -20px;
	margin:0px 0px -20px; */
	/* align-items: flex-start; */
}

.inNewsLeft{
	box-sizing: border-box;
	/* width: 75%; */
	width: calc(100% - 450px);
}

.inNewsRight{
	box-sizing: border-box;
	width: 400px;
	/* background-color: #dad9d6; */
}

.inNewsRightIn{
	background-color: #f8f7f6;
	position: relative;
	padding-bottom:100px;
	/*background-color: #dad9d6;
	 margin: 0 auto; */
	/* max-width: 90%; */
}
.inNewsRightIn:before{
	position: absolute;
    content: '';
    background-image: url(../images/bg_left.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center bottom;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0.1;
    z-index: 0;
}

	.inNewsRightBoxTop{
		background-color: #2b4075;
		color: #fff;
		text-align: center;
		font-size: 20px;		
		position: relative;
	}

	.inNewsRightBoxTop:after{
		position: absolute;
		content: '';
		background-image: url(../images/bg_left.png);
		background-repeat: no-repeat;
		background-size: auto;
		background-position: center bottom;
		width: 100%;
		height: 100%;
		left: 0;
		top: 0;
		opacity: 0.15;
		z-index: 0;
	}
		.inNewsRightBoxTop span{
			display: inline-block;
			padding: 50px 5px;
			font-weight: bold;
		}


	.inNewsRightBox{
	margin: 0 auto;
	max-width: 90%;
	}

		.inNewsRightBox ul {
			padding: 30px 0px;
			padding-left: 120px;  /*modify by Ray 20210911*/
			list-style-type: none;
			position: relative;
		}
			.inNewsRightBox li:first-of-type{
				background-color: #2b4075;
				color: #fff;
				width: auto;
				text-align: center;
				padding: 15px;
				position: absolute;
				top: 50%;
				left: -10%;
				transform: translateY(-50%);
				/* font-size: 15px;
				line-height: 16px;
				padding: 5px;
				margin: 0px 0px 0px 30px; */
			}
			.inNewsRightBox li{	
				display: -webkit-box; 
				-webkit-box-orient: vertical; 
				-webkit-line-clamp: 2; 
				overflow: hidden;		
			}
				.inNewsRightBox li a{
					color: #333;
					text-decoration: none;
					font-size: 16px;
					line-height: 26px;
				}                       
				.inNewsRightBox li a:hover{
					opacity: 0.5;
				}                       
				

                           
	

@media (max-width:1280px){	

	.inNewsLeft {
		width: calc(100% - 350px);
	}
		.inNewsBg .indexNewsList{
			width: 50%;		
		}

	.inNewsRight {
		width: 300px;
	}


	/*新增針對safari瀏覽器用 modify by Ray 20210827*/
	@media screen and (-webkit-min-device-pixel-ratio:0) {
		 
	/* 調整破圖的情況20210616 Ray start */
	
	.inNewsRightBox ul {
		padding: 10px 0px;
		padding-left: 85px;

	}

	.inNewsRightBox li:first-of-type {
		font-size: 15px;
		line-height: 16px;
		padding: 5px;
		margin: 40px 0px 0px 0px;
	}

    /* 調整破圖的情況20210616 Ray end */

	}	

	
		
		.inNewsRightBox ul {
		
        padding-left: 85px;


		}
	
		.inNewsRightBox li:first-of-type {
			font-size: 15px;
			line-height: 16px;
			padding: 5px;
			margin: 0px 0px;
		}

}		

                           
                        
	

@media (max-width:990px){	

	.inNewsLeft {
		width: calc(100% - 285px);
	}
	.inNewsRight {
		width: 250px;
	}
		.inNewsRightBoxTop span {
			padding: 20px 5px;
		}
		.inNewsRightBox ul {
			padding: 10px 0;
		}
			.inNewsRightBox li:first-of-type {
				position: unset;
				top: unset;
				left: unset;
				transform: unset;
				width: 90px;
				/* padding: 5px 0; */
				padding: 5px;  /*客服處理破版問題 modify by Ray 20210911*/
				margin-bottom: 5px;
			}
				.inNewsRightBox li a {
					font-size: 15px;
					line-height: 23px;
				}
}


	

@media (max-width:860px){	

	.inNewsBg {
		/* display: block;
		flex-wrap: unset; */
		flex-direction:column-reverse;
		justify-content: unset;
	}
		.inNewsLeft {
			width: 100%;
		}
		.inNewsRight {
			width: 100%;
			margin-bottom: 30px;
		}
		.inNewsRightBox {
			margin: 0;
			max-width: unset;
			padding: 10px 15px;
		}
			.inNewsRightBoxTop {
				/* margin-bottom: 15px; */
				display: none;
			}
			.inNewsRightIn {
				padding: 0px 0 0px;
				/* padding: 0px 0 15px; */
			}
}

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

}






 

/*/////////////////////////////////////////////////////////*/
/*-------資源--------*/
/*/////////////////////////////////////////////////////////*/


.ExchangeBg {
    /* padding: 10px 0px; */
}


.ExchangeList{
	position:relative;
	border-bottom: 1px #b5b5b5 dashed;
	margin-bottom: 10px;
	padding: 10px 150px 10px 0px;
	/*padding: 10px 150px 10px 150px;*/
}

	.ExchangeListTag{
		position:absolute;
		top: 10px;
		left:0px;
	}
		.ExchangeListTag a{
			font-size: 16px;
			font-weight: bold;
			color: #2b4075;
			text-align: left;
			display: block;
			text-decoration: none;
			/*cursor: default;*/
		}
		.ExchangeListTag a:hover{
			opacity:0.5;
		}
		
	.ExchangeTit{
		font-size:16px;
		line-height:22px;
	}
		.ExchangeTit a{
			font-weight: bold;
			font-size: 16px;
			line-height: 22px;
			text-decoration: none;
			color: #2e2e2e;
			display: block;
			overflow: hidden;
			white-space: nowrap;
			text-overflow: ellipsis;
			transition: 0.3s ease all;
		}
		.ExchangeTit a:hover{
			color: #2b4075;
			/*opacity:0.8;
			padding-left:20px;*/
			transition: 0.3s ease all;
		}			
			
			
			
	.ExchangeDate{
		position:absolute;
		top: 10px;
		right:0px;
		font-family: 'Montserrat', sans-serif;
		color: #575757;
		font-size: 13px;
		line-height: 22px;
		text-align: right;
	}





.ExchangeList:first-child  ,
.ExchangeList:first-child .ExchangeListTag a ,
.ExchangeList:first-child .ExchangeTit a ,
.ExchangeList:first-child .ExchangeDate {
	color:#aeaeae;
	cursor: default;
	font-size:16px;
	font-weight:normal;
	font-family:微軟正黑體;
}
.ExchangeList:first-child .ExchangeListTag a:hover ,
.ExchangeList:first-child .ExchangeTit a:hover {
	color:#aeaeae;
	padding-left:0px;
	opacity:1;
}





/*資源內頁下方列表-----------------------------------------*/
.link_exchange{
	margin: 30px 0px 0px;
}
	.link_exchangeList{
		box-sizing: border-box;
		padding: 10px 0px;
		border-bottom: 1px #d2d2d2 dashed;
	}
		.link_exchangeList a{
			font-size: 14px;
			line-height: 22px;
			text-decoration: none;
			color: #2e2e2e;
			display: block;
		}
		.link_exchangeList a:hover{
			opacity:0.5;
		}	
	
	
	





@media (max-width: 640px){
	

.ExchangeList{
	padding: 10px 0px 10px 0px;
}	
.ExchangeList:first-child{
	display:none;
}	
	.ExchangeListTag {
		position: static;
		top: 0px;
	}
	
	/*.ExchangeTit {
		padding: 15px 0px;
	}*/
	
	.ExchangeDate {
		position: static;
		top: 0px;
		text-align: right;
		/*font-size: 14px;*/
		font-weight: normal;
		margin-top:10px;
	}

}















/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*-------下載----------------------------------------------------------------------------*/
/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
	



/*下載列表*/
.download_list_area{
	padding: 5px 0px 0px;
    margin-bottom: -15px;
	/*padding:5px 0px 20px;
	margin:0px -12px;*/
}
	/*下載列表_清單*/
	.dLA_list{
		padding:15px 0px;
		/*float:left;*/
		width:48%;
		box-sizing:border-box;
	}
	.dLA_list:nth-child(2n+1){
		float:left;
	}
	.dLA_list:nth-child(2n){
		float:right;
	}
	
		/*下載列表_清單_in*/
		.dLA_list_in{
			background: rgb(248 247 246);
			padding:25px 25px;
			border-radius:7px;
		}
		
		.dLA_list:nth-child(2n+1) .dLA_list_in{
			 /*background:#e6e6e6;*/
			 /*border: 1px #e0bb8c solid; */
		}		   
		.dLA_list:nth-child(2n) .dLA_list_in{
			 /*background:#e6e6e6;*/
		}			

		/*下載列表_清單_左側*/
		.dLAL_left{
			float:left;
			box-sizing:border-box;
			width:60%;
			/*width:335px;*/
		}
			/*下載_標題*/
			.dLALL_tit{				
				color: #000;
				font-size: 16px;
				line-height:20px;
				font-weight: bolder;
				white-space: nowrap; 
				overflow: hidden;
				text-overflow: ellipsis;
			}
			/*下載_內容*/
			.dLALL_text{			
				padding-top:7px;
				color: #595757;
				font-size: 14px;
				line-height:18px;
				white-space: nowrap; 
				overflow: hidden;
				text-overflow: ellipsis;
			}
		
		/*下載_按鈕*/
		.download_btn{
			float: right;
		}
			.download_btn a{
				display: block;
				color: #ffffff;
				font-weight: bold;
				font-size: 14px;
				text-decoration: none;
				padding: 14px 30px;
				background: #2b4075;
				border-radius: 7px;
				transition: 0.2s ease all;
			}
			.download_btn:hover a{
				opacity:0.5;
				/*color:#fff;
				background-color:#e0bb8c;
				padding: 14px 50px;*/
				transition: 0.2s ease all;
			}


			



@media (max-width:860px){
	


	/*下載列表_清單*/
	.dLA_list{
		width:100%;
		float:none;
		padding:15px 0px;
	}


		/*下載列表_清單_左側*/
		.dLAL_left{
			width:75%;
		}
}

@media (max-width:680px){
	
		/*下載列表_清單_左側*/
		.dLAL_left{
			width:100%;
			float:none;
		}
		
		/*下載_按鈕*/
		.download_btn{
			text-align:center;
			padding-top:15px;
			float:none;
		}
			.download_btn a {
				padding: 10px 0px;
			}		
				.download_btn a:hover{
					padding: 10px 0px;
				}		
		
}
		







/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*-------常見問题FAQ----------------------------------------------------------------------------*/
/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

/*常見問题_收合列表-------------------------*/

.qaArea {
	/* margin: 20px 0px 0px; */
}
.qaArea:first-of-type {
	/* padding-top:6px; */
}
	.qa_list {
		font-size:18px;
		line-height:30px;
		border-radius: 10px;
		overflow: hidden;
		box-shadow: 0 18px 40px #3333331a;
		border:1px rgb(51 51 51 / 0.05) solid;
		background-color: #fff;
		margin-bottom: 15px;
	}
		.qa_list_tit {
			position:relative;
			/*font-weight:bold;
			padding: 15px 50px;*/
			padding: 15px 50px 15px 20px;
			cursor:pointer;
		}
		.qa_list_tit.show {
			background: #2b4075;
			color: #fff;
		}
			
		.qa_list_text {
			position:relative;
			transition:0.3s ease all;
			display: none;
			/* opacity:0;
			height:0px; */
			box-sizing:border-box;
		}
		.qa_list_text img {
			max-width:100%;
			height:auto;
		}		
		
		.qa_list_tit:before, .qa_list_text:before {
			position: absolute;
			left: 10px;
			/* top: 9px; */
			top: 50%;
			-webkit-transform: translateY(-50%);
			transform: translateY(-50%);
			font-size: 20px;
			color: #fff;
			letter-spacing: 0px;
			text-align: center;
			width: 28px;
			height:28px;
			border-radius: 100%;
			background: #221912;
		}
		.qa_list_tit:before {
			/* content: '?'; */
		}
		.qa_list_text:before {
			/* content: '!';
			background: #e76221;
			top: 15px;
			-webkit-transform: unset;
			transform:unset; */
		}
		
		.qa_list_tit:after {
			position: absolute;
			content: '';
			background: url(../images/plus.png) no-repeat;
			/*top: 22px;*/
			right: 20px;
			top: 50%;
			-webkit-transform: translateY(-50%);
			transform: translateY(-50%);
			width: 10px;
    		height: 10px;
		}
		.qa_list_tit.show:after {
			/*content: '-';*/
			background-image:url(../images/x.png);
			background-repeat:no-repeat;
		}

				/*展開*/
				.qa_list_text.show {
					display: block;
					transition: 0.3s ease all;
					/* opacity:1;
					height:auto; */
					/* padding: 9px 50px; */
					padding: 9px 20px;
				}

				                       	
	





/*/////////////////////////////////////////////////////////*/
/*-------聯絡我們--------*/	
/*/////////////////////////////////////////////////////////*/




.contact_productName{
	/* padding-top: 20px;
	padding-left:8px; */
	margin-bottom: 30px;
}
	.contact_productTit{
		/* float:left; */
		display:inline-block;
		font-size: 16px;
		line-height: 22px;
		background-color: #ececec;
		padding: 5px;
		vertical-align: middle;
		margin-right: 5px;
	}
	.contact_productIn{
		/* float:left; */
		display:inline-block;
		/* padding: 5px 0px 0px 10px; */
		font-size: 14px;
		line-height: 20px;
		vertical-align: middle;
	}


/* @media (max-width: 510px){
	
	.contact_productTit {
		float: none;
		padding: 0px;
		background-color: #ececec00;
	}			
	.contact_productIn {
		float: none;
		padding: 5px 0px 0px 0px;
	}	
} */



.contactArea{
	display: flex;
    flex-wrap: wrap;
    flex-direction: row;
	margin:0 -25px;
    /*align-items: flex-start;*/
}

	.contactL{
		box-sizing:border-box;
		width:50%;
		padding:0 25px
	}
		.contactL .textArea{
			font-size: 15px;
		}


	.contactR{
		box-sizing:border-box;
		width:50%;
		padding:0 25px
	}
	


  	
@media (max-width: 990px){
	
.contactArea{
	display:block;
    flex-wrap: unset;
    flex-direction: unset;
	margin:0 0px;
}

	.contactL{
		width:100%;
		padding:0 0px
	}
	.contactR{
		width:100%;
		padding:50px 0px 0px
	}	
	
	
}










/*/////////////////////////////////////////////////////////*/
/*-------頁數列區塊--------*/	
.number_pageArea{
	text-align:center;
	padding-top: 50px;
	position: relative;
	z-index: 4;
	/* display: none; */
}
	/*左側區塊*/
	.numberPage_leftArea{
		display: inline-block;
		vertical-align: middle;
	}	
		.numberPage_leftList{
			display: inline-block;
			vertical-align: middle;
		}
			.numberPage_leftList a{
				display: block;
				text-decoration: none;
			}
			
			/*modify by pekey 20181114*/
			img.hover_after{
				display: none;
				background-color: #ff6721;
				border-radius: 50%;
			}
			/*modify by pekey 20181114*/
			.numberPage_leftList a:hover img.hover_after{
				display: block;
			}
			/*modify by pekey 20181114*/
			.numberPage_leftList a:hover img.hover_before{
				display: none;
			}
		
	/*中間區塊*/
	.numberPage_middleArea{
		display: inline-block;
		vertical-align: middle;
		padding: 0px 8px;
	}
		.numberPage_middleList{
			display: inline-block;
			vertical-align: middle;
			padding: 0px 4px;
		}
			.numberPage_middleList a{
				display: block;
				text-decoration: none;
				width: 31px;
				
				border-radius: 100%;
				background-color: transparent;
				color: #808080;
				padding: 7.5px 0px;
			}
			/*active*/
			.numberPage_middleList.active a{
				background-color: #2b4075;
				color: #fff;
			}
			/*hover*/
			.numberPage_middleList a:hover{
				background-color: #2b4075;
				color: #fff;
			}
	
	/*右邊區塊*/	
	.numberPage_rightArea{
		display: inline-block;
		vertical-align: middle;
	}
		.numberPage_rightList{
			display: inline-block;
			vertical-align: middle;
		}
			.numberPage_rightList a{
				display: block;
				text-decoration: none;
			}
			
			/*modify by pekey 20181114*/
			.numberPage_rightList a:hover img.hover_after{
				display: block;
			}
			/*modify by pekey 20181114*/
			.numberPage_rightList a:hover img.hover_before{
				display: none;
			}
		
		
	
	
@media (max-width: 640px){
	
	.number_pageArea {
		padding-top: 30px;
	}
	
		.numberPage_leftList:first-child{
			display: none;
		}
		
	.numberPage_middleArea{
		padding: 0px;
	}
		.numberPage_middleList{
			padding: 0px;
		}
		
		.numberPage_rightList:last-child{
			display: none;
		}
		
	
}

















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


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