/*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*/
}
sup{
	font-size:60%;
}
/* 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: #000;
	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點擊時不會出現框線*/
}
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-字型 結束-------------------------------*/










/*-------------------------------------------外嵌英文字型 開始-------------------------------*/

@import url('https://fonts.googleapis.com/css?family=EB+Garamond');

/*-------------------------------------------外嵌英文字型 結束-------------------------------*/









/*--------------------------------------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:#3ba4dc;  /*此為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:#3ba4dc;
	color:#fff;
}

/*Mozilla Firefox 控制文字選取時的顏色*/
::-moz-selection {
	background:#3ba4dc;
	color:#fff;
}

/*.wrap {
	width: auto;
	padding: 0px 60px;
}


@media (max-width: 1280px){
	.wrap{
		width: 1100px;
		margin:0 auto;
		padding: 0;
	}
}
*/

.wrap{
	width: 1100px;
	margin:0 auto;
	padding: 0;
}
	
@media (max-width: 1140px){
	.wrap{
		width: auto;
		padding: 0px 20px;
	}
}

@media (max-width: 880px){
	.wrap{
		padding: 0px 15px;
	}
}

/*-------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;
    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: #41a4dc;
	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:#41a4dc;
	}
	input[type="submit"] {
		background: #e50011;
	}
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;
}
	
	
	
@media (max-width: 510px){		
	input[type="button"], input[type="submit"], input[type="reset"] {
		width: 100px;	
	}	
}	
	
	
	
	
/*-------輪播----------------------------------------------------------------------------*/
.banner {
	background:#fff;
	position:relative;
}
	.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;
		}
		
			/*左鍵*/
			.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;
				}
				.pcBanner {
				}
				.mobileBanner {
					display:none;
				}
					
					@media (max-width: 880px){
						.device {
							height:auto;
						}
							/*左右鍵*/
							.device .arrow-left, .device .arrow-right {
								display:none;
							}
					}
						@media (max-width: 640px){
							/*.pcBanner {
								display: none;
							}
							.mobileBanner {
								display:block;
							}*/
						}
				
				
/*-------頁次--RWD版 by kevin 20150921------------------------------------------------------------------------*/			
.page_area_rwd {
	text-align:center;
	padding:40px 0px 40px 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:#3ba4dc;
			border-radius:2px;
		}
			.page_left_arrow a:hover, .page_right_arrow a:hover {
				background:#252525;
			}
	.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 {
	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; 
		}
			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;
				}
					.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;
						}
						
					.tabs li.active {
						/*當前模式*/
						color:#333;
					}
						.tabs li.active span {
							box-shadow: 0 -2px #9dc912 inset;
						}
						.tabs li.active:after {
							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: 1100px){	
		.tabs span {
			padding: 0px 5px;
		}
	}



					@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;
									border: none;
									border-bottom: solid 1px #f3f3f3;
								}
									.tabs li.active:after {
										content:"";
									}
					}

			









/*-------浮動top鍵----------------------------------------------------------------------------*/
.topBtn {
		position:fixed;
		bottom:-70px;
		right:14px;
		z-index:99;
		/*z-index:3;*/
	}
		.topBtn a {
			display:block;
			text-align:center;
			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:#0048dc;
				}
					.topBtn a:hover:before {
						border-bottom: solid 8px #0048dc;
					}
/*-------驗證碼----------------------------------------------------------------------------*/
.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: #333;
		border-radius: 5px;
		padding: 0px 11px;
		font-size: 14px;
		display: inline-block;
		margin: 9px 0px 7px;
		line-height: 29px;
		text-decoration:none;
		vertical-align: middle;
	}
		.captcha a:hover {
		}
	.captcha img {
		vertical-align:middle;
	}
	.captcha span {
		color:#c30000;
	}












/*/////////////////////////////////////////////////////////*/
/*-------表單區--------*/
/*/////////////////////////////////////////////////////////*/




.form_area {
	font-size:0px;
    margin: 0 auto;
}
	.form_area br {
		font-size:15px;
	}
	
	
	.fA_bg{
		width: 100%;
		margin: 0 auto;
		box-sizing: border-box;
		/*padding: 0px 20px;*/
		/*padding: 10px 20px 0px;*/ 
	}	
	
	
	/*表單備註*/
	.form_remark {
		font-size:16px;
		line-height:24px;
	}
	
	

/*購物車大標*/
.cart_big_tit {
	position:relative;
	font-size:18px;
	font-weight:bold;
	line-height:25px;
	padding:0px 0px 0px 44px;
}
	.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:#19338f;
		left:0px;
		letter-spacing: 0px;
	}	
	
	
	/*表單區小標*/
	.form_tit {
		font-weight:bold;
		font-size:18px;
		line-height:26px;
	}
	
	.form_list {
		padding:23px 8px 0px;
		box-sizing:border-box;
	}
		.fL_tit {
			font-size:15px;
			line-height:23px;
			font-weight:bold;
		}
			.required_icon {
				color:#f00;
				display:inline-block;
			}
			
		.fL_right {
			padding:8px 0px 0px;
			font-size:14px;
		}
			.fL_right select {
				width:100%;
			}
			.fLR_text {
				font-size:13px;
				line-height:21px;
				padding:5px 0px 0px;
			}
				.fLR_text a {
					color:#ca0000;
				}
			
			/*純文字樣式*/
			.fLR_info {
				font-size: 15px;
				line-height: 23px;
				padding: 9px 0px 10px;
			}
			
			
			.fLR_info label {
				display: block;
				padding-bottom:10px;
				/*cursor: pointer;*/
			}
			.fLR_info select{
				width:100%;
			}			
			
			.fLR_info.AmountFLR_info{
				position:relative;
				padding-right:30px;
			}
				.fLR_info.AmountFLR_info input[type="text"]{
				}				
				.fLR_info.AmountFLR_info span{
					position:absolute;
					font-size: 15px;
					line-height: 23px;
					right: 0px;
					top: 18px;
				}			
			
			
			/*檔案上傳樣式*/
			.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: 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;
				}
				
			/*生日樣式*/
			.birthday {
				font-size:15px;
			}
				.birthday select {
					width:auto;
				}
			
			/*label樣式*/
			.fLR_label {
				font-size:15px;
				line-height:23px;
			}
				.fLR_label label {
					padding: 9px 10px 10px 0px;
					display: inline-block;
				}
			
			/*文字加輸入框樣式*/
			.fLR_textAndInput {
				font-size:15px;
			}
				.fLR_textAndInput input {
					width:120px;
				}
			
			/*地址樣式*/
			.fLR_address {
			}
				.fLR_address select {
					width:auto;
					margin: 0px 5px 0px 0px;
				}
				input.fLRA_postalCode {
					width: 97px;
				}
				input.fLRA_address {
					margin: 12px 0px 0px 0px;
				}
			
			/*日期區間樣式*/
			.dateRange {
				margin:-8px 0px 0px;
				font-size:0px;
			}
				.dateRange select {
					width:auto;
					margin:0px 2px;
				}
				.dateRange div {
					display:inline-block;
					vertical-align: middle;
					margin:8px 0px 0px;
				}
					.dateRangeStart {
					}
					.dateRange_And {
						font-size:13px;
						padding:0px 2px;
					}
					.dateRangeEnd {
					}
	
	/*一列兩個樣式*/
	.fLType2 {
		display:inline-block;
		vertical-align:top;
		width:49.8%;
	}
	
	/*同意條款*/
	.agreeToTerms {
		font-size:15px;
		line-height:23px;
	}
		.agreeToTerms strong {
			padding:10px 0px;
			display:inline-block;






		}

		.agreeToTerms a {
			color:#ca0000;
		}
	
	/*表單區 按鍵區*/
	.form_btn_area {
		padding:30px 0px 0px;
		text-align:center;
	}
		.form_btn_area input {
			margin:0px 20px;
		}
		.form_btn_area input:nth-of-type(2) {
			background:#555;
		}
			@media (max-width: 540px){
				/*一列兩個樣式*/
				.fLType2 {
					width:auto;
					display:block;
				}
				
				/*表單區 按鍵區*/
				.form_btn_area input {
					float:left;
					width:48%;
					margin:0px;
				}
					.form_btn_area input:nth-of-type(2) {
						float:right;
					}
				.form_btn_area.one input {
					float:none;
				}
			}
			
/*分隔線*/
.divider {
	height:1px;
	background:#ececec;
	margin:30px 0px;
}








/*訂單完成說明*/
.order_complate_remark {
	font-size:15px;
	line-height:24px;
	padding: 12px 0px;
}
	.oCR_list {
		display:inline-block;
		padding:0px 15px 0px 0px;
	}
		.oCR_list strong {
			font-size:16px;
		}
/*-------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: #333;
	}
}


/*/////////////////////////////////////////////////////////*/
/*-------版頭--------*/
/*/////////////////////////////////////////////////////////*/

.header {
	/* padding: 20px 0px 0px; */
	/*background-color: rgb(59, 164, 220);*/
	background-color:#036eb8;
	border-bottom: 1px #3ba4dc solid;
	/*position: absolute;*/
	position:relative;
	top: 0px;
	width: 100%;
	z-index: 9;
}

