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

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

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

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

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

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

.clearfloat { /* 這個類別可放置在 <br /> 或空白的 Div 上，當做接在 #container 內最後一個浮動 Div 後方的最後一個元素 (如果從 #container 移除或取出 #footer) */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
a{ 
	/*color:#ccc;*//*修改部分 by kevin 20140814 會影響到網編區 不宜使用*/
	text-decoration: none;
	outline: none;/* for Firefox Google Chrome  *//*讓a點擊時不會出現框線*/
  	behavior:expression(this.onFocus=this.blur());  /* for IE *//*讓a點擊時不會出現框線*/
}
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:#333;
	font-family:微軟正黑體;
	text-align:center;
}
/*-------------------------------------loading畫面 結束---------------------------------*/


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

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

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

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

}

@media (max-width: 767px){
	.wrap {
		width: auto;
		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: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.7;
	}
	
	input[type="reset"] {
		background:#555;
	}
	
input[type="radio"], input[type="checkbox"] {
	margin:0px;
	padding:0px;
	outline:none;
	vertical-align: baseline;
	cursor:pointer;
}
textarea {
	margin: 0;
    padding: 0;
    outline: none;
    vertical-align: middle;
    line-height: 24px;
    width: 100%;
    resize: none;
    height: 117px;
    transition: 0.2s ease all;
    box-sizing: border-box;
    padding: 3px;
}
	textarea:focus {
		border: solid 1px #d5d5d5;
	}
	
select {
	margin:0;
	padding:0;
	outline:none;
	vertical-align: middle;
	padding: 9px 0px 10px 7px;
	transition: 0.2s ease all;
	background:#fff;
	letter-spacing:1px;
	-webkit-appearance: none;	/* Safari 和 Chrome */
       -moz-appearance: none;	/* Firefox */
        -ms-appearance: none;	/*for Internet Explorer*/
         -o-appearance: none;	/*for Opera*/
            appearance: none;
	background: #fff url(../images/select_arrow.png) no-repeat;
	background-size: 13px;
	background-position:right;
	padding-right:18px !important;
}
	select::-ms-expand {	/*for Internet Explorer*/
		display: none;
	}
	select:focus {
		border: solid 1px #d5d5d5;
	}
	
label {
	cursor:pointer;
}
	

/*-------輪播----------------------------------------------------------------------------*/
.banner {
	background:#fff;
	position:relative;
}
	.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;
				}
				.pcBanner2 {
				}
				.mobileBanner {
					display:none;
				}
				
					
@media (max-width: 1023px){
	.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: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:#de484d;
			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 {
	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 #3d3d3d 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: 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: 2px 2px;
		font-size: 14px;
		display: inline-block;
		/* margin: 9px 0px 7px; */
		line-height: 29px;
		text-decoration:none;
	}
		.captcha a:hover {
		}
	.captcha img {
		vertical-align:middle;
		width: 25px;
		height: auto;
	}
	.captcha img.captchaImg{
		width: 80px;
		height: auto;
	}

	.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: 1023px){
		.form_area_bg {
			padding:0px;
		}
	}
	
	/*表單區備註*/
	.form_remark {
		text-align:center;
		font-size:15px;
		line-height:22px;
		padding:10px 0px 5px 0px;
	}
		/*必填icon*/
		.requirde_icon {
			display:inline-block;
			border-radius:3px;
			font-size:12px;
			color:#fff;
			background:#c13e42;
			line-height:18px;
			padding:0px 5px;
		}

	/*表單區*/
	.form_area {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
	}
		/*表單區左*/
		/* .form_left {
			width:48%;
			float:left;
		} */
		/*表單區右*/
		/* .form_right {
			width:48%;
			float:right;
		} */
			.form_list {
				width: 49%;
				font-size:15px;
				line-height:21px;
				/* border-bottom: dotted 1px #0f0f0f; */
				padding:12px 0px 0px 0px;
			}
				.fL_tit {
					font-weight:bold;
					padding:3px 0px 6px 0px;
					position:relative;
				}
					/*必填icon*/
					.fL_tit .requirde_icon {
						position:absolute;
						right:0px;
					}
					


				.fL_info {
					padding:0px 0px 9px 0px;
					padding:0px 0px 17px 0px;
				}
					/*沒有輸入框時*/
					.fL_info.no_input {
						padding: 10px 0px 25px 0px;
    					line-height: 24px;
					}
					
					.fL_info label {
						display:inline-block;
					}
					
					/*地址樣式*/
					.fL_info.address select {
						margin:0px 5px 0px 0px;
					}
					.fL_info.address input[type='text']:nth-of-type(1) {
						width:97px;
					}
					.fL_info.address input[type='text']:last-of-type {
						margin:12px 0px 0px 0px;
					}
					
					/*生日樣式*/
					.fL_info.birthday {
					}
						.fL_info.birthday select {
							margin:0px 0px 0px 0px;
						}
						@media (max-width: 990px){
							/*表單區左*//*表單區右*/
							.form_left, .form_right {
								float:none;
								width:auto;
							}
							.form_list {
								width: 100%;
							}
								/*沒有輸入框時*/
								.fL_info.no_input {
									padding: 0px 0px 5px 0px;
								}
								.fL_info label {
									padding: 6px 0px;
								}
						}
							@media (max-width: 575px){
								.cart_big_tit span.red {
									padding:0px;
								}
							}
								@media (max-width: 500px){
									.cBT_checkbox {
										display: block;
										padding: 5px 0px 0px 0px;
									}
									.receiving_record {
										padding:0px;
									}
								}
									@media (max-width: 320px){
										/*生日樣式*/
										.fL_info.birthday {
											letter-spacing: 0px;
											white-space: nowrap;
											font-size: 12px;
										}
									}
			.contact select{
				width: 100%;
			}

			.form_list_remark {
				font-size: 15px;
				line-height: 21px;
				color: #c13e42;
				padding: 12px 0px 0px 0px;
			}

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





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

.main{
	/*padding-top: 90px;*/
}

/*首頁內容區塊*/	
.mainContent{
	padding: 25px 0px;
}

	
@media (max-width: 1023px){
	
	.main {
		padding-top: 58px;
	}	
}














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



