/*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%;
	box-sizing: border-box;
	/*font: inherit;*//*修改部分 by kevin 20140822*/
	/*vertical-align: baseline;*//*修改部分 by kevin 20140822*/
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	/*list-style: none;*//*修改部分 by kevin 20140822 會影響到網邊*/
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	/*border-collapse: collapse;
	border-spacing: 0;*/
}

body{ 
	margin: 0; 
	padding: 0;
	background: #fff;
	color: #333;
	font-family: Arial, Helvetica, sans-serif, "Century Gothic", "Times New Roman", Times, serif, "微軟正黑體", "新細明體";
	/*overflow-x: hidden;*/
	letter-spacing: 1px;
	-webkit-text-size-adjust: none;/*解決iphone橫平轉豎屏時字變大的問題*/

	font-family:var(--mandarin_font); 
}

/* ~~ 元素/標籤選取器 ~~ */
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);
}
/*------------------------------------------icon-字型 結束-------------------------------*/


/*Webkit,Opera9.5+,Ie9+ 控制文字選取時的顏色*/
::selection {
	/* background:var(--primary_color); */
	background: #0040ff;
	color:#fff;
}

/*Mozilla Firefox 控制文字選取時的顏色*/
::-moz-selection {
	/* background:var(--primary_color); */
	background: #0040ff;
	color:#fff;
}

.wrap {
	max-width: 1650px;
	/* width: 85%; */
	width: 90%;
	margin: 0 auto;
	padding: 0;
}

@media (max-width: 990px){
	.wrap {
		width: 90%;
	}

}

@media (max-width: 767px){
	.wrap {
		/* width: calc(100% - 15px * 2); */
		/* 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;
	font-family:var(--mandarin_font); 
}
input[type="text"]   , .input,                 input[type="password"], 
input[type="search"] ,  input[type="email"]  , input[type="tel"] , 
input[type="time"]   ,  input[type="number"] , input[type="date"]{
	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:focus,   input:focus , input[type="password"]:focus, 
	input[type="search"]:focus , input[type="email"]:focus   , input[type="tel"]:focus , 
	input[type="time"]:focus   , input[type="number"]:focus  , input[type="date"]:focus{
		border: solid 1px #d5d5d5;
	}
	input[type="text"]:disabled   , .input:disabled,   input:disabled , input[type="password"]:disabled, 
	input[type="search"]:disabled , input[type="email"]:disabled   , input[type="tel"]:disabled , 
	input[type="time"]:disabled   , input[type="number"]:disabled  , input[type="date"]:disabled{
		border: none;
		background: #ececec;
	}
	
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:var(--primary_color);
	color:#fff;
	border-radius:5px;
	line-height:42px;
	transition: 0.2s ease all;
	letter-spacing:1px;
}
	input[type="button"]:hover, input[type="submit"]:hover, input[type="reset"]:hover {
		opacity:0.7;
	}
	
	input[type="reset"] {
		background:#555;
	}
	input[type="button"].join_delete{
		all: unset;
		padding: 5px 10px;
		font-size: 15px;
		cursor: pointer;
		border: 1px solid var(--sixth_color);
		background-color: var(--sixth_color);
		color: #fff;
		/* border-radius: 10px;*/
	}
	
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;
}

.main .swiper-button-prev, 
.main .swiper-button-next {
    position: absolute;
    top: 50%;
    margin: 0px;
    /* z-index: 10;
    cursor: pointer; */
    width: 60px;
    height: 60px;
    background-size: 60px;
    background-position: center;
    background-repeat: no-repeat;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.main .swiper-button-prev{		
	background-image: url(../index/images/left_arrow.png);
}
.main .swiper-button-next{
	background-image: url(../index/images/right_arrow.png);
}
.main .swiper-button-prev:after, 
.main .swiper-button-next:after {
    /* content: 'prev'; */
	display: none;
}


	/*輪播區*/
	.swiper-container {
		height:auto;
	}
		.swiper-slide img {
			width:100%;
			height:auto;
		}
		
		
		/*輪播點點*/
		.main .swiper-pagination {
			z-index: 888;
			height: 10px;
			opacity: 1;			
		}
		.main .swiper-pagination-clickable .swiper-pagination-bullet {
			background-color: #fff;
			z-index: 5;
			display: inline-block;
			width: 10px;
			height: 10px;
			opacity: 1;
		}
		.main .swiper-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active{
			background-color: var(--primary_color);
		}

		.index_bannerArea .swiper-pagination {
			left: 15px !important;
			text-align: left;
		}
		

		
		/*輪播區*/
		.swiper-container {
			height:auto;
		}
			.swiper-wrapper {
			}
				.swiper-slide {
				}
					.swiper-slide img {
						width:100%;
						height:auto;
					}
		
			.swiper-active-switch {/*輪播點點當前模式*/
			  /* background: #c42605; */
			}


			.home_main .banner .swiper-slide a{
				position: relative;
			}
			
				.pcBanner ,
				.mobileBanner {
					background-position: center;
					background-repeat: no-repeat;
					background-size: cover;
				}

				.pcBanner {
					/* padding: calc(47.3% / 2) 0; */
					padding: calc(33.8% / 2) 0;
					/* background-position: center;
					background-repeat: no-repeat;
					background-size: cover; */
				}
				.mobileBanner {
					display:none;
					padding: calc(100% / 2) 0;
				}
				
				






				/* 首頁banner文字框 ----------------------*/
				.indexBannerBox{
					position:absolute;
					-webkit-transform:translateX(0%) translateY(-50%);
					transform:translateX(0%) translateY(-50%);
					top:50%;
					left:10%;
					width: calc(100% - 20%);
				}

					.indexBannerContent{
						max-width:690px;
						width:45%;
						color: #000;
						background-color: rgba(255 255 255 / 80%);
						padding: 50px 30px;
						border-radius: 20px;
					}
								
					/*首頁banner列表標題*/
					.indexBannerTitle{
						font-size: 50px;
						font-weight: 700;
						font-size: min(max(2.62vw, 20px), 50px); /*字體大小 2.5vw、最小值 12px、最大值 18px*/
						line-height: 1.2;
						color: inherit;
						
						display: -webkit-box;
						-webkit-box-orient: vertical;
						-webkit-line-clamp: 2;
						overflow: hidden;
					}
						.indexBannerTitle strong{
							font-size: inherit;
							line-height: inherit;
							font-weight: inherit;
						}

					/*首頁banner簡述*/
					.indexBannerDescription{
						/* width: 100%; */
						margin-top: 20px;
						font-size: 30px;
						font-size: min(max(1.05vw, 15px), 20px); /*字體大小 2.5vw、最小值 12px、最大值 18px*/
						border-top: 2px #000 solid;
						padding-top: 20px;
					}     

						.indexBannerDescription p{
							color: inherit;
							display: -webkit-box;
							-webkit-box-orient: vertical;
							-webkit-line-clamp: 3;
							overflow: hidden;
						}
						.indexBannerBox a:hover .indexBannerDescriptionIn{
							background-color: #000;
							transition: 0.1s ease all;
						} 		
						
						.home_main .banner  .swiper-slide-active .indexBannerContent{
							animation-name: fadeInLeft;
							animation-duration: 1.2s;
							animation-fill-mode: both;
						}



@media (max-width: 990px){
	.pcBanner{
		display: none;
	}
	.mobileBanner {
		display: block;
	}


	.indexBannerContent {
		/* max-width: 690px;
		background-color: rgba(255 255 255 / 80%); */
		width: 100%;		
		padding: 30px 20px;
		border-radius: 10px;
	}

	.home_main .swiper-button-prev, 
	.home_main .swiper-button-next{
		display: none;
	}

}



				
	

/*-------頁籤------------------------------------------------------------------------*/
.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:"";
									}
					}

			


					






/*-------驗證碼----------------------------------------------------------------------------*/
.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;
	}
		.captcha a:hover {
		}
	.captcha img {
		vertical-align:middle;
	}
	.captcha span {
		/* color:var(--primary_color); */
		color: var(--notice_color);
	}










/*-------表單區----------------------------------------------------------------------------*/

/*表單區底*/
.form_area_bg {
	/* width: 100%;
    max-width: 800px; 
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0px 20px; */
}

	/*表單區備註*/
	.form_remark {
		font-size: 15px;
		line-height: 22px;
		display: flex;
		align-items: center;
		flex-wrap: wrap;
	}
		.form_remark span{
			display: inline-block;
			box-sizing: border-box;
		}
		/*必填icon*/
		.requirde_icon {
			display:inline-block;
			/* border-radius:3px; */
			font-size: 17px;
			/* color:#fff; */
			/* color: var(--primary_color); */
			color: var(--notice_color);
			line-height: 1;
			padding:0px 5px;
		}
		.form_remark .requirde_icon{
			color: #fff;
			background-color: var(--notice_color);
			padding: 5px 6px 0px;
			border-radius: 3px;
			margin-right: 10px;
		}






	/*----- 表單區 -----*/
	.form_area {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-around;
	}
	.form_area.contact_area.same {
		padding: 0 30px;
	}
	.form_area.contact_area.type7 .type7_member select{
		width: 50%;
	}
	.form_area.contact_area.type7 .item_RadioCheckArea {
		padding-top: 0;
	}

	
	
		.form_list {
			box-sizing:border-box;
			font-size:18px;
			line-height:1.5;
			width:100%;
			width:calc(100% - 10px);
			
			padding:15px 0px 0px 0px;
		}
		.form_list.fLType2{
			width:49%;
			width:calc(50% - 10px);
		}
		.form_list.fLType3{
			width:33%;
		}
		.form_list.fLType3.family{
			
		}
		.form_list.fLType3.family .fL_info{
			
		}
		.form_list.fLType3.family .fL_info input[type="text"]{
			width: 50%;
		}
		.form_list.fLType4{
			width:24.7%;
			width:calc(25% - 10px);
		}

			.fL_tit {
				font-weight:bold;
				padding:3px 0px 6px 0px;
				position:relative;
			}
				/*必填icon*/
				.fL_tit .requirde_icon {
					/* position:absolute; */
					/* right:0px; */
				}
				
			.fL_info {
			}
				/*沒有輸入框時*/
				/* .fL_info.no_input {
					padding: 10px 0px 25px 0px;
					line-height: 24px;
				} */
				
				.fL_info label {
					display:inline-block;
				}
					

			.form_list select{
				width: 100%;
			}

				/*地址樣式*/
				.fLR_address_area{
					display: grid;
					align-items: center;
					grid-template-columns:fit-content(325px) auto;
					gap: 0px 10px;
					/* padding-top: 10px; */
				}
					.fLR_address_area .fL_tit{
						grid-column-start: 1;
						grid-column-end: 3;
					}
					.fLR_address_area .item_RadioCheckArea {
						padding-top: 0px;
					}
					.fLR_address.fL_info {
						display: grid;
						align-items: center;
						grid-template-columns: repeat(3 , 100px) auto;
						gap: 10px 10px;
						/* position:relative; */
						/* padding-left: 315px !important; */
					}
					.fLR_address select {
						/* position:
						absolute; */
						/* left:0px; */
						/* width:100px; */
						height: 42px;
						border-radius: 0;
					}
					.fLR_address select:nth-of-type(2) {
						/* position:absolute; */
						/* left: 105px; */
					}

					input.fLRA_postalCode {
						/* position:absolute; */
						/* width:100px; */
						/* left: 210px; */
					}
					input.fLRA_address {
					}
				
							
							
			

						
					/*生日樣式*/
					.birthday{						
					}
					/* .fL_info.birthday {
					}
						.fL_info.birthday select {
							margin:0px 0px 0px 0px;
						} */


@media(max-width:990px){
	
				/* 生辰 */
				.form_list.fLType3.horizontalLayout_tel{
					width:100%;
				}
				/* 生辰 */
				.form_list.fLType2.horizontalLayout_tel{
					width:100%;
				}
				.form_list.fLType4{
					width: 100%;
				}
				.form_area.contact_area.same {
					padding: 0 10px;
				}
}