.header.inheader{
	box-shadow: 0px -1px 9px 2px rgba(0, 0, 0, 0.5);
	/*position:static;
	background-color: #252525;*/
}

	
	.header > .wrap{
		position: relative;
	}
		
		/*手機menu按鍵*/
		.menu_btn {
			position:absolute;
			/*width:20px;*/
			width: 25px;
			top: 50%;
			right: 15px;
			cursor:pointer;
			display:none;
			z-index: 99;
			margin: 16px 0px 0px;
			/*margin: -14px 0px 0px;*/
		}
			.menu_btn span {
				display:block;
				background: #fff;
				height:2px;
				/*margin: 4px 0px;*/
				margin: 6px 0px;
				transition:0.3s ease all;
				border-radius:3px;
			}
				/*點擊*/
				.menu_btn.active {
					top: 22px;
					position: fixed;
					margin: 0px;
					right: 15px;
				}
					.menu_btn.active span {
						background:#3ba4dc;
					}
					.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;
					}
		
		
		/*版頭內容區塊*/
		.header_inArea{
			/* display: inline-block; */
			/* text-align: center; */
			/* margin: 0px auto; */
			/* width: auto; */
			/* width: 100%; */
		}
			/*logo*/
			.logo{
				/*padding: 15px 0px;*/ /*modify by pekey 20190508*/
				padding: 12px 0px;
				/*width: 450px;*/  /*modify by pekey 20190508*/
				width: 515px;
				/* margin: 0px auto; */
			}
				.logo a{
					display: block;
				}
				.logo a:hover{
					opacity:0.8;
				}				
					.logo img{
						width: 100%;
						height: auto; 
					} 
				
							
			/*主按鍵bg*/
			.navbar_bg{
				/*background-color: #d9d9d9;*/
				background-color:#efefef;
			}			
				
					
			/*主按鍵區塊*/
			.navbar{
				/*margin: 0px -25px;*/
				/* padding: 12px 0px 0px; */
			}
				/*手機版語系區塊*/
				.nav.language{
					display: none;
				}
				
				/*手機版搜尋區塊*/
				.nav.search{
					display: none;
				}

				
				.nav{
					display: inline-block;
					/*float: left;*/
					/*width: 13%;*/
     				position: relative;
				}
					.nav > a{
						/*font-family: 'EB Garamond', serif;*/  /*Judy修改20181029*/
						display: block;
						/*padding: 26px 25px;*/  /*modify by pekey 20190508*/
						padding: 20px 25px;
						text-decoration: none;
						color: #3ba4dc;
						font-weight: bold;
						font-size: 21px;
						/*line-height: 24px;*/
						transition: 0.3s ease all;
					}	
					
					.nav > a:first-child{
						margin-left:-25px;
					}						

					
					/*hover*/
					.nav:hover > a {
						/*color:#e60012;*/
						color:#036eb8;
						text-decoration:none;
						transition: 0.3s ease all;
					}
						
					/*主按鍵_下拉選單*/
					.navOpen.pc {
						position:absolute;
						left: 50%;
						/*padding: 22px 0px 0px;*/
						/*width:115px;*/
						width: 190px; /*Eric 20181023修改 原140px*/
						/*margin: 0px 0px 0px -70px;*/
						margin: 0px 0px 0px -97px;
						display: none;
						z-index: 2;
					}
					
					/*mobile版*/
					.navOpen.mobile {
						display:none;
						opacity:0;
						z-index:-999999;
						position: absolute;
					}	
					
					/*hover*/
					.nav:hover .navOpen.pc {
						display: block;
					}	
										
						.navOpenBg {
							position:relative;
							/*box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);*/
						}
					
							/*.navOpenBg:before {
								position: absolute;
								content:'';
								border-bottom: solid 8px rgba(0,0,0,0.6);
								border-left: solid 12px rgba(255,255,255,0);
								border-right: solid 12px rgba(255,255,255,0);
								top:-8px;
								left:50%;
								margin:0px 0px 0px -12px;
							}*/
							
							.navOpen.pc  .navOpenList a {
								text-align:center;
								/* Eric 20181031 修改 */
								font-size: 14px;
    							letter-spacing: 0;
    							/* Eric 20181031 修改*/
								color:#fff;
								line-height:22px;
								padding: 5px 5px;
								/*background: rgba(0,0,0,0.6);*/
								background: rgba(157, 201, 18, 0.8);
								transition:0.3s ease all;
								text-decoration:none;
								display:block;
							}	
								/*hover*/
								.navOpen.pc  .navOpenList a:hover {
									/*background: #c52d2f;*/
									color: #000;
									text-decoration:none;
									transition: 0.3s ease all;
								}
					
					
					
					
			
		/*版頭右側區塊*/
		.header_rightArea{
			position: absolute;
			right: 0px;
			top: 50%;
			/*margin: 35px 0px 0px;*/ /*modify by pekey 20190508*/
			margin: 33px 0px 0px;
		}
			
			/*PC版_搜尋區塊*/
			.search_areaPC{
				float: left;
				height: 20px;
			}
				.search_inAreaPC{
					width: 38px;
					height: 100%;
					position: relative;
					/*overflow: hidden;*/
					-webkit-transition-property: width;
					transition-property: width;
					-webkit-transition-duration: 0.55s;
					transition-duration: 0.55s;
					-webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
					transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
				}
				.search_inAreaPC.active{
					width: 170px;
				}
					
					/*輸入框*/
					.search_inputAreaPC{
						/*width: 100%;*/
						width: 0%;
						height: 100%;
						position: absolute;
						top: 0;
						/*right: 50px;*/
						right: 0px;
						padding-bottom: 1px;
						padding-right: 30px;
						padding-top: 3px;
						
						/*display: none;*/
						
						-webkit-transition-property: width;
						transition-property: width;
						-webkit-transition-duration: 0.55s;
						transition-duration: 0.55s;
						-webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
						transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
					}	
						.search_inputAreaPC input[type="text"]{
							display: block;
							width: 100%;
							height: 100%;
							background-color: transparent;
							color: #ffffff;
							color: rgba(255, 255, 255, 0.8);
							border: none;
							/*border-bottom: 1px solid #838383;*/
							box-sizing: border-box;
							padding: 0px 6px 6px 0px;
							border-radius: 0px;
						
						}
					
					/*active*/
					.search_inAreaPC.active .search_inputAreaPC{
						/*display: block;*/
						width: 100%;
					}
					.search_inAreaPC.active .search_inputAreaPC input[type="text"]{
						border-bottom: 1px solid #8dcdef;
					}
						
				
					/*按鈕*/
					.search_inAreaPC label{
						display: block;
						color: #fff;
						padding: 0px 12px 0px 0px;
						
						width: 18px;
						height: 18px;
						cursor: pointer;
						transition: 0.3s ease all;
						position: absolute;
						right: 0px;
						top: 0px;
					}
						.search_inAreaPC i{
							font-size: 18px;
							position: relative;
							top: -1px;
							transition: 0.3s ease all;
						}
						
						/*hover*/
						.search_inAreaPC label:hover i{
							color: #ffe21b;
							text-decoration:none;
							transition: 0.3s ease all;
						}
						
						.search_inAreaPC input[type='submit']{
							width: 35px;
							height: 30px;
							cursor: pointer;
							transition: 0.3s ease all;
							position: absolute;
							right: 0px;
							top: 0;
							background: rgba(255,255,255,0);
						}

/*modify by pekey 20180912 start*/
.search_inputAreaPC ::-webkit-input-placeholder { /* WebKit browsers */
    color: #b2b2b2;
}
.search_inputAreaPC :-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #b2b2b2;
}
.search_inputAreaPC ::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #b2b2b2;
}
.search_inputAreaPC :-ms-input-placeholder { /* Internet Explorer 10+ */
  	color: #b2b2b2;
}
/*modify by pekey 20180912 end*/




					
					
			
			/*語系內容區塊*/
			.language_inArea{
				float: right;
				padding: 0px 0px 0px 6px;
			}
				/*列表*/
				.language_inList{
					float: left;
				}
					.language_inList a{
						/*font-family: 'EB Garamond', serif;*/  /*Judy修改20181029*/
						display: block;
						color: #fff;
						text-decoration: none;
						padding: 0px 6px;
					}	
					
					/*hover*/
					.language_inList a:hover {
						color: #ffe21b;
						text-decoration:none;
						transition: 0.3s ease all;
					}



@media (max-width: 1140px){
	
	/*.nav > a{
		padding: 26px 15px;
	}*/
		
	/*版頭右側區塊*/
	.header_rightArea{
		right: 20px;
	}
}
@media (max-width: 1000px){
	
	.nav > a{
		/*padding: 26px 15px;*/ /*modify by pekey 20190508*/
		padding: 20px 15px;
		font-size: 20px;
	}	
	.nav > a:first-child{
		margin-left:-15px;
	}	
		
}