.main.page{
	padding-top: 112px;
}
	
	/*內頁banner*/
	.inbanner{
		background-repeat: no-repeat;
		background-position: top right 180px;
		height: 320px;
		background-color: #f8f8f8;
		position: relative;
	}

	
		/*內頁banner標題*/
		.inbannerTit {
			font-size: 48px;
			line-height: 56px;
			color: #e76221;
			text-align: center;
			font-weight: bolder;
			letter-spacing: 15px;
		}
	
			.titArea {
				vertical-align: middle;
				position: absolute;
				margin: 0 auto;
				top: 50%;
				left: 50%;
				-webkit-transform: translateX(-50%) translateY(-50%);
				transform: translateX(-50%) translateY(-50%);
			}
			.titArea 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;
			}


	
	/*上方區塊*/
	.pageContent_topArea{
		padding: 25px 0px;
		/*border-bottom: 1px solid #e3e3e3;*/
	}
		
		/*麵包屑*/
		.crumb_bg{
			color: #777777;
			font-size: 14px;
			float: left;
			/*padding: 13px 0px 0px;*/
		}
			.crumb_area{
				
			}
				.crumb_area i{
					display: inline-block;
					vertical-align: middle;
					font-size: 18px;
				}
				.crumb_area i:nth-of-type(1){
					color: #e76221;
				}
				.crumb_area a{
					text-decoration: none;
					display: inline-block;
					vertical-align: middle;
					color: #e76221;
					font-size: 14px;
					line-height: 22px;
					transition: 0.3s ease all;
				}
				/*hover*/
				.crumb_area a:hover{
					color: #252525;
					transition: 0.3s ease all;
				}
				
				.crumb_area span{
					display: inline-block;
					vertical-align: middle;
					font-size: 14px;
					margin-right: -1px;
					line-height: 22px;
				}	
	
	
	
/*內頁內容區塊*/
.pageContent{
	padding: 0 0 50px;
	position: relative;
}

@media (max-width: 1023px){
	
	.main.page {
		padding-top: 45px;
	}	
	
		/*內頁內容區塊*/
		.pageContent{
			padding: 0;
		}
			.inbanner {
				height: 120px;
			}
				.inbannerTit {
					font-size: 24px;
					line-height: 30px;
					letter-spacing: 5px;
				}
		
}

	



	


/* 內容區 */
.pageContentIn{
	padding: 35px 0;
}





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

	.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: 35px;
    line-height: 35px;
    color: #2e282a;
    font-weight: bolder;
    text-align: center;
    padding: 50px 0;
}
	.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 {
		color: #e76120;
		font-size: 16px;
		font-family: 'Raleway', sans-serif;
		font-weight: normal;
		display: block;
		margin-bottom: 15px;
	}





/*內頁標題樣式3-----------------------------------------*/
.titStyle3{
	font-size: 25px;
    line-height: 35px;
	color:#135065;
	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;
	}





			
/*按鈕---------------------*/
.btn_area {
	text-align:center;
	margin:40px 0px 0px;
}
	.btn_area input{
		margin:0px 10px;
		/*width:49%;*/
	}
	.btn_area input:nth-child(2n+1) {
		background: #fff0;
		color: #231815;
		border: 1px solid #231815;
	}	
	.btn_area input:nth-child(2n) {
		background:#231815;
		color: #fff;
		border: 1px solid #231815;
	}	
			





@media (max-width: 990px){

	/*內頁標題樣式1-----------------------------------------*/
	.titStyle1{
		font-size: 25px;
		line-height: 30px;
		padding: 20px 0;
	}
	/*內頁標題樣式2-----------------------------------------*/
	.titStyle2{
		font-size: 25px;
		line-height: 30px;
		padding: 20px 0;
	}
}












/*左側*/
.left{
	box-sizing: border-box;
	/*float: left;*/
	/* width: 225px;
	position: absolute;
	z-index: 2;
	display: none; */
}
			
	/*左側標題*/
	.left_title{
		font-size: 20px;
		letter-spacing: -1px;
		background-color: #aeaeae;
		color: #fff;
    	padding: 13px 10px 10px;		
	}
		.left_title span{
			font-size: 15px; 
			color: #fff;
			padding-top: 10px;
			letter-spacing: 1px;
			display: block;
			font-weight: normal;
		}
	
	/*左側選單列表*/
	.leftListArea{
		/*background-color: #fcfcfc;*/
	}
		.leftList{
			font-size:18px;
		}
			.leftList > a{
				display:block;
				/*padding: 13px 45px 13px 35px;*/
				padding: 13px 45px 11px 10px;
				text-decoration:none;
				color:#000;
				position: relative;
				font-size: 15px;
				line-height: 22px;
				word-break: break-word;
				
				border-bottom: 1px dashed #cecece;
			}
				
			.leftList.active > a{
				background-color: #ececec;
			}
			.leftList:hover > a{
				background-color:#ececec;
			}
				
				/*代表性標誌*/
				/*.leftList_icon.first{
					position: absolute;
					left: 10px;
					top: 16px;
				}*/
					.leftList_icon i{
						font-size: 19px;
						line-height: 14px;
						color: #777;
					}
				
				/*功能名稱*/	
				.leftList_title{
					display: inline-block;
					vertical-align: bottom;
				}
				
				/*方向標誌*/
				.leftList_icon.direction{
					position: absolute;
					right: 10px;
					top: 16px;
				}
					/*方向標誌_向下展開*/
					.leftList_icon.direction i.down{
						display: block;
					}
					/*方向標誌_向上收合*/
					.leftList_icon.direction i.up{
						display: none;
					}
					
					
				/*active*/ /*方向標誌_向下展開*/
				.leftList.active .leftList_icon.direction i.down{
					display: none;
				}
				/*active*/ /*方向標誌_向上收合*/
				.leftList.active .leftList_icon.direction i.up{
					display: block;
				}
				
				
				
			
			/*左側選單列表第二層*/
			.leftList_open{
				display: none;
			}
			.leftList_open.active{
				display:block;
			}
				.leftList_open_list{
				}
					.leftList_open_list a {
						display: block;
						transition: 0.3s ease all;
						color: #999;
						/*padding: 13px 35px;*/
						padding: 13px 10px 11px 25px;
						font-size: 15px;
						line-height: 22px;
						font-weight:normal;
						word-break: break-word;
						border-bottom: 1px dashed #cecece;
					}
					.leftList_open_list.active a {
						color: #e76221;
					}
					.leftList_open_list a:hover {
						color: #e76221;
						text-decoration:none;
					}

