

/* 後台編輯器 a連結 */
.editor{
	color:#fff;
	line-height:1.8;
}
.editor a{
	color:#fff;
	text-decoration:underline;
	/*color:rgba(0,0,238,1);*/ /*預設藍*/
}
.editor a:hover{
	color:var(--color-accent);
}








/*------------------------------------------------------------------------------------------- */
/* ----- #wrapper */
.wrapper{
	position:relative;
	background-color:var(--color-wrapeer);
}
.wrapper:before{
	position:absolute; top:0; left:0; content:"";
	width:100%; height:100%;
	
	background-image:url(../images/red_wrapper_bg.png);
	background-repeat:repeat;
	background-position:center;
	background-size:40px 60px;
	opacity:0.05;
}


/*only index*/
@media (min-width:992px){
	.wrapper_bg:after{
		position:absolute; top:0; right:0; content:"";
		width:2000px; height:700px;
		background-image:url(../images/red_idxbg.png);
		background-repeat:no-repeat;
		background-position:center;
		background-size:contain;
		opacity:0.3;
	}
}

.header,
.main,
.footer,
.header_inner,
.main_inner,
.footer_inner{
	position:relative;
}


.header{
	z-index:4;
}
.header_inner{
	z-index:5;
}
.main{
	overflow:hidden;
}
.main_inner,
.footer_inner{
	z-index:3;
}

.main_inner{
	min-height:500px;
}






/*------------------------------------------------------------------------------------------- */
/* ----- #header */
.header_main{
	padding:1rem 0;
	
	transition: padding 0.2s ease;
}

.header_main .header-one{
	flex:1 1 auto;
	width:1%; min-width:0;
}
.header_main .header-two{
	display:none;
}
.header_main .header-three{
	display:none;
	flex:0 1 auto;
	width:auto;
}
.header_main .header-four{
	flex:0 1 auto;
	width:auto;
	margin-left:1rem;
}
@media (min-width:992px){
	.header_main{
		padding:2rem 0;
	}
	.header_main .header-one{
		flex:none;
		width:250px;
	}
	.header_main .header-two{
		display:block;
		flex:1 1 auto;
		width:1%; min-width:0;
		margin:0 0.5rem;
	}
	.header_main .header-three{
		display:block;
	}
	.header_main .header-four{
		display:none;
	}
}





/*------------------------------------------------------------------------------------------- */
/* ----- #header.is-scroll */
/*.header{
	position: -webkit-sticky;
	position: sticky;
	z-index:99;
	top:0;
}
.header.is-scroll{
	background:var(--color-one);
	border-bottom:1px solid rgba(255,255,255,0.3);
	box-shadow:0 3px 6px rgba(0,0,0,0.4);
}

.header.is-scroll .header_main{
	padding:0.8rem 0;
}
@media (min-width:992px){
	.header.is-scroll .header_main{
		padding:0.3rem 0;
	}
}
.header.is-scroll .header_main .header-one,
.header.is-scroll .header_main .header-three{
	display:none;
}

.header.is-scroll .menu{
	justify-content:center;
}*/

/*.header.is-scroll .menu li a{
	font-size:0.875rem;
	padding-left:22px;
}
.header.is-scroll .menu li a:before{
	width:16px; height:16px;
	margin-top:-8px;
}*/






/*------------------------------------------------------------------------------------------- */
/* ----- #header_fixed.is-scroll：卷軸下捲時固定 */
.header_fixed.is-sticky{
	position:fixed; z-index:900; top:-300px; left:0;
	width:100%; height:auto;

	background:var(--color-one);
	border-bottom:1px solid rgba(255,255,255,0.3);
	
	padding:15px 0.5rem;
	box-shadow:0 3px 6px rgba(0,0,0,0.4);
	
	transition:transform 0.6s ease-in-out;
}
.header_fixed.is-sticky.is-scroll{
	transform:translateY(300px);
}

@media (min-width:992px){
	.header_fixed.is-sticky{
		padding:5px 2rem;
	}

	.header_fixed.is-sticky .header-one,
	.header_fixed.is-sticky .header-three{
		display:none;
	}
	.header_fixed.is-sticky .header-two{
		margin:0;
	}
	.header_fixed.is-sticky .menu{
		justify-content:center;
	}
}





/*------------------------------------------------------------------------------------------- */
/* ----- #logo */
.logo{
	margin:5px 0;
}

/*logo-photo 圖片式*/
.logo-photo{
	max-width:400px;
}

/*logo-text 文字式*/
.logo-text{
	color:#fff;
	text-shadow: black 0.1em 0.1em 0.1em;
}

@media (min-width:992px){
	.logo{
		text-align:center;
	}
	.logo-photo{
		max-width:700px;
	}
}





/*------------------------------------------------------------------------------------------- */
/* ----- #menu */
.menu{
	display:flex; flex-wrap:wrap;
	justify-content:flex-end;
}
.menu li{
	position:relative;
	display:block;
	margin:5px 8px;
}
.menu li a{
	position:relative;
	display:block;
	font-size:1rem; font-weight:600;
	text-shadow: black 0.1em 0.1em 0.1em;
	color:var(--color-menu);
	padding:0 5px 0 26px;
	
	transition: padding 0.5s ease,
				font-size 0.5s ease;
}
.menu li a:before{
	position:absolute; top:50%; left:5px; content:"";
	width:20px; height:20px;
	margin-top:-10px;
	background-image:url(../images/red_square2.png);
	background-repeat:no-repeat;
	background-position:center;
	background-size:contain;
	
	transition: width 0.5s ease,
				height 0.5s ease;
}
.menu li a:hover{
	color:var(--color-menu-hover);
}
.menu li a:hover:before{
	background-image:url(../images/red_square.png);
}

.menu .menu-subtext{
	display:none;
}





/*------------------------------------------------------------------------------------------- */
/*---- #dropdown 下拉式選單 */

/* ===== 觸發鈕*/
.dropdown_trigger{
	border-color:var(--color-one);
	color:var(--color-dark);
}
.dropdown_trigger-text:before{
	border-top-color:var(--color-dark);
}
.dropdown_trigger:hover{
	border-color:var(--color-two);
}

/* ===== 觸發鈕-啟動*/
.dropdown_trigger.is-open{
	border-color:var(--color-one);
	color:var(--color-one);
}
.dropdown_trigger.is-open .dropdown_trigger-text:before{
	border-bottom-color:var(--color-one);
}

/* ===== 下拉項目*/
.dropdown_menu li a{
	border-bottom-color:#ccc;
	color:#333;
}
.dropdown_menu li a:hover{
	color:var(--color-two);
}
.dropdown_menu li a.active{
	color:var(--color-one);
}





/*------------------------------------------------------------------------------------------- */
/*---- #language 語系-列表式 */
/*.language_box{
	margin-left:2rem;
}
.language{ 
	background:rgba(255,255,255,0.05);
	color:#fff;
}
.language:hover{
	background:#fff;
    color:var(--color-accent);
}
.language.active{
	background:rgba(255,255,255,0.9);
	color:var(--color-darker);
}*/





/*------------------------------------------------------------------------------------------- */
/*---- #language_member：會員管理(語系條列式與下拉式裡的css命名皆同) */
.language_member{
	background:#fff;
	border:1px solid #fff;
}
.language_member:before{
	background-color:var(--color-dark);
}
.language_member:hover{
	background:#fff;
}
.language_member:hover:before{
	background-color:var(--color-accent);
}





/* ===== language_dropbox ：語系下拉模式 ===== */
.language_dropbox{
	text-align:center;
}
@media (min-width:992px){
	.language_dropbox{
		margin-left:2rem;
	}
}
/*.language_dropbox .dropdown_trigger{
	padding:0.7rem 1.5rem;
}
.language_dropbox .dropdown_trigger-text{
	font-size:1rem;
}
.language_dropbox .language_member{
	width:36px; height:36px;
	margin-left:20px;
}*/