@media (max-width: 880px){
	.header {
		/*padding: 15px 0px;*/ /*modify by pekey 20190508*/
	}	
		
		/*手機menu按鍵*/
		.menu_btn {
			display:block;
			/*margin: 27px 0px 0px;*/ /*modify by pekey 20190508*/
			margin: 19px 0px 0px;	
		}

		.logo{
			width: 400px;
			/*width: 157px;*/
		}
		
		/*版頭區塊_右半部*/
		.navbar {
			position:fixed;
			top:0px;
			right:-225px;
			transition:0.3s ease all;
			width:225px;
			box-sizing:border-box;
			background: rgba(255, 255, 255, 0.85);
			/*background: rgba(0, 0, 0, 0.8);*/
			height: 100%;
			overflow-y: auto;
			/*z-index: 98;*/ /*modify by pekey 20180626*/
			z-index: 3; 
			padding: 80px 0px 0px;
		}
		
		
			.navbar.active {
				right:0px;
				box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.16);
				
				/*modify by pekey 20190508*/
				padding: 68px 0px 0px;
			}
			
			
			/*主按鍵*/
			.navbar {
				float: none;
				/*padding: 75px 0px 0px;*/ /*modify by pekey 20190508*/
				padding: 43px 0px 0px;
			}	
				/*手機版語系區塊*/
				.nav.language{
					display: block;
					padding: 0px;
				}
					.nav.language .languageList{
						/*float: left;
						width: 50%;*/ /*modify by pekey 20190508*/
						float: none;
						width: 100%;
						box-sizing: border-box;
						text-align: center;
					}
						.nav.language .languageList a{
							font-family: 'EB Garamond', serif;
							display: block;
							color: #fff;
							text-decoration: none;
							transition: 0.3s ease all;
							background-color: rgba(3, 110, 184, 0.8);
							padding: 10px 0px;
						}
							.nav.language .languageList:nth-of-type(1) a{
								border-right: 1px #999 solid;
							}
						
						/*hover*/
						.nav.language .languageList a:hover{
							color: #94b22f;
							text-decoration:none;
							transition: 0.3s ease all;
						}
			
			
				/*手機版搜尋區塊*/
				.nav.search{
					display: block;
					box-sizing: border-box;
					padding: 0px 0px 15px;
				}	
					.search_inAreaMB {
						position: relative;
						top: 0;
					}
						.search_inAreaMB input[type="text"]{
							width: 100%;
							height: 34px;
							line-height: 34px;
    						background: #fff;
							color: #333;
							border: solid 0.5px #d3d4d4;
							font-size: 14px;
							border-right: 0px;
							border-radius: 0px;
							padding: 0px 48px 0px 13px;
						}
						.search_inAreaMB label{
							width: 35px;
							height: 34px;
							cursor: pointer;
							transition: 0.3s ease all;
							position: absolute;
							right: 0px;
							top: 0px;
						}
							.search_inAreaMB i {
								position: relative;
    							right: 5px;
								top: 7.5px;
								z-index: 10;
								color: #a3a4a4;
								font-size: 20px;
							}
							.search_inAreaMB input[type='submit']{
								width: 35px;
								height: 34px;
								cursor: pointer;
								transition: 0.3s ease all;
								position: absolute;
								right: 0px;
								top: 0;
								background: rgba(255,255,255,0);
							}
				
			
				.nav {
					float:none;
					padding: 0px;
					width: 100%;
					text-align: left;
				}
					.nav  a {
						color:#036eb8;
						border:none;
					}
						.nav > a {
							line-height:23px;
							/*padding: 20px 15px;*/
							/*padding: 12px 15px;*/  /*modify by pekey 20190508*/
							padding: 10px 15px;
							font-size:16px;  
						}
						
						.nav > a:first-child {
							margin-left: 0px;
						}
						
						
							/*hover*/
							.nav:hover  > a{
								border:none;
								background: transparent;
								/*color: #fff;*/
								opacity: 0.7;
							}
							
							/*當前模式*/
							.nav.active > a{
								background: transparent;
							}
							
							
								/*展開選單*/
								.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;
													}
			/*版頭右側區塊*/
			.header_rightArea{
				display: none;
			}

}







@media (max-width:640px){

.header {
	/*modify by pekey 20190508*/
	padding: 8px 0px;
}
		
	.logo{
		/*modify by pekey 20190508*/
		padding: 0px;
		padding: 2px 0px 0px;
	}
	.menu_btn {
		/*modify by pekey 20190508*/
    	margin: 8px 0px 0px;
	}
	.menu_btn.active {
		top: 6px;
		margin: 0px; 
	}
	

	.navbar.active {
		/*modify by pekey 20190508*/
		padding: 61px 0px 0px;
	}
}

@media (max-width:510px){
	
	.logo{
		width: 230px;
	}
	
	.navbar {
		right: -100%;
		width: 100%;
	}
	.menu_btn {
    	/*margin: 16px 0px 0px;*//*modify by pekey 20190508*/
		margin: 0px;
		top: -1px;
	}

	.navbar.active {
		/*modify by pekey 20190508*/
		padding: 43px 0px 0px;
	}
}
















/*/////////////////////////////////////////////////////////*/
/*-------首頁內容--------*/
/*/////////////////////////////////////////////////////////*/

.indexMain_inArea{
	background-image:url(../images/bg.png);
	background-position: bottom right;
	/*background-position: center left;*/
	background-repeat:no-repeat;
	background-size:cover;
	/*padding: 78.5px 0px 0px;*/
}




/*上方快速連結區--------------------------------*/
.index_way_AreaBg{
	background-color:#e4e4e4;
	/*background-color: #d9d9d9;*/
	/*padding:60px 0px;*/ /*modify by pekey 20190508*/
	padding: 5px 0px;
}
          
	.index_way_Area{
		text-align:center;
		/* margin: 0px -15px; */
	}
		
	/*上方快速連結區列表*/
	.index_way_list{
		/*padding: 0px 15px;*/ /*modify by pekey 20190508*/
		padding: 0px 15px 10px;
		/* float: left; */
		display:inline-block;
		box-sizing: border-box;
		/*width: 16.6%;*/ /*modify by pekey 20190508*/
		width: 160px;
	}
	.index_way_list_in{
		/* width:150px; */
		/* height:150px; */
		/*border-radius:50%;*/
		/* padding:5px; */
		/*background: #a7a7a7;*/
		/*background: rgb(25, 51, 143, 1);
		box-shadow: 3px 3px 13px 0px rgba(0, 0, 0, 0.4);*/
	}	
	
	.index_way_list_in a{
		display:block;
		
		/*color:#036eb8;
		text-align:center;
		font-weight:bolder;*/
		text-decoration:none;		
	}	
		
	
		.index_wayImg{
			width: 100px;
			display: inline-block;
			margin: 14px auto;
			transition: 0.3s ease all;
		}
			/*.index_wayImg a{
				display:block;
			}*/	
			.index_wayImg img{
				width:100%;
				height:auto;
			}
			img.index_wayImg1{
				/*width:100%;
				height:auto;*/
			}
			img.index_wayImg2{
				/*width:100%;
				height:auto;*/
				display:none;
			}			
			
				
			  
		.index_wayTit{
			font-size: 16px;
			color:#2d2d2d;
			/*color:#fff;*/
			font-weight:bolder;
			text-align:center;
			padding-top: 10px;
			
			/*modify by pekey 20190508*/
			width: 100%;
		}    
		/*.index_wayTit a{
			color:#036eb8;
			text-align:center;
			font-weight:bolder;
			text-decoration:none;
		}*/ 	             

	.index_way_list_in:hover{
		/*background: rgb(25, 51, 143, 0.85);*/
	}		
	
	.index_way_list a:hover .index_wayImg img.index_wayImg1 {
		display:none;
	}			
	.index_way_list a:hover .index_wayImg img.index_wayImg2 {
		display:block;
		transition: 0.3s ease all;
		transform:scale(1.1);
	}	
	
	.index_way_list:hover .index_wayTit {
		opacity:0.8;
		color:#036eb8;
	}	


@media (max-width: 990px){
	
	.index_way_Area {
		/*margin: 0px -10px;*/  /*modify by pekey 20190508*/
	}	
	
		.index_way_list{
			/*width:33.3%;
			padding: 25px 10px;*/ /*modify by pekey 20190508*/
		}
		
}

@media (max-width: 768px){
	.index_way_list {
		 /*modify by pekey 20190508*/
		 width: 25%;
		 float: left;
	}
}

@media (max-width: 640px){
	
	.index_wayImg {
		 /*modify by pekey 20190508*/
    	width: 60%;	
	    margin: 7px auto;
	}
	.index_wayTit {
		 /*modify by pekey 20190508*/
    	font-size: 14px;
		padding: 0px 0px 5px; 
	}
}

@media (max-width: 550px){
	
	.index_way_AreaBg {
		/*padding: 20px 0px;*/ /*modify by pekey 20190508*/
	}
	
	.index_way_Area {
		/*margin: 0 -5px;*/ /*modify by pekey 20190508*/
	}		
	
	.index_way_list{
		/*width: 49.9%;*/ /*modify by pekey 20190508*/
		/*padding: 25px 5px;*/ /*modify by pekey 20190508*/
		padding: 0px;
	}

		.index_wayImg{
			/*width:auto;*/ /*modify by pekey 20190508*/
		}	
		
}









		
		
		
		
/*首頁內容_最新消息區塊-------------------------------------*/
		.indexMain_newsArea{
			padding: 70px 0px;
		}
		
			/*首頁內容_標題區塊*/
			.indexMain_titArea{
				/*font-family: 'EB Garamond', serif;*/  /*Judy修改20181029*/
				position: relative;
				display: inline-block;
				font-size: 25px;
				color: #000;
				/*font-weight: bold;*/
				padding: 0px 0px 10px;
				text-align: center;
				width: 100%;
			}
				.indexMain_titArea:after{
					position: absolute;
					content: '';
					left: 50%;
					bottom: 0px;
					margin: 0px 0px 0px -16px;
					width: 30px;
					height: 3px;
					background-color:#3ba4dc
				}
				
			
			/*首頁內容_最新消息內容區塊*/
			.indexMain_newaIn{
				margin: 0px -10px;
				/*padding: 45px 0px 0px;*/
			}
			
				/*列表*/
				.indexMain_newsList{
					float: left;
					width: 25%;
					box-sizing: border-box;
					padding: 0px 10px 0px;
				}
					.indexMain_newsContent{
						position: relative;
					}
						/*首頁最新消息_列表圖片*/
						.indexMain_newsImg{
							position:relative;
						}
							.indexMain_newsImg img{
								width: 100%;
								height: auto;
							}
							
						.indexMaNewsImgTit{
							text-shadow: 1px 1px 7px rgba(0, 0, 0, 0.5);
							position: absolute;
							bottom: 10px;
							left: 10px;
							font-size: 28px;
							color: #fff;
							font-weight: bold;
						}	
							
							
						
						/*首頁最新消息_列表下方區塊*/
						.indexMain_newsBottom{
							/*font-family: 'EB Garamond', serif;*/  /*Judy修改20181029*/
							/*position:absolute;*/
							/*bottom: -140px;*/ /*hover前不顯示*/
							/*left:0px;*/
							width:100%;
							box-sizing: border-box;
							/*background: rgba(0,0,0,0.5);*/
							background-color: #fff;
							transition:0.3s ease all;
							/*display:none;*/
							
							/*overflow: hidden;
							height: 140px;*/
						}
						
						/*hover*/
						/*.indexMain_newsList:hover .indexMain_newsBottom {
							height: 100%;
						}*/
						
						
							.indexMain_newsBottomIn{
								padding: 20px 15px;
								background:#e4e4e4;
								/*background: #e6e6e6;*/
							}
								/*日期*/
								.indexMain_newsDate{
									color: #0399be;
									font-size: 17px;
								}
								/*標題*/
								.indexMain_newsTit{
									padding-top: 15px;
									color: #000;
									line-height:26px;
									font-size: 16px; /*modify by Joanne 20181028 原25px*/
									/*font-family: Arial, Helvetica, sans-serif, "Century Gothic", "Times New Roman", Times, serif, "Microsoft JhengHei", "新細明體";*/

									
									display: -webkit-box;
									-webkit-box-orient: vertical;
									-webkit-line-clamp: 2;
									overflow: hidden;
									min-height:52px;  /*Judy修改20190325*/
								}
								
								
								/*標題*/
								.indexMain_newsTit >a{
									color:#036eb8;
									text-decoration:none;
									transition:0.3s ease all;
								}						
								.indexMain_newsTit:hover{
									padding-left:10px;
									opacity:0.8;
									transition:0.3s ease all;
								}								
								
								
								/*簡述*/
								.indexMain_newsText{
									padding-top: 20px;
									color: #696969;
									font-size: 14px; /*modify by Joanne 20181028 原18px*/
									line-height: 20px;

									font-family: Arial, Helvetica, sans-serif, "Century Gothic", "Times New Roman", Times, serif, "Microsoft JhengHei", "新細明體";
							
									display: -webkit-box;
									-webkit-box-orient: vertical;
									-webkit-line-clamp: 2;
									overflow: hidden;
									
									min-height:40px; /*Judy修改20190325*/
								}
								
								/*最新消息區塊_查看詳情按鈕*/
								.indexMain_newsMore{
									padding-top: 20px;
								}
									.indexMain_newsMore a{
										display: inline-block;
										padding: 5px 30px;
										color: #3ba4dc;
										font-size: 12px;
										border: 1px solid #3ba4dc;
										border-radius: 4px;
										text-decoration: none;
										transition: all 0.3s;
									}
									
									/*hover*/
									.indexMain_newsMore a:hover{
										background-color: #3ba4dc;
										color: #fff;
										padding: 5px 40px;
										transition: all 0.3s;
									}
									
							
			/*首頁內容_查看更多按鈕*/				
			.indexMain_moreBtn{
				/*font-family: 'EB Garamond', serif;*/  /*Judy修改20181029*/
				padding-top: 30px;
			}
				.indexMain_moreBtnIn{
					float: right;
				}
					.indexMain_moreBtnIn a{
						letter-spacing:3px;
						display: inline-block;
						padding: 8px 10px;
						color: #93c41c;
						font-size: 16px; /*modify by Joanne 20181028 原18px*/
						border: 1px solid #93c41c;
						border-radius: 4px;
						text-decoration: none;
						transition: all 0.3s;
					}
									
					/*hover*/
					.indexMain_moreBtnIn a:hover{
						background-color: #93c41c;
						color: #fff;
						transition: all 0.3s;
					}
					