/*右側*/
.right{
	/*float: right;*/
	box-sizing:border-box;
	/*width: 75%;*/
	position: relative;
	width: 100%;
	padding-left: 300px;
}


/*無左側選單*/
.right.no_left{
	float: none;
	width: 100%;
	padding-left: 0;
}

	.right_title{
		font-size: 30px;
		line-height: 40px;
		color: #2e282a;
		font-weight: bolder;
	}

	
	
	/*右側內容區塊*/
	.right_contentBg{	
		/*padding-top: 25px;*/
		padding-top: 20px;
	}
	
	
		/*網編區塊*/
		.text_area{
			font-size: 16px;
			color: #000;
			line-height:normal;
		}
			.text_area img{
				max-width: 100%;
				height: auto;
			}		

/*內頁上方選單*/
.rightTopArea{
	display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-start;
	margin: 0px -5px 20px;
	display: none;
}
	.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: #e76221;
    		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;
		} 		
	
@media (max-width: 1023px){

/*內頁上方選單*/
.rightTopArea{
	display:none;
}
	
.container{
	display: block;
    flex-direction: unset;
    flex-wrap: unset;
    justify-content: unset;
}

	/*左側*/
	.left{
		display:block;
		width:100%;
		min-width:inherit;
		margin-bottom: 50px;
	}
	
		/*左側表單名稱*/
		.leftList_tit{
			border: 1px #dbdbdb solid;
			position:relative;
			cursor:pointer;
			padding: 10px;
		}
		.leftList_tit:after {
			position: absolute;
			content: '';
			top: 16px;
			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;
		}
		
		/*左側表單*/
		.leftListArea{
			display:none;
			/*background: #f7f7f7;*/
			margin: 0px 0px 0px;
		}
	
		
		.leftListArea.show {
			display: block;
		}
	
	/*右側*/
	.right{
		width:100%;
		padding-left:0px;
	}
	

}


@media (max-width: 767px){

	/*左側*/
	.left{
		width:100%;
		margin-bottom: 10px;
		position: static;
	}
	
		/*左側表單名稱*/
		.left_title {
			position: relative;
			cursor: pointer;
			background-color: #fff;
			padding: 6px 50px 13px 15px;
			font-size: 17px;
			letter-spacing: 1px;
			color: #000;
			border: 1px solid #777;
		}
			.left_title span{
				display:inline-block;
				font-size: 13px;	
				color: #000;
			}
			
			.left_title:after {
				content: '';
				position: absolute;
				border-left: solid 6px rgba(255,255,255,0);
				border-right: solid 6px rgba(255,255,255,0);
				border-bottom: solid 6px rgba(255,255,255,0);
				border-top: solid 10px #777;
				top: 19px;
				right: 15px;
			}
			
		
		/*左側表單*/
		.leftListArea{
			display:none;
			background: #fcfcfc;
			border: 1px #dbdbdb solid;
		}
		
			.leftList > a{
				padding: 13px 45px 11px 15px;
			}
				
				/*方向標誌*/
				.leftList_icon.direction{
					right: 11px;
				}
				
				.leftList_open_list a{
					padding: 13px 45px 11px 30px;
				}
	
	/*右側*/
	.right{
		width:100%;
		position: static;
		padding: 35px 0px;
	}
	
	
}









/*/////////////////////////////////////////////////////////*/
/*-------首頁輪播效果--------*/
/*/////////////////////////////////////////////////////////*/



.wrapper {
	height: 100% !important;
	height: 100%;
	margin: 0 auto; 
	overflow: hidden;
}
.main section .page_container {
  position: relative;
  top: 32%;
  margin: 0 auto 0;
  max-width: 1200px;
  z-index: 3;
  padding: 0 15px;
}

.main section {
	overflow: hidden;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.onepage-wrapper .ops-section:before {
    position:absolute;
	content:'';
	background-color: rgb(0 0 0 / 0.2);
	width:100%;
	height:100%;
	top:0;
	left:0;
	z-index: 0;
}


body.disabled-onepage-scroll .onepage-wrapper  section {
  min-height: 100%;
  height: auto;
}
    
    
	.bannertextArea {
		/*text-shadow: rgb(255, 255, 255) 0px 0px 10px;*/
		text-shadow: rgb(0 0 0 / 0.2) 0px 10px 30px;
	}
		/*標題*/
		.bannertextArea .title {
			font-size: 65px;
			line-height: 72px;
			color: #fff;
			font-weight: bold;
			text-shadow:3px 3px 3px rgba(0,0,0,0.5);
		}
		
		/*簡述*/
		.bannertextArea .text {
			font-size: 18px;
			line-height: 26px;
			color: #f7f7f7;
			/* color: rgba(255,255,255,0.7); */
			padding: 20px 0 0;
			font-weight: bold;
			text-shadow:2px 2px 2px rgba(0,0,0,0.5);
		}
		
		/*按鈕*/
		.bannertextArea .button {
			border-radius: 10px;
			border-color: #e76221;
			background-color: #e76221;
			display: inline-block;
			margin: 20px 0 0;
		}
		.bannertextArea .button:hover {
			margin: 17px 0 0;
			transition: 0.3s ease all;
		}
			.bannertextArea .button a{
				color: #ffffff;
				font-size: 14px;
				text-decoration: none;
				display: block;
				padding: 20px 25px;
			}


@media (max-width: 767px){
	
		/*標題*/
		.bannertextArea .title {
			font-size: 40px;
			line-height: 50px;
		}
		
		/*簡述*/
		.bannertextArea .text {
			font-size: 18px;
			line-height: 26px;
			padding: 20px 0 0;
		}
}



















/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*關於合碩*/
/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/	



.AboutBg{
	padding: 35px 0;
}







/*///////////////////////////////////*/
/*認識合碩大區塊*/
/*///////////////////////////////////*/	
	
.AboutBg.understandBg{
	background-color: #fff;
}

.understandArea{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0 -30px 0px;
}

	/* 認識合碩左側 */
	.understandL{
		box-sizing: border-box;
		width: 40%;
		padding: 0 30px;
	}



	/* 認識合碩右側 */
	.understandR{
		box-sizing: border-box;
		width: 60%;
		padding: 0 30px;
	}



/*認識合碩_收合列表-------------------------*/

.understandRqLArea {
	/* margin: 20px 0px 0px; */
}
.understandRqLArea:first-of-type {
	/* padding-top:6px; */
}
	.understand_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;
	}
		.understand_list_tit {
			position:relative;
			/*font-weight:bold;*/
			padding: 15px 50px;
			cursor:pointer;
		}
		.understand_list_tit.show {
			background: rgb(231 98 33 / 0.2);
			/* color: #fff;*/
		}
			
		.understand_list_text {
			position:relative;
			transition:0.3s ease all;
			display: none;
			/* opacity:0;
			height:0px; */
			box-sizing:border-box;
		}
		.understand_list_text img {
			max-width:100%;
			height:auto;
		}		
		
		.understand_list_tit:before, .understand_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;
		}
		.understand_list_tit:before {
			/* content: '?'; */
		}
		.understand_list_text:before {
			/* content: '!';
			background: #e76221;
			top: 15px;
			-webkit-transform: unset;
			transform:unset; */
		}
		
		.understand_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;
		}
		.understand_list_tit.show:after {
			/*content: '-';*/
			background-image:url(../images/x.png);
			background-repeat:no-repeat;
		}

				/*展開*/
				.understand_list_text.show {
					display: block;
					/* opacity:1;
					height:auto; */
					padding: 9px 50px;
				}

				