/*------------------------------------------------------------------------------------------- */
/* ===== #navbar_toggler [in header]：側邊隱藏區塊-觸發鈕 */
.navbar_toggler{
	display:flex; flex-wrap:wrap;
	align-items:center; justify-content:flex-end;
	
	width:100%;
	margin:0 auto;
    padding:10px;
	
	/*取消連結的醒目點選標示*/
	-webkit-tap-highlight-color: transparent;
}
.navbar_toggler .navbar_toggler-icon,
.navbar_toggler .navbar_toggler-text{
	display:block;
	line-height:1;
}
.navbar_toggler .navbar_toggler-icon{
	width:32px; height:36px;
}
.navbar_toggler .sign_hamburger:before, 
.navbar_toggler .sign_hamburger:after, 
.navbar_toggler .sign_hamburger-line{
	height:4px;
	background:#fff;
}
.navbar_toggler .navbar_toggler-text{
	font-size:1.1rem; font-weight:600;
	color:#fff;
}
@media (min-width:992px){
	.navbar_toggler{
		display:none;
	}
}










/*------------------------------------------------------------------------------------------- */
/* ----- #offside */
.offside_inner{
	background:var(--color-one);
}

.offside_header{
	padding:3rem 0;
}





/*------------------------------------------------------------------------------------------- */
/* ----- #menu_offside 側邊區塊選單 */
.menu_offside li a{
	color:var(--color-one);
}


/* ===== menu_offside [文字 at 第一層] */
.menu_offside > li > a{
	color:#fff;
}


/* ===== menu_offside [is 打開下層選單之提醒] */
.menu_offside li a:before{
	background:var(--color-accent);
}
.menu_offside li a.is-current{
	color:var(--color-accent);
}


/* ===== menu_offside [is 有下層之提示圖樣- 第一層] */
.menu_offside > li > a .menu-subbtn.is-open:before,
.menu_offside > li > a .menu-subbtn.is-open:after,
.menu-subbtn.is-open:before,
.menu-subbtn.is-open:after{
	background:var(--color-accent);
}










/*------------------------------------------------------------------------------------------- */
/* ----- #footer */
.footer{
	margin-top:1rem;
}
.footer:before{
	position:absolute; z-index:1; bottom:-50px; left:0; content:"";
	width:2000px; height:440px;
	background-image:url(../images/red_footerbg.png);
	background-repeat:no-repeat;
	background-position:center;
	background-size:contain;
	opacity:0.3;
}

.footer_main{
	padding:2rem 0;
}

.footer_btm{
	padding:1rem 0 6rem 0;
}
.footer_btm .footer-right{
	margin-top:1rem;
}

.copyright,
.web_designer{
	font-size:0.875rem; font-weight:600;
	text-align:center;
}
.copyright,
.web_designer,
.copyright a,
.web_designer a{
	color:rgba(255,255,255,0.5);
}
.copyright a:hover,
.web_designer a:hover{
	color:#fff;
}

@media (min-width:992px){
	.footer_btm{ padding:1rem 0; }
	.footer_btm .footer_row{
		align-items:center;
	}
	.footer_btm .footer-left,
	.footer_btm .footer-right{
		width:50%;
		margin-top:0;
	}
	
	.copyright{
		text-align:left;
	}
	.web_designer{
		text-align:right;
	}
}
















/*------------------------------------------------------------------------------------------- */
/* ----- #main */
.secbox_page,
.secwrap_idx,
.secwrap_contact{
	padding:1.5rem 0 4rem 0;
}










/*------------------------------------------------------------------------------------------- */
/* ----- #marquee */
.marqueebar{
	margin:2rem 0;
}

.marquee_inner{
	background:rgba(255,255,255,0.1);
	border-radius:3px;
}

.marquee-tag_desktop{
	border:2px solid #fff;
}
.marquee-tag_desktop:before{
	right:-8px; content:"";
	width:0; height:0;
	margin-top:-8px;
	
	border-width:8px 0 8px 8px;
	border-style:solid;
	border-color:transparent;
	
	border-left-color:#fff;
}

.marquee a{
	color:rgba(255,255,255,0.9);
}

.marquee a:hover{
	color:#fff;
	text-shadow: black 0.1em 0.1em 0.2em;
}









/*------------------------------------------------------------------------------------------- */
/* ----- #sidebar 側邊攔 */
@media (min-width:992px){
	.sidebar-left{
		width:200px;
		margin-right:80px;
	}
	.sidebar-right{
		width:calc( 100% - 280px );
	}
}










/*------------------------------------------------------------------------------------------- */
/* ===== #navbar_social：社群 */
.navbar_social{
	justify-content:center;
	margin-top:2rem;
}
.navbar_social li{ margin:0.3rem; }
.navbar_social li:first-child{ margin-left:0; }
.navbar_social li:last-child{ margin-right:0; }


.navlink_social{
	display:block;
	padding:0;
}
.navlink_social .navlink-text{ display:none; }
.navlink_social .navlink-icon{
	width:46px; height:46px;
	background:#fff;
	border-radius:5px;
	overflow:hidden;
	transition:transform 0.3s ease;
}
.navlink_social .navlink-icon:before{
	z-index:2;
	background-color:var(--color-one);
	
	-webkit-mask-size:60% 60%;
    mask-size:60% 60%;
}
.navlink_social .navlink-icon:after{
	position:absolute; z-index:1; bottom:5px; right:-5px; content:"";
	width:50px; height:100px;
	background-image:url(../images/red_smoke.png);
	background-repeat:no-repeat;
	background-position:top right;
	background-size:contain;
	opacity:1;
}

.navlink_social a:hover .navlink-icon{
	background:var(--color-accent);
}
.navlink_social a:hover .navlink-icon:before{
	background-color:#fff;
}
.navlink_social a:hover .navlink-icon:after{
	opacity:0;
}










/*------------------------------------------------------------------------------------------- */
/* ----- #infolist_footer_company */
.infolist_footer_company{
	text-align:center;
}
.infolist_footer_company li{
	margin:0;
}
.infolist_footer_company .info{
	font-size:1.125rem; font-weight:600;
	margin:3px 10px;
}
.infolist_footer_company,
.infolist_footer_company a{
	color:#fff;
}
.infolist_footer_company a:hover{
	color:var(--color-accent);
}





/*------------------------------------------------------------------------------------------- */
/* ===== #info_view_date */
.info_view_date{
	display:block;
	color:#666;
	font-size:0.875rem; font-weight:600;
	text-align:center;
	margin-top:10px;
}





/*------------------------------------------------------------------------------------------- */
/* ----- 案件狀態[in case] */

/*案件-進行中*/
.info_case_goon .iconsvg:before{
	background-color:var(--color-case-goon);
}
.info_case_goon .info-text{
	font-weight:600;
	color:var(--color-case-goon);
}

/*案件-已完成*/
.info_case_finish .iconsvg:before{
	background-color:var(--color-case-finish);
}
.info_case_finish .info-text{
	font-weight:600;
	color:var(--color-case-finish);
}





/*------------------------------------------------------------------------------------------- */
/* ----- 案件追蹤[in case-track] */
.infolist_case_track{
	display:flex; flex-wrap:wrap;
	align-items:flex-end;
	margin-bottom:3rem;
}
.infolist_case_track > li{
	width:100%;
	border-bottom:1px dashed rgba(var(--color-two-rgb),0.4);
	padding:10px 0;
}
.infolist_case_track > li:first-child{
	padding-top:0;
}

.infolist_case_track .info{
    align-items:center;
	color:#fff;
	font-weight:600;
}
.infolist_case_track .info-title{
	width:100%;
}
.infolist_case_track .info-text{
	padding-left:1rem;
}