@media (max-width: 990px){
	
	.indexMain_newsArea {
		padding: 45px 0px;
	}
		.indexMain_newaIn {
			margin: 0px -10px;
			padding: 0px;
		}
			.indexMain_newsList {
				width: 49.9%;
				padding: 15px 10px;
			}	
}






@media (max-width: 768px){
	.indexMain_newaIn {
		margin: 0px;
		padding: 0px;
	}
		.indexMain_newsList {
			float: none;
			width: 100%;
			padding: 20px 0px;
		}					
								
				/*首頁內容_查看更多按鈕*/	
				.indexMain_moreBtnIn{
					float: none;
					display: inline-block;
					text-align: center;
					width: 100%;
				}
					.indexMain_moreBtnIn a{
						width: 100%;
						box-sizing: border-box;
					}
		
}	























/*下方快速連結區--------------------------------*/
.index_link_AreaBg{
	/*background:#036eb8;*/
	background-color: #ffffff;
	padding:60px 0px;
}
          
	.index_link_Area{
		text-align:center;
		margin: 0px -15px;
		padding-top: 40px;
	}
		
	/*上方快速連結區列表*/
	.index_link_list{
		padding: 0px 15px;
		float: left;
		/* display:inline-block; */
		box-sizing: border-box;
		width: 25%;
	}


	
	.index_link_list a{
		display:block;
		
		/*color:#036eb8;
		text-align:center;
		font-weight:bolder;*/
		text-decoration:none;		
	}	
		
	
		.index_linkImg{
			width: 80px;
			display: inline-block;
			margin: 14px auto;
			transition: 0.3s ease all;
		}
			/*.index_linkImg a{
				display:block;
			}*/	
			.index_linkImg img{
				width:100%;
				height:auto;
			}	
			  
		.index_linkTit{
			font-size: 16px;
			line-height: 26px;
			color:#2d2d2d;
			/*color:#fff;*/
			font-weight:bolder;
			text-align:center;
			padding-top: 10px;
		}    
	             
	
	.index_link_list:hover .index_linkImg {
		transition: 0.3s ease all;
		transform:scale(1.1);
	}			
	.index_link_list:hover .index_linkTit {
		opacity:0.8;
	}	


/*@media (max-width: 990px){
	
	.index_link_Area {
		margin: 0px -10px;
	}	
	
		.index_link_list{
			width:33.3%;
			padding: 25px 10px;
		}
		
}*/

@media (max-width: 768px){
	
	.index_link_AreaBg {
		padding: 20px 0px;
	}
	
	.index_link_Area {
		margin: 0 -5px;
	}		
	
	.index_link_list{
		width: 49.9%;
		padding: 25px 5px;
	}

		.index_linkImg{
			width:auto;
		}	
		
}


@media (max-width: 425px){
	
	/*.index_link_AreaBg {
		padding: 20px 0px;
	}*/
	
	.index_link_Area {
		margin: 0 auto;
	}		
	
	.index_link_list{
		width: 100%;
		padding: 25px 0px;
	}

		/*.index_linkImg{
			width:auto;
		}*/	
		
}










/*/////////////////////////////////////////////////////////*/
/*-------版腳內容--------*/
/*/////////////////////////////////////////////////////////*/






/*-------浮動top鍵----------------------------------------------------------------------------*/

.topBtn_area{
	position:fixed;
	right:14px;
	bottom:0px;
	z-index: 1000;
	transform: scale(0.84);
	transition:0.3s ease all;
}
	
	.searchBtn {
		display: none;
		margin:7px 0px;
		position: relative;
	}
		.searchBtn a {
			display:block;
			transition:0.3s ease all;
			text-decoration:none;
			font-size:12px;
			line-height: 12px;
			text-align:center;
			width:50px;
			height:50px;
			box-sizing:border-box;
			border: solid 2px #4c4944;
			border-radius:100%;
			color:#674490;
			background: #fff;
			box-shadow:0px 0px 10px rgba(0,0,0,0.5);
			position:relative;
		}
			.searchBtn a i {
				font-size: 40px;
				margin: -3px 0px -9px;
			}
			.searchBtn img{
				width: 33px;
				height: auto;
				position: absolute;
				top: 6px;
				right: 7px;
			}
				/*hover*/
				.searchBtn a:hover {
					border-color:#fff;
					box-shadow:0px 0px 10px rgba(0,0,0,0.2);
					color: #e5151f;
				}
					.searchBtn:hover a {
						box-shadow:0px 0px 10px rgba(0,0,0,0.1);
					}
					
					
	.phoneBtn {
		margin:7px 0px;
		position: relative;
	}
		.phoneBtn a {
			display:block;
			transition:0.3s ease all;
			text-decoration:none;
			font-size:12px;
			line-height: 12px;
			text-align:center;
			width:50px;
			height:50px;
			box-sizing:border-box;
			border: solid 2px #0066b3;
			border-radius:100%;
			color:#674490;
			background: #fff;
			box-shadow:0px 0px 10px rgba(0,0,0,0.5);
			position:relative;
		}
			.phoneBtn a i {
				font-size: 40px;
				margin: -3px 0px -9px;
			}
			.phoneBtn img{
				width: 36px;
				height: auto;
				position: absolute;
				top: 6px;
				right: 5px;
			}
				/*hover*/
				.phoneBtn a:hover {
					border-color:#fff;
					box-shadow:0px 0px 10px rgba(0,0,0,0.2);
					color: #e5151f;
				}
					.phoneBtn:hover a {
						box-shadow:0px 0px 10px rgba(0,0,0,0.1);
					}
					
			/*標籤說明*/		
			.tab_description{
				display: none;
				position: absolute;
				left: -83px;
				top: 9px;
				background: rgba(0,0,0,0.6);
				color: #fff;
				padding: 10px 10px;
				font-size: 13px;
    			transition: 0.3s ease all;
			}
			/*hover*/
			.phoneBtn:hover .tab_description{
				display: block;
    			transition: 0.3s ease all;
			}
			
				


	/*回最上面*/
	.topBtn {
		margin:7px 0px;
		position: relative;
	}
		.topBtn a {
			display:block;
			text-align:center;
			box-sizing:border-box;
			width: 50px;
			height: 50px;
			border: solid 2px #036eb8;
			position:relative;
			text-decoration:none;
			transition:0.3s ease all;
			border-radius:100%;
			background:#fff;
			padding: 25px 0px 0px;
			color:#036eb8;
		}
			.topBtn a:before {
				position:absolute;
				content:'';
				border-bottom: solid 12px #036eb8;
				border-left: solid 8px rgba(0,0,0,0);
				border-right: solid 8px rgba(0,0,0,0);
				top: 8px;
				left: 15px;
			}
			.topBtn a span {
				font-size:12px;
				display:block;
			}
				/*hover*/
				.topBtn a:hover {
					border-color:#fff;
					box-shadow:0px 0px 10px rgb(229, 21, 31, 0.2);
					color: #e5151f;
				}
					.topBtn a:hover:before {
						border-bottom: solid 12px #e60012;
					}
			
			
			/*hover*/
			.topBtn:hover .tab_description{
				display: block;
    			transition: 0.3s ease all;
			}		
						

/*@media (max-width: 640px){
	.searchBtn {
		display: block;
	}
}
*/
						