/* 密碼_眼睛樣式---------------------------------- */
.form_list.password{
}
.form_list.password .fL_info{
	position: relative;							
}
	.form_list.password input{
		padding-right: 45px;
	}
		/*閉眼*/
		.form_list.password .check_eye{
			position: absolute;
			color: inherit;
			font-size: 20px;
			top: 50%;
			right: 10px;
			-webkit-transform: translate(0, -50%);
			transform: translate(0, -50%);	
			transition: 0.3s ease all;	
			cursor: pointer;
		}
		.form_list.password .check_eye i{
			color: inherit;
			font-size: inherit;
		}
		












	/* ----- radio+checkbox選取框--------------------------  */
	@keyframes hover-color {
		from {
			border-color: #c0c0c0; }
		to {
			border-color:  var(--primary_color); } 
	}
		.item_RadioCheckArea{
			padding-top: 9px;
			display: flex;
			align-items: center;
			flex-wrap: wrap;
			gap: 7.5px 15px;		
		}
			.item_RadioCheckArea .item_RadioCheck{
				display: flex;
				align-items: center;
			}
			  .item_RadioCheckArea .item_radio,
			  .item_RadioCheckArea .item_checkbox {
				  position: absolute;
				  display: none; 
			  }
			  
			  .item_RadioCheckArea .item_radio[disabled],
			  .item_RadioCheckArea .item_checkbox[disabled] {
				  cursor: not-allowed; 
			  }
			  
			  .item_RadioCheckArea .item_radio + label,
			  .item_RadioCheckArea .item_checkbox + label {
				  position: relative;
				  /*display: block;*/
				  padding-left: 30px;
				  cursor: pointer;
				  vertical-align: middle; 
				  
				  font-weight: bold;
			  }
				
				  .item_RadioCheckArea .item_radio + label:hover:before,
				  .item_RadioCheckArea .item_checkbox + label:hover:before {
					  animation-duration: 0.4s;
					  animation-fill-mode: both;
					  animation-name: hover-color; 
				  }
				  
				  .item_RadioCheckArea .item_radio + label:before,
				  .item_RadioCheckArea .item_checkbox + label:before {
					  position: absolute;
					  /*top: 0;*/
					  /* top: -1px; */
					  top: 50%;
					  transform: translateY(-50%);
					  left: 0;
					  display: inline-block;
					  width: 20px;
					  height: 20px;
					  content: '';
					  border: 1px solid #c0c0c0; 
				  }
				  
				  .item_RadioCheckArea .item_radio + label:after,
				  .item_RadioCheckArea .item_checkbox + label:after {
					  position: absolute;
					  display: none;
					  content: ''; 
				  }
			  
			  .item_RadioCheckArea .item_radio[disabled] + label,
			  .item_RadioCheckArea .item_checkbox[disabled] + label {
				  cursor: not-allowed;
				  color: #000; 
			  }
			  
				  .item_RadioCheckArea .item_radio[disabled] + label:hover, 
				  .item_RadioCheckArea .item_radio[disabled] + label:before, 
				  .item_RadioCheckArea .item_radio[disabled] + label:after,
				  .item_RadioCheckArea .item_checkbox[disabled] + label:hover,
				  .item_RadioCheckArea .item_checkbox[disabled] + label:before,
				  .item_RadioCheckArea .item_checkbox[disabled] + label:after {
					  cursor: not-allowed; 
				  }
				  
				  .item_RadioCheckArea .item_radio[disabled] + label:hover:before,
				  .item_RadioCheckArea .item_checkbox[disabled] + label:hover:before {
					  border: 1px solid #e4e4e4;
					  animation-name: none; 
				  }
				  
				  
				  .item_RadioCheckArea .item_radio[disabled] + label:before,
				  .item_RadioCheckArea .item_checkbox[disabled] + label:before {
					  border-color: #e4e4e4; 
				  }
			  
			  .item_RadioCheckArea .item_radio:checked + label:before,
			  .item_RadioCheckArea .item_checkbox:checked + label:before {
				  animation-name: none; 
			  }
			  
			  .item_RadioCheckArea .item_radio:checked + label:after,
			  .item_RadioCheckArea .item_checkbox:checked + label:after {
				  display: block; 
			  }
			  
			  .item_RadioCheckArea .item_radio + label:before {
				  border-radius: 50%; 
			  }
			  
			  .item_RadioCheckArea .item_radio + label:after {
				  /*top: 7px;*/
				  /* top: 6px; */
				  left: 7px;

				  top: 50%;
				  transform: translateY(-50%);

				  width: 8px;
				  height: 8px;
				  border-radius: 50%;
				  background:  var(--primary_color); 
			  }
			  .item_RadioCheckArea.address .item_radio + label:after {
				  /*top: 7px;*/
				  /* top: 6px; */
				  left: 7px;

				  top: 50%;
				  transform: translateY(-50%);

				  width: 8px;
				  height: 8px;
				  border-radius: 50%;
				  background:  #cb4680; 
			  }
			  
			  .item_RadioCheckArea .item_radio:checked + label:before {
				  border: 1px solid  var(--primary_color); 
			  }
			  
			  .item_RadioCheckArea .item_radio:checked[disabled] + label:before {
				  border: 1px solid #c9e2f9; 
			  }
			  
			  .item_RadioCheckArea .item_radio:checked[disabled] + label:after {
				  background: #c9e2f9; 
			  }
			  
			  .item_RadioCheckArea .item_checkbox + label:before {
				  border-radius: 3px; 
			  }
			  
			  .item_RadioCheckArea .item_checkbox + label:after {
				  top: 2px;
				  left: 7px;
				  box-sizing: border-box;
				  width: 6px;
				  height: 12px;
				  transform: rotate(45deg);
				  border-width: 2px;
				  border-style: solid;
				  border-color: #fff;
				  border-top: 0;
				  border-left: 0; 
			  }
			  
			  .item_RadioCheckArea .item_checkbox:checked + label:before {
				  border:  var(--primary_color);
				  background:  var(--primary_color); 
			  }
			  
			  .item_RadioCheckArea .item_checkbox:checked[disabled] + label:before {
				  border: #c9e2f9;
				  background: #c9e2f9; 
			  }
			  


			  /*用js影響css的核選---------------------*/
			.item_RadioCheckArea .item_radio.selected:checked + label:before,
			.item_RadioCheckArea .item_checkbox.selected:checked + label:before {
				animation-name: none; 
			}
			
			.item_RadioCheckArea .item_radio.selected:checked + label:after,
			.item_RadioCheckArea .item_checkbox.selected:checked + label:after {
				display: block; 
			}
			.item_RadioCheckArea .item_radio.selected:checked + label:before {
				border: 1px solid  var(--primary_color); 
			}
			.item_RadioCheckArea .item_checkbox.selected:checked + label:before {
				border:  var(--primary_color);
				background:  var(--primary_color); 
			}
















		/*水平排列方式*/
		.form_list.horizontalLayout .fL_info ,
		.form_list.horizontalLayout_tel .fL_info {
			/* display: flex; */
			align-items: center;
			display: grid;
			gap: 10px;
		}
		.form_list.horizontalLayout_tel .fL_info {
			display: flex;
		}
		/*水平排列空隙*/
		.form_list.horizontalLayout .fL_info span.separate{
			padding: 0 10px;
			display: inline-block;
		}		
		.form_list.horizontalLayout_tel .fL_info span.separate{
			white-space: nowrap;
		}
		.form_list.horizontalLayout_tel .fL_info label{
			white-space: nowrap;
		}

		.fL_info span.separate.arrow_right{
			padding: 0 2px;
			display: inline-block;
			font-size: 20px;
			font-size: min(max(2vw, 15px), 25px); /*字體大小 2vw、最小值 12px、最大值 25px*/
			font-weight: 900;
			color: inherit;
		}
			.fL_info span.separate.arrow_right i{
				font-size:inherit;
				font-weight: inherit;
				color: inherit;
				display: block;
			}

		.form_list .fL_info span.separate{
			/* color: var(--third_color);
			font-weight: 900; */
		}
		.form_list .fL_info span.notice{
			color: var(--notice_color);
		}



						
				/*同意條款*/
				.agreeToTerms {
					font-size:15px;
					line-height:23px;
					text-align:center; 
					margin: 20px 0px 0px;
				}
					.agreeToTerms strong {
						padding:10px 0px;
						display:inline-block;
					}
					.agreeToTerms a {
						/* color:#b62a2e; */
						color: var(--notice_color);
						display: inline-block;
						text-decoration: none;
					}	
					








				/*表單結果頁-------------------------------*/
				.form_outcome{					
				}
					.form_outcome .form_list{
						display: flex;
						align-items: baseline;
						flex-wrap: wrap;
						padding: 15px 0;
						line-height: 1;
						gap: 8px 0;
					}
						.form_outcome .fL_tit {
							position: relative;
							padding: 0;
							padding-left: 15px;
							padding-right: 15px;
						}
							.form_outcome .fL_tit .requirde_icon {
								position: absolute;
								left: 0;
								top:50%;
								transform: translate(0 , -50% );
							}

						.form_outcome .no_input{
							padding: 0;
							padding-left: 5px;
						}











@media (max-width: 990px){

	/*----- 表單區 -----*/
	.form_area {
		display: block;
		flex-direction: unset;
		flex-wrap: unset;
		justify-content: unset;
	}


		.form_list {
			font-size: 16px;
		}
		.form_list.fLType2 {
			width: 100%;
		}
		.form_outcome .form_list {
			padding: 10px 0;
		}
		/*沒有輸入框時*/
		/* .fL_info.no_input {
			padding: 0px 0px 5px 0px;
		}
		.fL_info label {
			padding: 6px 0px;
		} */


		
	/*地址樣式*/
	.fLR_address_area{
		display: flex;
		flex-direction: column;
		align-items: unset;
		grid-template-columns:unset;
		gap: 0px;
	}
		.fLR_address_area .fL_tit{
			grid-column-start:unset;
			grid-column-end: unset;
			padding-bottom: 0;			
		}
		.fLR_address.fL_info {
			grid-template-columns: repeat(3 , 1fr) auto;
			gap: 5px 5px;
			padding-top: 10px;
		}
		.fL_info.fLR_foreign{
			padding-top: 10px;
		}
			/* .fLR_address select {
				height: 42px;
				border-radius: 0;
			}
			.fLR_address select:nth-of-type(2) {
			}
			input.fLRA_postalCode {
			} */
			input.fLRA_address {
				grid-column-start:1 ;
				grid-column-end: 5;
			}
						
		/*----- 地址樣式 -----*/
		/* .fLR_address.fL_info {
			padding-left: 0px !important;
		}
			.fLR_address select {
				width:49%;
			}
			.fLR_address select:nth-of-type(2) {
				left:auto;
				width:49%;
				right: 0;
			}

			.fLR_address input.fLRA_postalCode {
				position:static;
				width:100%;
				left:auto;
				margin-top: 52px;
			}
			.fLR_address input.fLRA_address {
				margin-top:10px;
			} */


			.captcha a {
				padding: 0px 5px;
			}

}

@media (max-width: 320px){
	/*生日樣式*/
	/* .fL_info.birthday {
		letter-spacing: 0px;
		white-space: nowrap;
		font-size: 12px;
	} */
}
	

@media (max-width: 540px){
	.fLR_address.fL_info.add {
		display: flex;
		flex-direction: column;
	}

}
@media (max-width: 320px){
	.form_list.fLR_address_area.add{
		width: 100%;
	}

}






/*-------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; */
		background: var(--primary_color);
	}
	*::-ms-backdrop, .ie10Up {
		color: #fff;
		/* background:#06F; */
		background: var(--primary_color);
	}
}

/*firefox*/
@-moz-document url-prefix() { 
	.firefox {
		color: #fff;
		background: var(--primary_color);
	}
}

/*Safari和chrome*/
@media screen and (-webkit-min-device-pixel-ratio:0) {
	.safariAndChrome {
		color: #fff;
		background: #333;
	}
}




















/*/////////////////////////////////////////////////////////*/
/*-------table--------*/
/*/////////////////////////////////////////////////////////*/

.no_bg{
}
	.no_bg table{
		width: 100%;
		margin: 0 auto;
		border-radius: 3px;
		overflow: hidden;
		font-size: 15px;
		line-height: 1.1;
		color: #333;
	}

		/* 表格_標題 */
		.no_bg caption{
		}

		/* 表格_表頭 */
		.no_bg thead{
		}
			.no_bg thead tr{
			}
				.no_bg thead th{
					text-align: center;
					vertical-align: middle;
					font-size: 16px;
					line-height: 1.5;
					color: #fff;
					padding: 10px 15px;
					box-sizing: border-box;
					background: var(--second_color);
					min-width: 68px;
					font-weight: normal;
				}
				.no_bg thead th:first-of-type{
					/* border-left: 2px dashed #0080d8; */
					border-top-left-radius: 10px;
				}
				.no_bg thead th:last-of-type{
					border-radius:0 10px 0 0;
				}




		/* 表格_表身 */
		.no_bg tbody{
		}
			.no_bg td{
				text-align: center;
				vertical-align: middle;
				font-size: 15px;
				line-height: 24px;
				color: #333;
				padding: 15px 10px;
				box-sizing: border-box;
				border-bottom: 1px solid #cccccc;
				border-right: 2px dashed #e6e6e6;
				background: #f5f5f5;
			}
			.no_bg tbody tr td:first-of-type{
				border-left: 1px solid #cccccc;
			}
			.no_bg tbody tr td:last-of-type{
				border-right:1px solid #cccccc;
			}
			.no_bg tbody tr:nth-child(2n+1) td{
				background: #fff;
			}

		/* 表格_表尾 */
		.no_bg tfoot{
		}
			.no_bg tfoot td{
			}

		/* 表格_按鈕 */
		.no_bg input[type='button'] {
			background: var(--third_color);
			color: #ffffff;
			border: 1px solid var(--third_color);
			height: 40px;
			line-height: normal;
			box-sizing: border-box;
			min-width: 100px;
			padding: 0 5px;
			width: fit-content;
		}
		.no_bg .cPL_twoBtn{
			display: flex;
			justify-content: center;
			flex-wrap: wrap;
			gap: 5px 3px;
		}
		.no_bg .cPL_threeBtn{
			display: flex;
			justify-content: center;
			flex-wrap: wrap;
			gap: 5px 3px;
			padding: 28px 10px;
		}
			.no_bg .cPL_twoBtn input[type='button'] {
				/* width: 49%; */
				/* max-width: 100px; */
				max-width: unset;
    			/* margin: 5px 2.5px; */
			}
			.no_bg .cPL_twoBtn input[type='button']:nth-child(2n+1) {
				background: var(--sixth_color);
				border-color: var(--sixth_color);
			}
			.no_bg .cPL_twoBtn input[type='button']:nth-child(2n+2) {
				background: var(--third_color);
				border-color: var(--third_color);
				color: var(--dark_color);
			}					
			.no_bg .cPL_twoBtn input[type='button']:nth-child(3) {
				background: var(--dark_color);
				border-color: var(--dark_color);
			}	
			.no_bg .cPL_threeBtn input[type='button'] {
				/* width: 49%; */
				/* max-width: 100px; */
				max-width: unset;
    			/* margin: 5px 2.5px; */
			}
			.no_bg .cPL_threeBtn input[type='button']:nth-child(2n+1) {
				background: var(--sixth_color);
				border-color: var(--sixth_color);
			}
			.no_bg .cPL_threeBtn input[type='button']:nth-child(2n+2) {
				background: var(--third_color);
				border-color: var(--third_color);
				color: var(--dark_color);
			}					
			.no_bg .cPL_threeBtn input[type='button']:nth-child(3) {
				background: var(--dark_color);
				border-color: var(--dark_color);
			}	