.infolist_case_track .info_status .iconsvg:before{
	background-color:#fff;
}
.infolist_case_track .info_status .info-text{
	color:#fff;
	padding-left:0;
}

@media (min-width:992px){
	.infolist_case_track li.infoline_status{ width:50%; order:2; }
	.infolist_case_track li.infoline_serialnum{ width:50%; order:1; }
	.infolist_case_track li.infoline_subject{ order:3; }
	.infolist_case_track li.infoline_reply{ order:4; }
	
	.infolist_case_track .info{
		display:flex; flex-wrap:wrap;
	}
	.infolist_case_track .info-title{
		position:relative;
		width:120px;
		margin-right:10px;
		padding-right:20px;
		
		/*文字左右對齊*/
		text-align:justify;
		text-align-last:justify;
		text-justify:inter-word;
	}
	.infolist_case_track .info-title:after{
		position:absolute; top:0; right:0; content:"：";
		color:#fff;
	}
	.infolist_case_track .info .info-text{
		flex:1 1 auto;
		width:1%;
		min-width:0;
		
		padding-left:0;
	}
	
	.infolist_case_track .info_status{
		justify-content:flex-end;
	}
	.infolist_case_track .info_status .info-text{
		flex:none;
		width:auto;
	}
}





/*------------------------------------------------------------------------------------------- */
/* ----- #infolist_contact_company：聯絡資料 */
.infolist_contact_company{
	display:flex; flex-wrap:wrap;
}
.infolist_contact_company li{
	width:100%;
	margin-bottom:25px;
}
.infolist_contact_company .info{
	position:relative;
	min-height:50px;
	padding-left:60px;
}
.infolist_contact_company .info .iconsvg{
	position:absolute; top:0; left:0;
	width:50px; height:50px;
	background:#fff;
	border-radius:5px;
	overflow:hidden;
}
.infolist_contact_company .info .iconsvg:before{
	z-index:2;
	background-color:var(--color-one);
	
	-webkit-mask-size:65% 65%;
	mask-size:65% 65%;
}
.infolist_contact_company .info .iconsvg:after{
	position:absolute; z-index:1; bottom:5px; right:-5px; content:"";
	width:50px; height:100px;
	background-image:url(../images/red_smoke.png);
	background-repeat:no-repeat;
	background-position:top right;
	background-size:contain;
	opacity:1;
}

.infolist_contact_company .info-title{
	position:relative;
	display:block;
	font-size:0.875rem; font-weight:600;
	margin:0 0 5px 0;
}


.infolist_contact_company .info ,
.infolist_contact_company .info a{
	color:#fff;
}
.infolist_contact_company .info a:hover{
	color:var(--color-accent);
}

@media (min-width:640px){
	.infolist_contact_company li{
		width:50%;
		padding-right:1rem;
	}
}

@media (min-width:992px){
	.infolist_contact_company li{
		width:33%;
	}
}















/*------------------------------------------------------------------------------------------- */
/* ----- #banner */

/* ===== #idx-banner[in idx] */
.idx-banner .container{
	padding:0;
}
@media (min-width:992px){
	.idx-banner{
		margin-bottom:1rem;
	}
	.idx-banner .container{
		padding:0 20px;
	}
}

.slide-banner .slick-slide img{
	display:block; max-width:100%; height:auto;
    margin:0 auto;
}



/* ===== #banner-single [in page] */
.banner-single{
	position:relative; z-index:5;
}
.banner-single img{ display:block; max-width:100%; height:auto; }










/*------------------------------------------------------------------------------------------- */
/* ----- #itembox 分隔區塊 */


/* ===== 詳細頁-編輯器[in view] */
.itembox_intro{
	font-size:1.125rem;
}
.itembox_intro,
.itembox_intro a{
	color:#fff;
}
.itembox_intro a:hover{
	color:var(--color-accent);
}

/*設定基本高*/
.itembox_minheight{ min-height:400px; }





/* ===== 關於我們-相片集[in about figure] */
.itembox_about_figure{
}
.itembox_about_figure .itembox_inner{
	max-width:800px;
	margin:0 auto;
}





/* ===== 詳細頁-地圖[in view] */
.itembox_map{
	background:#fff;
	border:1px solid #cccc;
	border-radius:5px;
	text-align:center;
	padding:6px;
}
.itembox_map iframe{
	width:100%;
	max-height:250px;
}





/* ===== 詳細頁-影片[in view] */
.itembox_video{ text-align:center; }
.itembox_video iframe{ max-width:100%;}





/* ===== 詳細頁-相片集[in view] */
.itembox_view_figure{
	margin:3rem 0;
}
@media (min-width:992px){
	.itembox_view_figure .row{
		justify-content:center;
	}
}


/* ===== 詳細頁-相簿[in view] */
.itembox_view_albums{
	margin:4rem 0;
}






/*-------------------------------------------------------------------------------------------

	#609_數據中心 
	news,uninews,life,article 詳細頁：1-相關字  3-您可能有興趣
	
	uniarticle 詳細頁：1-相關字  2-延伸閱讀  3-您可能有興趣
	                  右側-側邊列

-------------------------------- */

/* ===== 數據中心(側邊)box */
.itembox_article_sub{
}
.itembox_article_sub:first-child{
	margin-top:0;
}

.heading_article_sub{
	position:relative;
	padding-left:var(--space-sm);
	margin-bottom:var(--space-md);
}
.heading_article_sub:before{
	position:absolute; top:15%; left:0px; content:"";
	width:5px; height:70%;
	background:#fff;
}
.heading_article_sub .heading-text{
	color:#fff;
}



/* ===== 數據中心-1-相關字 */
.itembox_view_keyword{
	margin:var(--space-xl) 0;
}
@media (min-width:1200px){
	.itembox_view_keyword{
		background:rgba(255,255,255,0.1);
		padding:var(--space-lg);
	}
}
.heading_view_keyword{
	display:flex; flex-wrap:wrap;
	align-items:center;
	
	border-bottom:2px solid var(--color-accent);
	padding-bottom:var(--space-xxs);
	margin-bottom:var(--space-md);
	overflow:hidden;
}
.heading_view_keyword .iconsvg{
	display:block;
	width:40px; height:40px;
	margin-right:var(--space-xxs);
}
.heading_view_keyword .iconsvg:before{
	background-color:#fff;
}
.heading_view_keyword .heading-text{
	display:block;
	color:#fff;
	line-height:1;
	margin:0;
	padding:0;
}
@media (min-width:1200px){
	.heading_view_keyword{
		border-bottom-width:0;
		margin-bottom:var(--space-lg);
	}
}


/* ===== 數據中心-2-延伸閱讀box */
.itembox_view_extended{
	position:relative;
	border:1px solid rgba(255,255,255,0.6);
	padding:var(--space-unit);
	margin:var(--space-lg) 0;
}
.heading_view_extended{
	margin-bottom:var(--space-md);
}
.heading_view_extended .heading-text{
	color:#fff;
}
@media (min-width:1200px){
	.itembox_view_extended{
		padding:var(--space-lg);
	}
}



/* ===== 數據中心-3-您可能有興趣box */
.itembox_view_interest{
	margin:var(--space-lg) 0;
}
.heading_view_interest{
	border-bottom:2px solid #fff;
	margin-bottom:var(--space-md);
}
.heading_view_interest .heading-text{
	color:#fff;
}
@media (min-width:1200px){
	.itembox_view_interest{
		margin:var(--space-xl) 0;
	}
	.heading_view_interest{
		margin-bottom:var(--space-lg);
	}
}