@media (max-width: 990px){


	.understandArea{
		display:block;
		flex-direction: unset;
		flex-wrap: unset;
		margin: 0 0px 0px;
	}
	
		/* 認識合碩左側 */
		.understandL{
			width: 100%;
			padding: 0 0px;
		}
	
	
	
		/* 認識合碩右側 */
		.understandR{
			margin: 15px 0 0;
			width: 100%;
			padding: 0 0px;
		}	
}





















/*///////////////////////////////////*/
/*合碩合作客戶大區塊*/
/*///////////////////////////////////*/	
	
.AboutBg.PartnerBg{
	 background-color: #fff; 
}

.PartnerArea{
}






/*/////////////////////////////////////////////////////////*/
/*-------合碩合作輪播--------*/
/*/////////////////////////////////////////////////////////*/


.PartnerBottomArea{
	padding: 5px 0 50px;
}

	.Partner_text {
		position: relative;
		font-size: 16px;
		color: #000;
		line-height: 26px;
		text-align: center;
		padding-bottom: 20px;
		margin: -20px 0 50px;
	}
	.Partner_text:before {
		content: '';
		position: absolute;
		bottom:0%;
		left: 50%;
		background-color: #818179;
		width: 30%;
		height: 1px;
		-webkit-transform: translateX(-50%) translateY(0%);
		transform: translateX(-50%) translateY(0%);
	}



		.PartnerBottomArea  .swiper-button-prev.swiper-button-prev_partner {
			left: 0px;
			width: 30px;
			height: 30px;
			background-size: 30px;
		}
		.PartnerBottomArea  .swiper-button-next.swiper-button-next_partner{
			right: 0px;
			width: 30px;
			height: 30px;
			background-size: 30px;
		}
		.PartnerBottomArea  .swiper-button-next_partner img ,
		.PartnerBottomArea  .swiper-button-prev_partner img {
			width: 35px;
			height: auto;
		}



		.PartnerList{	
			padding: 0 20px;
		}
			.PartnerList a{	
				display: block;
				text-decoration: none;
			}

				/* 首頁_應用圖 */
				.PartnerImg{	
				}
					.PartnerImg img{	
						width: 100%;
						height: auto;
					}

				/* 首頁_應用標題 */
				.PartnerTit{
					font-size: 20px;
					line-height: 22px;
					color:#484a49;
					text-align: center;
					margin-top: 20px;
					/* overflow: hidden; 
					text-overflow:ellipsis; 
					white-space: nowrap; */
				}
				.PartnerList:hover .PartnerTit{
					opacity:0.5;
					transition: 0.3s ease all;
				}

@media (max-width: 990px){

	.PartnerList{	
		padding: 0 0px;
	}

		.PartnerTit {
			font-size: 15px;
			line-height: 20px;
			margin-top: 10px;
		}

}





















/*///////////////////////////////////*/
/*公司研發能量大區塊*/
/*///////////////////////////////////*/	
	
.RD_Bg{
	/*background-color: #fff;*/
	background-color:#fff0;
}

/*首頁RDenergybanner----------------------*/
.RDenergybanner {
	box-sizing:border-box;
	/*width:75%;
	background:#fff;*/
	background: #fff0;
	position:relative;
}
	.RDenergybanner .device {
		position:relative;
		overflow:hidden;
	}
		/*左右鍵*/
		.RDenergybanner .device .arrow-left, 
        .RDenergybanner .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;
		}
		
			/*左鍵*/
			.RDenergybanner .device .arrow-left {
				left:-20px;
			}
			
			/*右鍵*/
			.device .arrow-right {
				right:-20px;
			}
				.RDenergybanner .device:hover .arrow-left {
					opacity:1;
					left:20px;
				}
				.RDenergybanner .device:hover .arrow-right {
					opacity:1;
					right:20px;
				}
		
		/*輪播區*/
		.RDenergybanner .swiper-container {
			height:auto;
			padding: 0px 0 30px;
		}
			.RDenergybanner .swiper-wrapper {
			}
				.RDenergybanner .swiper-slide {
				}
					.RDenergybanner .swiper-slide img {
						width: 100%;
						height: auto;
						/* max-width: 98%;
						margin: 0 auto; */
					}


		.RDenergyImg{
			padding: 0 5px;
		}
		
		/*輪播點點*/
		.RDenergybanner .pagination {
		  position: absolute;
		  z-index: 1;
		  bottom: 0px;
		  /* bottom: -39px; */
		  width: 100%;
		  text-align: center;
		}
			.RDenergybanner .swiper-pagination-switch {
			  display: inline-block;
			  width: 20px;
			  height: 20px;
			  border-radius: 5px;
			  background: #edbdb4;
			  margin: 0 7px;
			  cursor: pointer;
			}
			.RDenergybanner .swiper-active-switch {/*輪播點點當前模式*/
			  background: #c42605;
			}
				/*客制區塊*/
				.RDenergybanner .swiper-slide {
					position:relative;
				}

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

			.mobileRDenergybanner{
				display: none;
			} */

				

				









/*///////////////////////////////////*/
/*公司核心技術大區塊*/
/*///////////////////////////////////*/	
	