@media (max-width: 768px){


/*第一組tr*/
/* .no_bg tr:first-of-type  */
.no_bg thead{
	display:none;
}

/*第一個td*/
.no_bg tr td:first-of-type {
	width: auto;
	padding: 10px 14px;
	border-top: solid 0px #ADABAB;
}

/*最後一個td*/
.no_bg td:last-of-type {
	/* border-bottom: solid 2px #ADABAB; */
	border-bottom: solid 1px #ADABAB;
	padding: 5px 14px 10px 14px;
}

.no_bg tr:last-of-type td:last-of-type {
	border-bottom: solid 1px #ADABAB;
}


/*第五個td*/
/* .no_bg td:nth-of-type(5) {
	padding: 5px 14px 10px 14px;
}
	.no_bg td:nth-of-type(5):before {
		display:none;
	} */

.no_bg table {
	/*border: solid 2px #e1e1e1;
	border-top: solid 3px #e1e1e1;*/
	border-top: solid 1px #bebebe;
	border-radius:5px;
}
	.no_bg td {
		display:block;
		border:none;
		text-align:left;
		border-left: solid 1px #bebebe;
		border-right: solid 1px #bebebe;
		padding: 5px 14px;
	}
	
		.no_bg td:before {
			color: #7b7b7b;
			content:attr(data-name);
		}
		/*商品名稱*/
		/* .cPL_product {
			border-bottom: solid 1px #bebebe;
			padding:0px 0px 15px 0px;  
			font-size:16px;
		} */
		
		/* .no_bg table input {
			height:40px;
			line-height:40px;
		}
			.no_bg table input[type='button'] {
				width:100%;
				height:42px;
			} */
		
				/*兩個按鍵時*/
				/* .no_bg table .cPL_twoBtn input[type='button'] {
					float:left;
				}
				.no_bg table .cPL_twoBtn input[type='button']:nth-of-type(2) {
					float:right;
				} */

		/* 表格_按鈕 */
		.no_bg input[type='button'] {
			width: 100%;
		}				




}









/*未出貨*/
.no_shipping {
	color:#007be4;
}

/*未付款*/
.unpaid {
	color:#c6000b;
}







/*時間搜尋區*/
.rB_time{
	margin-bottom: 20px;
}
	.time_search_area {
		font-size:0px;
		letter-spacing: 3px;
		text-align: right;
		/*padding-right: 18px;*/
	}
		.time_search {
			font-size:15px;
			display:inline-block;
			vertical-align:middle;
			padding: 0px 18px 0px 0px;
		}
			.time_search select {
				/*margin-top: -3px;*/
			}
		.time_search_area span {
			font-size:15px;
			display:inline-block;
			padding: 0px 20px 4px 0px;
			vertical-align:middle;
		}
		
		.time_search_area label.lsf {
			font-size:25px;
			width:42px;
			height:38px;
			line-height:38px;
			display:inline-block;
			border-radius:4px;
			background: var(--sixth_color);
			color:#fff;
			vertical-align: top;
			text-align:center;
			transition:0.3s ease all;
			letter-spacing:0px;
		}
			.time_search_area label.lsf:hover {
				opacity:0.7;
			}
			.time_search_area label.lsf input[type='submit'] {
				display:none;
			}
		
		.time_search_area input[type='submit'] {
			width:36px;
			height:32px;
			background: #d2bcb1 url(../images/header_search_icon.png) center center no-repeat;
			background-size:19px;
			border-radius:4px;
		}
			.time_search_area input[type='submit']:hover {
				opacity:0.7;
			}
				@media (max-width: 780px){
					.time_search_area {
						letter-spacing:1px;
					}
						.time_search {
							padding: 0px 10px 0px 0px;
						}
						.time_search_area span {
							padding: 0px 10px 4px 0px;
						}
				}
					@media (max-width: 680px){
						.time_search_area {
							text-align:center;
							letter-spacing: 0;
						}
							.time_search {
								/* padding: 5px 20px 5px 0px; */
								padding: 5px 10px 5px 0px;
							}
							.time_search_area span {
								/* padding: 0px 26px 4px 0px; */
								padding: 0px 10px 4px 0px;
							}
							.time_search_area label.lsf {
								margin: 3px 0px 0px 0px;
							}
					}
						@media (max-width: 415px){
							.time_search_area {
								padding:0px;
								margin:0px;
							}
							.time_search, .time_search_area span {
								display:block;
								padding: 0px 0px 10px 0px;
							}
							.time_search_area label.lsf {
								width:100%;
								height:42px;
								line-height:42px;
								margin:10px 0px 0px 0px;
							}
							.time_search_area span {
								text-align:center;
							}
						}
							@media (max-width: 350px){
								.time_search {
									font-size:14px;
									letter-spacing:0px;
									white-space:nowrap;
								}
									.time_search select {
										width:68px;
									}
							}	










							






/*/////////////////////////////////////////////////////////*/
/*-------共用區塊--------*/
/*/////////////////////////////////////////////////////////*/

/*全站共用樣式*/
:root {
    /* --primary: Aquamarine; */
    --foreign_font:'Quicksand', sans-serif;       /*全站外文字型*/
	--mandarin_font:'Noto Sans TC', sans-serif;   /*全站中文字型*/
	--primary_color:#f5a5c8;                    /*全站主色色碼*/
	--second_color:#B2B2B2;                   /*全站第二色碼*/
	--third_color:#b0ee7e;                    /*全站第三色碼*/
	--fourth_color:#EEF2F4;                   /*全站第四色碼*/
	--fifth_color:#3f8506;                    /*全站第五色碼*/
	
	--sixth_color:#cc3f82;                    /*全站第六色碼*/

	--dark_color:#060606;                      /*全站深色色碼*/
	--notice_color:#f40500;                    /*全站notice色碼*/
}






.main{
	/* padding-top: 90px; */
}


@media (max-width: 990px){
	
	.main {
		/* padding-top: 52px; */
	}	
}









/*/////////////////////////////////////////////////////////*/
/*-------內頁共用區塊--------*/
/*/////////////////////////////////////////////////////////*/


.main.inmain{
	position: relative;
}
.main.inmain::before{
	content: "";
    /* background: url(../images/card_bg_s.svg); */
	background: url(../images/bg.webp);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: cover;
    width: 75vw;
    height: 50vw;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0.15;
	/* transform: scaleX(-1); */
}




	/*----- 內頁banner -----*/
	.inbanner{
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		height: 200px;
	}
	





	/*----- 上方區塊 -------------------------*/
	.pageContent_topArea{
		padding: 10px 0px;
		border-bottom: 1px solid #e3e3e3;
	}
		
		/*----- 麵包屑 -----*/
		.crumb_bg{
			color: #777777;
			font-size: 14px;
		}
			.crumb_area{				
				display: flex;				
				flex-wrap: wrap;
				align-items: center;
			}
				.crumb_area i{
					display: inline-block;
					vertical-align: middle;
					font-size: 18px;
					line-height: 20px;
				}
				.crumb_area i:nth-of-type(1){
					color: var(--sixth_color);
				}
				.crumb_area a{
					text-decoration: none;
					display: inline-block;
					vertical-align: middle;
					color: var(--sixth_color);
					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: block;
					vertical-align: middle;
					font-size: 14px;
					line-height: 20px;
					box-sizing: border-box;
				}	
	
	
	
	/*內頁內容區塊*/
	.pageContent{
		padding: 50px 0px;
		position: relative;
	}
	
	

	/*----- 內頁標題塊1 -----*/
	/* .right_title{
		font-size: 20px;
		font-weight: normal;
		color: #777;
		line-height: 1.3;
		position:relative;
		border-bottom: 2px solid #777;
		padding-bottom: 20px;
	}
		.right_title:after{	
			position: absolute;
			content: '';
			bottom: -1px;
			background: #777;
			width: 62px;
			height: 6px;
			left: 0px;
		}
		.right_title strong{	
			font-size: inherit;
			line-height: initial;
			padding: 0;
			margin: 0;
			display: inline-block;
			font-weight: inherit;
		}	 */
	

	/*----- 內頁標題塊1 -----*/
	.right_title{
		font-size: 26px;
		line-height: 1;
		font-weight: bold;
		color: var(--dark_color);
		position:relative;
		letter-spacing: 10px;
		/* padding-bottom: 14px; */
		padding-left: 45px;
		margin-bottom: 14px;
	}
	.right_title.puja_add{
		font-size: 26px;
		line-height: 1;
		font-weight: bold;
		color: var(--dark_color);
		position:relative;
		letter-spacing: 10px;
		/* padding-bottom: 14px; */
		padding-left: 45px;
		margin-bottom: 14px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		gap: 15px;
	}
		.right_title:after{
			position: absolute;
			content: '';
			/* bottom: -1px;
			background: var(--primary_color);
			width: 28px;
			height: 2px;
			left: 0px; */

			background-image: url(../images/title_icon.svg);
			background-repeat: no-repeat;
			background-size: cover;
			background-position: center;
			width: 35px;
			height: 35px;
			left: 0;
			top: 50%;
			top:0;
			transform: translate(0 , 0%);
		}
		.right_title strong{
			font-size:inherit;
			font-weight:inherit;
			line-height:inherit;
			padding: 0px;
			margin: 0;
			display: inline-block;
		}
		/* .right_title .title_icon{
		}
			.right_title .title_icon img{
				width: 100%;
				height: auto;
			} */





	.right_title.puja_add{
		flex-direction: column;
		align-items: flex-start;
	}










/* 內頁標題樣式4------------------------- */
.in_titStyle4{
	font-size: 22px;
	font-weight: bold;
	color: #303030;
	line-height: 30px;
	position: relative;
	padding-bottom: 20px;
	display: flex;
}			
	.in_titStyle4 span {
		color: var(--third_color);
		color: #000;
		font-size: 16px;
		line-height: 30px;
		margin-right: 10px;
		display: inline-block;
		font-family: var(--foreign_font);
	    font-weight: 500;
	    font-style: normal;
	}
	.in_titStyle4 strong {
		display: inherit;
		font-size: inherit;
		margin-block-start: 0;
		margin-block-end: 0;
		margin-inline-start: 0;
		margin-inline-end: 0;
		font-weight: inherit;
		margin-right: 10px;

		display: flex;
		align-items: center;
	}

	.in_titStyle4:after {
		position: absolute;
		content: '';
		bottom: 10px;
		background: var(--sixth_color);
		width: 28px;
		height: 2px;
		left: 0px;
		display: none;
	}














		/*----- 網編區塊 -----*/
		.text_area{
			font-size: 16px;
			color: #000;
			line-height:1.5;
		}
			.text_area img{
				max-width: 100%;
				height: auto;
			}		
			.text_area iframe{
				max-width: 100%;
			}


		
			
		/*----- 按鈕 -----*/
		.btn_area {
			text-align:center;
			/* margin:30px 0px 0px; */
			display: flex;
			justify-content: center;
			align-items: center;
			gap: 15px;
		}
		/*----- 非同戶列表_新增戶籍按鈕 start-----*/
		.btn_area.household {
			text-align:center;
			/* margin:30px 0px 0px; */
			display: flex;
			justify-content: flex-start;
			align-items: center;
			gap: 15px;
			margin-bottom: 34px;
		}
		
		.btn_area.household .add{
			-webkit-appearance: none;
			-webkit-border-radius: 0px;
			outline: none;
			vertical-align: middle;
			border: 1px var(--third_color) solid;
			border-radius: 5px;
			letter-spacing: 1px;
			transition: 0.2s ease all;
			cursor: pointer;
			margin: 0;
			width: auto;
			min-width:100px;
			height: 40px;
			line-height: normal;
			padding: 5px 5px;
			font-weight: 400;
			color: #fff;
			font-size: 16px;
			margin-right: 0px;
			background: var(--sixth_color);
			border-color: var(--sixth_color);
		}
		.btn_area.household .return{
			-webkit-appearance: none;
			-webkit-border-radius: 0px;
			outline: none;
			vertical-align: middle;
			border: 1px var(--third_color) solid;
			border-radius: 5px;
			letter-spacing: 1px;
			transition: 0.2s ease all;
			cursor: pointer;
			margin: 0;
			width: auto;
			min-width:100px;
			height: 40px;
			line-height: normal;
			padding: 5px 5px;
			font-weight: 400;
			color: #fff;
			font-size: 16px;
			margin-right: 0px;
			background: #000;
			border-color: #000;
		}
		/*----- 非同戶列表_新增戶籍按鈕 end-----*/
		.btn_area.pwd_btn {
			
			margin:30px 0px 0px;
		}
			/* .btn_area input{
				margin:0px 5px;
				color: #fff;
			}
			.btn_area input:nth-child(2n+1) {
			}	
			.btn_area input:nth-child(2n) {
				background:#231815;
				color: #fff;
			}	 */
			
		
			
			.btn_area input ,
			.btn_area button{
				/* margin: 0 10px; */
				width: 148px;
				height: 50px;
				background: #fff0;
				border: 1px var(--third_color) solid;
				color:  var(--third_color);
				border-color: var(--dark_color);
				color: var(--dark_color);
				border-radius: 5px;
				line-height: normal;
				letter-spacing: 1px;
				font-size: 19px;
				transition: 0.2s ease all;
				cursor: pointer;
				font-weight: 700;
				margin: 0;
				box-sizing: border-box;
			}

			.btn_area input:hover ,
			.btn_area button:hover{
				opacity: 0.7;
			}


			.btn_area.one input ,
			.btn_area.one button{
				margin: 0 auto;
			}
			.btn_area input:nth-of-type(2n+1) ,
			.btn_area button:nth-of-type(2n+1){		
			}
			.btn_area input:nth-of-type(2n) ,
			.btn_area button:nth-of-type(2n){
				background-color: var(--sixth_color);
				border-color: var(--sixth_color);
				color: #fff;
			}
			.btn_area input.yes{
				background-color: var(--sixth_color);
				border-color: var(--sixth_color);
				color: #fff;
			}
			.btn_area input.join ,
			.btn_area button.join{
				background-size: 18px;
				background-position:calc(100% - 34px) 50%;
				background-repeat: no-repeat;
				background-image: url(../images/right_arrow.svg);
				background-color: var(--sixth_color);
				border-color: var(--sixth_color);
				color: #fff;
				padding-right: 18px;
				width: 190px;
			}
			
	
			/* 不可點擊 */
			.btn_area.disAbled input.send ,
			.btn_area.disAbled button.send{
				background: #fff0;
				color: #C4C4C4;
				border-color:  #C4C4C4;
				cursor: default;
			}	
				.btn_area.disAbled input.send:hover ,
				.btn_area.disAbled button.send:hover{
					opacity: 1;
				}	
	