.footer{
} 
	/*版腳上方區塊*/
	.footer_topArea{
		background-color: #3ba4dc;
		padding: 15px 0px 5px;
	}
		/*版腳上方_左側區塊*/
		.footerTop_LeftArea{
			/*float: left;*/
		}
	
			/*版腳logo區塊*/
			.footer_logo{
				/* float: left; */
				box-sizing: border-box;
				width: 250px;
				padding: 13px 0px 0px 0px;
			}
				.footer_logo a{
					display: block;
				}
					.footer_logo img{
						width: 100%;
						height: auto;
					}
					
					
			/*版腳資訊區塊*/
			.footer_infoArea{
				/* float: left; */
				/*width: 65%;*/
				box-sizing: border-box;
				padding: 21px 0px 0px;
				text-align: center;
			}
				/*.footer_infoIn{
					padding: 10px 0px;
				}*/
					.footer_infoList{
						display: inline-block;
						font-size: 14px;
						color: #fff;
						line-height: 29px;
						padding: 0px 10px;
					}
					
					/*.footer_infoIn:nth-of-type(2) .footer_infoList span{
						display: block;
					}*/
						
		
		
		/*版腳社群區塊*/
		/*.footer_snsArea{
			float: right;
			width: 15%;
			box-sizing: border-box;
		}*/
			/*列表*/
			/*.footer_snsList{
				float: left;
				width: 33.3%;
				box-sizing: border-box;
				padding: 3px 10px;
			}
				.footer_snsList a{
					display: block;
					color: #fff;
					transition: 0.3s ease all;
				}
					.footer_snsList img{
						width: 100%;
						height: auto;
					}
					
				.footer_snsList a:hover{
					opacity: 0.7;
					text-decoration:none;
					transition: 0.3s ease all;
				}*/
	
	
	/*版權宣告*/
	.copyright{
		background: #3ba4dc;
		color: #ffffff;
		padding: 0px 0px 25px;
		text-align: center;
		font-size: 13px;
		line-height: 24px;
	}
		.copyright a{
			/*background: #fff;*/
			color: #ffffff;
		}
			

.copyright_list{
	/*modify by pekey 20190611*/
	display: inline-block;
	box-sizing: border-box;
}
.copyright_list:nth-of-type(2){
	/*modify by pekey 20190611*/
	padding-left: 20px;
}



@media (max-width: 1140px){
	
	.footer_topArea {
		padding: 30px 0px 20px;
	}	
			/*版腳上方_左側區塊*/
			/*.footerTop_LeftArea{
				float: none;
			}*/
				.footer_logo{
					padding: 0px;
				}
				/*.footer_infoArea {
					padding: 14px 0px 0px 20px;
				}*/
			
			
			/*版腳社群區塊*/
			/*.footer_snsArea{
				float: none;
				width: 100%;
				margin: 0px auto;
				box-sizing: border-box;
				text-align: center;
				padding: 45px 0px 0px;
			}
				.footer_snsList{
					float: none;
					display: inline-block;
					width: 30px;
					box-sizing: unset;
				}*/
		
}



@media (max-width: 960px){
	.footer_topArea {
		padding: 35px 0px 0px;
	}	
		.footer_logo{
			float: none;
		}
		.footer_infoArea{
			float: none;
			padding: 15px 0px 10px;
			margin: 0px;
		}
			/*.footer_infoIn{
				float: none;
				padding: 10px 0px;
			}
			
		
		.footer_snsArea {
			text-align: left;
			padding: 0px;
		}	
			.footer_snsList:nth-of-type(1){
				padding: 3px 10px 3px 0px;
			}*/
			
			
}

@media (max-width: 880px){

	.copyright_list:nth-of-type(2){
		/*modify by pekey 20190611*/
		padding-left: 0px;
	}
}


@media (max-width: 640px){


.footer_topArea {
	/*modify by pekey 20190611*/
    padding: 25px 0px 0px;
}

	.footer_infoList{
		font-size: 12px;
	}
	
	.copyright{
		/*modify by pekey 20190611*/
		font-size: 12px;
	}
}


/*@media (max-width: 640px){
	.footer_infoIn:nth-of-type(2) .footer_infoList span:nth-of-type(2){
		line-height: 24px;
	}
}

@media (max-width: 320px){
	.footer_snsList{
		width: 33px;
		padding: 3px 5px
	}
}*/




















/*/////////////////////////////////////////////////////////*/
/*-------共用區塊--------*/
/*/////////////////////////////////////////////////////////*/



/*內頁banner*/
.in_Banner{
	
}
	.in_Banner img{
		width: 100%;
		height: auto;
	}


.content{
	padding:30px 0px 0px;
}



@media (max-width: 990px){
	.content {
		/*modify by pekey 20190508*/
		padding: 25px 0px 0px;
	}
}

/*內頁標題1*/
.in_titStyle1 {
    font-size: 20px;
	font-weight: bold;
	color: #036eb8;
	line-height: 28px;
	position: relative;
	/*border-bottom: 1px #a0a0a0 dashed;*/
	padding: 40px 100px 10px 0px;
}
	/*.in_titStyle1:after{	
		position: absolute;
		content: '';
		bottom: -1px;
		background: #036eb8;
		width: 62px;
		height: 6px;
		right: 0px;
	}*/


/*內頁標題2*/
.in_titStyle2 {
	font-size: 20px;
	font-weight: bold;
	color: #036eb8;
	line-height: 28px;
	position: relative;
	/*border-bottom: 1px #a0a0a0 dashed;*/
	padding: 40px 100px 10px 0px;
}
	/*.in_titStyle2:after{	
		position: absolute;
		content: '';
		bottom: -1px;
		background: #036eb8;
		width: 62px;
		height: 6px;
		right: 0px;
	}*/
			
	.in_titStyle2 span {
		font-size: 14px;
		font-weight: bold;
		color: #595757;
		line-height: 28px;
		position: absolute;
		right: 0px;
	}	
		

	.in_titStyle2.in_titStyle2news{
		margin-top:28px;
	}
	.in_titStyle2.in_titStyle2news span:nth-of-type(2) {
		font-size: 14px;
		font-weight: bold;
		color: #595757;
		line-height: 28px;
		position: absolute;
		right:inherit;
		top: 5px;
	}


@media (max-width: 990px){
	.in_titStyle1 {
		/*modify by pekey 20190508*/
		padding: 20px 100px 0px 0px;
	}
}

@media (max-width: 768px){	

.in_titStyle2 {
    padding-right: 0px;
}

	.in_titStyle2 span{
		position:static;
		display: block;
	}			
}



/*內頁標題3*/
.in_titStyle3{
    font-weight: bold;
    font-size: 23px;
    color: #595757;
    padding-bottom: 15px;
}


/*內頁標題4*/
.in_titStyle4{
    font-weight: bold;
    font-size: 20px;
    color: #c70216;
    padding: 50px 0px 15px;
}








/*網編區*/
.text_area{
	padding: 20px 0px 25px;
	font-size: 16px;
	line-height: 30px;
	color: #3c3c3c;
}
	.text_area img{
		max-width: 100%;
		height: auto;
	}
	.text_area a{
		text-decoration: none;
		color: #3c3c3c;
	}


.text_area iframe{
	width:100%;
}



/*按鈕*/
.btn_area {
	font-size: 0px;
	text-align: center;
	padding: 25px 0px;
}

	.btn_area input {
		margin: 0px 30px;
	}





/*左側*/
.left{
	/*float:left;
	width:256px;*/
	box-sizing:border-box;
	padding-bottom: 0px;
}
	
	/*左側表單名稱*/
	.leftList_tit{
		font-weight: bold;
		font-size: 35px;
		color: #3ba4dc;
		padding-bottom: 20px;		
		/*background-color: #fcfcfc;
		line-height:70px;
		text-align:center;
		font-size:25px;*/
	}
	
	/*左側選單列表*/
	.leftListArea{
		margin: 0px -10px;
		/*background-color: #fcfcfc;*/
	}
		.leftList{
			/*border-bottom:1px dashed #bebfc0;
			padding:7px 0px;*/
			float: left;
			box-sizing: border-box;
			padding: 5px 10px;
			font-size:18px;
		}
		.leftList.active > a{
			/*text-align: center;*/
			background-color:#036eb8;
			color: #fff;
			position: relative;
			transition: 0.2s ease all;
		}
			.leftList > a{
				display: block;
				color: #313131;
				font-size: 17px;
				font-weight: bold;
				line-height: 22px;
				/*padding: 15px 0px;*/
				padding: 15px 10px 15px 10px;
				text-decoration: none;
				transition: 0.2s ease all;
				/* border-bottom: 1px solid #c7c7c7; */
				position:relative;
				/*display:block;
				text-decoration:none;
				color:#323232;
				padding: 15px 30px;*/
				border: 1px solid #c7c7c7;
				border-radius: 5px;
			}
			.leftList:hover > a{
				color: #fff;
				background-color:#e50011;
				transition: 0.3s ease all;
			}
			
			/*兩層按鈕附加leftListArea2*/
			.leftListArea.leftListArea2{
				position:relative;
			}
			
			.leftListArea.leftListArea2 .leftList > a:after {
				position:absolute;
				content:'+';
				transition:0.3s ease all;
				right:0px;
				top:14px;
				font-size:20px;
				font-weight:100;
				color:#666;
			}

			/*當前模式*/
			.leftListArea.leftListArea2 .leftList.active > a:after {
				-webkit-transform: rotate(45deg);
						transform: rotate(45deg);
			}

			
			
			
			
			
			
			
			
			
			
			
			
			
			
			/*左側選單列表第二層*/
			.leftList_open{
				display: none;
			}
			.leftList_open.active{
				display:block;
			}
				.leftList_open_list{
				}
					.leftList_open_list a {
						
						display: block;
						color: #696969;
						font-size: 14px;
						line-height: 22px;
						padding: 15px 20px;
						text-decoration: none;
						transition: 0.2s ease all;
						border-bottom: 1px solid #c9caca;						
						/*display: block;
						transition: 0.3s ease all;
						color: #838383;
						padding: 10px 0px 10px 38px;
						line-height: 26px;
						font-size:18px;
						line-height: 40px;
						font-weight:normal;*/
					}
					.leftList_open_list.active a {
						color: #036eb8;

						position: relative;
						transition: 0.2s ease all;						
						
						/*color: #ff5722;*/
					}
					.leftList_open_list a:hover {
						color: #036eb8;
						position: relative;
						transition: 0.2s ease all;							
						
						/*color: #ff5722;
						text-decoration:none;*/
					}