.CoreTechnologyBg{
	/* background-color: #fff; */
}

	.CoreTechnologyArea{
		position: relative;
	}
	.CoreTechnologyArea:before{
		position: absolute;
		content: '';
		/* border-radius: 50%;
		border: 1px solid #e76322; */
		width: 1px;
		height: 100%;
		top: 0;
		left: 50%;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
		/* background-color:#818179; */
		/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#818179+0,818179+5,818179+50,818179+95,818179+100&0+1,1+2,1+98,0+99 */
background: -moz-linear-gradient(top,  rgba(129,129,121,0) 0%, rgba(129,129,121,0) 1%, rgba(129,129,121,1) 2%, rgba(129,129,121,1) 5%, rgba(129,129,121,1) 50%, rgba(129,129,121,1) 95%, rgba(129,129,121,1) 98%, rgba(129,129,121,0) 99%, rgba(129,129,121,0) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  rgba(129,129,121,0) 0%,rgba(129,129,121,0) 1%,rgba(129,129,121,1) 2%,rgba(129,129,121,1) 5%,rgba(129,129,121,1) 50%,rgba(129,129,121,1) 95%,rgba(129,129,121,1) 98%,rgba(129,129,121,0) 99%,rgba(129,129,121,0) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  rgba(129,129,121,0) 0%,rgba(129,129,121,0) 1%,rgba(129,129,121,1) 2%,rgba(129,129,121,1) 5%,rgba(129,129,121,1) 50%,rgba(129,129,121,1) 95%,rgba(129,129,121,1) 98%,rgba(129,129,121,0) 99%,rgba(129,129,121,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00818179', endColorstr='#00818179',GradientType=0 ); /* IE6-9 */
	}



	/* 公司核心技術列表 */
	.CoreList{
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
		/* margin-bottom: 60px; */
	}
	.CoreList:nth-child(2n) {
		flex-direction:row-reverse;
	}


		/* 公司核心技術圖 */
		.CoreImg{
			width: 35%;
			box-sizing:border-box;
			padding: 60px 0;
		}
			.CoreImg img{
				width: 100%;
				height: auto;
				border-radius: 15px;
				overflow: hidden;
			}	

		/* 公司核心技術中間 */
		.CoreCenter{
			width: 30%;
			box-sizing:border-box;		
		}
			.CoreCenterLine{
				/* background-color: #818179;
				width: 1px;
				height: 100%;
				margin: 0 auto; */
				height: 100%;
				position: relative;
			}
			.CoreCenterLine:before{
				position:absolute;
				content: '';
				border-radius: 50%;
				border: 1px solid #e76322;
				width: 25px;
				height: 25px;
				top: 10%;
				left: 50%;
				-webkit-transform: translateX(-50%) translateY(-10%);
				transform: translateX(-50%) translateY(-10%);
				background-color: #f8f8f8;
			}
			.CoreCenterLine:after{
				position:absolute;
				content: '';
				border-radius: 50%;
				/*background-color: #818179;*/
				border: 4px solid #e76322;
				width: 5px;
				height: 5px;
				top: 50%;
				left: 50%;
				-webkit-transform: translateX(-50%) translateY(28%);
				transform: translateX(-50%) translateY(28%);
			}



		/* 公司核心技術文字 */
		.CoreWord{
			width: 35%;
			box-sizing:border-box;
			padding: 60px 0;
		}
			.CoreTit{
				font-size: 25px;
				line-height: 30px;
				color: #2e282a;
				font-weight: bolder;
				padding: 0px 0 30px;
			}
			.CoreText{
				font-size: 18px;
				color: #464646;
				line-height: 30px;
			}


@media (max-width: 860px){

		/* 公司核心技術圖 */
		.CoreImg{
			width: 42%;
			padding: 40px 0;
		}
		/* 公司核心技術中間 */
		.CoreCenter{
			width: 16%;	
		}
		/* 公司核心技術文字 */
		.CoreWord{
			width: 42%;
			padding: 40px 0;
		}

}


@media (max-width: 510px){

	.CoreTechnologyArea{
		padding-left: 50px;
	}
	.CoreTechnologyArea:before{
		top: 0;
		left: 15px;
		-webkit-transform: translateX(0%);
		transform: translateX(00%);		
	}


	/* 公司核心技術列表 */
	.CoreList{
		position: relative;
		margin-bottom: 50px;
		display: block;
		flex-direction: unset;
		flex-wrap: unset;
		align-items: unset;
	}
		/* 公司核心技術圖 */
		.CoreImg{
			width: 100%;
			padding: 0px 0;
		}
		/* 公司核心技術中間 */
		.CoreCenter{
			width: auto;			
			/* display: none; */
		}
			.CoreCenterLine {
				position: unset;
			}
			.CoreCenterLine:before {
				left: -48px;
				-webkit-transform: translateX(-50%) translateY(-10%);
				transform: translateX(0%) translateY(-10%);
			}
			.CoreCenterLine:after {
				top: 10.75%;
				left: -41px;
				-webkit-transform: translateX(-50%) translateY(0%);
				transform: translateX(0%) translateY(0%);
			}


		/* 公司核心技術文字 */
		.CoreWord{
			width: 100%;
			padding: 30px 0 0;
		}
			.CoreTit{
				padding: 0px 0 10px;
				font-size: 20px;
				line-height: 25px;
			}
			.CoreText {
				font-size: 16px;
				line-height: 26px;
			}
}









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


/*首頁News_bg----------------------*/

.News_bg {
	box-sizing:border-box;
	/*width:75%;*/
	/* background:#fff; */
	position:relative;
}
	/* .News_bg .device {
		position:relative;
		overflow:hidden;
	} */
		/*左右鍵*/
		/* .News_bg .device .arrow-left, 
        .News_bg .device .arrow-right {
			position:absolute;
			z-index:3;
			top:50%;
			margin:-18px 0px 0px 0px;
			opacity:0;
			transition:0.3s ease all;
		} */
		
			/*左鍵*/
			/* .News_bg .device .arrow-left {
				left:-20px;
			} */
			
			/*右鍵*/
			/* .News_bg .device .arrow-right {
				right:-20px;
			}
				.News_bg .device:hover .arrow-left {
					opacity:1;
					left:20px;
				}
				.News_bg .device:hover .arrow-right {
					opacity:1;
					right:20px;
				} */
		
		/*輪播區*/
		.News_bg .swiper-container {
			height:auto;
			padding-bottom: 30px;
		}
			/* .News_bg .swiper-wrapper {
			}
				.News_bg .swiper-slide {
				}
					.News_bg .swiper-slide img {
						width:100%;
						height:auto;
					} */
		
		
		/*輪播點點*/
		.News_bg .pagination {
			bottom: 0px;
			/* position: absolute;
			z-index: 1;		  
			width: 100%;
			text-align: center; */
		}
			/* .News_bg .swiper-pagination-switch {
			  display: inline-block;
			  width: 20px;
			  height: 20px;
			  border-radius: 5px;
			  background: #edbdb4;
			  margin: 0 7px;
			  cursor: pointer;
			} */
			/*輪播點點當前模式*/
			/* .News_bg .swiper-active-switch {
			  background: #c42605;
			} */
				/*客制區塊*/
				/* .swiper-slide {
					position:relative;
				} 

			.News_bg .News_bg .swiper-pagination-bullet-active {
			  background:#231815;
			}*/	
			
			

			.News_bg a{
				text-decoration: none;
				display: block;
			}

			/* 最新消息列表 */
			.newsList{
				display: flex;
				flex-direction: row;
				flex-wrap: wrap;
				justify-content: space-between;
				align-items: center;
			}

			/* 最新消息左側 */
			.newsL{
				box-sizing: border-box;
				width: 45%;
			}
				/* 最新消息日期 */
				.in_NewsListDate{
					font-family: 'Raleway', sans-serif;
					color: #818179;
					font-size: 13px;
					line-height: 20px;
					margin-bottom: 10px;
				}
				/* 最新消息標題 */
				.in_NewsListTit{
					font-size: 25px;
					line-height: 29px;
					color: #e76120;
					font-weight: bold;
					overflow: hidden;
					text-overflow: ellipsis;
					white-space: nowrap;
					/* word-wrap: break-word; */
					word-break: break-all;
				}
					.in_NewsListTit:hover{
						color:#818179;
						transition: 0.3s ease all;
					}

				/* 最新消息簡述 */
				.in_NewsListText{
					text-align: left;
					font-size: 16px;
					line-height: 26px;
					color: #968a87;
					margin-top: 20px;
					word-break: break-all;
					display: -webkit-box;
					-webkit-box-orient: vertical;
					-webkit-line-clamp: 4;
					overflow: hidden;
				}


			/* 最新消息右側 */
			.newsR{
				box-sizing: border-box;
				width: 50%;
			}
				.newsR img{
					width: 100%;
					height: auto;
				}

						

@media (max-width: 640px){

	/*左右鍵*/ 
	.News_bg .swiper-button-prev, 
	.News_bg .swiper-container-rtl .swiper-button-next ,
	.News_bg .swiper-button-next, 
	.News_bg .swiper-container-rtl .swiper-button-prev{
		display: none;
	}

	/* 最新消息列表 */
	.newsList{
		display:block;
		flex-direction: unset;
		flex-wrap: unset;
		justify-content: unset;
		align-items: unset;
	}

		/* 最新消息左側 */
		.newsL{
			width: 100%;
		}	

		/* 最新消息右側 */
		.newsR{
			width: 100%;
			margin-top: 15px;
		}		
	
}
				















/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*投資人專區*/
/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/	



.investorBg{
	padding: 35px 0;
}



/*///////////////////////////////////*/
/*公司資訊大區塊*/
/*///////////////////////////////////*/	

.companyInformBg{	
}
	.companyInformBg .text_area{
		text-align: center;
		border-bottom: 1px #818179 solid;
		padding: 30px 0;
		border-top: 1px #818179 solid;
		margin-bottom: 70px;	
	}

	@media (max-width: 990px){
		.companyInformBg .text_area{
			margin-bottom: 55px;	
		}
	}


/*///////////////////////////////////*/
/*公司組織架構大區塊*/
/*///////////////////////////////////*/	

.OrganizationBg{
	background-color: #fff;	
}
	.OrganizationBg .text_area{
		margin-bottom: 70px;	
	}


	@media (max-width: 990px){
		.OrganizationBg .text_area{
			margin-bottom: 55px;	
		}
	}





/*///////////////////////////////////*/
/*專業部門介紹大區塊*/
/*///////////////////////////////////*/	

.departmentBg{	
}

	.departmentArea{
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		margin: 0 -10px 50px;
	}

	/* 專業部門列表 */
	.departmentList{
		width: 25%;
		box-sizing: border-box;
		padding: 0 10px 20px;	
	}
		.departmentListIn{
			padding: 25px 30px 25px;
			box-shadow: 0 0 30px rgba(51, 51, 51, 0.05);
			background: #fff;
			height: calc(100% - 50px);
		}
			.departmentTit{	
				font-size: 24px;
				font-weight: 500;
				line-height: 1.5;
				margin-bottom: 6px;
			}
			.departmentText{
				font-size: 16px;
				color: #818179;
				line-height: 26px;	
			}
			.departmentBtn{	
				margin-top: 27px;
				text-align: center;
			}
				.departmentBtn a{	
					text-decoration: none;
					font-size: 14px;
					font-weight: 500;
					color: #e76120;
				}
				.departmentBtn i{	
					font-size: 14px;
					font-weight: 500;
					color: #e76120;
					vertical-align: middle;
				}				
				.departmentBtn a:hover ,
				.departmentBtn a:hover i{	
					color: #000000;
					transition: 0.3s ease all;
				}
				


@media (max-width: 990px){

	/* 專業部門列表 */
	.departmentList{
		width: 50%;	
	}

}

@media (max-width: 640px){

	.departmentArea{
		display: block;
		flex-direction: unset;
		flex-wrap: unset;
		margin: 0 0px 0px;
		justify-content:unset;	
	}
		/* 專業部門列表 */
		.departmentList{
			width: 100%;
			padding: 0;	
			margin-bottom: 20px;
		}
}










/*///////////////////////////////////*/
/*董事會成員介紹大區塊*/
/*///////////////////////////////////*/	

.DirectorBg{	
}

	.DirectorArea{
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		margin: 0 -10px 50px;	
	}

	/* 董事會成員列表 */
	.DirectorList{
		width: 25%;
		box-sizing: border-box;
		padding: 0 10px 20px;	
	}
		.DirectorIn{
			text-align: center;
			padding: 25px 30px 25px;
			/* box-shadow: 0 0 30px rgba(51, 51, 51, 0.05);
			background: #fff;
			height: calc(100% - 50px); */
		}
			.DirectorIn span{
				font-size: 16px;
				color: #818179;
				line-height: 26px;
				display: block;
				margin: 5px 0;
			}
			.DirectorIn span:nth-of-type(2){
				font-size: 18px;				
			}
			.DirectorIn span:last-of-type{
				/* color:#e76120; */
				font-weight: bold;
				margin: 15px 0 5px;
			}


@media (max-width: 990px){

	/* 董事會成員列表 */
	.DirectorList{
		width: 50%;	
	}

}

@media (max-width: 640px){

	.DirectorArea{
		display: block;
		flex-direction: unset;
		flex-wrap: unset;
		margin: 0 0px 0px;	
	}
		/* 董事會成員列表 */
		.DirectorList{
			width: 100%;
			padding: 0;	
			margin-bottom: 20px;
		}
		.DirectorIn{
			padding: 20px 0px;
		}
}










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



.contact_top{
	padding: 30px 0px 70px;
}
	.strongholdArea{
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		/* justify-content: space-between;*/
		margin: 0 -10px; 
	}
		.ct_list_item{
			box-sizing:border-box;
			width: 33.3%;
			padding:0px 10px; 
			/*width: 32%;
			border-radius: 15px;
			overflow: hidden;
			box-shadow: 0 18px 40px rgb(51 51 51 / 0);*/
		}
			.ct_list_itemIn{
				height: calc(100% - 20px);				
				text-decoration: none;
				display:block;
				padding: 10px 20px;		
				background-color: #f8f8f8;		
				
				border-radius: 15px;
				overflow: hidden;
				box-shadow: 0 18px 40px rgb(51 51 51 / 0);
			}	
			.ct_list_item:hover .ct_list_itemIn ,
			.ct_list_item.active .ct_list_itemIn{
				background-color: #fff;
				/* opacity:0.6; */
				transition:0.3s ease all;
				box-shadow: 0 18px 40px #3333331a;
			}
			
			.ct_list_itemIn span{
				display: block;
				padding: 10px 0;
				font-size: 16px;
			}
				.ct_list_itemIn span:first-of-type{
					font-size: 20px;
					font-weight: bold;
				}
				.ct_list_item.active .ct_list_itemIn span:first-of-type ,
				.ct_list_item:hover .ct_list_itemIn span:first-of-type{
					color: #e76120;
				}

				.ct_list_itemIn span a{
					text-decoration: none;
					display:block;
					font-size: 16px;
					color: #818179;
					font-family: 'Raleway', sans-serif;
				}
				.ct_list_itemIn span img{
					width: 16px;
					height: auto;
					display: inline-block;
					vertical-align: middle;
				}



			



.contact_bottom{
}
	.contact_bottom .text_area iframe{
		height: 300px;
	}


	/*聯絡我們左*/
	.contactLeft {
		box-sizing: border-box;
		border-radius: 5px;
		box-sizing: border-box;
	}
	/*聯絡我們右*/
	.contactRight {
		box-sizing: border-box;
		margin-top: 30px;
	}
	
		.ContactProduct{
			padding:10px 0px;
			color:#818179;
			line-height:26px;
			font-size:16px;	
			font-weight:bolder;	
		}
			.ContactProduct span{
				display:inline-block;
				font-weight:normal;
			}	
	
		/*表單區備註*/
		.form_remark {
			text-align: left;
			font-size: 16px;
			line-height: 30px;
			padding: 0px 0px 15px 0px;
		}
		



@media (max-width: 768px){

	.contact_top {
		padding: 0px 0px 60px;
	}
	.strongholdArea{
		display:block;
		flex-direction: unset;
		flex-wrap: unset;
		justify-content: unset;
		margin: 0;
	}
		.ct_list_item {
			width: 100%;
			margin: 20px 0 0px;
			padding:0;
		}
		.ct_list_item:first-of-type {
			margin-top: 0;
		}

		.contact_bottom .text_area iframe{
			height: 200px;
		}
}
	
	
	









	
		
/*/////////////////////////////////////////////////////////*/
/*產品*/
/*/////////////////////////////////////////////////////////*/


.productArea{
	display: flex;
    flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
    margin: 0 -20px 0px;
}

	/* 產品列表 */
	.productList{
		width: 33.3%;
		box-sizing: border-box;
		padding: 0 20px 40px;
	}
	.productListIn{
		overflow: hidden;
		border-radius: 15px;
		box-shadow: 0 18px 40px #3333331a;
	}

		/* 產品圖 */
		.productImg{
		}
			.productImg img{
				width: 100%;
				height: auto;
			}

		.productBottom{
			padding: 20px;
			background-color: #fff;
		}

		/* 產品列表標題 */
		.productTit{
			font-size: 20px;
			font-weight:bolder;
			margin-bottom: 6px;
		}
		/* 產品列表簡述 */
		.productText{
			font-size: 16px;
			color: #818179;
			line-height: 26px;
		}
		
		/* 產品列表按鈕 */
		.productBtn{	
			margin-top: 27px;
			padding-top: 15px;
			text-align: center;
			border-top: 1px #d6d6d6 solid
		}
			.productBtn a{	
				text-decoration: none;
				font-size: 14px;
				font-weight: 500;
				color: #e76120;
			}
			.productBtn i{	
				font-size: 14px;
				font-weight: 500;
				color: #e76120;
				vertical-align: middle;
			}				
			.productBtn a:hover ,
			.productBtn a:hover i{	
				color: #000000;
				transition: 0.3s ease all;
			}
				

@media (max-width: 990px){

		/* 產品列表 */
		.productList{
			width: 50%;
		}

}

@media (max-width: 640px){

	.productArea{
		display: block;
		flex-direction: unset;
		flex-wrap: unset;
		margin: 0 0px 0px;
	}

		/* 產品列表 */
		.productList{
			width: 100%;
			padding: 0 0px 20px;
		}
}









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


.product_bottomArea{

}
		
	/*產品內頁上*/
	.product_inTop{
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	
		/*產品內頁上左*/
		.productIn_img {
			/* float:left; */
			width:40%;
			box-sizing:border-box;
     		/* padding-right: 26px; */
		}
			
			/*商品內頁圖*/
			.productIn_img img{
				width:100%;
				height:auto;
			}




/*大圖*/
.pII_big {
	border: #959595 2px solid;
}
	.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_item{
		background:#fff;
		/*height:110.75px;*/
		height: auto;
		/*margin:0px 6px;*/
		padding: 0px 6px;
		transition: 0.3s ease all;
		box-sizing:border-box;
		
		}
		.pII_img{
			padding:0px 0px 0px;
			z-index: 8;
			/*width:180px;*/	
			margin-bottom: 20px;	
			border: 2px #999999 solid;	
			}
	.pII_s .device {
	}
		.pII_s .swiper-slide {
			box-sizing:border-box;
			padding:0px 5px;
			
		}
			.pII_s .swiper-slide img {
				/*border-radius:5px;*/
			}
	.pII_s .arrow-left {
		/*left:-17px;*/
		left: -30px;
		margin: -22px 0px 0px 0px;
		width: 40px;
	}
	.pII_s .arrow-right {
		/*right:-14px;*/
		right: -30px;
		margin: -22px 0px 0px 0px;
		width: 40px;
	}
	
@media (max-width: 880px){
	.pII_s .arrow-left, .pII_s .arrow-right {
		display: block;
	}
	.pII_s .arrow-left{
		left:-10px;
		}
	.pII_s .arrow-right{
		right:-10px;}
}


			
		/*產品內頁上右*/
		.productIn_rightArea {
			/* float:right; */
			width: 50%;
			box-sizing:border-box;
			/* padding-left:20px; */
		}
			/*標籤*/
			.productIn_label {
				background: #C00;
				color: #fff;
				font-size: 14px;
				padding: 5px 10px;
				display:inline-block;
				margin:10px 0px 0px 0px;
			}
			
			.productIn_tit {
				font-size: 30px;
				font-weight: bold;
				line-height: 30px;
				letter-spacing: 0px;
				color: #231815;
				padding-bottom: 20px;
			}
			
			/*商品說明短文字*/
			.productIn_remark {
				padding: 20px 0px 0px 0px;
				font-size: 15px;
				line-height: 23px;
				color:#818179;
			}
			
			.productIn_originalPrice {
				text-decoration:line-through;
				color:#999;
				font-size:14px;
				line-height:22px;
				padding:10px 0px 0px 0px;
			}
			
			.productIn_price {
				font-size: 18px;
				line-height:30px;
				padding:35px 0px 0px 0px;
			}
				.productIn_price span {
					color: #ed3729;
					font-weight:bold;
					font-size: 26px;
				}
			.productIn_specTit{
				width: 100%;
				padding-top:55px;
				}				
			.productIn_spec{
				width: 100%;
				padding-top:5px;
				}
				.productIn_spec select{
					width: 100%;
				}
				
			.productIn_quantityAndaddCart {
				position: relative;
				padding: 19px 0px 0px 0px;
				/*padding: 19px 0px 0px 223px;*/
			}	
				.pITR_quantity {
					/*position:absolute;
					top:19px;
					left:0px;*/
				}
					.pITRQ_btn {
						background:#eee;
						border-radius:10px;
						width:46px;
						height:46px;
						line-height:46px;
						text-align:center;
						font-size:26px;
						color:#393939;
						cursor:pointer;
						float:left;
					}
					.pITRQ_text {
						background:#eee;
						border-radius:10px;
						float:left;
						width:75px;
						height:46px;
						line-height:46px;
						margin:0px 9px;
					}
						.pITRQ_text input[type='text'] {
							width:100%;
							border:none;
							background:none;
							font-size:25px;
							color:#393939;
							font-weight:bold;
							text-align:center;
							height:46px;
							line-height:46px;
						}
			
				.productIn_btnArea {
					box-sizing: border-box;
					font-size: 0px;
					padding: 15px 0px 0px 0px;
					margin: 0px -1%;
				}
					.productIn_btnArea input {
						display: inline-block;
						transition: 0.3s ease all;
						text-decoration: none;
						color: #fff;
						text-align: center;
						border-radius: 5px;
						width: 31%;
						margin: 0px 1%;
					}
						
						.productIn_btnArea input.buy {
						    background: #d70c1f;
						}
						.productIn_btnArea input.add {
						    background: #231815;
						}
						
						.productIn_btnArea input.none {
							background: #C7C7C7;
							cursor:auto;
						}
							/*兩個按鍵時*/
							.productIn_btnArea.two_btn {
							}
								.productIn_btnArea.two_btn input {
									width:47%;
								}	
	/*產品內頁下*/
	.product_inBottom{
		margin-top: 50px;
		/* background: #fff;
		border-radius: 3px; */
		/*padding:45px 0px;*/ /*modify by pekey 20171220*/
		/*padding:25px 0px 0px;*/  /*modify by pekey 20180606*/
		/* padding:25px 0px;  */
	}
		

		
		
	
/* @media (max-width: 925px){
.productIn_quantity{
	float:none;
}
	.productIn_quantity select{
		width: 162px;
	}
.productIn_btnArea{
	float:none;
	padding: 15px 0px 0px;
}
}


@media (max-width: 860px){
	.right.inType .mainIn_tit{
    	padding: 20px 0px 15px;
	}
} */






@media (max-width: 860px){

	/*產品內頁上*/
	.product_inTop{
		display: block;
		flex-direction: unset;
		flex-wrap: unset;
		justify-content: unset;
	}
	
		/*產品內頁上左*/
		.productIn_img {
			width:100%;
		}

		.productIn_rightArea {
			width: 100%;
			margin-top: 30px;
		}
			.productIn_remark {
				padding: 0px 0px 0px 0px;
			}
}









@media (max-width: 580px){
	
	/* .productIn_img{
		width:100%;
		float:none;
		padding: 0px;
	}
	
	.productIn_rightArea{
		width:100%;
		float:none;
		padding:0px;
	}
		.pIT_left img{
			padding:0px;
		}
		.productIn_tit {
			padding:50px 0px 10px;
		}
		.productIn_quantity {
			padding:15px 0px 0px;
			float:none;
			margin:0px;
		}
			.productIn_quantity select{
				width:100%;
			}
	
		.productIn_btnArea {
			padding:20px 0px 0px 0px;
			float:none;	
			margin:0px;
		}
			.productIn_btnArea input{
				width: 47.8%;
			} */
}		
		
		






























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


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