@media (max-width: 990px){
	
	.main.inmain{
		position: unset;
	}
	.main.inmain::before{
		display: none;
	}
		
	
	/*內頁內容區塊*/
	.pageContent{
		padding: 25px 0px;
	}


		/*----- 內頁標題塊1 -----*/
		.right_title{
			font-size: 18px;
			line-height: 1.2;
			padding-left: 35px;
		}
			.right_title:after {
				width: 25px;
				height: 25px;
			}





		/* 內頁標題樣式4------------------------- */
		.in_titStyle4{
			font-size: 16.5px;
		}





		.btn_area{
			gap: 15px 5px;
		}
			    
		.btn_area input ,
		.btn_area button{
			margin: 0 0px;
			width: 110px;
			height: 40px;
			line-height: normal;		
			font-size: 16px;
		}

		.btn_area input.join ,
		.btn_area button.join{
			background-image: none;
			margin: 0 5px;
			width: 100px;
			height: 40px;
			line-height: normal;	
			font-size: 16px;
			padding: 0;
		}

}

	







/*----- 左右區塊 -------------------------*/

.page{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}



	/*左側*/
	.left{
		box-sizing: border-box;
		width: 225px;
	}
				
		/*左側標題*/
		.left_title{
			font-size: 20px;
			letter-spacing: -1px;
			/* background-color: #aeaeae; */
			background-color: var(--sixth_color);
			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;
				font-family: var(--foreign_font);

				display: none;
			}
		
		/*左側選單列表*/
		.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 > a:after{
					content: "";
					position: absolute;
					right: 10px;
					top: 50%;
					transform: translateY(-50%);
					background-image: url(../images/btn_icon_b.svg);
					background-size: cover;
					width: 17px;
					height: 17px;
					background-size: 17px;margin-right: 16px;
					visibility: hidden;
					opacity: 0;
					transition:0.5s ease all;
				}
				.leftList:hover > a:after{
					margin-right: 0px;
					visibility: unset;
					opacity: 1;
					transition:0.5s ease all;
				}
					
					/*代表性標誌*/
					/*.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;
							text-decoration:none;
							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: var(--primary_color);
						}
						.leftList_open_list a:hover {
							color: var(--primary_color);							
						}

	/*右側*/
	.right{
		box-sizing:border-box;
		width: calc(100% - 300px);
	}


	/*無左側選單*/
	.right.no_left{
		width: 100%;
	}

	
	/*右側內容區塊*/
	.right_contentBg{	
		padding-top: 20px;
	}
	
@media (max-width: 1025px){	

	.right {
		width: calc(100% - 250px);
	}

}

@media (max-width: 990px){

	.page{
		display: block;
		flex-wrap: unset;
		justify-content: unset;
	}
	
	
	/*左側*/
	.left{
		width:100%;
		margin-bottom: 20px;
		position: static;
	}
	
		/*左側表單名稱*/
		.left_title {
			position: relative;
			cursor: pointer;
			background-color: #fff;
			/* padding: 6px 50px 13px 15px; */

			padding: 10px 50px 10px 15px;

			font-size: 17px;
			font-size: 18px;
			font-weight: 700;

			letter-spacing: 1px;
			color: var(--dark_color);
			border: 1px solid #777;
		}
			.left_title span{
				display:inline-block;
				font-size: 13px;	
				color: #000;


				display: none;
			}
			
			.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: calc(50% + 4px);
				right: 15px;
				transform: translateY(-50%);
				transform-origin: center;
			}
			
		
		/*左側表單*/
		.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 ,
	.right.no_left{
		width:100%;
		padding: 0px 0px 0;
	}
	
	
}


















/*/////////////////////////////////////////////////////////*/
/*-------網路點燈區產品區塊--------*/
/*/////////////////////////////////////////////////////////*/

ul.productArea{	
	padding: 0;
	margin: 0;
	display: block;
	list-style-type: none;
	/* display:flex;
	flex-wrap: wrap;*/
	display: grid;
	grid-template-columns: repeat(3 , 1fr);
	gap: 0  1.05vw;
	/* margin: 0 -20px -20px; */
}
	/* 產品列表 */
	ul.productArea li {
		padding: 0;
		margin: 0;
		display: block;
		list-style-type: none;
		box-sizing: border-box;
		/* width: 33.3%; */
		/* padding: 0 20px 20px;
		margin-bottom: 20px; */
		margin-bottom: 20px;
		position: relative;
	}

	.productList {
		border-radius: 5px;
		/* background-color: #E5D8C9; */
		box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
		/* background-image: linear-gradient(135deg, #fdfcfb 0%, #e2d1c3 100%) , url(../images/card_bg_s.svg) ; */
		background-image: linear-gradient(135deg, rgba(253 252 251 / 70%) 40%, rgba(175 238 124 / 40%) 100%), url(../images/card_bg_s3.svg);
		background-size: cover;
		padding: 1.57vw; /*30px*/
		height: 100%;
		/* height: calc(100% - (30px * 2)); */
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
	}

		/* 產品標題 */
		.productList strong {
			padding: 0;
			margin: 0;
			display: block;
			font-size: 24px;
			line-height: 1.5;
			color: var(--dark_color);
			position: relative;
			margin-bottom: 15px;
		}
		.productList strong:before {
			position: absolute;
			content: "";
			width: 25px;
			height: 2px;
			left: 2px;
			bottom: -5px;
			/* margin-top: 20px; */
			background-color: var(--sixth_color);
		}

	/* 產品簡述 */
	.productList .briefly {
		font-size: 20px;
		color: #000;
		line-height: 1.5;
		/* modify by david 20220727 start */
		/* overflow: hidden;*/
		/*white-space: nowrap; */
		/* overflow: hidden; */
		/* text-overflow: ellipsis; */
		/* -webkit-box-orient: vertical; */
		/* modify by david 20220727 end */
		text-overflow: ellipsis;
		overflow: hidden;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
	}

	/* 產品按鍵 */
	.productList .btn {
		margin: 40px 0px 0px;
		/* width: 160px; */
		/* height: 40px; */
		background: var(--third_color);
		background: var(--sixth_color);
		display: inline-flex;
		align-items: center;
		justify-content: center;
		/* border-radius: 5px; */
		border-radius: 20px;
	}
		.productList .btn a {
			display: inline-block;
			color: #fff;
			text-decoration: none;
			position: relative;
			padding-right: 25px;
			line-height: 2.5;
			transition: 0.5s ease all;
			padding: 0 50px 0 20px;
			white-space: nowrap;
		}
			.productList .btn a:before {
				position: absolute;
				content: "";
				background-image: url(../images/right_arrow.svg);
				background-size: 18px;
				background-position: center;
				background-repeat: no-repeat;
				width: 18px;
				height: 18px;
				right: 20px;
				top: 50%;
				transform: translateX(0%) translateY(-50%);
			}

		/* hover */
		.productList .btn a:hover{
			padding-right: 40px;
			transition: 0.5s ease all;
		}


	/* 產品燈圖片 */
	.productList .light_pic {
		/* position: absolute;
		width: 30%;
		right: 0;
		bottom: 0; */

		position: absolute;
		width: 20%;
		min-width: 75px;
		right: -2%;
		bottom: -1%;
	}
		.productList .light_pic img {
			width: 100%;
			height: auto;
		}
				

@media (max-width: 1025px){

	ul.productArea{	
		grid-template-columns: repeat(2 , 1fr);
		gap: 0  10px; /*10px*/
	}

	/* ul.productArea{	
		margin: 0 -10px -10px;
	} */
		/* 產品列表 */
		ul.productArea li {
			/* width: 50%;
			padding: 0 10px 10px; */
			margin-bottom: 10px;
		}
		.productList {
			padding: 15px;
			/* height: calc(100% - (15px * 2)); */
		}
		.productList .btn {
			margin: 40px 0px 0px;
			width: 120px;
		}
}

@media (max-width: 540px){

	ul.productArea{	
		display: block;
		gap: 0;
		/* margin: 0 0px -10px; */
	}
		/* 產品列表 */
		ul.productArea li {
			width: 100%;
			/* padding: 0 0px 10px; */
			/* margin-bottom: 10px; */
		}
		/* .productList {
			padding: 15px;
			height: calc(100% - (15px * 2));
		}*/
		.productList .btn {
			margin: 20px 0px 0px;
			/* width: 120px; */
		} 
		/* 產品燈圖片 */
		.productList .light_pic {
			display: none;
		}


		

	/* 產品燈圖片 */
	.productList .light_pic {
		width: 30%;
		min-width: 55px;
		right: -5%;
		bottom: -5%;
	}
}















/*=======================================================*/
/*-------資料填寫--------*/
/*=======================================================*/





/*捐款資料填寫-------------------------------------*/


.valuationBg{
	padding:10px 45px ;
	padding:0px 45px ;
}
.valuationBg.text_area{
	border-bottom: 1px var(--fourth_color) solid;
	padding-bottom: 20px;
}
.valuationBg.defferent_form{
	padding:10px 30px 0 30px;
}
.valuationBg.defferent{
	padding:10px 48px 0;
}
	.valuationArea {
		/* border-bottom: 1px var(--fourth_color) dashed; */
		padding: 20px 0 20px;
	}
	
	.valuationBg .valuationArea:first-of-type{
		/* padding-top: 0; */
	}
	.valuationBg:first-of-type .valuationArea{
		padding-top: 0;
	}
	.valuationBg .valuationArea:last-of-type {
		border-bottom: 1px var(--fourth_color) solid;
		/* padding-bottom: 0; */
	}
	.valuationArea.same{
		padding:10px 0 !important;
		background-color: var(--fourth_color);
		border: 1px solid var(--fourth_color);
	}
	.valuationBg.defferent .form_area .form_list.fLR_address_area{
		background-color: var(--primary_color);
		padding: 10px;
		border-radius: 5px;
	}
	.valuationBg.defferent .form_area .fLR_address_area .item_RadioCheckArea .item_RadioCheck .item_radio + label:before{
		border-color: #fff;
	}
	.valuationArea.defferent_form{
		padding: 10px 30px !important;
	}

	@media(max-width:540px){
		.valuationArea.same{
			margin-top: 10px;
		}
	}

/* .modify by william 20241114 start */
.mt_30 {
	margin-top: -30px;
}
/* .modify by william 20241114 end */

/* 收據抬頭+收據地址_隱藏 */
.receipt_show{
	display: none;
}
/* ============================ */
/* 王母會員_表格 */
/* ============================ */
.valuationArea .form_area.table{
	text-align: center;
	justify-content: unset;
	/* max-width: 900px; */
	max-width: 900px; /* 限制宽度以防撑开页面 */
	/* margin: 0 auto; */
	border-radius: 3px;
	overflow-x: auto;
	font-size: 15px;
	line-height: 1.1;
	color: #333;
	white-space: nowrap;
		
}
.valuationArea .form_area.table table{
	table-layout: fixed; /* 固定列宽 */
    min-width: 900px; /* 让表格宽度填满父容器	 */

}
.valuationArea .form_area.table thead tr th{
	text-align: center;
    /* vertical-align: middle; */
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
	/* padding: 10px 15px; */
    padding: 0.52vw 0.26vw; /*10px 5px*/
    box-sizing: border-box;
    background: var(--sixth_color);
    min-width: 68px;
    font-weight: normal;
}
.valuationArea .form_area.table thead tr th:first-of-type{
	
}
.valuationArea .form_area.table thead tr th:nth-of-type(2){
	
}
/* ============================ */
/* 佛燈油/淨香_表格 */
/* ============================ */
.valuationArea .form_area.table.tabletype2{
	text-align: center;
	justify-content: unset;
	/* max-width: 900px; */
	overflow-x: auto; /* 设置水平滚动条 */
    max-width: 500px; /* 限制宽度以防撑开页面 */
    /* margin: 0 auto; */
    border-radius: 3px;
    overflow-x: auto;
    font-size: 15px;
    line-height: 1.1;
    color: #333;			
}
.valuationArea .form_area.table.tabletype2 table{
	table-layout: fixed; /* 固定列宽 */
    min-width: 500px; /* 让表格宽度填满父容器	 */

}