/*右側*/
.right{
	/*float:right;
	width:71%;*/
	position: relative;
	border-top: 1px solid #a0a0a0;
	padding-bottom: 15px;
	margin: 30px 0px 10px;
	box-sizing:border-box;
}

	.right:after{	
		position: absolute;
		content: '';
		top: -1px;
		background: #036eb8;
		width: 62px;
		height: 6px;
		right: 0px;
	}




/*沒有左側附加noleft樣式*/
.right.noleft{
	float:none;
	width:100%;
}






@media (max-width: 1200px){	
	/*.right{
		width:65%;
	}*/			
}



@media (max-width: 990px){

	/*左側*/
	.left{
		width:100%;
		margin-bottom: 10px;
	}
	
		/*左側表單名稱*/
		.leftList_tit{
			border: 1px #dbdbdb solid;
			border-radius:3px;
			line-height: 50px;
			position:relative;
			cursor:pointer;
			/*padding: 10px 0px 10px 20px;*/ /*modify by pekey 20190508*/
			padding: 0px 20px;
			
			/*modify by pekey 20190508*/
			font-size: 22px;
		}
		.leftList_tit:after {
			position: absolute;
			content: '';
			/*top: 30px;*/ /*modify by pekey 20190508*/
		    top: 22px;
			right: 20px;
			border-top: solid 8px #036eb8;
			border-left: solid 4px #fff;
			border-right: solid 4px #fff;
			margin: 0 0 0 10px;
		}
		
		/*左側表單*/
		.leftListArea{
			display:none;
			padding: 0px 5px;
			margin: 0px 0px;
			/*background: #f7f7f7;*/
		}
			/*.leftList_open.active{
				display:block;
			}*/
			
			.leftList {
				float:none;
				/*box-sizing: border-box;*/
				padding: 0px 0px;
				/*font-size: 18px;*/
			}
			
			
			.leftList > a {
				border-bottom: 1px solid #c7c7c7;
				border-top:0px;
				border-left:0px;
				border-right:0px;
				border-radius: 0px;
			}
			
	
	.left.left2 .leftList_tit {
		border: 0px #dbdbdb solid;
		position:static;
	}	
	
	
	
	
	
	/*右側*/
	.right{
		/*margin-top:50px;*/  /*modify by pekey 20190508*/
		margin-top: 20px;
		width:100%;
	}
	
	
}


@media (max-width: 525px){
	.btn_area input {
		float: left;
		box-sizing: border-box;
		width: 46%;
		margin: 0px 5px;
	}
}










/*/////////////////////////////////////////////////////////*/
/*-------捐政實績--------*/
/*/////////////////////////////////////////////////////////*/
	

/*最新消息列表*/
.news_list_area {
	padding-top: 10px;
	padding-bottom:10px;
}
	.news_list {
		position:relative;
		display: table;
		border-bottom: dashed 1px #a0a0a0;
		padding: 10px 0px 10px;
		width:100%;
	}
	.news_list:first-of-type {
		/*padding-top:0px;*/
	}
		.news_list a {
			display:block;
			text-decoration:none;
			transition:0.3s ease all;
		}
			/*.news_list a:hover {
				color:#0048dc;
			}*/
			
		.nL_img {
			/*width:200px;*/
			width:270px;
			display:table-cell;
			vertical-align:top;
			overflow:hidden;
			transition: all .2s ease-out;
		}
			.nL_img a {
			}
				.nL_img img {
					width:100%;
					height:auto;
				}
				
		.nL_img:hover img  {
			opacity:0.5;
			transform:scale(1.1);
			transition: all .2s ease-out;
		}				
				
				
		.nL_right {
			display:table-cell;
			vertical-align:top;
			padding: 0px 0px 0px 20px;
		}
		

		.news_list_area .nLR_T{
			position: relative;
			padding-right: 100px;
			/*padding-bottom: 10px;*/
		}

			.nLR_time {
				font-size: 14px;
				line-height: 27px;
				font-weight: bold;
				color: #595757;
				display: inline-block;
			}

			.news_list_area .nLR_T .nLR_time {
				position: absolute;
				top: 0px;
				right: 0px;
				font-size: 14px;
				line-height: 27px;
				font-weight: bold;
				color: #595757;
				/* line-height: 28px; */
				/* font-size: 16px; */
				display: inline-block;
				/* color: #7d7d7d; */
				/* font-weight: bold; */
				/* letter-spacing: 2px; */
			}			
			
			
			
			.nLR_Speech{
				color: #585858;
				font-size: 15px;
				line-height: 25px;
				padding: 9px 0px 9px;
			}
			
			.nLR_tit {
				display: -webkit-box;
				-webkit-box-orient: vertical;
				-webkit-line-clamp: 2;
				overflow: hidden;				
			}
				.nLR_tit a {
					color: #036eb8;
					font-size: 17px;
					font-weight: bold;
					line-height: 27px;
					/* padding: 9px 0px; */			
				}
				.nLR_tit a:hover {
					color: #e50011;
				}
			.nLR_remark {
				padding-top: 10px;
				color: #3c3c3c;
				font-size: 14px;
				line-height: 24px;
				display: -webkit-box;
				-webkit-box-orient: vertical;
				-webkit-line-clamp: 4;
				overflow: hidden;
			}
			
			/*繼續閱讀按鈕*/
			.inMore{
				padding-top: 20px;
			}
			.inMore a{
				display: inline-block;
				padding: 5px 15px;
				color: #808080;
				font-size: 13px;
				border: 1px solid #808080;
				border-radius: 4px;
				text-decoration: none;
				transition: all 0.3s;
			}
			/*hover*/
			.inMore a:hover{
				background-color: #e50011;
				border: 1px solid #e50011;
				color: #fff;
				transition: all 0.3s;
				padding: 5px 35px;
			}
			
			
			
			
			
	/*沒有照片時樣式*/
	.news_list.noImg .nL_img {
		display:none;
	}
	/*沒有照片時樣式*/
	.news_list.noImg .nL_right {
		padding: 0px;
	}
				@media (max-width: 920px){
					.nL_right {
						padding: 0px 0px 0px 20px;
					}
				}
					@media (max-width: 640px){
						
				.news_list_area .nLR_T {
					position:static;
					padding-right: 0px;
					/*padding-bottom: 10px;*/
				}						
				.news_list_area .nLR_T .nLR_time {
					text-align: right;
					position: static;
					top: auto;
					right: auto;
					padding-top: 10px;
					display: block;
				}						
						
						.nL_img {
							display:block;
							width:100%;
						}
						.nL_right {
							display:block;
							padding: 15px 0px 0px;
						}
					}

/*最新消息內頁標題*/
.newsInTit {
	padding-top: 22px;
}
	.nIT_time {
		font-size: 16px;
		display: inline-block;
		color: #7d7d7d;
		font-weight:bold;

		letter-spacing: 2px;
	}
	.nIT_tit {

		color:#036eb8;
		font-size:16px;
		line-height:24px;
		padding: 18px 0px 0px;
	}

/*回上一頁*/
.back {
	padding:30px 0px 30px;
}
	.back a {
		display: block;
		text-decoration:none;
		transition:0.3s ease all;
		margin: 0 auto;
		text-align: center;
		color: #fff;
		background: #036eb8;
		border-radius: 4px;
		font-size: 15px;
		line-height: 42px;
		width: 162px;
	}
		.back a:hover {
			opacity:0.7;
		}











/*/////////////////////////////////////////////////////////*/
/*-------系上成員--------*/
/*/////////////////////////////////////////////////////////*/



.teacher_list_area{
	padding:20px 0px 10px;
}
           
.teacher_list{
	margin-bottom: 25px;
	box-sizing:border-box;
	width:100%;

}


/*.teacher_list:nth-child(2n+1){
	float:left;
}
.teacher_list:nth-child(2n){
	float:right;
}*/

	
	.teacherListBorder{
	/*	box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.5);	*/
	/* padding:15px; */
	}
	
		.teacher_list_in{
			display: table;
			width: 100%;
			/* position:relative; */
			/* padding: 0px 0px 0px 140px; */
			margin-bottom: 15px;
		}
						
		.tL_img{
			vertical-align: top;
			display: table-cell;
			/* position:absolute; */
			/* top: 0px; */
			/* left: 0px; */
			width: 160px;
			overflow:hidden;
		}
			.tL_img a{
				display:block;
			
				/*modify by pekey 20190508*/
				height: 180px;
				border: 1px solid #d6d6d6;
				overflow: hidden;
			}
				.tL_img img{
					width:100%;
					height:auto;
					transition: all 0.3s ease-out;
				}
				
				.tL_img a:hover img{
					opacity:0.5;
					/*transform:scale(1.2);*/ /*modify by pekey 20190508*/
					transition: all 0.3s ease-out;
				}			
			
			
		 
		/*右半邊*/
		.tL_right{
			vertical-align: top;
			display: table-cell;
			padding-left: 30px;
			/*padding-bottom: 10px;*/
		}
			/*標題*/
			.tLR_tit{
				font-size:16px;
				line-height:26px;
				color:#5f5f5f;
				line-height: 33px;
			}
				/*.tLR_tit span{
					color:#333;
					word-wrap: break-word;
				}*/


			.tLR_tit2{
				font-size:18px;
				line-height:26px;
				color:#5f5f5f;
				line-height: 180px;
			}
				.tLR_tit span{
					color:#333;
					/*line-height: 36px;*/  /*Judy修改20190325*/ /*modify by pekey 20190508*/
					word-wrap: break-word;
				}
				.tL_right >.tLR_tit:nth-of-type(1) span{
					/* modify by Nick 20190611*/
					color:#0088DD;
					font-size: 20px;
					font-weight: bold;
				}

				.tLR_tit span img{
					padding:0px 3px;
					width:15px;
					height:auto;
					vertical-align:middle;
				}

	.teacher_listBottom{
		/*margin-top: 15px;*/
	}
		.teacher_listBottom .tLR_tit:nth-child(2){
			/* margin-top: 10px; */
			/* padding-top: 10px; */
			/* border-top: 1px #5f5f5f solid; */
		}
			.teacher_listBottom .tLR_tit span{
				display: -webkit-box;
				-webkit-box-orient: vertical;
				-webkit-line-clamp: 1;
				overflow: hidden;
			}