/* ===== 代理商品詳細-內容尾[in agent_pd_view ] */
.itembox_view_addcart{
	max-width:500px;
	
	background: #fff;
	background: linear-gradient(45deg, transparent 10px, #fff 0)bottom left,
				linear-gradient(-45deg, transparent 10px, #fff 0)bottom right,
				linear-gradient(-135deg, transparent 10px, #fff 0)top right,
				linear-gradient(135deg, transparent 10px, #fff 0)top left;
	background-size: 52% 52%;
	background-repeat: no-repeat;
	
	padding:1rem;
	margin:4rem auto;
}

.itembox_view_addcart .heading_pageview{
	margin-bottom:1rem;
}
.itembox_view_addcart .heading_pageview .heading-text{
	color:#000;
}

@media (min-width:992px){
	.itembox_view_addcart{
		padding:20px;
	}
}



/* ===== 主內容區-頁尾[in view ] */
.itembox_mainbtm{
	border-top:4px solid rgba(var(--color-two-rgb),0.2);
	padding-top:1rem;
	margin-top:1rem;
}
.itembox_mainbtm .itembox_row{ align-items:center; } 
.itembox_mainbtm .itembox-left{ order:3; }
.itembox_mainbtm .itembox-right{ order:2; margin:30px 0; }
.itembox_mainbtm .itembox-center{ order:1; }

@media (min-width:768px){
	.itembox_mainbtm{ padding-top:10px; }
    .itembox_mainbtm .itembox-left{ order:1; width:30%; }
	.itembox_mainbtm .itembox-center{ order:2; width:40%; }
	.itembox_mainbtm .itembox-right{ order:3; width:30%; margin:0; }
}

@media (min-width:992px){
	.itembox_mainbtm .sharelink_bar{ text-align:right; }
}


.consult_view + .itembox_mainbtm{
	border-top-width:0;
	margin-top:0;
	padding-top:0;
}




/* ===== 頁面提示說明[in page] */
.itembox_pagenote{
	min-height:200px;
	color:#fff;
	font-weight:600;
	text-align:center;
	margin:2rem 0;
}

/*紅字-提示*/
.itembox_redmark{
	font-size:1.1rem; font-weight:600;
	/*color:red;*/
	/*text-shadow: black 0.1em 0.1em 0.2em;*/
}








/*------------------------------------------------------------------------------------------- */
/* ----- #heading 標題 */

/* ===== 詳細頁大標[in view] */
.heading_pageview{
	text-align:center;
	margin-bottom:3rem;
}
.heading_pageview .heading-text{
	color:#fff;
	font-size:1.8rem;
}
@media (min-width:992px){
	.heading_pageview .heading-text{
		font-size:2rem;
	}
}

/*產品*/
.heading_pageview_product{
	text-align:left;
	margin:0 0 1rem 0;
}




/* ===== 相片集大標[in view] */
.heading_figure{
	margin:2rem 0;
	color:rgba(var(--color-two-rgb),0.5);
	text-align:center;
	overflow:hidden;
}
.heading_figure .heading-text{
	position:relative;
	font-size:1.1rem;
	letter-spacing:10px;
	text-transform:uppercase;
}
.heading_figure .heading-text:before, 
.heading_figure .heading-text:after{
	position:absolute; top:50%; content:"";
	width:1000px; height:6px;
	margin-top:-3px;
	background:rgba(var(--color-two-rgb),0.2);
}
.heading_figure .heading-text:before{ left:-1010px; }
.heading_figure .heading-text:after{ right:-1010px; }






/*------------------------------------------------------------------------------------------- */
/* ----- #mtree 頁面多層menu */
.menu_sidebar{
    display:none;
}
@media (min-width:992px){
	.menu_sidebar{ display:block; }
}

.menu_sidebar li a{
	border-color:rgba(var(--color-two-rgb),0.4);
	color:var(--color-two);
	font-weight:600;
}
.menu_sidebar li a:hover{
	color:#fff;
}
.menu_sidebar li a:hover:before{
	border-color:#fff;
}


/*===== 多層分類-有下一層選項的項目設定(>號) */
.menu_sidebar li.mtree-node > a:before{
	border-color:var(--color-two);
}


/*====== 多層分類-選中的項目有標記(圓圈)之設定 */
.menu_sidebar li:after{
	top:16px; left:-10px;
	width:16px; height:16px;
	
	background-color:transparent;
	background-image:url(../images/red_square.png);
	background-repeat:no-repeat;
	background-position:center;
	background-size:contain;
}


.menu_sidebar li.mtree-open > a{
	color:#fff;
}
.menu_sidebar li.mtree-open > a:before{
	border-color:#fff;
}


.menu_sidebar li.active > a{
	color:#fff;
	text-shadow: black 0.1em 0.1em 0.2em;
}
.menu_sidebar li.active > a:before{
	border-color:#fff;
}











/*------------------------------------------------------------------------------------------- */
/* ----- #category 分類 */
.category_box{
	display:none;
}
@media (min-width:992px){
	.category_box{
		display:block;
	}
}

.category_list{
	text-align:right;
}
.category_list li{
	display:inline-block;
	text-align:center;
	margin:1rem 0.5rem;
}
.category_list li a{
	position:relative;
	border:2px solid rgba(var(--color-two-rgb),0.3);
	border-radius:20px;
	color:var(--color-two);
	font-size:1rem; font-weight:600;
	padding:5px 20px 6px 20px;
}

.category_list li a:hover{
	border-color:rgba(var(--color-two-rgb),1);
}
.category_list li.active a{
	background:var(--color-accent);
	border-color:#fff;
	color:#fff;
}










/*------------------------------------------------------------------------------------------- */
/* ----- #iconcate 圖標分類 */


.iconcate .iconsvg{
	width:24px; height:24px;
	border-radius:50%;
}
.iconcate .iconsvg:before{
	background-color:var(--color-two);
}
.iconcate_row .iconcate-text{
	color:var(--color-two);
}

.iconcate:hover .iconsvg:before{
	background-color:#fff;
}
.iconcate:hover .iconcate-text{
	color:#fff;
}

.iconcate.active .iconsvg:before{
	background-color:#fff;
}
.iconcate.active .iconcate-text{
	color:#fff;
	text-shadow: black 0.1em 0.1em 0.2em;
}



/* ===== [in case] */
.iconcate_box_case{
	border-top:1px solid rgba(var(--color-two-rgb),0.4);
	margin:2rem 0;
	padding:2rem 0 0 0;
}


/* ===== 陳情-我要陳情[in case] */
.iconcate_petition{
	display:none;
}
@media (min-width:992px){
	.iconcate_petition{
		display:block;
	}
}
.iconcate_petition .iconsvg{
	width:44px; height:44px;
}















/*------------------------------------------------------------------------------------------- */
/* ----- #searchbar 搜尋 */
.search-btn:hover{
	background:var(--color-one);
}


/* ===== [in case] */
.searchbar_case{
	margin:0;
}
.searchbar_case .heading_search{
	color:#fff;
	font-size:0.875rem; font-weight:600;
	margin-bottom:10px;
}
@media (min-width:992px){
	.searchbar_case{
		border-top:1px solid rgba(var(--color-two-rgb),0.4);
		margin:2rem 0;
		padding:2rem 0 0 0;
	}
}






/* ===== addcartbox ：price + btnbar 組合列 */
.addcartbox{
	position:relative;
    display:flex; flex-wrap:wrap;
	align-items:center;
    width:100%;
	
	background: #fff;
	background: linear-gradient(45deg, transparent 5px, #fff 0)bottom left,
				linear-gradient(-45deg, transparent 5px, #fff 0)bottom right,
				linear-gradient(-135deg, transparent 5px, #fff 0)top right,
				linear-gradient(135deg, transparent 5px, #fff 0)top left;
	background-size: 52% 52%;
	background-repeat: no-repeat;
	
	padding:15px;
}
.addcartbox .pricebar{
	position:relative;
    flex:1 1 auto;
    width:1%;
    min-width:0;
}
.addcartbox .btnbar{
	width:140px;
	margin:0;
	padding:0;
}
.addcartbox .btnbar .btn{
	width:100%;
	padding-left:0.3rem;
	padding-right:0.3rem;
	margin:0;
}


/* ===== 於內容區尾[in agent_pd_view] */
.itembox_view_addcart .addcartbox{
	background: #fff;
	border-top:1px solid #ccc;
	padding-bottom:0;
}










/*------------------------------------------------------------------------------------------- */
/* ----- #page 頁碼 */
.page{
	color:var(--color-two);
}
.page a , .page span{
	border:3px solid rgba(var(--color-two-rgb),0.2);
	color:var(--color-two);
}
.page span{
	background:#fff;
	border-color:#fff;
	color:var(--color-one);
}
.page a:hover{
	border-color:var(--color-two);
	color:var(--color-two);
}











/*------------------------------------------------------------------------------------------- */
/* ----- #btnbar */

/* ===== [in view]：返回 */
@media (min-width:992px){
	.btnbar_pageback{
		justify-content:flex-start;
	}
}






/*------------------------------------------------------------------------------------------- */
/* ----- #btn */
.btn{
	background:#fff;
	border:1px solid var(--color-one);
	border-radius:3px;
	color:var(--color-one);
}
.btn .iconsvg{
	width:20px; height:20px;
}
.btn .iconsvg:before{
	background-color:var(--color-one);
}
/* -----  base end =-----*/



/* ===== 預約/參加會議[in card_designer] */
.btn_reserve{
	width:100%; max-width:200px;
	border-color:var(--color-reserve);
	padding:0.6rem 0.7rem;
	margin:0.5rem 0.1rem;
	overflow:hidden;
}

.btn_reserve .iconsvg:before{
	background-color:var(--color-reserve);
}
.btn_reserve .btn-text{
	color:var(--color-reserve);
}
.btn_reserve:before{
	width:0; height:100%;
	background:var(--color-reserve);
	transition:width 0.2s ease;
}
.btn_reserve:hover:before{
	width:100%;
}



/* ===== 立即申請 & 立即購買[in agent_pd] */
.btn_apply,
.btn_addcart{
	border-width:0;
	border-radius:20px;
	color:#fff;
	transition:box-shadow 0.1s ease;
}
.btn_apply .iconsvg:before,
.btn_addcart .iconsvg:before{
	background-color:#fff;
}
.btn_apply{
	background: var(--color-apply);
}
.btn_addcart{
	background: var(--color-addcart);
}

.btn_apply:hover,
.btn_addcart:hover{
	box-shadow:1px 1px 3px rgba(0,0,0,0.3);
	
	animation:goto 2s linear infinite;
	-moz-animation:goto 2s linear infinite;
	-webkit-animation:goto 2s linear infinite;
	-o-animation:goto 2s linear infinite;
}


/* ===== 問題諮詢[in view] */
.btn_consult{
	background:#fff;
	border:3px solid #fff;
	border-radius:22px;
	color:#CC3333;
	font-size:1rem;
	padding:0.7rem 2.6rem 0.7rem 2rem;
	overflow:hidden;
}
.btn_consult .iconsvg{
	position:absolute; right:-5px; top:50%;
	width:54px; height:54px;
	margin-top:-28px;
	opacity:0.2;
	transform:rotate(10deg);
}
.btn_consult .iconsvg:before{
	background-color:#CC3333;
}
.btn_consult:hover{
	box-shadow:1px 1px 3px rgba(0,0,0,0.3);
}



/* ===== 返回[in view] */
.btn-pageback{
	background:transparent;
	border-width:0;
	color:rgba(255,255,255,0.8);
	font-size:1.125rem;
	padding:1rem 0.5rem;
	margin:0;
}
.btn-pageback .iconsvg{
	width:20px; height:20px;
}
.btn-pageback .iconsvg:before{
	background-color:rgba(255,255,255,0.8);
}








/*------------------------------------------------------------------------------------------- */
/* ----- #btn:hover */
.btn:hover{
	border-color:var(--color-accent);
	background:var(--color-accent);
	color:#fff;
}
.btn:hover .iconsvg:before{
	background-color:#fff;
}
/* -----  base end =-----*/


/* ===== 預約/參加會議[in card_designer] */
.btn_reserve:hover{ border-color:#fff; }
.btn_reserve:hover .btn-text{ color:#fff; }


/* ===== 問題諮詢[in view] */
.btn_consult:hover{
	background:#CC3333;
	border-color:#fff;
	color:#fff;
}
.btn_consult:hover .iconsvg{
	opacity:0.5;
}


/* ===== 返回[in view] */
.btn-pageback:hover{
	background:transparent;
	color:rgba(var(--color-two-rgb),1);
}
.btn-pageback:hover .iconsvg:before{
	background-color:rgba(var(--color-two-rgb),1);
}











/*------------------------------------------------------------------------------------------- */
/* ----- #formbox 表單 */
.form-describe{
	color:#fff;
}


/*===== #form-title：標題 */
.form-title{
	color:#fff;
}
.form-title:after{
	color:#fff;
}


/*===== #input_group-text：內容-純文字 */
.input_group-text{
	color:#fff;
}

/*===== #form-remind：欄位說明文字*/
.form-remind{
	color:rgba(255,255,255,0.9);
}


/*===== #formbtn：按鈕列*/
.formbtn{
	background: #fff;
	background: linear-gradient(45deg, transparent 5px, #fff 0)bottom left,
				linear-gradient(-45deg, transparent 5px, #fff 0)bottom right,
				linear-gradient(-135deg, transparent 5px, #fff 0)top right,
				linear-gradient(135deg, transparent 5px, #fff 0)top left;
	background-size: 52% 52%;
	background-repeat: no-repeat;
	
	color:var(--color-one);
}
.formbtn:hover{
	background: var(--color-two);
	background: linear-gradient(45deg, transparent 5px, var(--color-two) 0)bottom left,
				linear-gradient(-45deg, transparent 5px, var(--color-two) 0)bottom right,
				linear-gradient(-135deg, transparent 5px, var(--color-two) 0)top right,
				linear-gradient(135deg, transparent 5px, var(--color-two) 0)top left;
	background-size: 52% 52%;
	background-repeat: no-repeat;
	
	color:var(--color-dark);
}
/* -----  base end =-----*/




/* ===== 登入[in case_login、case_petition_a] */
.formbox_case_login,
.formbox_petition_login{
	max-width:450px;
	margin:3rem auto;
}



/* ===== 填寫資料[in case_petition_b] */
@media (min-width:992px){
	.formbox_petition{
		max-width:1200px;
		margin:3rem auto;
	}
	.formlist_petition > li{
		width:50%;
	}
	.formlist_petition > li.formline_subject,
	.formlist_petition > li.formline_cate,
	.formlist_petition > li.formline_gender,
	.formlist_petition > li.formline_message,
	.formlist_petition > li.formline_file,
	.formlist_petition > li.formline_verifycode,
	.formlist_petition > li.formline_submit{
		width:100%;
	}
}



/* ===== 填表諮詢[in idx & contact] */
.formlist_inquire .form-icon{
	display:none;
}

@media (min-width:992px){
	.formlist_inquire > li{
		width:50%;
	}
	.formlist_inquire .formline_subject,
	.formlist_inquire .formline_message,
	.formlist_inquire .formline_verifycode,
	.formlist_inquire .formline_submit{
		width:100%;
	}
}





/* ===== 分類-下拉選單式 */
.formbox_cateselect{
	position:relative; z-index:2;
	max-width:400px;
	margin:0 auto 3rem auto;
}

.formbox_cateselect .input_group{
	align-items:center;
}

.formbox_cateselect .form-label{
	margin-bottom:0;
}

@media (min-width:992px){
	.formbox_cateselect .form-select{
		flex:1 1 auto;
		width:1%;
		min-width:0;
		
		border-radius:0;
		font-size:0.875rem;
		border:1px solid #ccc;
	}
}
@media (min-width:992px){
	
	/* ===== [in timeline] */
	.formbox_cateselect_timeline{
		max-width:200px;
		margin:0 0 5px 0;
	}


	/* ===== [in franchiser_albums 、 franchiser_albums_view] */
	.formbox_cateselect_franchiser_albums{
		margin:0;
		margin-left:auto;
	}


	/* ===== [in designer_pic] */
	.formbox_cateselect_designer{
		margin:0;
		margin-left:auto;
	}
		
}















/*------------------------------------------------------------------------------------------- */
/* ----- #popup 用於設計師視訊列表、首頁app下載 */

/* ===== 視訊會議[in designer meeting] */
.popupbox_meeting .popup_limit{
	background:#fff;
	border-radius:10px;
}
.popupbox_meeting .popup_main{
	width:100%; height:100%;
	padding:30px;
}

@media (min-width:992px){
	.popupbox_meeting .popup_limit{
		width:80%; height:70%;
	}
    
	/* ===== app下載[in appdownload] */
	.popupbox_appdownload .popup_limit{
		height:auto;
		margin-top:0;
	}
	.popupbox_appdownload .popup_main{
		height:auto;
		overflow-y:auto;
	}
}


/* ===== 跳出框(app下載)[in appdownload] */
.heading_popup_appdownload .heading-icon{
	width:60px;
}
.heading_popup_appdownload .heading-text{
	font-size:26px;
	color:#fff;
}










/*------------------------------------------------------------------------------------------- */
/* ----- #accordion 手風琴效果-常見問題、會員管理套用 */
.accordionPart > li:before,
.accordionPart > li:last-child:after{
	position:absolute; z-index:2; left:0; content:"";
	width:100%; height:6px;
	margin-top:-3px;

	background-image:url(../images/red_wrapper_bg3.png);
	background-repeat:repeat;
	background-position:center;
	background-size:10px 3px;
	
	opacity:0.5;
}
.accordionPart > li:before{
	top:0;
}
.accordionPart > li:last-child:after{
	bottom:0;
}










/*------------------------------------------------------------------------------------------- */
/* ----- #idx */

/* ===== #secbox [in index & contact]：區塊 */
.secbox{
	position:relative;
}

/*首頁區塊-右側裝飾圖*/
.secbox:nth-of-type(2n):before{
	position:absolute; z-index:-3; top:0; right:-10px; content:"";
	width:500px; height:200px;

	background-image:url(../images/red_cloud2.png);
	background-repeat:no-repeat;
	background-position:center;
	background-size:contain;
	
	opacity:0.3;
}

/*首頁區塊-左側裝飾圖*/
.secbox:nth-of-type(2n-1):before{
	position:absolute; z-index:-3; top:0; left:-50px; content:"";
	width:500px; height:400px;
	
	background-image:url(../images/red_cloud.png);
	background-repeat:no-repeat;
	background-position:center;
	background-size:contain;
	
	opacity:0.3;
}
.secbox:nth-child(2n):before,
.secbox:nth-child(2n-1):before{
	display:none;
}

@media (min-width:992px){
	.secbox:nth-child(2n):before,
	.secbox:nth-child(2n-1):before{
		display:block;
	}
}

.secbox_bg{
	padding:3rem 0;
	
	background-position:center;
	background-repeat:no-repeat;
	background-size:cover;
}

.secbox_inner{
	position:relative;
	z-index:4;
	padding:1px 0;
}

.secbox .itembox_sectop{
	position:relative;
	margin-bottom:3rem;
}
.secbox:last-child{
	margin-bottom:0;
}

.secbox .itembox_intro{
	color:#fff;
	margin:0;
}

@media (min-width:992px){
	.secbox_bg{
		padding:4rem 0;
	}
}



/* ===== 首頁大標[in idx] */
.heading_sec{
	position:relative;
	text-align:center;
}


.heading_sec .heading-text{
	position:relative;
	display:inline-block;
	color:#fff;
	/*font-family: PMingLiU;*/
	font-size:2rem; font-weight:bolder;
	margin:0;
}
.heading_sec .heading-text:before,
.heading_sec .heading-text:after{
	position:absolute; top:50%; content:"";
	width:30px; height:30px;
	margin-top:-15px;

	background-image:url(../images/red_square2.png);
	background-repeat:no-repeat;
	background-position:top;
	background-size:contain;
}
.heading_sec .heading-text:before{
	left:-40px;
}
.heading_sec .heading-text:after{
	right:-40px;
}

.heading_sec .heading-subtext{
	position:relative;
	display:block;
	font-family: Georgia, serif;
	color:var(--color-two);
	font-size:1rem; text-transform:uppercase; letter-spacing:10px;
	margin-top:5px;
	padding-left:10px;
}

@media (min-width:992px){
	.heading_sec .heading-text{
		font-size:2.4rem;letter-spacing:10px;
		padding:0 0 0 10px;
	}
	.heading_sec .heading-text:before{
		left:-30px;
	}
	.heading_sec .heading-text:after{
		right:-30px;
	}
}



/*有背景圖之標題*/
.secbox_havebg .heading_sec .heading-text{
	display:inline-block;
	background-image:url(../images/red_heading_bg2.png);
	background-repeat:repeat-x;
	background-position:center;
	background-size:auto 100%;
	
	color:var(--color-dark);
	
	padding:15px 2px 15px 2px;
}
.secbox_havebg .heading_sec .heading-text:before,
.secbox_havebg .heading_sec .heading-text:after{
	position:absolute; z-index:2; top:0; content:"";
	width:50px; height:100%;
	margin-top:0;
	background-repeat:no-repeat;
	background-size:auto 100%;
}
.secbox_havebg .heading_sec .heading-text:before{
	left:-49px; right:auto;

	background-image:url(../images/red_heading_bg1.png);
	background-position:top right
}
.secbox_havebg .heading_sec .heading-text:after{
	right:-49px; left:auto;

	background-image:url(../images/red_heading_bg3.png);
	background-position:top left;
}
.secbox_havebg .heading_sec .heading-subtext{
	text-shadow: black 0.1em 0.1em 0.1em;
}

/*.heading_havebg{
}
.heading_havebg .heading-text{
	background-image:url(../images/red_heading_bg2.png);
	background-repeat:repeat-x;
	background-position:center;
	background-size:auto 100%;
	
	color:var(--color-dark);
	
	padding:15px 2px 15px 2px;
}
.heading_havebg .heading-text:before,
.heading_havebg .heading-text:after{
	position:absolute; z-index:2; top:0; content:"";
	width:50px; height:100%;
	margin-top:0;
	background-repeat:no-repeat;
	background-size:auto 100%;
}
.heading_havebg .heading-text:before{
	left:-49px; right:auto;

	background-image:url(../images/red_heading_bg1.png);
	background-position:top right
}
.heading_havebg .heading-text:after{
	right:-49px; left:auto;

	background-image:url(../images/red_heading_bg3.png);
	background-position:top left;
}

.heading_havebg .heading-subtext{
	text-shadow: black 0.1em 0.1em 0.1em;
}*/





/* ===== 更多按鈕[in idx] */
.btnbar_idxmore{
	margin-top:3rem;
}
.btn_idxmore{
	display:block;
	background:var(--color-one);
	border:1px solid rgba(255,255,255,0.5);
	color:#fff;
	padding:15px 5px;
}
.btn_idxmore .iconsvg{
	display:inline-block;
}
.btn_idxmore .iconsvg:before{
	background-color:#fff;
}

@media (min-width:576px){
	.btn_idxmore{
		display:inline-block;
		padding-left:20px; padding-right:20px;
	}
}
@media (min-width:992px){
	.btnbar_idxmore{
		position:absolute; top:50%; right:10px;
		justify-content:flex-end;
		margin-top:0; margin-top:-35px;
	}
	.btn_idxmore{
		display:inline-block;
		background:transparent;
		border-width:0;
		width:70px; height:70px;
		color:rgba(var(--color-two-rgb),0.8);
		padding:0;
		margin:0;
		text-align:center;
		transform:rotate(45deg);
	}
	.btn_idxmore:before{
		position:absolute; z-index:-1; top:0; left:0; content:"";
		background:transparent;
		width:100%; height:100%;
		background:var(--color-one);
		border:4px solid rgba(var(--color-two-rgb),0.3);
		
		border-radius:50%;
		transition: transform 0.5s ease,
					border-radius 0.5s ease,
					box-shadow 0.5s ease 0.2s;
	}
	.btn_idxmore .btn-text{
		position:relative; z-index:1;
		display:block;
		font-size:1rem; line-height:70px;
		transform:rotate(-45deg);
	}
	.btn_idxmore .iconsvg{
		display:none;
	}
	
	
	.secbox_idx:hover .btn_idxmore{
		background:transparent;
		color:rgba(var(--color-two-rgb),1);
	}
	.secbox_idx:hover .btn_idxmore:before{
		border-color:rgba(var(--color-two-rgb),1);
	}
	
	.secbox_idx:hover .btn_idxmore:hover{
		/*color:var(--color-dark);*/
		color:#fff;
	}
	.secbox_idx:hover .btn_idxmore:hover:before{
		background:var(--color-accent);
		border-color:var(--color-accent);
		border-radius:0;
		transform:rotate(360deg);
		box-shadow:0 5px 10px rgba(0,0,0,0.3);
	}
}






/* ===== 首頁-相簿 */
.idx_bg_albums{ display:none; }

.secbox_idx_albums{
}
.secbox_idx_albums .idx_bg_albums{
	display:block;
	position:absolute; z-index:-1; top:0; right:0;
	width:100%; height:100%;
	background-position:center;
	background-size:cover;
}

@media (min-width:992px){
	.secbox_idx_albums .secbox_btm .container{
		width:100%;
		max-width:100%;
		padding:0;
	}
	.secbox_idx_albums .secbox_inner{
		position:relative;
	}
	.secbox_idx_albums .idx_bg_albums{
		width:50%;
	}
	.secbox_idx_albums .secbox_main{
		width:70%;
		margin-right:30%;
		padding:3rem 0 3rem 1rem;
	}
}





/* ===== 首頁-作品 */
.idx_bg_works{ display:none; }

.secbox_idx_works{
}
.secbox_idx_works .idx_bg_works{
	display:block;
	position:absolute; z-index:-1; top:0; left:0;
	width:100%; height:100%;
	background-position:center;
	background-size:cover;
}

@media (min-width:992px){
	.secbox_idx_works .secbox_btm .container{
		width:100%;
		max-width:100%;
		padding:0;
	}
	.secbox_idx_works .secbox_inner{
		position:relative;
	}
	.secbox_idx_works .idx_bg_works{
		width:50%;
	}
	.secbox_idx_works .secbox_main{
		width:70%;
		margin-left:30%;
		padding:3rem 4rem 3rem 0;
	}
}



.item-slide-three{ padding:0 15px; }
.item-slide-three .slick-slide{ padding:15px 15px; }

.item-slide-three .slick-prev , .item-slide-three .slick-next{
	top:50%;
	margin-top:-25px;
	width:50px; height:50px;
	background:#fff;
	border:2px solid #fff;
	border-radius:50%;
}
.item-slide-three .slick-prev{
	left:3px; transform:translateX(0);
	box-shadow:4px 0 6px rgb(0 0 0 / 30%);
}
.item-slide-three .slick-next{
	right:3px; transform:translateX(0);
	box-shadow:-4px 0 6px rgb(0 0 0 / 30%);
}

.item-slide-three .slick-prev:before, 
.item-slide-three .slick-next:before{
	border-color:var(--color-one);
}
.item-slide-three .slick-prev:hover, 
.item-slide-three .slick-next:hover{
	background:var(--color-accent);
}
.item-slide-three .slick-prev:hover:before, 
.item-slide-three .slick-next:hover:before{
	border-color:#fff;
}












/*------------------------------------------------------------------------------------------- */
/* ----- main_bg */
.main_bg:before{
	position:absolute; z-index:-3; top:10%; right:-10px; content:"";
	width:400px; height:160px;

	background-image:url(../images/red_cloud2.png);
	background-repeat:no-repeat;
	background-position:center;
	background-size:contain;

	opacity:0.2;
}
.main_bg:after{
	position:absolute; z-index:-3; top:70%; left:-50px; content:"";
	width:400px; height:320px;

	background-image:url(../images/red_cloud.png);
	background-repeat:no-repeat;
	background-position:center;
	background-size:contain;

	opacity:0.2;
}
.main_bg:before,
.main_bg:after{
	display:none;
}

@media (min-width:992px){
	.main_bg:before,
	.main_bg:after{
		display:block;
	}
}


/* ===== [in page]：區塊-主內容上列 */
.itembox_maintop{
	margin:1rem 0;
}

.itembox_maintop_dec{
	position:absolute; z-index:-1; top:0; left:0;
	width:100%; height:100%;
	background:var(--color-maintop);
	opacity:0.2;
}

.itembox_maintop_dec:before{
	position:absolute; top:-30px; left:0; content:"";
	width:2000px; height:40px;

	background-image:url(../images/red_maintop_dec.png);
	background-repeat:no-repeat;
	background-position:center top;
	background-size:contain;
}

.itembox_maintop_dec:after{
	position:absolute; bottom:-30px; left:0; content:"";
	width:2000px; height:40px;

	background-image:url(../images/red_maintop_dec2.png);
	background-repeat:no-repeat;
	background-position:center top;
	background-size:contain;
}

@media (min-width:992px){
	.itembox_maintop{
		margin:2rem 0;
	}
	.itembox_maintop .itembox_row{
		align-items:center;
	}
    .itembox_maintop .itembox-left{
		width:30%;
	}
	.itembox_maintop .itembox-right{
		width:70%;
	}
}



/* ===== [in page]：區塊-主內容上列-無輪播 */
.itembox_nobanner{
	margin:60px 0;
}
@media (min-width:992px){
	.itembox_nobanner{
		padding:10px 0;
	}
}





/*------------------------------------------------------------------------------------------- */
/* ----- #breadcrumb-nav 導覽路徑 */
.breadcrumb-nav{
	text-align:center;
}
@media (min-width:992px){
	.breadcrumb-nav{
		margin:1rem 0;
	}
}

.breadcrumb li{
	position:relative;
	margin-right:14px;
}
.breadcrumb li:after{
	position:absolute; top:50%; right:-12px; content:"";
	width:6px; height:6px;
	margin-top:-3px;
	background:var(--color-two);
	transform:rotate(45deg);
}

.breadcrumb-item{
	font-size:1rem;
}
.breadcrumb-item,
.breadcrumb-item a{
	color:var(--color-two);
}
.breadcrumb-item a:hover{
	color:#fff;
}
.breadcrumb-item.active{
	color:#fff;
}
@media (min-width:992px){
	.breadcrumb-nav{
		text-align:left;
	}
	.breadcrumb-item{
		font-size:1.125rem;
	}
}





/* ===== 模組大標[in page] */
/*.heading_module{
}*/





/* ===== 內頁大標[in page] */
.heading_main{
	position:relative;
	text-align:center;
	margin-bottom:2rem;
	overflow:hidden;
}
.heading_main .heading-text{
	position:relative;
	color:#fff;
	font-size:2rem; font-weight:bolder;
	margin:0;
}

.heading_main .heading-intro{
	font-size:1rem; font-weight:600;
	color:rgba(255,255,255,0.8);
	margin-top:1rem; 
}

@media (min-width:992px){
	.heading_main{
		margin-bottom:4rem;
	}
	.heading_main .heading-text{
		font-size:2.4rem;
	}
}


/*案件-進行中*/
/*案件-已完成*/
/*案件-成果*/
/*我要陳情*/
.heading_case_goon,
.heading_case_finish,
.heading_case_result,
.heading_petition{
	justify-content:center;
}
.heading_case_goon .heading-icon,
.heading_case_finish .heading-icon,
.heading_case_result .heading-icon,
.heading_petition .heading-icon{
	width:40px; height:40px;
}
.heading_case_goon .heading-icon:before,
.heading_case_finish .heading-icon:before,
.heading_case_result .heading-icon:before,
.heading_petition .heading-icon:before{
	background-color:#fff;
}
.heading_case_goon .heading-text,
.heading_case_finish .heading-text,
.heading_case_result .heading-text,
.heading_petition .heading-text{
	color:#fff;
}
.heading_case_goon .heading-text:before,
.heading_case_finish .heading-text:before,
.heading_case_result .heading-text:before,
.heading_petition .heading-text:before{
	right:calc( 100% + 70px);
}

















/*------------------------------------------------------------------------------------------- */
/* ----- #msgpopup [ msgpopup_1:資訊 / msgpopup_2:通知 /  msgpopup_3:警告 ] */
.msgpopup{
	position:fixed; z-index:2000; top:0; left:0;
	width:100%; height:100vh;
	background:rgba(40,40,40,0.9);
	overflow:hidden;
	
	opacity:0;
	pointer-events:none;
	visibility:hidden;
	
	transition:opacity 0.5s;
}
.msgpopup.msgpopup-show{
    opacity:1;
    pointer-events:auto;
    visibility:visible;
}

.msgpopup_row{
	display:flex; flex-wrap:wrap;
	align-items:center; justify-content:center;
	width:100%; height:100vh;
}
.msgpopup_limit{
	width:500px; min-height:40%;
	padding:1rem;
}


.msgpopup_inner{
	position:relative;
	width:100%; height:100%;		
	transform:scale(0.8);
	transition:transform 0.7s;
}
.msgpopup.msgpopup-show .msgpopup_inner{
	transform:scale(1);
}



.card_msgpopup{
	position:relative;
	background:var(--color-one);
	border-radius:10px;
	text-align:center;
	overflow:hidden;
	
	box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px,
				rgba(0, 0, 0, 0.22) 0px 15px 12px;
}
.card_msgpopup .card-header{
	display:flex; flex-wrap:wrap;
	align-items: center; justify-content: center;
	padding:1rem 1rem;
}



.card_msgpopup .card-type{
	position:relative;
	width: 100px; height: 100px;
}
.card_msgpopup .card-type_1,
.card_msgpopup .card-type_2,
.card_msgpopup .card-type_3,
.card_msgpopup .card-type_4{
	position: absolute;
	width:30px; height:30px;
}

.card_msgpopup:before,
.card_msgpopup .card-type_1:before,
.card_msgpopup .card-type_2:before,
.card_msgpopup .card-type_3:before,
.card_msgpopup .card-type_4:before{
	position: absolute; top: 0; left: 0; content: "";
	width:100%; height:100%;
    background-color:#fff;

    -webkit-mask-position: center;
    mask-position: center;
    
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}

.card_msgpopup:before{
	z-index:1;
	top:auto; bottom:-30px; left:-70px;
	width:200px; height:200px;
	background-color:var(--color-one);
	
	/*初始-資訊*/
    -webkit-mask-image: url(../images/msgpopup/msgpopup_type1.svg);
    mask-image: url(../images/msgpopup/msgpopup_type1.svg);
	
	opacity:0.2;
}

.card_msgpopup .card-type_1{
	position:relative; top:15%; left:15%;
	width: 70%; height: 70%;
	border-radius:50%;
	overflow:hidden;

	animation: swing 4s ease-in-out infinite;
	
	-webkit-transform-origin: center bottom;
		-ms-transform-origin: center bottom;
			transform-origin: center bottom;
}
.card_msgpopup .card-type_1:before {
	/*初始-資訊*/
    -webkit-mask-image: url(../images/msgpopup/msgpopup_type1.svg);
    mask-image: url(../images/msgpopup/msgpopup_type1.svg);
}

.card_msgpopup .card-type_2{
	top:30px; left: 5px;
	width: 20px; height: 20px;
	
	animation: SmallShow 5s ease-in-out infinite;
}
.card_msgpopup .card-type_3{
	top:10px; right:5px;
	width: 14px; height: 14px;
	
	animation: SmallShow 2.5s ease-in-out infinite;
}
.card_msgpopup .card-type_4{
	bottom:20px; right:0;
	width: 12px; height: 12px;
	
	animation: BigShow 3s ease-in-out infinite;
}

.card_msgpopup .card-type_2:before,
.card_msgpopup .card-type_3:before,
.card_msgpopup .card-type_4:before{
    -webkit-mask-image: url(../images/msgpopup/msgpopup_type_dec1.svg);
    mask-image: url(../images/msgpopup/msgpopup_type_dec1.svg);
}



/* [style set] msgpopup_2：通知*/
.msgpopup_2 .card_msgpopup{
	background:var(--color-popup-notify);
	background:var(--color-popup-notify-gradient);
}
.msgpopup_2 .card_msgpopup:before,
.msgpopup_2 .card_msgpopup .card-type_1:before {
    -webkit-mask-image: url(../images/msgpopup/msgpopup_type2.svg);
    mask-image: url(../images/msgpopup/msgpopup_type2.svg);
}
.msgpopup_2 .card_msgpopup:before{
	background-color:var(--color-popup-notify);
}


/* [style set] msgpopup_3：警告*/
.msgpopup_3 .card_msgpopup{
	background:var(--color-popup-warn);
	background:var(--color-popup-warn-gradient);
}
.msgpopup_3 .card_msgpopup:before,
.msgpopup_3 .card_msgpopup .card-type_1:before {
    -webkit-mask-image: url(../images/msgpopup/msgpopup_type3.svg);
    mask-image: url(../images/msgpopup/msgpopup_type3.svg);
}
.msgpopup_3 .card_msgpopup:before{
	background-color:var(--color-popup-warn);
}



.card_msgpopup .card-body{
	background:#fff;
	border-radius:30px 30px 0 0; 
	font-weight:600;
	color:#333;
	min-height:200px;
	padding:1rem;
}
.card_msgpopup .card-text{
	position:relative; z-index:2;
	color:#333;
}
@media (min-width:992px){
	.card_msgpopup .card-body{
		padding:2rem;
	}
}


.msgpopup_logo{
	display:none;
}


.msgpopup_close{
	display:block;
	position:absolute; z-index:5; top:0; right:0;
	width:60px; height:60px;
	
	display:flex; flex-wrap:wrap;
	align-items:center; justify-content:center;
	
	border-radius:0 10px 0 10px;
	transition:transform 0.7s ease;
	opacity:0.5;
}
.msgpopup_close .sign_close{
	width:26px; height:26px;
	transform:rotate(0deg);
	transition:transform 0.7s ease;
}
.msgpopup_close .sign_close:before,
.msgpopup_close .sign_close:after{
	background-color:#fff;
}

.msgpopup_close-text{ display:none; }


.msgpopup_close:hover{
	background:rgba(255,255,255,0.1);
	opacity:1;
}
.msgpopup_close:hover .sign_close{
	transform: rotate(180deg);
}
/* .msgpopup_close:hover .sign_close:before,
.msgpopup_close:hover .sign_close:after{
	background-color:var(--color-accent);
} */