/* 佛燈油/淨香_表格_姓名欄位 */
.valuationArea .form_area.table.tabletype2 thead tr th:first-of-type{
	
}	
.valuationArea .form_area.table tbody tr td{
    text-align: center;
    /* vertical-align: middle; */
    font-size: 15px;
    line-height: 24px;
    color: #333;
    /* padding: 15px 10px; */
	padding: 0.52vw 0.26vw; /*10px 5px*/
    box-sizing: border-box;
    border-bottom: 1px solid #ffffff;
    /* border-right: 2px solid #ffffff; */
	border-right: 1px solid #ffffff;
    background: #ffeaf3;
}
@media(max-width:1080px){
	.valuationArea .form_area.table.tabletype2 thead tr th:first-of-type{
	
		width: 20%;
	}	
	
}
/* ============================ */
/* 光明燈_表格 */
/* ============================ */
.valuationArea .form_area.table.tabletype3{
		max-width: 1550px;
}
@media(max-width:1080px){
	.valuationArea .form_area.table.tabletype3 thead tr th:first-of-type{
	
		width: 20%;
	}
	
}
/* ============================ */
/* 祭改_表格 */
/* ============================ */
.valuationArea .form_area.table.tabletype4{
	text-align: center;
	justify-content: unset;
	/* max-width: 900px; */
	overflow-x: auto; /* 设置水平滚动条 */
    max-width: 500px; /* 限制宽度以防撑开页面 */
    /* margin: 0 auto; */
    border-radius: 3px;
    overflow-x: auto;
    font-size: 15px;
    line-height: 1.1;
    color: #333;
		
}
.valuationArea .form_area.table.tabletype4 table{
	table-layout: fixed; /* 固定列宽 */
    min-width: 500px; /* 让表格宽度填满父容器	 */

}
@media(max-width:1080px){
	.valuationArea .form_area.table.tabletype4 thead tr th:first-of-type{
	
		width: 20%;
	}
	
}
/* ============================ */
/* 迴向蓮花_表格 */
/* ============================ */
.valuationArea .form_area.table.tabletype5{
	text-align: center;
	justify-content: unset;
	/* max-width: 900px; */
	overflow-x: auto; /* 设置水平滚动条 */
    max-width: 1550px; /* 限制宽度以防撑开页面 */
    /* margin: 0 auto; */
    border-radius: 3px;
    overflow-x: auto;
    font-size: 15px;
    line-height: 1.1;
    color: #333;
		
}
.valuationArea .form_area.table.tabletype5 table{
	table-layout: fixed; /* 固定列宽 */
    min-width: 1500px; /* 让表格宽度填满父容器	 */

}
.valuationArea .form_area.table.tabletype5 thead tr th:last-of-type{
	width:80%;
}
/* 在螢幕放大150%且寬度大於991時，套用這裡的特定樣式 */ 
@media screen and (min-width: 991px) and (min-height: 500px) and 
(max-height: 1000px) and (-webkit-min-device-pixel-ratio: 1.5) and 
(-webkit-max-device-pixel-ratio: 1.74), only screen and (min-resolution: 150dpi) and 
(max-resolution: 174dpi) { 
	.valuationArea .form_area.table.tabletype5 thead tr th:last-of-type{
		width:80%;
	}
}

@media(max-width:1080px){
	.valuationArea .form_area.table.tabletype5 thead tr th:first-of-type{
		width: 10%;
	}
}
/* ============================ */
/* 祭年關煞_表格 */
/* ============================ */
.valuationArea .form_area.table.tabletype6{
	text-align: center;
	justify-content: unset;
	/* max-width: 900px; */
	overflow-x: auto; /* 设置水平滚动条 */
    max-width: 500px; /* 限制宽度以防撑开页面 */
    /* margin: 0 auto; */
    border-radius: 3px;
    overflow-x: auto;
    font-size: 15px;
    line-height: 1.1;
    color: #333;
		
}
.valuationArea .form_area.table.tabletype6 table{
	table-layout: fixed; /* 固定列宽 */
    min-width: 400px; /* 让表格宽度填满父容器	 */

}
.valuationArea .form_area.table.tabletype6 thead tr th:first-of-type{
	
}
.valuationArea .form_area.table.tabletype6 thead tr th,
.valuationArea .form_area.table.tabletype6 tbody tr td{
	
	
}
/* 在螢幕放大150%且寬度大於991時，套用這裡的特定樣式 */ 
@media screen and (min-width: 991px) and (min-height: 500px) and 
(max-height: 1000px) and (-webkit-min-device-pixel-ratio: 1.5) and 
(-webkit-max-device-pixel-ratio: 1.74), only screen and (min-resolution: 150dpi) and 
(max-resolution: 174dpi) { 
	.valuationArea .form_area.table.tabletype5 table{
		table-layout: fixed; /* 固定列宽 */
		min-width: 1000px; /* 让表格宽度填满父容器	 */
	
	}

}

@media(max-width:1080px){
	.valuationArea .form_area.table.tabletype6 thead tr th:first-of-type{
		width: 20%;
	}
}
/* ============================ */
/* 祖先超昇_表格 */
/* ============================ */
.valuationArea .form_area .form_list{
	text-align: left;
	margin-bottom: 10px;
	padding-top: 0;
}

.valuationArea .form_area .form_list .fL_tit{
	padding-top: 0;
}
.valuationArea .form_area .form_list .fL_info.item_RadioCheckArea{
	
}
.valuationArea .form_area .form_list .fL_info.item_RadioCheckArea .provide_num{
	display: flex;
	justify-content: center;
	align-items: center;
	gap:5px;
}
.valuationArea .form_area.table.tabletype7{
	text-align: center;
	justify-content: unset;
	/* max-width: 900px; */
	overflow-x: auto; /* 设置水平滚动条 */
    max-width: 900px; /* 限制宽度以防撑开页面 */
    /* margin: 0 auto; */
    border-radius: 3px;
    overflow-x: auto;
    font-size: 15px;
    line-height: 1.1;
    color: #333;
		
}

.valuationArea .form_area.table.tabletype7 .valuationArea_bottom{
	margin-bottom: 20px;
}
.valuationArea .form_area.table.tabletype7 table{
	table-layout: fixed; /* 固定列宽 */
    min-width: 600px; /* 让表格宽度填满父容器	 */

}
.valuationArea .form_area.table.tabletype7 thead tr th:first-of-type{
	
}
.valuationArea .form_area.table.tabletype7 thead tr th,
.valuationArea .form_area.table.tabletype7 tbody tr td{
	
	
}
@media(max-width:1080px){
	.valuationArea .form_area.table.tabletype7 thead tr th:first-of-type{
		width: 20%;
	
	}
}
@media(max-width:990px){
	.valuationBg.form_area_Bg .valuationArea .form_area{
		display: flex;
	}
	.valuationArea .form_area .form_list.form_list.fLType3{
		
	}
	
	.valuationArea .form_area .form_list .fL_tit{
		padding-top: 0;
	}
	.valuationArea .form_area .form_list .fL_info.item_RadioCheckArea{
		
	}
}
@media(max-width:768px){
	.valuationBg.form_area_Bg .valuationArea .form_area{
		display: block;
	}
	.valuationArea .form_area .form_list.form_list.fLType3{
		width: 100%;
	}
	
	.valuationArea .form_area .form_list .fL_tit{
		padding-top: 0;
	}
	.valuationArea .form_area .form_list .fL_info.item_RadioCheckArea{
		
	}
}

/* ============================ */
/* 補庫_表格 */
/* ============================ */
.valuationArea .form_area.table.tabletype8{
	text-align: center;
	justify-content: unset;
	/* max-width: 900px; */
	overflow-x: auto; /* 设置水平滚动条 */
    max-width: 900px; /* 限制宽度以防撑开页面 */
    /* margin: 0 auto; */
    border-radius: 3px;
    overflow-x: auto;
    font-size: 15px;
    line-height: 1.1;
    color: #333;
		
}
.valuationArea .form_area.table.tabletype8 table{
	table-layout: fixed; /* 固定列宽 */
    min-width: 800px; /* 让表格宽度填满父容器	 */

}
.valuationArea .form_area.table.tabletype8 thead th:first-of-type{
	
}

.valuationArea .form_area.table.tabletype8 thead tr th,
.valuationArea .form_area.table.tabletype8 tbody tr td{
	
	
}
@media(max-width:1080px){
	.valuationArea .form_area.table.tabletype8 thead th:first-of-type{
		width: 10%;
	}
}
/* ============================ */
/* 補庫_表格 */
/* ============================ */
.valuationArea .form_area.table.tabletype9{
	text-align: center;
	justify-content: unset;
	/* max-width: 900px; */
	overflow-x: auto; /* 设置水平滚动条 */
    max-width: 900px; /* 限制宽度以防撑开页面 */
    /* margin: 0 auto; */
    border-radius: 3px;
    overflow-x: auto;
    font-size: 15px;
    line-height: 1.1;
    color: #333;
		
}
.valuationArea .form_area.table.tabletype9 table{
	table-layout: fixed; /* 固定列宽 */
    min-width: 600px; /* 让表格宽度填满父容器	 */

}


.valuationArea .form_area.table.tabletype9 thead tr th,
.valuationArea .form_area.table.tabletype9 tbody tr td{
	
	
}

.valuationArea .form_area.table.tabletype9 thead th:first-of-type{
	
}
.valuationArea .form_area.table.tabletype9 thead th:last-of-type{
	
}
@media(max-width:1080px){
	.valuationArea .form_area.table.tabletype9 thead th:first-of-type{
		width: 15%;
	}
	
}
/* ============================ */
/* 補運_表格 */
/* ============================ */
.valuationArea .form_area.table.tabletype10{
	text-align: center;
	justify-content: unset;
	/* max-width: 900px; */
	overflow-x: auto; /* 设置水平滚动条 */
    max-width: 500px; /* 限制宽度以防撑开页面 */
    /* margin: 0 auto; */
    border-radius: 3px;
    overflow-x: auto;
    font-size: 15px;
    line-height: 1.1;
    color: #333;
		
}
.valuationArea .form_area.table.tabletype10 table{
	table-layout: fixed; /* 固定列宽 */
    min-width: 400px; /* 让表格宽度填满父容器	 */

}


.valuationArea .form_area.table.tabletype10 thead tr th,
.valuationArea .form_area.table.tabletype10 tbody tr td{
	
	
}

.valuationArea .form_area.table.tabletype10 thead th:first-of-type{
	
}
@media(max-width:1080px){
	.valuationArea .form_area.table.tabletype10 thead th:first-of-type{
		width: 20%;
	}
}
/* ============================ */
/* 問事報名表_表格 */
/* ============================ */
.valuationArea .form_area.table.question{
	text-align: center;
	justify-content: unset;
	/* max-width: 900px; */
	overflow-x: auto; /* 设置水平滚动条 */
    max-width: 1550px; /* 限制宽度以防撑开页面 */
    /* margin: 0 auto; */
    border-radius: 3px;
    overflow-x: auto;
    font-size: 15px;
    line-height: 1.1;
    color: #333;
		
}
.valuationArea .form_area.table.question table{
	table-layout: fixed; /* 固定列宽 */
    min-width: 900px; /* 让表格宽度填满父容器	 */

}
.valuationArea .form_area.table.question thead th:first-of-type{
	width: 5%;
	
}
.valuationArea .form_area.table.question thead th:last-of-type{
	
}

.valuationArea .form_area.table.question thead tr th,
.valuationArea .form_area.table.question tbody tr td{
	
	
}
.valuationArea .form_area.table.question tbody tr td:first-of-type img{
	transform: rotate(45deg);  /* 旋转 45 度形成 X */

}
.valuationArea .form_area.table.question tbody tr td:first-of-type button{
	all: unset;
	padding: 5px 10px;
	font-size: 15px;
	cursor: pointer;
	border: 1px solid var(--sixth_color);
	background-color: var(--sixth_color);
	color: #fff;
	/* border-radius: 10px; */

}
.valuationArea .form_area.table.question tbody tr:last-of-type td button{
	position: relative;
	width:5%;
}
/* 在螢幕放大150%且寬度大於991時，套用這裡的特定樣式 */ 
@media screen and (min-width: 991px) and (min-height: 500px) and 
(max-height: 1000px) and (-webkit-min-device-pixel-ratio: 1.5) and 
(-webkit-max-device-pixel-ratio: 1.74), only screen and (min-resolution: 150dpi) and 
(max-resolution: 174dpi) { 
	.valuationArea .form_area.table.question thead th:first-of-type{
		width: 10%;
		
	}
}
@media(max-width: 1700px){

	.valuationBg{
		padding:10px 10px ;
	}




	.valuationArea .form_area.table thead tr th ,
	.valuationArea .form_area.table tbody tr td{
		padding: 5px;
	}



}

@media(max-width:1080px){
	.valuationArea .form_area.table.question thead th:first-of-type{
		width:10%;
	}
}










/* 法會報名完成頁 */
.valuationArea.check{
	overflow-x: auto;
}
.valuationArea.check table tbody tr td{
	padding: 10px;
}

/* --------------------------------------------- */
.in_titStyle4 span.add_member{
	color: #333;
	margin-left: 20px;
}
.information{
	width: 100%;
	display: flex;
	flex-direction: row;
    flex-wrap: wrap;
    vertical-align: top;
    justify-content: space-between;
    align-content: flex-start;
}


.valuation .cart_checkbox {
    font-size: 14px;
    font-weight: normal;
    /* font-family: 'Noto Sans TC', sans-serif; */
    letter-spacing: normal;
    color: #333;
	margin-right: 10px;
}




		/* 閏 */
		.leapArea {
			align-items: center;
			display: flex;
			gap: 10px 10px;
			/* width: 100%; */
			justify-content: flex-start;
		}
			.form_list .leapArea .leap {
				align-items: center;
				display: flex;
				gap: 10px 10px;
			}
		


			

@media (max-width: 990px){

	/* 閏 */
	.leapArea {
		width: 100%;
		margin-top: 10px;
	}
	
}


@media (max-width:425px){

		/* 閏 */
		.leapArea {
			flex-wrap: wrap;
		}
			
			.form_list .leapArea .leap {
				
			}
			.form_list .leapArea select:first-of-type{
				/* width: 100%; */
			}
}








/*=======================================================*/
/*-------新增_被祈福者資料--------*/
/*=======================================================*/