@media (max-width: 1024px){
	.tL_img{
		/*width: 100px;*/
	}	
}

/*@media (max-width: 768px){
	.teacher_list{
		width:100%;
	
	}
	.teacher_list:nth-child(2n+1) , 
	.teacher_list:nth-child(2n){
		float:none;
	}
	
	
}*/


@media (max-width: 640px){

	.teacher_list_in{
		display: inherit;
	}
		
	.tL_img{
		display:block;
		/*width:100%;*/ /*modify by pekey 20190508*/
	}		
	
		.tL_img a{
			/*modify by pekey 20190508*/
			height: auto;
		}			


	/*右半邊*/
	.tL_right{
		display:block;
		margin-top: 20px;
		padding-left: 0px;
	}
	
	.teacher_listBottom .tLR_tit span{
		/*display: -webkit-box;
		-webkit-box-orient: vertical;*/
		-webkit-line-clamp: 5;
		/*overflow: hidden;*/
	}

}











/*系上成員內頁---------------------------*/


.teacher_list.teachLin2{
    float: none;
    margin-bottom: 0px;
}
	
	.teacher_list.teachLin2 .teacher_list_in {
		display: inherit;
		padding-top:20px;
		
		/*modify by pekey 20190515*/
		min-height: 220px;
	}
	
		.teacher_list.teachLin2 .tL_img {
			/*width: 30%;*/ /*modify by pekey 20190515*/ 
			width: 220px;
			display: block;
			/*float: left;*//*modify by pekey 20190515*/ 
			box-sizing: border-box;
			border: 1px #c7c7c7 solid;
			
			
			/*modify by pekey 20190515*/
			position: absolute;
		}
		
		.teacher_list.teachLin2 .tL_right {
			/*width: 65%;*/ /*modify by pekey 20190515*/ 
			width: 100%;
			display: block;
			/*float: right;*//*modify by pekey 20190515*/
			box-sizing: border-box;
			
			/*modify by pekey 20190515*/
			position: relative;
			/*padding-left: 0px;*//*modify by pekey 20190515*/
			padding-left: 240px;
		}

		.teacher_list.teachLin2 .tLR_tit {
			line-height: 35px;
		}




@media (max-width: 768px){

	.teacher_list.teachLin2 .tL_img {
		/*width: 300px;
		float:none;
		margin-bottom:20px;*/ /*modify by pekey 20190515*/
	}
	
	.teacher_list.teachLin2 .tL_right {
		/*width: 100%;
		float:none;*//*modify by pekey 20190515*/
	}

}

@media (max-width: 640px){/*@media (max-width: 510px){*//*modify by pekey 20190515*/

	.teacher_list.teachLin2 .tL_img {
		/*width: 100%;*//*modify by pekey 20190515*/
		width: 70%;
		
		/*modify by pekey 20190515*/
		position: static;
	}
	.teacher_list.teachLin2 .tL_right {
		/*modify by pekey 20190515*/
		padding: 0px;
	}

}
















/*/////////////////////////////////////////////////////////*/
/*-------招生資訊--------*/
/*/////////////////////////////////////////////////////////*/



.academic_list_area{
	/*padding-top:20px;*/ /* modify by Nick 20190611 */
	/*padding-top:65px;*/ /* modify by Woody 20201116 */
	padding-top:20px;
	padding-bottom: 10px;
}
   

                    
	.academic_list{
		/*	border-bottom: dashed 1px #a0a0a0;*/
		padding: 8px 0px;
		position: relative;
	}
	
		.acaLR_time{
			font-size: 14px;
			font-weight: bold;
			color: #595757;
			position: absolute;
			top: 50%;
			right: 0px;
			margin-top: -7px;
		}
		.acaLR_tit{
			/* padding-top:10px; */
			padding-right: 100px;
			overflow: hidden;
			text-overflow:ellipsis;
			white-space: nowrap;
		}
			.acaLR_tit a{
				text-decoration:none;
				color: #036eb8;
				font-size: 17px;
				font-weight: bold;
				line-height: 27px;
				padding: 9px 0px;
				transition: all .2s ease-out;
			}	
				.acaLR_tit a:hover{
					padding-left:20px;
					color: #e50011;
					transition: all .2s ease-out;
				}	






@media (max-width: 640px){

	.academic_list{
		position:static;
	}
	
		.acaLR_time{
			position:static;
			top:auto;
			right:auto;
			margin-top:0px;
			padding:8px 0px 10px;
		}
		.acaLR_tit{
			padding-right: 0px;
			/*overflow: hidden;
			text-overflow:ellipsis;
			white-space: nowrap;*/
		}

}













/*------下載-----------------------*/

/*下載列表*/
.downloadListArea {
/*	padding-top:65px;/* modify by Nick 20190611 */
	padding-top:20px;/* modify by Woody 20201116 */
}
	.downloadList {
		position:relative;
		padding: 15px 5px 15px 5px;
		border-bottom: dashed 1px #a0a0a0;
		/*padding: 15px 120px 15px 5px;*/
	}
	/*.downloadList:nth-of-type(2n+0) {
		background:#f9f9f9;
	}*/
		.downloadList_tit {
			display: inline-block;
			color: #036eb8;
			font-size: 17px;
			font-weight: bold;
			line-height: 27px;
			/*font-size:15px;
			line-height:23px;*/
		}
			.downloadList_tit a {
				display: inline-block;
				color: #036eb8;
				text-decoration:none;
			}		
			.downloadList_tit a:hover {
				opacity:0.5;
			}		
		
		
		.downloadList_time {
			display: inline-block;
			color: #8e8e8e;
			font-size: 14px;
			line-height: 24px;
			font-weight:normal;
		}
		.downloadList_btn {
			position: absolute;
			right: 5px;
			top: 13px;
		}
			.downloadList_btn a {
				text-decoration: none;
				display: block;
				/*background: #0462b5;*/
				background:#e50011;
				color: #fff;
				font-size: 12px;
				border-radius: 3px;
				padding: 4px 8px;
			}
				.downloadList_btn i {
					vertical-align: middle;
					font-size: 20px;
				}
					/*hover*/
					.downloadList_btn a:hover {
						opacity:0.7;
					}	














/*/////////////////////////////////////////////////////////*/
/*-------修業規定--------*/
/*/////////////////////////////////////////////////////////*/

/*年度選擇-----------------*/
.regulation_year{
	/*padding:10px 0px 5px;*/
	position: absolute;
    right: 0px;
    /*top: 33px;*/ /*modify by pekey 20190515*/
	top: 16px;
}
	
	.regulation_year select{
		width:150px;
	
			
		/*modify by Mita 20190510*/  
		text-align: center;   
		text-align-last: center; 
	}


@media (max-width: 425px){

	.regulation_year select{
		width:100%;
	}
	
}









/*/////////////////////////////////////////////////////////*/
/*-------研究實驗室--------*/
/*/////////////////////////////////////////////////////////*/


.left.left2{
	position:static;
	/*padding-bottom: 0px;*/
}
	
	.left.left2 .leftList_tit{
		padding-bottom: 0px;
	}
	
	.left.left2 .leftListArea{
		display:none;
	}




/*研究實驗室列表*/
/*.academic_list_area{
}*/
	.academic_list_area .teacher_list_in {
		margin-bottom: 0px; 
	}

.academic_list_area .teacher_list{
	width:33%;
	padding:0px 10px;
	display:inline-block;
	vertical-align:top;
	box-sizing:border-box;
}


/*.academic_list_area .teacher_list:nth-child(2n+1){
	float:left;
}
.academic_list_area .teacher_list:nth-child(2n){
	float:right;
}*/

.academic_list_area .tL_img {
    width: 50px;
}
	.academic_list_area .tL_img a{
		/*modify by pekey 20190508*/
		height: inherit;
		border: 0px;
	}

.academic_list_area .tL_right {
    vertical-align: middle;
}




@media (max-width: 1130px){
	.academic_list_area .teacher_list{
		width:32%;
	}
}

@media (max-width: 768px){
	.academic_list_area .teacher_list{
		width:48%;
	}
}



@media (max-width: 425px){

	.academic_list_area .teacher_list{
		width:100%;
		padding:0px;
		/*box-sizing:border-box;*/
	}
	.academic_list_area .teacher_list_in {
		text-align: center;
	}	
		.academic_list_area .tL_img {
			display: inline-block;
		}	
		.academic_list_area .teacher_list:nth-child(2n+1) ,
		.academic_list_area .teacher_list:nth-child(2n){
			float:none;
		}

}









/*/////////////////////////////////////////////////////////*/
/*-------實習徵才公告--------*/
/*/////////////////////////////////////////////////////////*/



.btn_area.Recruit_btn{
	/* text-align: right; */
	/* padding: 10px 0px 20px; */
	padding: 0px;
	position: absolute;
	/*bottom: 8px;*/ /*modify by pekey 20190613*/
	top: 16px;
	right: 0px;
}
	.btn_area.Recruit_btn input{
		margin: 0px;
		width: 100px;
		height: 30px;
		line-height: 30px;
	}