.addFamilyArea{
    border-bottom: 1px #DCDCDC dashed;
	margin-bottom: 30px;
	margin-bottom: 0px;
}
/* 有網編區的表格間距拿掉 */
.valuationArea.addFamilyArea.text_area{
    border-bottom: 1px #DCDCDC dashed;
	margin-bottom: 0px;
	padding-bottom: 20px;
}

	.addFamilyArea .in_titStyle4{

	}
		.addFamilyArea .in_titStyle4 span.num{
			color: inherit;
			font-size: inherit;
			line-height: inherit;
			margin: 0;
			margin-left: 5px;
		}
		.addFamilyArea .in_titStyle4 .operate{
			margin: 0;
		}
			.addFamilyArea .in_titStyle4 .operate input ,
			.addFamilyArea .in_titStyle4 .operate button{
				margin: 0;
				width: auto;
				height: auto;
				line-height: 1.2;
				padding: 5px 5px;
				font-weight: bold;
				/* border-color: var(--second_color);
				background: var(--second_color); */
				color: #fff;
				font-size: 16px;
			}
			.addFamilyArea .in_titStyle4 .operate input.delete{
				border-color: var(--second_color);
				background: var(--second_color);
				background: #817f7f;
			}
			.addFamilyArea .in_titStyle4 .operate input.slideBtn{
				background: var(--sixth_color);
				border-color: var(--sixth_color);
			}

			/* 新增家屬按鍵 */
			.addFamilyArea .in_titStyle4 .operate button.add_family{
				background: var(--sixth_color);
				border-color: var(--sixth_color);
				background-size: 13px;
				background-position: 5px 50%;
				background-repeat: no-repeat;
				background-image: url(../images/add_user_btn.svg);
				padding-left: calc(13px + 5px + 5px);
			}







			









	/* 新增家屬按鍵 */
	.btn_area.add{
		display: flex;
		justify-content: flex-end;
	}
	.btn_area.add.same{
		/* modify by william 20241114 */
		float: left;
		padding-top: 30px;		
		/* modify by william 20241114 */
	}
	.btn_area.same input{
		background-color: var(--sixth_color);
		border-color: var(--sixth_color);
		color: #fff;
	}
	.btn_area.add.same input[type="button"]{
		background-color: var(--sixth_color);
		color: #fff;
		border: 1px solid var(--sixth_color);
		font-weight: bold;
	}
	.btn_area.add.address input[type="button"]{
		background-color: var(--sixth_color);
		color: #fff;
		border: 1px solid var(--sixth_color);
		font-weight: bold;
	}
	.btn_area.add.address{
		display: flex;
		justify-content: flex-start;
		margin-top: 30px;
	}
		.btn_area.add input ,
		.btn_area.add button{
			font-weight: bold;
		}
		.btn_area.add input.add_familyBtn ,
		.btn_area.add button.add_familyBtn{
			background-size: 18px;
			background-position: 23px 50%;
			background-repeat: no-repeat;
			background-image: url(../images/add_user_btn.svg);
			color: #fff;
			padding-left: 25px;
			width: 160px;
			background-color: var(--sixth_color);
			border-color: var(--sixth_color);
		}

		button.btn_area.addResident {
			margin: 0;
			width: 200px;
			/* height: 30px; */
			background: #fff0;
			border: 1px var(--third_color) solid;
			color: #fff;
			border-color: var(--dark_color);
			color: var(--dark_color);
			border-radius: 5px;
			line-height: normal;
			letter-spacing: 1px;
			font-size: 19px;
			transition: 0.2s ease all;
			cursor: pointer;
			font-weight: 400;
			display: flex;
			justify-content: center;
			padding: 10.5px 0;
			margin: 0 30px;
		}
		button.btn_area.addResident.defferent{
			margin: 0;
			
			width: 200px;
			/* height: 30px; */
			background: var(--sixth_color);

			border: 1px var(--sixth_color) solid;
			color: #fff;
			border-color: var(--sixth_color);
			/* color: var(--dark_color); */
			border-radius: 5px;
			line-height: normal;
			letter-spacing: 1px;
			font-size: 19px;
			transition: 0.2s ease all;
			cursor: pointer;
			font-weight: bold;
			display: flex;
			justify-content: center;
			padding: 10.5px 0;
			margin: 0 60px;
			margin-top: 20px;
		}

		




@media (max-width: 990px){
	
	/* 新增家屬按鍵 */
	.btn_area.add{
		justify-content: center;
	}

	.btn_area.add input.add_familyBtn, .btn_area.add button.add_familyBtn {
		background-position: 25px 50%;
		padding-left: 18px;
		width: 150px;
	}

	.addFamilyArea .in_titStyle4 .operate input ,
	.addFamilyArea .in_titStyle4 .operate button{
		color: #fff;
		font-size: 14px;
	}
	/* 新增家屬按鍵 */
	.addFamilyArea .in_titStyle4 .operate button.add_family{
		background-image: none;
		padding-left: 5px;
	}

	button.btn_area.addResident.defferent{
		
		margin: 0 0;
		padding: 5.5px 0;
		
	}

	.valuationBg.defferent_form{
		padding:10px 10px 0 10px;
	}

}





/*=======================================================*/
/*-------會員專區_被祈福者資料--------*/
/*=======================================================*/

.valuation_family_memberBg{

}
	.valuation_family_memberBg .addFamily{
		
	}
		.valuation_family_memberBg  .addFamilyArea{
			
		}




		
	.valuation_family_memberBg .addFamily .in_titStyle4{
		padding-bottom: 0px;
	}
	.valuation_family_memberBg .addFamily .in_titStyle4:after {
		display: none;
	}


	/*當前模式*/
	.valuation_family_memberBg .addFamilyArea .form_area {
		/* display: none; */
	}	
	.valuation_family_memberBg .addFamilyAre.activea .form_area {
	}

	.valuation_family_memberBg .addFamilyArea.active .in_titStyle4{
		padding-bottom: 20px;
	}
		.valuation_family_memberBg .addFamilyArea.active .in_titStyle4:after {
			/* display: block; */
		}


















/*=======================================================*/
/*-------捐款金額--------*/
/*=======================================================*/



/* 捐款金額 --------------*/
.donation-amount{
	gap: 10px;
	grid-template-columns: repeat(5 , 1fr);
	display: grid;
	flex-wrap: wrap;
}

	.donation-amount label {
		display: flex;
		background-color: #e0e0e0;
		line-height: 2;
		border-radius: 4px;
		cursor: pointer;
		justify-content: center;
		align-items: center;
		font-size: min(max(1.3vw, 15px), 26px);
	}
	.donation-amount label.active {
		background-color: var(--primary_color);
	}
	.donation-amount input[type="radio"] {
		/* display: none; */ /* 隱藏 radio 按鈕 */
		position: absolute;
		opacity: 0;
	}

	.donation-amount label.manualInput{
		justify-content: flex-start;
		background-color: transparent;
	}

		.donation-amount label.manualInput input[type="text"] {
			/* width: 100px;
			margin-bottom: 10px;
			padding: 5px; */
			width: 100%;
		}


		.donation-amount label.manualInput button{			
			border-radius: 50px;			
			border: none;						
			min-width: 80px;						
			height: 38px;						
			line-height: normal;						
			cursor: pointer;						
			background: var(--fifth_color);						
			color: #fff;						
			font-size: 17px;						
			font-weight: 600;						
			letter-spacing: 2px;
		}
		.donation-amount label.manualInput.active button ,
		.donation-amount label.manualInput button:hover{			
			background: var(--primary_color);
		}





					
@media (max-width: 800px){			

	/* 捐款金額 --------------*/
	.donation-amount{
		gap:5px;
		grid-template-columns: repeat(2 , 1fr);
	}
		.donation-amount label.manualInput{
			grid-column-start:1 ;
			grid-column-end:3 ;
		}
}



/*=======================================================*/
/*-------定期定額--------*/
/*=======================================================*/

	.regularContributions{
		display: flex;
		align-items: center;
	}
		.regularContributions p{
			white-space:nowrap;
		}
		.regularContributions select.regular{
			width: min-content;
		}
		/*預設隱藏*/
		.payment_method_hide{
			display: none;
		}


					
	@media (max-width: 990px){	

		.regularContributions {
			flex-wrap: wrap;
		}
			.regularContributions p{
				white-space:unset;
				font-size: 10px;
				font-size: min(max(0.6vw, 10px), 13px);
			}


	}





.receipt_hide{
	display: none;
}













/*=======================================================*/
/*購物車步驟*/
/*=======================================================*/


/*購物車步驟*/
.cart_step {
	font-size:0px;
	/* padding: 10px 0px 20px 0px; */
	text-align:center;
	padding: 0px 0px 50px 0px;
}
	.cart_step_list {
		display:inline-block;
		vertical-align: top;
		line-height: 26px;
		padding: 0px 26px 0px 0px;
	}
		.step_number {
			font-size: 16px;
			font-weight: bold;
			display: inline-block;
			vertical-align:middle;
			background: var(--second_color);
			color: #fff;
			text-align: center;
			width: 26px;
			border-radius: 100%;
			height: 26px;
			line-height:  26px;
		}
		.step_content {
			font-size:15px;
			color: var(--second_color);
			display: inline-block;
			vertical-align:middle;
			padding: 0px 0px 0px 5px;
		}
			/*當前模式*/
			.cart_step_list.now .step_number {
				background: var(--sixth_color);
			}
			.cart_step_list.now .step_content {
				color:var(--sixth_color);
			}


@media (max-width: 990px){

	/*購物車步驟*/
	.cart_step {
		padding: 0px 0px 25px 0px;
	}

}

@media (max-width: 767px){
	.cart_step_list {
		line-height: 22px;
		padding: 0px 20px 0px 0px;
	}
		.step_number {
			font-size: 14px;
		}
		.step_content {
			font-size:13px;
			display: block;
			padding: 10px 0px 0px;
		}
}

@media (max-width: 541px){
	.cart_step_list {
	}
	.cart_step_list:last-of-type{
		padding: 0px;
	}
}


@media (max-width: 410px){
	.cart_step {
	}
		.cart_step_list {
			padding: 0px 10px 0px 0px;
			line-height:20px;
		}


			.step_number {
				width: 22px;
				height: 22px;
				font-size: 12px;
				line-height:  22px;
			}
			.step_content {
				font-size: 13px;
			}
}

@media (max-width: 321px){
	
	.cart_step_list {
		padding: 0px 15px 0px 0px;
	}
		.cSL_tw {
			font-size: 12px;
			padding: 5px 0px 0px;
			letter-spacing: 0px;
		}
}









/*=======================================================*/
/*------- 會員登入區塊 --------*/
/*=======================================================*/

.member_loginBg{
	/* padding: 15px 0px 0px; */
}
	.member_loginIn{

	}
		/* 標題 */
		.member_loginIn .title{
			font-size: 24px;
			font-weight: bold;
			color: #000;
			text-align: center;
		}

		
		/* 登入內容區塊 */
		.login_contentBg{
			margin: 30px auto;
			/* width: 420px; */
			width:565px;
			max-width: 100%;
			padding: 17.5px 27.5px 20px;
			-moz-box-sizing: border-box;
			box-sizing: border-box;
			border: 0.05em solid #e8e8e8;
			box-shadow: 0 3px 10px 0 rgb(0 0 0 / 0.1);
			overflow: hidden;
			background-color: #ffffff;
		}

			.login_contentIn{
				
			}

				.login_contentIn .right_title{	
					text-align: center;		
					font-size: 20px;		
				}			
					/* .login_contentIn .right_title h2{					
					} */
					.login_contentIn .right_title:after {
						display: none;
					}
				.login_contentIn > span{	
						font-size: 15px;
						color: #000;
						
				}	

				/* 表單區塊 */
				.member_loginBg .form_listBg{

				}
					/* 列表 */
					.form_listArea .form_list{
						position: relative;
						padding: 7.5px 0px;
						box-sizing: border-box;
					}

					/* 標題 */
					.form_listArea .form_list .title{
						position: absolute;
						left: 0;
						top: 50%;
						-webkit-transform: translateY(-50%);
						transform: translateY(-50%);
						
						font-weight: normal;
						font-size: 15px;
						line-height: 21px;
    					padding: 7px 0px;
					}

					/* 欄位 */
					.form_listArea .form_list .content{
						padding: 0px 0px 0px 85px;
						font-size: 15px;
						/* line-height: 21px; */
						line-height: 38px;
    					letter-spacing: 1px;
					}

						.form_listArea .form_list .content input{
							letter-spacing: 1px;
							padding: 0px 7px;
							font-size: 13px;
							line-height: 17px;
						}


					.form_listArea .form_list .content.captcha {
						padding-bottom: 0 !important;
						padding-left: 85px !important;
						display: flex;
						flex-wrap: wrap;
						align-items: center;
						gap: 2.5px 5px;
					}
						.form_listArea .form_list .content.captcha input {
							margin: 0;
						}
						.form_listArea .form_list .content.captcha a {
							margin: 0px 0px 0px;
						}

					/* 按鈕 */
					.form_list.login_button {
						/* padding: 22.5px 0px 0px; */
						padding:5px 0px 0px;
					}
						.form_list.login_button input[type="submit"] {
							width: 100%;
							background-color: var(--sixth_color);
							border-radius: 3px;
							color: #fff;
						}


					/* 社群登入按鈕 */
					.form_list.login_button.sns {
						margin: 0px -3px;

						display: flex;
						flex-wrap: wrap;
						flex-direction: row;
						align-items: flex-start;
					}

						.form_list.login_button.sns .button{
							width: 50%;
							box-sizing: border-box;
							padding: 0px 3px;
						}
							
							
							.form_list.login_button.sns .button input{
								text-align: center;
								width: 100%;
								font-size: 13px;
								padding: 10px 5px 10px 28px;
								color: #ffffff;
								line-height: normal;
							}

							/* line */
							.form_list.login_button.sns .button.line input{
								background-color: #00c300;
								background-image: url(../images/line_icon.png);
								background-repeat: no-repeat;
								background-position: 10px center;
								background-size: 28px;
							}
							
							/* facebook */
							.form_list.login_button.sns .button.fb input{
								background-color: #3B5998 ;
								background-image: url(../images/fb_icon.png);
								background-repeat: no-repeat;
								background-position: 5px center;
								background-size: 28px;
							}
							
							/* 忘記密碼頁 */
							.form_list.login_button.forget  {
								margin-top: 7.5px;
								padding: 0;
							}
							.form_list.login_button.forget input[type="button"] {
								background-color: #666666;
							}



				/* 裝飾區塊 */
				.member_loginBg .deco_bg{
					padding: 25px 0px 15px;
					
				}
					.member_loginBg .deco_bg .content{
						display: flex;
						-webkit-box-align: center;
						-webkit-align-items: center;
						-moz-box-align: center;
						-ms-flex-align: center;
						align-items: center
					}
						.member_loginBg .deco_bg .deco_line{
							flex: 1;
							-webkit-box-flex: 1;
							-webkit-flex: 1;
							-moz-box-flex: 1;
							-ms-flex: 1;

							background-color: #dbdbdb;
							width: 100%;
							height: 0.05em;
						}
					
						.member_loginBg .deco_bg .deco_text{
							color: #ccc;
							font-size:  13px;
							padding: 0px 10px;
						}		



				/* 其他功能區塊 */
				.member_loginBg .other_bg{
					padding: 0px;
					text-align: center;
				}
					.member_loginBg .other_bg .content {
						margin: 0px -3px;

						display: flex;
						flex-wrap: wrap;
						flex-direction: row;
						align-items: flex-start;
					}
						.member_loginBg .other_bg .content .other_list{
							/* float: left; */
							/* display: inline-block;
							box-sizing: border-box;
							position: relative;
							width: 48%; */ 

							position: relative;

							width: 50%;
							padding: 0px 3px;
							box-sizing: border-box;
						}
							.member_loginBg .other_bg .content .other_list:nth-of-type(2):before{
								position: absolute;
								left: -0.5px;

								content:'';
								background-color: #ccc;
								width: 0.05em;
								height: 23px;
							}

							.member_loginBg .other_bg .content .other_list a{
								display: block;
								color: #888888;
								font-size:  13px;
								padding: 5px 15px;
								transition: 0.2s ease all;
								text-decoration: none;
							}
							.member_loginBg .other_bg .content .other_list a:hover{
								color:#e5151f;
							}				




/*//////////////////////////////////////////////////////*/
/*------- 會員密碼_眼睛 --------*/
/*//////////////////////////////////////////////////////*/

/* 登入_密碼 */
.form_list.password{
}
.form_list.password .fL_info{
	position: relative;							
}
	.form_list.password input{
		padding-right: 45px;
	}
	
		/*閉眼*/
		.form_list.password i#check_eye ,
		.form_list.password i#check_eye2{
			position: absolute;
			color: #333;
			font-size: 20px;
			top: 50%;
			right: 10px;
			-webkit-transform: translate(0, -50%);
			transform: translate(0, -50%);	
			transition: 0.3s ease all;	
			cursor: pointer;
		}
		/* .form_list.password .eye:before{
			position: absolute;
			transition: 0.3s ease all;
			font-family: 'Bootstrap-icons';
			content: '\F33F';
			color: #333;
			font-size: 20px;
			top: 50%;
			right: 10px;
			-webkit-transform: translate(0, -50%);
			transform: translate(0, -50%);									
		} */
		/*開眼*/
		/* .form_list.password.active .eye:before{
			content: '\F33E';
		} */





/* 註冊會員頁面 class 加 special */
.member_loginBg.special .form_listArea .form_list .title {
	left: 32px;
}

.member_loginBg.special .form_listArea .form_list.password .title {
	left: 0;
}

.member_loginBg.special .form_listArea .form_list .content {
    padding: 0px 0px 0px 115px;
}


	.member_loginBg.special .form_listArea .form_list .content input[type="date"] {
		width: 100%;
	}




/* 修改資料頁面 */
.member_loginBg.modify  .login_contentBg{
	padding: 12.5px 27.5px 22.5px;
}
	.member_loginBg.modify .form_listArea .form_list{
		
	}
		.member_loginBg.modify .form_listArea .form_list .title{
			position: static;
			left: unset;
			top: unset;
			-webkit-transform: unset;
			transform: unset;
			text-align: left;
		}

		.modify .form_listArea .form_list .content{
			padding-left: 0;
		}


		/* 地址 */
		.form_listArea .form_list .content.home{
			display: block;
		}
			
			.member_loginBg.modify .form_list.login_button input[type="submit"]{
				background-color: #555555;
			}




							
@media (max-width: 641px){

	/* 社群登入按鈕 */
	.member_loginBg .form_list.login_button.sns {
		margin: 0px;
		padding: 7.5px 0px;
	}

		.member_loginBg .form_list.login_button.sns .button{
			width: 100%;
			padding: 7.5px 0px;
		}
			.member_loginBg .form_list.login_button.sns .button input{
				padding: 10px 10px;
				font-size: 15px;
			}
			

	.member_loginBg .deco_bg {
		padding: 20px 0px 15px;
	}

}


@media (max-width: 500px){

	.login_contentBg {
		padding: 12.5px 15px 22.5px;
	}

}


@media (max-width: 376px){

	/* 標題 */
	.member_loginBg .form_listArea .form_list .title{
		font-size: 13px;
		line-height: 17px;
		position: static;
		left: unset;
		top: unset;
		-webkit-transform: unset;
		transform: unset;
						
		text-align: left;
	}
	.member_loginBg.special .form_listArea .form_list .title{
		position: static;
		left: unset;
	}

	/* 欄位 */
	.member_loginBg .form_listArea .form_list .content{
		padding-left: 0;
	}
	.member_loginBg.special .form_listArea .form_list .content{
		padding-left: 0;
	}

		.member_loginBg .form_listArea .form_list .content input{
			font-size: 13px;
			line-height: 17px;
		}
		
		.form_listArea .form_list .content.captcha {
			/* padding-bottom: 0 !important; */
			padding-left: 0px !important;
			/* display: flex;
			flex-wrap: wrap;
			align-items: center;
			gap: 2.5px 5px; */
		}
			/* .form_listArea .form_list .content.captcha input {
				margin: 0;
			}
			.form_listArea .form_list .content.captcha a {
				margin: 0px 0px 0px;
			} */

		.member_loginBg .form_listArea .form_list.password .check_eye {
			top: calc(50% + 15px);
			-webkit-transform: translate(0, -50%);
			transform: translate(0, -50%);
		}

}

























/*/////////////////////////////////////////////////////////*/
/*-------聯絡我們--------*/
/*/////////////////////////////////////////////////////////*/

/* 聯絡我們區塊 */
.contactArea{
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;	
}

    /* 聯絡我們區塊left */
	.contact_left{
		box-sizing: border-box;
		padding: 0 15px;
		width: 50%;
	}
		.contact_left .text_area{
		}

			.contact_left .text_area iframe{	
				width: 100%;		
			}


    /* 聯絡我們區塊right */
	.contact_right{
		box-sizing: border-box;
		padding: 0 15px;
		width: 50%;
	}
		
	


@media (max-width: 1024px){

/* 聯絡我們區塊 */
.contactArea{
	display: block;
	flex-wrap: unset;
	margin: 0;	
}

    /* 聯絡我們區塊left */
	.contact_left{
		padding: 0 0px;
		width: 100%;
	}
	
    /* 聯絡我們區塊right */
	.contact_right{
		padding: 30px 0 0px;
		width: 100%;
	}

}









	
/*===========================================================*/
/*------- 彈窗內容區塊 --------*/
/*===========================================================*/
	

.prompt_lightBox{
	position: relative;
	margin: 0 auto;
	/* width: 600px;
	max-width: 95vw;
	max-height: 85vh; */
	max-width: 600px;
	width:95vw;
	max-height: 85vh;
	overflow-y: scroll;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.20);
	border-radius: 15px;
	background: #FFF;
	padding: 0px;
	font-size: min(max(1.05vw, 14px), 18px); /*字體大小 1.05vw、最小值 12px、最大值 20px*/
}
.prompt_lightBox.household_member {
	position: relative;
	margin: 0 auto;
	/* width: 600px;
	max-width: 95vw;
	max-height: 85vh; */
	max-width: 900px;
	width:95vw;
	/* max-height: unset; */
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.20);
	border-radius: 15px;
	background: #FFF;
	padding: 0px;
	font-size: min(max(1.05vw, 14px), 18px); /*字體大小 1.05vw、最小值 12px、最大值 20px*/
}
/* 在螢幕放大150%且寬度大於991時，套用這裡的特定樣式 */ 
@media screen and (min-width: 991px) and (min-height: 500px) and 
(max-height: 1000px) and (-webkit-min-device-pixel-ratio: 1.5) and 
(-webkit-max-device-pixel-ratio: 1.74), only screen and (min-resolution: 150dpi) and 
(max-resolution: 174dpi) { 
	.prompt_lightBox.household_member {
		position: relative;
		margin: 0 auto;
		/* width: 600px;
		max-width: 95vw;
		max-height: 85vh; */
		max-width: 900px;
		width:95vw;
		max-height: unset;
		box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.20);
		border-radius: 15px;
		background: #FFF;
		padding: 0px;
		font-size: min(max(1.05vw, 14px), 18px); /*字體大小 1.05vw、最小值 12px、最大值 20px*/
	}
}

/*只有網編*/
.prompt_lightBox2{
}

	.prompt_box_area{
		padding: 30px 0;	
	}

		.prompt_box_top {
			/* background-image: url(../images/in_banner.webp);
			background-position: center;
			background-repeat: no-repeat;
			background-size: cover;
			display: flex;
			justify-content: center;
			padding: 15px 0; */
			max-width: calc(100% - 60px);
			margin: 0 auto;
		}

			/* 內頁標題塊1 */
			.prompt_box_area .right_title{
				text-align: center;
				padding-left: 0;
			}
			.prompt_box_area .right_title:after {
				display: none;
			}
				.prompt_box_top strong{
					/* width: 50px; */
					/* width: 45px; */
				}
				/* .prompt_box_top img{
					width: 100%;
					height: auto;
				} */

		.prompt_box_area .form_area{			
		}
		.prompt_box_bottom{
			/* padding: 25px 40px; */
			/* font-size: min(max(1.3vw, 15px), 28px); */
			/* line-height: 1.5;
			font-weight: 500;
			color: #636363; */
			max-width: calc(100% - 60px);
			margin: 0 auto;
		}
		

			.prompt_box_area  .text_area{
				font-size: inherit;
				line-height: inherit;
				color: inherit;
				font-weight: inherit;
				margin: 25px 0;
				line-height: 1.5;

				padding: 10px;
				overflow-x: hidden;
				overflow-y: auto;
				max-height: 100px;
				border: 1px solid var(--primary_color);
				border-radius: 5px;
			}
			.prompt_lightBox2 .prompt_box_area  .text_area{
				margin: 0px 0;
				max-height: 400px;
			}


			.prompt_box_area  .text_area::-webkit-scrollbar {/*滾動條整體樣式*/
				width: 5px;     /*高寬分別對應橫豎滾動條的尺寸*/
				height: 1px;
			}
			.prompt_box_area  .text_area::-webkit-scrollbar-thumb {/*滾動條裡面小方塊*/
				border-radius: 5px;
				 -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
				 
				 background: var(--primary_color);
			}
			.prompt_box_area  .text_area::-webkit-scrollbar-track {/*滾動條裡面軌道*/
				/* -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2); */
				border-radius: 5px;
				background: #fff0;
			}	
	



			
				
			/*彈窗按鍵---------------*/
			.prompt_box_area .btn_area{
			}
			



	.test-popup {
	}

	/*彈窗內容close按鈕*/
	.mfp-close-btn-in .mfp-close {
		/* color: #fff0  !important;
		background: #fff0;
		box-shadow: none;
		border: none;
		background-position: center;
		background-repeat: no-repeat;
		background-image: url(../images/lightboxCloseBtn.webp);
		right: calc(-55px / 2);
		top: calc(-55px / 2);
		width: 55px;
		height: 55px;
		background-size: 55px;
		opacity: 1; */

		position: unset;
		right: unset;
		top: unset;
		opacity: 1;
		color: var(--sixth_color) !important;
		font-family: var(--mandarin_font) !important;
	}
	.prompt_lightBox2 .mfp-close{
		top: 0;
		right: 0;
		position: absolute;
	}
	
	/*彈窗內容close按鈕_點擊*/
	.mfp-close-btn-in .mfp-close:active{
		/* top: calc(-55px / 2) !important; */
	}
	/*彈窗內容_bg*/
	.mfp-bg {
		/* background-color: rgba(255 255 255 / 80%) !important; */
		/* opacity: 1 !important; */
	}



@media (max-width: 990px){

	/*------- 彈窗內容區塊 --------*/
	.prompt_lightBox {
		border-radius: 10px;
	}
		.prompt_box_area{
			padding: 15px 0;	
		}
			.prompt_box_top ,
			.prompt_box_bottom {
				max-width: calc(100% - 30px);
			}
			.prompt_box_bottom{
				margin-top: 15px;
			}
			.prompt_box_area .text_area{
				margin: 0px 0 15px;
				padding: 5px;
			}
}











/*/////////////////////////////////////////////////////////*/
/*-------頁數列區塊--------*/
/*/////////////////////////////////////////////////////////*/