/*實習徵才公告區*/
.RecruitArea{
}
						
	/*實習徵才公告列表*/
	.RecruitList{
		border-bottom: dashed 1px #a0a0a0;
   		padding: 20px 0px;
	}                    
		/*職稱*/
		.JobTit{
			font-size: 19px;
			line-height: 30px;
			font-weight:bolder;
			color: #41a4dc;
			padding-bottom: 5px;
		}
									

		/*工作內容與技能需求*/
		.skill_remark{
			color: #8e8e8e;
			font-size: 15px;
			line-height: 20px;
			padding-bottom: 5px;
		}
									
		/*待遇*/                
		.salary{
			color: #8e8e8e;
			font-size:14px;
			line-height:24px;
			padding-bottom: 10px;
		}
		
		
		.RecruitLBottom{
			/*padding-bottom: 10px;*/
		}
		
		/*企業名稱*/                 
		.EnterpriseTit{
			float:left;
			box-sizing:border-box;
			font-size: 16px;
			line-height: 26px;
			color: #036eb8;
			padding-right:13px;
		}
					
		
		/*聯絡人與聯絡方式*/                  
		.JobContact{
			float:left;
			box-sizing:border-box;			
			font-size: 15px;
			line-height: 25px;
			color: #036eb8;
		}


@media (max-width: 425px){
	
	.btn_area.Recruit_btn {
		bottom: -52px;
		right: auto;
	}	
	
		.RecruitArea {
			padding-top:50px;
		}
			.EnterpriseTit {
				float:none;
				padding-right: 0px;
				padding-bottom:10px;
			}
			.JobContact {
				float:none;
			}
	
}







/*/////////////////////////////////////////////////////////*/
/*-------表格區--------*/
/*/////////////////////////////////////////////////////////*/




	.cart_product_list_area table {
		width:100%;
		margin:0 auto;
		border-radius: 3px;
		overflow: hidden;
	}
		.cart_product_list_area tr {
		}
			.cart_product_list_area td {
				text-align:center;
				vertical-align:middle;
				font-size:15px;
				line-height: 24px;
				color:#333;
				padding:10px 15px;
				box-sizing:border-box;
				border-bottom: solid 1px #bebebe;
				border-right: solid 1px #bebebe;
				background: #f4f4f4;
			}
				/*商品名稱*/
				.cPL_product {
					font-size:0px;
					min-height:72px;
					text-align:left;
					font-size:15px;
					position:relative;
				}
					/*加購品標籤*/
					.cPLP_label {
						position: absolute;
						top: 0px;
						left: 0px;
						font-size: 12px;
						color: #fff;
						background: #333;
						line-height: 20px;
						z-index: 1;
						padding: 0px 10px;
					}
					
					.cPL_product a {
						color:#000;
						text-decoration:none;
						display:inline-block;
						vertical-align:middle;
						min-height:74px;
					}
						.cPL_product img {
							/*width:72px;*/
							width:100px;   /*修改by pekey 20170608*/
							border: solid 1px #dfdede;
							position:absolute;
							background:#fff;
						}
					.cPL_product_tit {
						padding:0px 0px 0px 115px;
						display:inline-block;
						vertical-align:middle;
						width: 96.5%;
						box-sizing: border-box;
					}
				
				/*商品規格*/
				.specification {
					text-align:left;
					font-size: 14px;
					line-height: 22px;
					padding: 6px 0px 0px;
					color: #226484;
				}
				
				.cart_product_list_area table input {
					height:40px;
					line-height:40px;
					margin:4px 0px;
				}
					.cart_product_list_area table input[type='text'] {
						width:66px;
						border: solid 1px #e7e7e7;
						text-align:right;
					}
					.cart_product_list_area table input[type='button'] {
						border-radius: 3px;
						font-weight: bold;
						width: auto;
						padding: 0px 8px;
						box-sizing: border-box;
						background: #969696;
						line-height: 28px;
						height: 28px;
						background: #FFFFFF;
						border: solid 1px #c4c4c4;
						color: #333;
					}
					.cart_product_list_area table input[type='button'].remittance_btn {
						width: auto;
						padding: 0px 12px;
						background: #BF4848;
						color:#fff;
					}					
						
		/*第一組tr*/
		.cart_product_list_area tr:first-of-type td {
			border-top: solid 1px #bebebe;
			/*padding: 5px;*/  /*修改 by pekey 20170608*/
			/*background-color:#e5e5e5;*/  /*修改 by pekey 20170608*/
		}
		/*第三組tr*/
		.cart_product_list_area tr:nth-of-type(3) td {
			/*background-color:#e5e5e5;	*/
		}
		
		
		/*第一個td*/
		.cart_product_list_area td:first-of-type {
			/*width:40%;*/
			width:20%;
			border-left: solid 1px #bebebe;
		}
			td.cPL_twoBtn {
				padding: 5px 0px;
			}
		
		/*2進位的tr*/
		.cart_product_list_area tr:nth-of-type(2n+0) td {
			background:#fff;
		}
		
		/*折抵列*/
		.cart_product_list table {
			background: #e0e0e0;
			border-radius: 3px;
			border: 1px solid #bebebe;
			font-size: 14px;
			line-height: 25px;
			font-weight:bold;
		}
			.cart_product_list table input[type=text] {
				/*height: 22px;
				line-height: 22px;*/
				
				/*修改by pekey 201741012*/
				height: 42px;
				line-height: 42px;	
				
				width: 62%;
			}
			.cart_product_list.single_row {
				/*padding: 20px 15px 5px;*/
				padding: 20px 0px 5px;
			}
				.cart_product_list td {
					background: #f4f4f4;
					padding: 15px 5px;
					box-sizing: border-box;
					vertical-align: middle;
				}
				.cart_product_list td:nth-of-type(2),.cart_product_list td:nth-of-type(4) {
					color:#de494a;
				}
				
				.cart_product_list td:first-of-type,.cart_product_list td:nth-of-type(3) {
					background: #e5e5e5;
				}
					.c_p_l_del_btn.update {
						background: #de484d;
						background-size: 100%;
						/* font-weight: 100; */
						width: 42px;
					}
						input[type=button].c_p_l_del_btn {
							font-size: 14px;
							font-weight: 700;

							color: #fff;
							/*width: 35px;
							height: 22px;
							line-height: 22px;*/
							
							/*修改by pekey 20171012*/
							width:42px;
							height:32px;
							line-height:32px;
							
							
							border-radius: 3px;
						}
						
						
						




















/*/////////////////////////////////////////////////////////*/
/*-------得獎專區--------*/
/*/////////////////////////////////////////////////////////*/

/*.winning_area{
	margin:0px -15px -20px;
}
						
	.winning_list{
		float:left;
		padding:0px 15px 20px;
		box-sizing:border-box;
		width:25%;
	}
		.winning_list a{
			text-decoration: none;
		}
		
			.winning_IMG{
				margin-bottom:5px;
				overflow:hidden;
			}
				.winning_IMG img{
					width:100%;
					height:auto;
					transition: all .2s ease-out;
				}
				
			.winning_tit{
				color: #036eb8;
				font-size: 17px;
				font-weight: bold;
				line-height: 27px;
				padding: 9px 0px;
				transition: all .2s ease-out;
				
				overflow: hidden;
				text-overflow:ellipsis;
				white-space: nowrap;
			}

		.winning_list a:hover .winning_IMG img{
			opacity:0.5;
			transform:scale(1.1);
			transition: all .2s ease-out;
		}
		.winning_list a:hover .winning_tit{
			color:#e50011;
		}



@media (max-width: 768px){

	.winning_list{
		width:50%;
	}
	
}


@media (max-width: 425px){
	.winning_area{
		margin:0px 0px -20px;

	}
	
		.winning_list{
			width:100%;
			padding:0px 0px 20px;
		}
}*/




/*modify by pekey 20190508*/
.page_search{
	padding: 40px 0px 0px;
}


/*banner*/
.banner_list{
	position: relative;
}
	.banner_listImg{
		position: relative;
		width: 100%;
		height: 645px;
		background-position: right center;
		background-repeat: no-repeat;
		background-size: cover;
	}
	.banner_listIn{
		position: absolute;
		left: 7%;
		top: 35%;
		width: 38%;
		height: 528px;
		box-sizing: border-box;
	}
		.banner_listTit{
			font-weight: bold;
			font-size: 32px;
			line-height: 42px;
			color: yellow;
		}
		.banner_listText{
			font-size: 20px;
			line-height: 36px;
			color: #fff;
			padding-top: 15px;
			
			display: -webkit-box;
			overflow: hidden;
			text-overflow: ellipsis;
			-webkit-text-overflow: ellipsis;
			-webkit-line-clamp: 3;
			-webkit-box-orient: vertical;
		}
		.banner_listMore{
			padding-top: 15px;
		}
			.banner_listMore a{
				font-size: 20px;
				line-height: 26px;
				color: #fff;
				text-decoration: underline;
				font-style: italic;
			}

@media (max-width: 1600px){
		
	.banner_listImg{
		position: relative;
		background-position: right center;
		background-repeat: no-repeat;
		height: 600px;
		background-size: cover;
	}
}

@media (max-width: 1440px){
	
	.banner_listIn{
		width: 42%;
	}
}

@media (max-width: 1360px){
	
	.banner_listIn{
		width: 45%;
		top: 33%;
	}
}

@media (max-width: 1280px){
	
	.banner_listIn{
		width: 35%;
		top: 30%;
	}
}

@media (max-width: 768px){
		
	.banner_listImg{
		position: static;
		height: 350px;
	}
	.banner_listIn{
		position: static;
		left: inherit;
		top: inherit;
		width: 100%;
		height: auto;
		background-color: #5A5A5A;
    	min-height: 180px;
		padding: 20px 20px 15px;
	}
		.banner_listTit{
			font-size: 24px;
			line-height: 30px;
			/*color: #fff;*/ /*modify by Mita 20190510*/
		}
		.banner_listText{
			font-size: 16px;
			line-height: 22px;
			color: #fff;
			-webkit-line-clamp: unset;
		}
		.banner_listMore{
		}
			.banner_listMore a{
				font-size: 16px;
				line-height: 22px;
			}
}




/*平板版*/
/*---------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------*/
@media (min-width: 541px) and  (max-width: 950px){
}


/*手機版*/
/*---------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------*/
@media (max-width: 540px){
}