.number_pageArea{
	text-align:center;
	margin:30px 0px 0px;
	position: relative;
    z-index: 5;
	font-family: var(--foreign_font);
}
	/*左側區塊*/
	.numberPage_leftArea{
		display: inline-block;
		vertical-align: middle;
	}	
		.numberPage_leftList{
			display: inline-block;
			vertical-align: middle;
		}
			.numberPage_leftList a{
				display: block;
				text-decoration: none;
			}
			
			/*modify by pekey 20181114*/
			img.hover_after{
				display: none;
				background-color: var(--primary_color);
				border-radius: 50%;
			}
			/*modify by pekey 20181114*/
			.numberPage_leftList a:hover img.hover_after{
				display: block;
			}
			/*modify by pekey 20181114*/
			.numberPage_leftList a:hover img.hover_before{
				display: none;
			}
		
	/*中間區塊*/
	.numberPage_middleArea{
		display: inline-block;
		vertical-align: middle;
		padding: 0px 8px;

		font-family: poppins, sans-serif;
		font-weight: 500;
		font-style: normal;
	}
		.numberPage_middleList{
			display: inline-block;
			vertical-align: middle;
			padding: 0px 4px;
		}
			.numberPage_middleList a{
				display: block;
				text-decoration: none;
				width: 31px;
				
				border-radius: 100%;
				background-color: transparent;
				color: #808080;

				padding: 8px 0px;
				font-size: 15px;
				line-height: 1;
			}
			/*active*/
			.numberPage_middleList.active a{
				background-color: var(--sixth_color);
				color: #fff;
			}
			/*hover*/
			.numberPage_middleList a:hover{
				background-color: var(--primary_color);
				color: #fff;
			}
	
	/*右邊區塊*/	
	.numberPage_rightArea{
		display: inline-block;
		vertical-align: middle;
	}
		.numberPage_rightList{
			display: inline-block;
			vertical-align: middle;
		}
			.numberPage_rightList a{
				display: block;
				text-decoration: none;
			}
			
			/*modify by pekey 20181114*/
			.numberPage_rightList a:hover img.hover_after{
				display: block;
			}
			/*modify by pekey 20181114*/
			.numberPage_rightList a:hover img.hover_before{
				display: none;
			}
		
	.numberPage_leftList span ,
	.numberPage_rightList span{
		display: inline-block;
		box-sizing: border-box;
		font-size: 21px;
		line-height: 23px;
		color: var(--sixth_color);
		vertical-align: middle;
		font-weight: bold;
	}	
	





@media (max-width: 990px){
	
	.number_pageArea{
		/* padding: 40px 0px 15px; */
	}

}
	
@media (max-width: 640px){
	
	.number_pageArea {
		margin:25px 0px 0px;
	}
	
		.numberPage_leftList:first-child{
			display: none;
		}
		
	.numberPage_middleArea{
		padding: 0px;
	}
		.numberPage_middleList{
			padding: 0px;
		}
		
		.numberPage_rightList:last-child{
			display: none;
		}
		
	
}

/* 非同戶會員資料管理 */
.btn_area button.delete{
	-webkit-appearance: none;
    -webkit-border-radius: 0px;
    outline: none;
    vertical-align: middle;
    border: 1px var(--third_color) solid;
    border-radius: 5px;
    letter-spacing: 1px;
    transition: 0.2s ease all;
    cursor: pointer;
	margin: 0;
    width: auto;
    height: auto;
    line-height: 1.2;
    padding: 5px 5px;
    font-weight: 400;
    color: #fff;
    font-size: 16px;
	border-color: var(--second_color);
    background: var(--second_color);
	background: #817f7f;
	margin-right: 10px;
}
button.del_Family{
	-webkit-appearance: none;
    -webkit-border-radius: 0px;
    outline: none;
    vertical-align: middle;
    border: 1px var(--third_color) solid;
    border-radius: 5px;
    letter-spacing: 1px;
    transition: 0.2s ease all;
    cursor: pointer;
	margin: 0;
    width: auto;
    height: auto;
    line-height: 1.2;
    padding: 5px 5px;
    font-weight: 400;
    color: #fff;
    font-size: 16px;
	border-color: var(--second_color);
    background: var(--second_color);
	background: #817f7f;
	border-color:#817f7f;
	margin-right: 10px;
	margin-top: 10px;
}
.btn_area button.add{
	-webkit-appearance: none;
    -webkit-border-radius: 0px;
    outline: none;
    vertical-align: middle;
    border: 1px var(--third_color) solid;
    border-radius: 5px;
    letter-spacing: 1px;
    transition: 0.2s ease all;
    cursor: pointer;
	margin: 0;
    width: auto;
    height: auto;
    line-height: 1.2;
    padding: 5px 5px;
    font-weight: 400;
    color: #fff;
    font-size: 16px;
	margin-right: 10px;
	background: var(--sixth_color);
    border-color: var(--sixth_color);
}
.btn_area button.slideBtn{
	-webkit-appearance: none;
    -webkit-border-radius: 0px;
    outline: none;
    vertical-align: middle;
    border: 1px var(--third_color) solid;
    border-radius: 5px;
    letter-spacing: 1px;
    transition: 0.2s ease all;
    cursor: pointer;
	margin: 0;
    width: auto;
    height: auto;
    line-height: 1.2;
    padding: 5px 5px;
    font-weight: 400;
    color: #fff;
    font-size: 16px;
	margin-right: 10px;
	background: var(--sixth_color);
    border-color: var(--sixth_color);

}
 .btn_area_add{
	display: flex;
	justify-content: flex-end;

}
 button.addadress{
	-webkit-appearance: none;
    -webkit-border-radius: 0px;
    
    padding: 0;
    outline: none;
    
    vertical-align: middle;
    
    line-height: 42px;
    
	margin: 0 10px;
    width: 148px;
    height: 50px;
    background: var(--sixth_color);
    border: 1px var(--sixth_color) solid;
    
    border-color: var(--sixth_color);
    color: #fff;
    border-radius: 5px;
    line-height: normal;
    letter-spacing: 1px;
    font-size: 19px;
    transition: 0.2s ease all;
    cursor: pointer;
    
	font-weight: bold;

}



.valuationBg_btn .btn_area.add.same input{
	max-width:100%;
	width:170px;
}



@media(max-width:540px){
	.valuationBg_btn .btn_area.add.same input{
		max-width:100%;
		width:200px;
	}
	.valuationBg_btn .btn_area.add.same {
		margin-right: 10px;
	}
}










.lunarCalendar{
	flex-wrap: nowrap;
}


	.lunarCalendar .gregorian{
		
	}
		.lunarCalendar .gregorian label{
			
		}
		.lunarCalendar .gregorian input{
			
		}
		.leapArea{
		}
		.lunarCalendar .gregorian.active ~  .leapArea{
			width: 100%;
		}


	.lunarCalendar .lunar{
		
	}
	.lunarCalendar .lunar.active{
		width: 100%;
	}
		.lunarCalendar .lunar label{
			
		}
		.lunarCalendar .lunar input[type="date"]{
			
		}
		.lunarCalendar .lunar.active .lunar{
			width: 100%;
		}





@media (max-width: 990px){

	.lunarCalendar{
		/* flex-wrap:wrap; */
	}
	.lunarCalendar.mb_active{
		flex-wrap:wrap;
	}
		.lunarCalendar .lunar.active {
			/* flex-wrap: wrap;
			gap: 20px 0; */
		}

}

@media (max-width: 510px){

	.lunarCalendar ,
	.lunarCalendar.mb_active{
		flex-wrap:wrap;
	}

}

/* 問事報名表 */
.plus{
	cursor: pointer;
	
}
.que_type div{
	display: inline-block;
	margin-right: 10px;
}
.que_type div.input_select{
	display: flex;
	justify-content: center;
	align-items: center;
	/* flex-wrap: wrap; */
	gap: 10px;
	margin-right: 0;
}

/* .que_type div.input_select select{
	width: 70px;
} */

	

.plus button,
.plus_people button{
	background-color: var(--primary_color);
	border: 1px solid var(--primary_color);
}

/* 輸入地址燈箱 */
.form_list.fLR_address_area.address_lightbox{
	display: block;
}
.form_list.fLR_address_area.address_lightbox .item_RadioCheckArea{
	margin-bottom: 6px;
}

.que_type.lanttern{
	display: grid;
	grid-template-columns: repeat(3,1fr);

}

.title_cross{
	width: 25px;
}
	.title_cross span{
		display: block;
		position: relative;
		padding-top: 100%;
		margin-right: 0px;
	}
		.title_cross span img{
			width:100%;
			height:auto;
			transition: all 0.3s ease-out;
			position: absolute;
			top: 0;
			left: 0;
			bottom: 0;
			right: 0;
			float: none;
			width: 100% !important;
			height: 100% !important;
			object-fit: cover;
			transition: all 0.3s ease-out;

		}

.title_cross:hover{
	cursor: pointer;
	opacity: 0.5;
}

@media (max-width: 768px){
	

	.title_cross{
		width: 15px;
	}
	
}

@media(max-width:1650px){
	.valuationBg.pl-46{
		padding:10px 10px 10px 46px;
	}
}

/* 活動報名_佛燈油 */
.valuationArea .form_area.table.tabletype2 .item_area{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: nowrap;
	gap:5px;
}
.item_area .item{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: nowrap;
	gap:5px;

}
.item_area .item input[type="text"]{
	
}

/* 活動報名_光明燈 */
.form_area.contact_area.table.tabletype3 .item_area{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
/* 活動報名_迴向蓮花 */
.form_area.contact_area.table.tabletype5 .item_area{
	gap: 5px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.form_area.contact_area.table.tabletype5 .item_area .item{
	width: 33.3%;
}
.form_area.contact_area.table.tabletype5 .item_area .item input[type="text"]{
	width: 50%;
}
.form_area.contact_area.table.tabletype5 .item_area .item input.form_5_name{
	width: 100%;
}

/* 在螢幕放大150%且寬度大於991時，套用這裡的特定樣式 */ 
@media screen and (min-width: 991px) and (min-height: 500px) and 
(max-height: 1000px) and (-webkit-min-device-pixel-ratio: 1.5) and 
(-webkit-max-device-pixel-ratio: 1.74), only screen and (min-resolution: 150dpi) and 
(max-resolution: 174dpi) { 

	.form_area.contact_area.table.tabletype5 .item_area .item input[type="text"]{
		width: 50%;
	}
	.form_area.contact_area.table.tabletype5 .item_area .item input.form_5_name{
		width: 100%;
	}
}
/* 活動報名_祭年關煞 */
.form_area.contact_area.table.tabletype6 .item_area{
	
	
}
.form_area.contact_area.table.tabletype6 .item_area .item{
	
}
.form_area.contact_area.table.tabletype6 .item_area .item.nine{
	margin-left: 55px;
}
.form_area.contact_area.table.tabletype6 .item_area .item.nine em{
	font-style: normal;
}
.form_area.contact_area.table.tabletype6 .item_area .item input[type="text"]{
	
}
/* 活動報名_祖先超昇 */
.form_area.contact_area.table.tabletype7 .item_area{
	
	
}

.form_area.contact_area.table.tabletype7 .item_area .item{
	
}

.form_area.contact_area.table.tabletype7 .item_area .item input[type="text"]{
	
}
/* 活動報名_補庫 */
.form_area.contact_area.table.tabletype8 .item_area{
	
	
}

.form_area.contact_area.table.tabletype8 .item_area .item{
	
}

.form_area.contact_area.table.tabletype8 .item_area .item input[type="text"]{
	width: 100px;
}
/* 活動報名_元辰燈 */
.form_area.contact_area.table.tabletype9 .item_area{
	
	
}

.form_area.contact_area.table.tabletype9 .item_area .item{
	
}

.form_area.contact_area.table.tabletype9 .item_area .item input[type="text"]{
	
}
/* 總計表單 */
.valuationBg.total_form{
	padding: 0 10px;
}
.valuationBg.total_form .valuationArea{
	padding-bottom: 0;
}
.valuationBg.total_form .form_list.horizontalLayout_tel.fLType2{
	display: flex;
	flex-wrap: wrap;
	/* justify-content: center; */
	align-items: center;
	gap: 7.5px 15px;
}
.valuationBg.total_form .form_list.horizontalLayout_tel.fLType2 .fL_info input{
	text-align: center;
}
.valuationBg.total_form .form_list.horizontalLayout_tel.fLType2.fL_tit{
	padding: 0;
}

.valuationBg.total_form .form_list.fLType2{
	display: flex;
	flex-wrap: wrap;
	/* justify-content: center; */
	align-items: center;
	gap: 7.5px 15px;
}

.valuationBg.total_form .form_list.fLType2 .fL_tit{
	padding: 0;
}
.valuationBg.total_form .form_list.fLType2 .fL_info{
	padding: 0;
}

.add7_form .valuationBg .valuationArea {
	padding-top: 2px;
	border-bottom: none;
}
.btn_area.operate.type7 {
	justify-content: flex-start;
	padding: 0 45px;
}
.btn_area.operate.type7 input{
	margin: 0;
	width: auto;
	height: auto;
	line-height: 1.2;
	padding: 5px 5px;
	font-weight: bold;
	/* border-color: var(--second_color);
	background: var(--second_color); */
	color: #fff;
	font-size: 16px;
}
.btn_area.operate.type7 input.slideBtn{
	background: var(--sixth_color);
	border-color: var(--sixth_color);
}
.btn_area.operate.type7 input.delete{
	border-color: var(--second_color);
	background: var(--second_color);
	background: #817f7f;
}

/* 在螢幕放大150%且寬度大於991時，套用這裡的特定樣式 */ 
@media screen and (min-width: 991px) and (min-height: 500px) and 
(max-height: 1000px) and (-webkit-min-device-pixel-ratio: 1.5) and 
(-webkit-max-device-pixel-ratio: 1.74), only screen and (min-resolution: 150dpi) and 
(max-resolution: 174dpi) { 

}

@media(max-width:990px){
	.form_area.contact_area.type7 {
		display: block !important;
	}
	.form_area.contact_area.type7 .form_list.fLType3 {
		width: 100%;
	}
	.btn_area.operate.type7 {
		padding: 10px;
	}
}
/*平板版*/
/*---------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------*/
@media (min-width: 541px) and  (max-width: 950px){
}


/*手機版*/
/*---------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------*/
@media (max-width: 540px){
}




/* 整个滚动条 */
::-webkit-scrollbar {
	width: 8px;  /* 纵向滚动条宽度 */
	height: 12px; /* 横向滚动条高度 */
  }
  
  /* 滚动条轨道 */
  ::-webkit-scrollbar-track {
	background: #2B2B2B;
	border-radius: 10px;
  }
  
  /* 滚动条滑块 */
  ::-webkit-scrollbar-thumb {
	background: #2B2B2B;
	border-radius: 10px;
  }
  
  /* 滚动条滑块悬停时 */
  ::-webkit-scrollbar-thumb:hover {
	background: #555;
  }
  ::-webkit-scrollbar-horizontal{
	background-color: #2B2B2B;

  }