
:root {
	--color-case-result:#F6781D; /*案件-成果*/
	--color-case-goon:#178CF7; /*案件-進行中*/
	--color-case-finish:#EF4124; /*案件-已完成*/
	
	--color-case-petition:#4d8a2a; /*案件-我要陳情*/
	
	--color-reserve:#EA972B; /*預約*/
	--color-meeting:#4FAE5C; /*會議*/
	
	--color-apply:#4FAE5C; /*立即申請*/
	--color-addcart:#D54545; /*立即購買*/
	
	--color-popup-notify:#F59700; /*彈出視窗-通知*/
	--color-popup-warn:#b02726; /*彈出視窗-警告*/

	--color-popup-notify-gradient:linear-gradient(-45deg, var(--color-popup-notify), #f5d758); 
	/* 彈出視窗-通知：深-淺漸層色 */
	
	--color-popup-warn-gradient:linear-gradient(-45deg, var(--color-popup-warn), #f72b2b); 
	/* 彈出視窗-警告：深-淺漸層色 */
}


/* 後台編輯器 a連結 */
.editor{
	color:#333;
	line-height:1.8;
}
.editor a{
	color:rgba(0,0,238,1); /*預設藍*/
	text-decoration:underline;
}
.editor a:hover{
	color:var(--color-accent);
}










/*------------------------------------------------------------------------------------------- */
/*---- #wrapper */
.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;
}










/*------------------------------------------------------------------------------------------- */
/*---- #header */
.header_main{
	background:#fff;
	padding:10px 0;
}
.header_main .header_row{
	align-items:center;
}
.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;
}
.header_main .header-four{
	width:auto;
	flex:0 1 auto;
}
@media (min-width:992px){
	.header_main .header-one{
		flex:none;
		width:250px; min-width:auto;
	}
	.header_main .header-two{
		display:block;
		flex:1 1 auto;
    	width:1%; min-width:0;
	}
	.header_main .header-three{
		display:block;
		width:auto;
		flex:0 1 auto;
	}
	.header_main .header-four{
		display:none;
	}
}


/* .header_main .navbar_toggler.header .sign_hamburger:before, 
.header_main .navbar_toggler.header .sign_hamburger:after , 
.header_main .navbar_toggler.header .sign_hamburger-line{
	background:var(--color-one);
}
.header_main .navbar_toggler.header .toggler-text{
	color:var(--color-one);
} */



/* ===== header_fixed [is-sticky]：卷軸下捲時固定 */
.header_fixed.is-sticky{
	position:fixed; z-index:900; top:-300px; left:0;
	width:100%; height:auto;
	box-shadow:0 2px 6px rgba(0,0,0,0.1);
	
	transition:transform 0.6s ease-in-out;
}
.header_fixed.is-sticky.is-scroll{
	transform:translateY(300px);
}
@media (min-width:992px){
	.header_fixed.is-sticky .header-one,
	.header_fixed.is-sticky .header-three{
		display:none;
	}
}




/*------------------------------------------------------------------------------------------- */
/*---- #logo */
.logo{
	margin:5px 0;
}

/*logo-photo 圖片式*/
.logo-photo{
	max-width:250px;
}

/*logo-text 文字式*/
.logo-text{
	color:#000;
}










/*------------------------------------------------------------------------------------------- */
/* ----- #menu：選單 */
.menu{
	display:flex; flex-wrap:wrap;
	justify-content:flex-end;
}
.menu li{
	position:relative;
	display:block;
	margin:2px 5px;
}
.menu li a{
	position:relative;
	display:block;
	font-size:1rem; font-weight:600;
	color:#333;
	
	padding:6px 5px;
}

.menu li a:before{
	position:absolute; z-index:1; bottom:0; left:0; content:"";
	width:100%; height:1px;
	
	background:var(--color-accent);
}
.menu li a:after{
	position:absolute; z-index:2; bottom:-5px; left:50%; content:"";
	width:10px; height:10px;
	border:2px solid #fff;
	margin-left:-5px;

	background:var(--color-accent);
}
.menu li a:before, 
.menu li a:after{
	opacity:0;
	-webkit-transition:all 0.3s;
	transition:all 0.3s;
}

.menu .menulink a .menu-subtext{
	display:none;
}

.menu li a:hover{
	color:var(--color-accent);
}
.menu li a:hover:before, 
.menu li a:hover:after{ 
	-webkit-transform:translateY(-5px);
	transform:translateY(-5px);
	opacity:1;
}


/* ===== menu [in header is-scroll]：卷軸下捲時選單設定 */
@media (min-width:992px){
	.header_fixed.is-sticky .menu{
		justify-content:center;
	}
	.header_fixed.is-sticky .menu li a{
		font-size:0.875rem;
		padding:2px 5px;
	}
	.header_fixed.is-sticky .menu li a:before,
	.header_fixed.is-sticky .menu li a:after{
		display:none;
	}
}








/*------------------------------------------------------------------------------------------- */
/*---- #dropdown 下拉式選單 */

/* ===== 觸發鈕*/
.dropdown_trigger{
	background:var(--color-one);
	border-color:#fff;
	color:#fff;
}
.dropdown_trigger-text:before{
	border-top-color:#fff;
}
.dropdown_trigger:hover{
	border-color:var(--color-one);
}

/* ===== 觸發鈕-啟動*/
.dropdown_trigger.is-open{
	border-color:var(--color-accent);
	color:#fff;
}
.dropdown_trigger.is-open .dropdown_trigger-text:before{
	border-bottom-color:#fff;
}

/* ===== 下拉項目*/
.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_list{
	padding:0;
}
.language{ 
	background:rgba(255,255,255,0.05);
	color:#fff;
}
.language:hover{
	background:#fff;
    color:var(--color-one);
}
.language.active{
	background:rgba(255,255,255,0.9);
	color:var(--color-darker);
}





/*------------------------------------------------------------------------------------------- */
/*---- #language_member：會員管理(語系條列式與下拉式裡的css命名皆同) */
.language_member{
	background:#fff;
	border:1px solid var(--color-two);
}
.language_member:before{
	background-color:var(--color-two);
}
.language_member:hover{
	background:#fff;
	border-color:var(--color-accent);
}
.language_member:hover:before{
	background-color:var(--color-accent);
}





/* ===== language_dropbox ：語系下拉模式 ===== */
.language_dropbox{
	text-align:center;
}
@media (min-width:992px){
	.language_dropbox{
		text-align:right;
		margin-left:2rem;
	}
}










/*------------------------------------------------------------------------------------------- */
/* ===== #navbar_toggler [in header]：側邊隱藏區塊-觸發鈕 */
.navbar_toggler{
	display:flex; flex-wrap:wrap;
	align-items:center; justify-content:flex-end;
	
	width: 80px;
	margin: 0 0 0 auto;
}
.navbar_toggler .navbar_toggler-icon,
.navbar_toggler .navbar_toggler-text{
	display:block;
	line-height:1;
}
.navbar_toggler .navbar_toggler-icon{
	width:18px; height:18px;
	margin-right:3px;
}
.navbar_toggler .sign_hamburger:before, 
.navbar_toggler .sign_hamburger:after , 
.navbar_toggler .sign_hamburger-line{
	background:var(--color-one);
}
.navbar_toggler .navbar_toggler-text{
	font-size:1.1rem; font-weight:600;
	color: var(--color-one);
}










/*------------------------------------------------------------------------------------------- */
/* ----- #offside */

@media (min-width:992px){
	.offside{ display:block; }
	.offside_inner{
		width: 420px;
	}
}

.offside_inner{
	background: var(--color-offside);
}

.offside_header{
	padding: 2rem 0;
}





/*------------------------------------------------------------------------------------------- */
/* ----- #menu_offside 側邊區塊選單 */
.menu_offside li a{
	color:var(--color-two);
}


/* ===== 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{
	background: #fff;
	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);
}





/*------------------------------------------------------------------------------------------- */
/* ----- [52]#offside_close：側邊隱藏區塊-關閉鈕 */
@media (min-width: 992px){
	.offside_close{
		width: calc( 100% - 420px );
		justify-content: flex-end;
		padding-right: 30px;
	}
}









/*------------------------------------------------------------------------------------------- */
/*---- #footer */
.footer{
	position:relative;
	background:var(--color-one);
}

/* ===== #footer_main */
.footer_main{
	background:var(--color-one);
	padding:2rem 0;
}

/* ===== #footer_btm */
.footer_btm{
	background:rgba(255,255,255,0.1);
	padding:10px 0 5rem 0;
}
@media (min-width:992px){
	.footer_btm{
		padding:10px 0;
	}
}





/* ===== #infolist_footer_company[in footer] */
.infolist_footer_company{
	text-align:center;
}
.infolist_footer_company .info{
    font-size: 0.875rem;
}
.infolist_footer_company,
.infolist_footer_company a{
	color: #fff;
	font-size: 0.875rem; font-weight: 600;
}
.infolist_footer_company a:hover{
	color: var(--color-accent);
}




/* ===== #infolist_footer_company[under banner] */
.infolist-banner-info{
	text-align:right;
}
.infolist-banner-info > li{
	display:inline-block; margin-left:30px; 
}
/* .infolist-banner-info .info{
    font-size: 1rem;
} */
.infolist-banner-info,
.infolist-banner-info a{
	color: #fff;
	font-size: 1rem; font-weight: 600;
}
.infolist-banner-info a:hover{
	color: var(--color-accent);
}




/* ===== #infolist-copyright[in footer] */
.web_designer{
	font-size:0.875rem; font-weight:600;
	text-align:right;
}
.web_designer,
.web_designer a{
	color:#fff;
	font-size:0.875rem; font-weight:600;
}
.web_designer a:hover{
	color:var(--color-bg-text-accent);
}
@media (min-width:992px){
	.web_designer{
		text-align:right;
	}
}





/* ===== navbar_social [base]：社群 */
.navbar_social{
	justify-content:center;
	margin-top:1rem;
}
.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:36px; height:36px;
	
    background:var(--color-one);
	
	border:1px solid #fff;
	border-radius:50%;
	overflow:hidden;
}

.navlink_social .navlink-icon:before{
	z-index:2;
	background-color:#fff;
	
	-webkit-mask-size:65% 65%;
    mask-size:65% 65%;
}

.navlink_social a:hover .navlink-icon{
	background:#fff;
	transform:translateY(-5px);
}
.navlink_social:hover .icon-fb:before{ background-color:#385591; }
.navlink_social:hover .icon-line:before{ background-color:#22AA38; }
.navlink_social:hover .icon-ig:before{ background:#6946BC; }
.navlink_social:hover .icon-youtube:before{ background:#FB0000; }
.navlink_social:hover .icon-twitter:before{ background:#489AD4; }
.navlink_social:hover .icon-weibo:before{ background:#DE2127; }
.navlink_social:hover .icon-wechat:before{ background:#04CF66; }
.navlink_social:hover .icon-mail:before{ background-color:#01A6E2; }
.navlink_social:hover .icon-home:before{ background-color:#9D1C1F; }












/*------------------------------------------------------------------------------------------- */
/*---- #marquee */
.marqueebar{
	position:relative; z-index:3;
	margin:2rem 0 2rem 0;
}

.marquee_inner{
	position:relative;
	border:1px solid rgba(var(--color-one-rgb), 0.2);
	border-radius:3px;
	padding:0 5px 10px 5px;
}

.marquee_main{
	margin-left:50px;
}

.marquee-tag{
	position:absolute; top:2px; left:10px;
}
.marquee-tag_desktop{ display:none; }
.marquee-tag_mobile{ display:block; }
@media (min-width:992px){
	.marquee_main{
		margin-left:75px;
	}

	.marquee-tag_desktop{ display:block; }
	.marquee-tag_mobile{ display:none; }
}

.marquee-tag_desktop{
	background:#E94847;
	/*border:2px solid #fff;*/
	border-radius:3px;
	font-size:0.875rem; font-weight:600;
	color:#fff;
	padding:2px 10px;
	text-align:center;
	margin-top:7px;
}
.marquee-tag_desktop:before{
	position:absolute; top:50%; right:-6px; content:"";
	width:0; height:0;
	margin-top:-6px;
	
	border-width:6px 0 6px 6px;
	border-style:solid;
	border-color:transparent;
	
	border-left-color:#E94847;
}

.marquee-tag_mobile{
	width:34px; height:34px;
	background:#E94847;
	border:2px solid #fff;
	border-radius:50%;
	margin-top:3px;
}
.marquee-tag_mobile .iconsvg:before{
	background-color:#fff;
	
	-webkit-mask-size: 80% 80%;
    mask-size: 80% 80%;
}


.marquee-slide{
	height: 34px;
	overflow: hidden;
}

.marquee-slide li{ margin:5px 0; }

.marquee{}

.marquee a{
	display:block;
	color:var(--color-one);
}
.marquee-text{
	display:block;
	font-size:18px; font-weight:600;
	line-height:34px;
	
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.marquee a:hover{
	color:var(--color-accent);
	/*text-shadow: black 0.1em 0.1em 0.2em;*/
}
@media (min-width:992px){
	.marquee-text{
		font-size:20px;
	}
}










/*------------------------------------------------------------------------------------------- */
/*---- #sidebar 側邊攔 */
@media (min-width:992px){
	.sidebar-left{
		width:200px;
		margin-right:60px;
	}
	.sidebar-right{
		width:calc( 100% - 260px );
	}
	.sidebar-right:before{
		position:absolute; top:0; left:-30px; content:"";
		width:1px; height:100%;
		background:#eee;
	}
}











/*------------------------------------------------------------------------------------------- */
/*---- #infolist 資訊 */

/* ===== [in view] */
.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 #ccc;
	padding:10px 0;
}
.infolist_case_track > li:first-child{
	padding-top:0;
}

.infolist_case_track .info{
    align-items:center;
	font-weight:600;
}
.infolist_case_track .info-title{
	width:100%;
	color:#666;
}
.infolist_case_track .info-text{
	padding-left:1rem;
}
.infolist_case_track .info_status .info-text{
	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:#333;
	}
	.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;
	}
}










/*------------------------------------------------------------------------------------------- */
/*---- #banner */

/* ========== banner [in idx] */
.slide-banner{
	position:relative;
}
.slide-banner .slick-dots{
	position:absolute; bottom:0; left:0;
	width:100%; height:auto;
}
.base-dots .slick-dots li button{
	border:2px solid #fff;
	border-radius:0;
}
.slide-banner .slick-slide img{
	display:block; max-width:100%; height:auto;
    margin:0 auto;
}



/* ========== banner [in page] */
.banner-single img{
	position: relative; z-index: 2;
	display: block; max-width: 100%; height: auto;
     margin: 0 auto;
}










/*------------------------------------------------------------------------------------------- */
/*---- #itembox_search-info：搜尋與公司資訊 */
.itembox_search-info{
	/*background 於 color_bg 另外設定*/
	background:linear-gradient( left , #fff, #fff 80%, #2483BC 20%, #2483BC );
	background:-moz-linear-gradient( left , #fff, #fff 80%, #2483BC 20%, #2483BC );
	background:-webkit-linear-gradient( left , #fff, #fff 80%, #2483BC 20%, #2483BC );
	background:-o-linear-gradient( left , #fff, #fff 80%, #2483BC 20%, #2483BC );
	background:-ms-linear-gradient( left , #fff, #fff 80%, #2483BC 20%, #2483BC );
	
	margin:0;	
}

.itembox_search-info .itembox_row{
	justify-content:flex-end;
}

.itembox_search-info .itembox-left{
	width:80%; background:#fff;
	padding:0 10px;
}
.itembox_search-info .itembox-right{
	width:20%;
	background:var(--color-one);
}

.itembox_search-info .infolist{
	display:none;
}
@media (min-width:992px){

	.itembox_search-info .itembox-left{
		width:35%;
	}
	.itembox_search-info .itembox-right{
		width:65%;
		padding:10px 0;
	}
	
	.itembox_search-info .infolist{
		display:block;
	}
	
}


.itembox_search-info .searchbar{
	margin-bottom: 0;
}


/*如果沒有search 替代色塊*/
.no-search{
	position:relative;
	width:100%;
	height:100%;
	min-height:20px;
}
.no-search:before{
	position:absolute; top:0; right:-20px; content:"";
	width:1000px; height:100%;
	
	background:var(--color-one);
	
	opacity:0.5;
}









/*------------------------------------------------------------------------------------------- */
/*---- #itembox 分隔區塊 */

/* ===== [in page]：區塊-主內容上列 */
.itembox_sectop{
	margin-bottom:3rem;
}



/* ===== [in view]：詳細頁-編輯器 */
.itembox_intro{
	font-size:1.125rem; /*font-weight:600;*/
}
.itembox_intro,
.itembox_intro a{
	color:#333;
}
.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:900px;
	margin:0 auto;
}



/* ===== [in view]：詳細頁-地圖 */
.itembox_map{
	background:#fff;
	border:1px solid #cccc;
	border-radius:5px;
	text-align:center;
	padding:1rem;
}
.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;
}
.itembox_view_figure .row{
	justify-content:center;
}


/* ===== [in view]：詳細頁-相簿 */
.itembox_view_albums{
	margin:4rem 0;
}




/* ===== [in view]：詳細頁-知識庫-側邊 */
.itembox_article_sub{
}
.itembox_article_sub:first-child{
	margin-top:0;
}

.heading_article_sub{
	position:relative;
	padding-left:15px;
	margin-bottom:1rem;
}
.heading_article_sub:before{
	position:absolute; top:15%; left:0px; content:"";
	width:5px; height:70%;
	background:var(--color-dark);
}
.heading_article_sub .heading-text{
	font-size:1.5rem;
	color:var(--color-dark);
}



/* ===== [in view]：詳細頁-文章大標 */
.heading_articleview{
	margin-bottom:3rem;
}
.heading_articleview .heading-text{
	position: relative;
	color:var(--color-one);
	font-size: 1.3rem;
	margin:0;
}
@media (min-width:992px){
	.heading_articleview .heading-text{
		font-size:1.8rem;
	}
}



/* ===== [in view]：詳細頁-知識庫-延伸閱讀 */
.itembox_article_extended{
	position:relative;
	background:rgba(var(--color-one-rgb),0.1);
	padding:2rem;
}
.heading_view_extended{
	margin-bottom:1rem;
}
.heading_view_extended .heading-text{
	font-size:1.5rem;
	color:var(--color-dark);
}




/* ===== [in view]：詳細頁-知識庫-您可能有興趣 */
.itembox_article_interest{
}

.heading_view_interest{
	margin-bottom:1rem;
	border-bottom:2px solid var(--color-one);
}
.heading_view_interest .heading-text{
	font-size:1.5rem;
	color:var(--color-one);
}




/* ===== [in agent_pd_view ]：代理商品詳細-內容尾 */
.itembox_view_addcart{
	max-width:500px;
	border:2px solid var(--color-one);
	padding:10px;
	margin:60px auto;
}
.itembox_view_addcart .heading_pageview{
	margin-bottom:1rem;
}
@media (min-width:992px){
	.itembox_view_addcart{
		padding:20px;
	}
}



/* ===== [in view ]：主內容區-頁尾 */
.itembox_mainbtm{
	border-top: 1px solid #ccc;
	padding-top: 1rem;
	margin-top: 4rem;
}
.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; }
}



/* ===== [in page ]：頁面提示說明 */
.itembox_pagenote{
	min-height:200px;
	color:#333;
	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;*/
}










/*------------------------------------------------------------------------------------------- */
/*---- #breadcrumb-nav 導覽路徑 */
.breadcrumb-nav{}

.breadcrumb{ text-align:center; }
.breadcrumb li{ display:inline-block; }
.breadcrumb li:after{ content:"/"; color:#999; font-size:10px; margin-left:2px;  }
.breadcrumb li:last-child:after{ display:none; }

.breadcrumb-item{
	display:inline-block; vertical-align:middle;
	font-size:0.875rem; font-weight:600; line-height:1.5; letter-spacing:0;
}
.breadcrumb-item , .breadcrumb-item a{
	color:#999;
}
.breadcrumb-item a:hover{
	color:var(--color-accent);
}
.breadcrumb-item.active{
	color:var(--color-one);
}
@media (min-width:992px){
	.breadcrumb{ text-align:right; }
}











/*------------------------------------------------------------------------------------------- */
/*---- #heading 標題 */


/* ===== [in idx]：首頁大標 */
.heading_sec{
	position:relative;
	display:block;
	padding-bottom:6px;
	text-align:center;
	overflow:hidden;
}
.heading_sec:before{
	position:absolute; z-index:2; bottom:4px; left:50%; content:"";
	width:8px; height:8px;
	margin-top:4px; margin-left:-4px;

	background:var(--color-one);
}

.heading_sec .heading-text{
	position:relative;
	display:inline-block;
	
	color:var(--color-one);
	
	font-size:1.6rem;
	padding:5px 15px 10px 15px;
}

.heading_sec .heading-text:before,
.heading_sec .heading-text:after{
	position:absolute; z-index:1; bottom:0; content:"";
	width:100%; height:2px;

	background:var(--color-one);
}
.heading_sec .heading-text:before{
	left:50%;
	margin-left:10px;
}
.heading_sec .heading-text:after{
	right:50%;
	margin-right:10px;
}

.heading_sec .heading-subtext{
	display:none;
}





/* ===== [in page]：模組大標 */
.heading_module{
	position:relative; 
	padding:8px 0;
	text-align:center;
}

.heading_module:before{
	position:absolute; z-index:1; bottom:0; left:0; content:"";
	width:100%; height:2px;
	
	background:#999;
}
.heading_module:after{
	position:absolute; z-index:2; bottom:-6px; left:50%; content:"";
	width:12px; height:12px;
	border:3px solid #fff;
	margin-left:-6px;

	background:#999;
}

.heading_module .heading-text{
	font-size:1.1rem;
	color:#666;
}
@media (min-width:992px){
	.heading_module .heading-text{
		font-size:1.4rem;
	}
}

.heading_module .heading-subtext{
	display:none;
	position:absolute; z-index:1;  top:47px;  left:50px;
	margin:0;
	color:var(--color-dark);
	font-size:50px; font-weight:600; line-height:50px;
	padding-left:60px; padding-right:210px;
	text-transform:uppercase;
	
	transform-origin:left top;
	transform:rotate(90deg);
	opacity:0.1;
}
.heading_module .heading-subtext:before,
.heading_module .heading-subtext:after{
	position:absolute; content:"";
	
	background:var(--color-dark);
}
.heading_module .heading-subtext:before{
	top:0; left:0; 
	width:50px; height:50px;
}
.heading_module .heading-subtext:after{
	top:50%; right:0;
	width:200px; height:6px;
	margin-top:-3px;
}
@media (min-width:992px){
	.heading_module .heading-subtext{
		display:block;
	}
}




/* ===== [in page]：內頁大標 */
.heading_main{
	text-align:center;
	margin:1rem 0 2rem 0;
}
.heading_main .heading-text{
	color:var(--color-one);
	font-size:1.6rem;
}
.heading_main .heading-intro{
	font-size:1rem; font-weight:600;
	color:rgba(0,0,0,0.6);
	margin-top:1rem; 
}

/*in product_view*/
.heading_main.product{
	text-align:left;
	margin:0 0 1rem 0;
}
@media (min-width:992px){
	.heading_main.product .heading-text{
		font-size:2rem;
	}
}


.heading_case_goon .iconsvg,
.heading_case_finish .iconsvg,
.heading_case_result .iconsvg,
.heading_petition .iconsvg{
	width:36px; height:36px;
}
.heading_case_goon .heading-text,
.heading_case_finish .heading-text,
.heading_case_result .heading-text,
.heading_petition .heading-text{
	background:none;
}

/*案件-進行中*/
.heading_case_goon .heading-icon:before{ background-color:var(--color-case-goon); }
.heading_case_goon .heading-text{ color:var(--color-case-goon); -webkit-text-fill-color:var(--color-case-goon); }

/*案件-已完成*/
.heading_case_finish .heading-icon:before{ background-color:var(--color-case-finish); }
.heading_case_finish .heading-text{ color:var(--color-case-finish); -webkit-text-fill-color:var(--color-case-finish); }

/*案件-成果*/
.heading_case_result .iconsvg:before{ background-color:var(--color-case-result); }
.heading_case_result .heading-text{ color:var(--color-case-result); -webkit-text-fill-color:var(--color-case-result); }

/*我要陳情*/
.heading_petition .iconsvg:before{ background-color:var(--color-case-petition); }
.heading_petition .heading-text{ color:var(--color-case-petition); -webkit-text-fill-color:var(--color-case-petition); }

.heading_case_goon .heading-text,
.heading_case_finish .heading-text,
.heading_case_result .heading-text,
.heading_petition .heading-text{
	background-image:none;
}




/* ===== [in page]：左側選單-標題 */
.heading-side-nav{
	display:none;
	position:relative;
	
	background:var(--color-two);
	
	color:#fff;
	text-align:center;
	padding:0.5rem 0.25rem;
	margin-bottom:1.5rem;
}

.heading-side-nav:before,
.heading-side-nav:after{
	position:absolute; z-index:1; content:"";
	background:#fff;
}
.heading-side-nav:before{
	bottom:0; left:6px; 
	width:8px; height:8px;
	opacity:0.9;
}
.heading-side-nav:after{
	bottom:7px; left:0;
	width:6px; height:6px;
	opacity:0.8;
}
@media (min-width:992px){
	.heading-side-nav{
		display:block;
	}
}




/* ===== [in view]：詳細頁大標 */
.heading_pageview{
	text-align:center;
	margin-bottom:3rem;
}
.heading_pageview .heading-text{
	position: relative;
	color: var(--color-dark);
	font-size: 1.6rem;
}
@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:1rem 0 2rem 0;
	color:#ccc;
	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:1px;
	background:#eee;
}
.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-width: 1px 0 0 0;
	border-style: solid;
	border-color: rgba(0,0,0,0.2);
	
	color: #333;
	font-weight:600;
	padding: 9px 25px 9px 18px;
}
.menu_sidebar li:last-child > a{ border-bottom-width: 1px; }


.menu_sidebar li a:hover{
	color: var(--color-accent);
}
.menu_sidebar li a:hover:before, 
.menu_sidebar li a:hover:after{
	background: var(--color-accent);
}


/*===== 多層分類-有下一層選項的項目設定(>號) */
.menu_sidebar li.mtree-node > a:before, 
.menu_sidebar li.mtree-node > a:after{
	background: #999;
}


/*====== 多層分類-選中的項目有標記(圓圈)之設定 */
.menu_sidebar li:after{
	position:absolute; top:22px; left:0px; content:"";
	width:8px; height:8px;
	margin-top:-4px;

    background:#ccc;
}
.mtree li.active:after{
	background:var(--color-one);
}


.menu_sidebar li.mtree-open > a{
	color:var(--color-accent);
}
.mtree li.mtree-open > a:before, 
.mtree li.mtree-open > a:after{
	background: var(--color-accent);
}


.menu_sidebar li.active > a{
	color:var(--color-one);
}
.menu_sidebar li.active > a:before,
.menu_sidebar li.active > a:after{
	background: var(--color-one);
}











/*------------------------------------------------------------------------------------------- */
/*---- #category 分類 */
.category_box{ display:none;}
.category_list{ text-align:center; }
.category_list li{
	display:inline-block;
	margin:10px 5px;
}

.category_list li a{
	position:relative; z-index:1;
	display:block;
	color:#666;
	font-size:0.875rem; font-weight:600;
	border:1px solid #ccc;
	padding:3px 20px;
}
.category_list li a:before,
.category_list li a:after{
	position:absolute; z-index:1; content:"";
	background:#fff;
	opacity:0;
}
.category_list li a:before{
	bottom:-1px; left:6px; 
	width:8px; height:8px;
}
.category_list li a:after{
	bottom:7px; left:-1px;
	width:6px; height:6px;
}

.category_list li a:hover{
	border-color:var(--color-accent); 
	
	color:#e85356;
	color:var(--color-accent);
}
.category_list li.active a{
	background:var(--color-accent); 
	
	color:#fff;
	
	border-color:var(--color-accent);
	
	cursor:default;
}
.category_list li.active a:before{ opacity:0.9; }
.category_list li.active a:after{ opacity:0.8; }

@media (min-width:992px){
	.category_box{
		display:block;
		 margin:1rem 0 3rem 0; 
	}
}











/*------------------------------------------------------------------------------------------- */
/*---- #iconcate 圖標分類 */
.iconcate_box{
	display:none;
}
@media (min-width:992px){
	.iconcate_box{
		display:block;
	}
}

.iconcate_list{}
.iconcate_list li{ margin-bottom:1rem; }
.iconcate_list li:last-child{ margin-bottom:0; }

.iconcate{}
.iconcate_row{
	display:flex; flex-wrap:wrap;
	align-items:center;
}
.iconcate_row .iconsvg,
.iconcate_row .iconcate-text{
	position:relative; z-index:2;
	display:block;
	margin:0 1px;
}
.iconcate .iconsvg{
	width:22px; height:22px;
}
.iconcate .iconsvg:before{
	background-color:#333;
}
.iconcate_row .iconcate-text{
	font-size:1rem; font-weight:600;
	color:#333;
}


/* ===== [in case] */
.iconcate_box_case{
	border-top: 1px solid #eee;
	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:40px; height:40px;
}
.iconcate_petition .iconsvg:before{
	background-color:var(--color-case-petition);
}
.iconcate_petition .iconcate-text{
	color:var(--color-case-petition);
}
.iconcate:hover .iconsvg:before{
	background-color:var(--color-accent);
}
.iconcate:hover .iconcate-text{
	color:var(--color-accent);
}


/*陳情-成果*/
.iconcate_case_result:hover .iconsvg:before,
.iconcate_case_result.active .iconsvg:before{
	background-color:var(--color-case-result);
}
.iconcate_case_result:hover .iconcate-text,
.iconcate_case_result.active .iconcate-text{
	color:var(--color-case-result);
}


/*陳情-進行中*/
.iconcate_case_goon:hover .iconsvg:before,
.iconcate_case_goon.active .iconsvg:before{
	background-color:var(--color-case-goon);
}
.iconcate_case_goon:hover .iconcate-text,
.iconcate_case_goon.active .iconcate-text{
	color:var(--color-case-goon);
}


/*陳情-已完成*/
.iconcate_case_finish:hover .iconsvg:before,
.iconcate_case_finish.active .iconsvg:before{
	background-color:var(--color-case-finish);
}
.iconcate_case_finish:hover .iconcate-text,
.iconcate_case_finish.active .iconcate-text{
	color:var(--color-case-finish);
}











/*------------------------------------------------------------------------------------------- */
/*---- #searchbar 搜尋 */
.searchbar{
	margin-bottom: 2rem;
}
.search{
	border:1px solid var(--color-one);
}
.search-input{
	padding:0.6rem 5px 0.6rem 0.75rem;
}
.search-btn:hover{
	background:var(--color-one);
}


/* ===== [in case] */
.searchbar_case{
	margin:0;
}
.searchbar_case .heading_search{
	color:#333;
	font-size:0.875rem; font-weight:600;
	margin-bottom:10px;
}
@media (min-width:992px){
	.searchbar_case{
		border-top:1px solid #eee;
		margin:2rem 0;
		padding:2rem 0 0 0;
	}
}










/*------------------------------------------------------------------------------------------- */
/*---- #price 價錢組 */
.pricebar{}

.price{
	display:inline-block;
	margin:5px 1px;
	font-weight:600; line-height:1;
	font-family:'Notosans2', 'Open-Sans', Roboto, 'Noto Sans TC', sans-serif;
	color:#666;
	text-align:center;
}

.price_unit,
.price_period{
	font-size:0.875rem;
}
.price_sale{
	font-size:1.2rem; font-weight:600;
	color:#cc3333;
}
.price_original{
	font-size:0.875rem;
	text-decoration:line-through;
}

@media (min-width:992px){
	.price_sale{ font-size:1.7rem; }
	.price_original{
		font-size:1rem;
	}
}




/* ===== addcartbox ：price + btnbar 組合列 */
.addcartbox{
	position:relative;
    display:flex; flex-wrap:wrap;
	align-items:center;
    width:100%;
	border-top:1px solid #ccc;
	border-bottom:1px solid #ccc;
	padding:10px 0;
}

.addcartbox .pricebar{
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
}
.addcartbox .btnbar{
	width: 120px;
}
.addcartbox .btnbar .btn{
	width: 100%;
	padding-left: 0.3rem;
	padding-right: 0.3rem;
	margin: 0;
}



/* ===== [in agent_pd_view]：於內容區尾 */
.itembox_view_addcart .addcartbox{
	border-bottom-width:0;
	padding-bottom:0;
	margin-top:30px;
}











/*------------------------------------------------------------------------------------------- */
/* ----- #page 頁碼 */
.page{
	color: #666;
}
.page a,
.page span{
	background:#fff;
	border:1px solid #ccc;
	border-radius:2px;
	color:#333;
}
.page span{
	background:var(--color-one);
	border-color:var(--color-one);
	color:#fff;
}
.page a:hover{
	border-color:var(--color-accent);
	color:var(--color-accent);
}











/*------------------------------------------------------------------------------------------- */
/* ----- #btnbar */


/* ===== [in view]：返回 */
@media (min-width:992px){
	.btnbar_pageback{
		text-align:left;
	}
}


/* ===== btnbar idx-more [in idx]：更多 */
.btnbar_idxmore{
	margin-top:2rem;
}





/*------------------------------------------------------------------------------------------- */
/*---- #btn */
.btn{
	background:#fff;
	border:2px solid var(--color-one);
	border-radius:0;
	color:var(--color-one);
	
	padding:0.5rem 1.1rem 0.5rem 1.3rem;
	margin:0.5rem 0.2rem;
}

.btn .iconsvg{
	width:20px; height:20px;
}
.btn .iconsvg:before{
	background-color:var(--color-one);
}


.btn:hover{
	background:#fff;
	border-color:var(--color-accent);
	color:var(--color-accent);
	box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
}
.btn:hover .iconsvg:before{
	background-color:var(--color-accent);
}
/*-----  base end =-----*/







/*------------------------------------------------------------------------------------------- */
/* ===== 問題諮詢[in view] */
.btn_consult{
	background:#fff;
	border:3px solid #CC3333;
	border-radius:22px;
	color:#CC3333;
	font-size:1rem;
	padding:0.7rem 2.6rem 0.7rem 2rem;
	overflow:hidden;
	box-shadow:1px 1px 3px rgba(0,0,0,0.3);
}
.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:3px 3px 6px rgba(0,0,0,0.6);
}

.btn_consult:hover{
	background:#CC3333;
	border-color:#fff;
	color:#fff;
}
.btn_consult:hover .iconsvg{
	opacity:0.5;
}





/*------------------------------------------------------------------------------------------- */
/* ===== 預約[in card_designer_view] */
.btn_reserve{
	width:100%; max-width:200px;
	background:var(--color-reserve);
	border-color:var(--color-reserve);
	color:#fff;
	font-size:1rem;
	padding:0.6rem 0.7rem;
	margin:0.5rem 0.1rem;
}
.btn_reserve .iconsvg{
	transition:width 0.2s ease, height 0.2s ease;
}
.btn_reserve .iconsvg:before{
	background-color:#fff;
}

.btn_reserve:hover{ 
	background:var(--color-accent); 
	border-color:var(--color-accent); 
	color:#fff;
}
.btn_reserve:hover .iconsvg{
	width:24px; height:24px;
}
.btn_reserve:hover .iconsvg:before{
	background-color:#fff;
}





/*------------------------------------------------------------------------------------------- */
/* ===== 立即申請 & 立即購買[in agent_pd] */
.btn_apply,
.btn_addcart{
	width:100%;
	border:3px solid #fff;
	border-radius:20px;
	color:#fff;
	box-shadow:1px 1px 3px rgba(0,0,0,0.3);
	transition:box-shadow 0.1s ease;
}
.btn_apply{
	background: var(--color-apply);
}
.btn_addcart{
	background: var(--color-addcart);
}
.btn_apply .iconsvg:before,
.btn_addcart .iconsvg:before{
	background-color:#fff;
}

.btn_apply:hover{
	background: var(--color-apply);
}
.btn_addcart:hover{
	background: var(--color-addcart);
}
.btn_apply:hover,
.btn_addcart:hover{
	border-color:#fff;
	color:#fff;
}
.btn_apply:hover .iconsvg:before,
.btn_addcart:hover .iconsvg:before{
	background-color:#fff;
}
.btn_apply:hover,
.btn_addcart:hover{
	box-shadow:3px 3px 4px rgba(0,0,0,0.5);
	
	animation:goto 2s linear infinite;
	-moz-animation:goto 2s linear infinite;
	-webkit-animation:goto 2s linear infinite;
	-o-animation:goto 2s linear infinite;
}




/*------------------------------------------------------------------------------------------- */
/* ===== #btn_idxmore [in idx]：更多 */
.btn_idxmore{
	background:#fff;
	border-color:var(--color-dark);
	color:var(--color-dark);
	font-size:1rem;
	padding:12px 52px 12px 52px;
}
.btn_idxmore .btn-text{
	position:relative;
	z-index:2;
}
.btn_idxmore .iconsvg{
	position:absolute; z-index:0; top:50%; left:10px;
	width:80px; height:80px;
	margin-top:-40px;
	
	opacity:0.1;
	transition:opacity 0.3s ease-in-out,
				left 0.3s ease-in-out;
}
.btn_idxmore .iconsvg:before{
	background-color:var(--color-one);
}


.btn_idxmore:hover{
	background:var(--color-accent);
	border-color:#fff;
	color:#fff;
}
.btn_idxmore:hover .iconsvg{
	left:0;
	opacity:0.3;
}
.btn_idxmore:hover .iconsvg:before{
	background-color:#fff;
}




/*------------------------------------------------------------------------------------------- */
/* ===== btn-pageback [in view]：返回 */
.btn-pageback{
	background:transparent;
	border:1px solid transparent;
	color:var(--color-one);
	padding-left:0.5rem;
	padding-right:0.8rem;
}
.btn-pageback .iconsvg:before{
	background-color:var(--color-one);
}

.btn-pageback:hover{
	background:var(--color-accent);
	border-color:#fff;
	color:#fff;
	box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}
.btn-pageback:hover .iconsvg:before{
	background-color:#fff;
}















/*------------------------------------------------------------------------------------------- */
/* ----- #formbox 表單 */

/*===== #form-title：標題 */
.form-title{
	color:var(--color-dark);
}
.form-title:after{
	color:var(--color-dark);
}


/*===== #form-control：欄位*/
.form-control,
.form-select{
    background-color:#fff;
    border:1px solid #ccc;
	border-radius:2px;
}
textarea.form-control{
	border-radius:2px;
}


/*===== #formbtn：按鈕列*/
.formbtn{
	background:var(--color-one);
	border:1px solid var(--color-one);
	color:#fff;
	font-size:1rem;
	padding:0.7rem 2rem;
}
.formbtn:hover{
	background:var(--color-accent);
	border:1px solid var(--color-accent);
	color:#fff;
}
/* -----  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%;
	}
	
	.formlist_inquire .formline_submit{
		padding-left:0;
	}
}





/* ===== 分類-下拉選單式 */
.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;
		
		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;
	}


	/* ===== [in designer_pic] */
	.formbox_cateselect_designer{
		margin:0;
	}
		
}











/*------------------------------------------------------------------------------------------- */
/* ----- #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{
	margin-bottom:1rem;
}












/*------------------------------------------------------------------------------------------- */
/* ----- #main */

.secbox_page .secbox_inner,
.secbox_contact .secbox_inner{
	padding:0 0 4rem 0;
}
@media (min-width:992px){
	.secbox_page .secbox_inner,
	.secbox_contact .secbox_inner{
		padding-left:6.5rem;
		padding-right:6.5rem;
	}
}


.secbox_idx{
	position:relative;
}
.secbox_idx .secbox_bg{
	padding:1rem 0;
}
.secbox_idx:last-child{
    padding-bottom:5rem;
}
.secbox_idx:nth-of-type(2n):before{
	position:absolute; z-index:-2; top:0; right:0; content:"";
	width:100%; height:100%;
	
	background:var(--color-bg-idx-sec);
	
	opacity:0.5;
}

.secbox_idx:after{
	position:absolute; z-index:-1; top:0; content:"";
	width:100%; height:100%;
	
	/*background-image 於 color_bg 另外設定*/
	background-image:url(../../images/idx-dec/blue-01.png);
	background-repeat:no-repeat;
	
	background-position:bottom right;
	background-size:auto;
	
	opacity:0;
}
.secbox_idx:nth-of-type(2n):after{
	top:0; left:0; bottom:auto; right:auto;
	
	/*background-image 於 color_bg 另外設定*/
	background-image:url(../../images/idx-dec/blue-02.png);
	
	background-position:top left;
	background-size:auto;
}
@media (min-width:992px){
	.secbox_idx .secbox_bg{
		padding:4rem 0;
	}
	.secbox_idx:after{
		opacity:0.5;
	}
	.secbox_idx:nth-child(2n):after{
		opacity:0.4;
	}
}












/*------------------------------------------------------------------------------------------- */
/*---- #idx */











/*------------------------------------------------------------------------------------------- */
/* ----- #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:#fff;
	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{
	min-height:90px;
}



.card_msgpopup .card-type{
	position:absolute; z-index:2; top:0; right:-30px;
	width: 240px; height: 240px;
	transform:translate(0, -75%);
}
.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 .card-type:before{
	position: absolute; z-index:0; top: 0; right: 0; content: "";
	width:100%; height:100%;
    background:var(--color-one);
	border-radius:30px;
	transform:rotate(-45deg);
}

.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; z-index:4; bottom: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; left:auto; bottom:-30px; left:-30px;
	width:250px; height:250px;
	background-color:var(--color-one);
	
	/*初始-資訊*/
    -webkit-mask-image: url(../images/msgpopup/msgpopup_type1.svg);
    mask-image: url(../images/msgpopup/msgpopup_type1.svg);
	
	opacity:0.1;
}
.card_msgpopup:after{
	position: absolute; z-index:1; top:10px; left:10px; content:"";
	width:calc(100% - 20px); height:calc(100% - 20px);
	border:1px solid var(--color-one);
	border-radius:10px;
}


.card_msgpopup .card-type_1{
	position:absolute; bottom:-20px; left:35%;
	width: 30%; height: 30%;
	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{
	bottom:40px; left: 90px;
	width: 20px; height: 20px;
	
	animation: SmallShow 5s ease-in-out infinite;
}
.card_msgpopup .card-type_3{
	bottom:20px; left: 170px;
	width: 14px; height: 14px;
	
	animation: SmallShow 2.5s ease-in-out infinite;
}
.card_msgpopup .card-type_4{
	bottom:-30px; left:60px;
	width: 12px; height: 12px;
	
	animation: BigShow 3s ease-in-out infinite;
}
.card_msgpopup .card-type_4:before{
    background-color:var(--color-one);
}

.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 .card-type:before{
	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,
.msgpopup_2 .card_msgpopup .card-type_4:before{
	background-color:var(--color-popup-notify);
}
.msgpopup_2 .card_msgpopup:after{
	border-color:var(--color-popup-notify);
}


/* [style set] msgpopup_3：警告*/
.msgpopup_3 .card_msgpopup .card-type:before{
	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,
.msgpopup_3 .card_msgpopup .card-type_4:before{
	background-color:var(--color-popup-warn);
}
.msgpopup_3 .card_msgpopup:after{
	border-color:var(--color-popup-warn);
}



.card_msgpopup .card-body{
	font-weight:600;
	color:#333;
	min-height:180px;
	padding:1rem;
	padding-bottom:60px;
}
.card_msgpopup .card-text{
	position:relative; z-index:2;
	color:#333;
}
@media (min-width:992px){
	.card_msgpopup .card-body{
		padding:2rem;
		padding-bottom:60px;
	}
}


.msgpopup_logo{
	display:none;
}


.msgpopup_close{
	display:block;
	position:absolute; z-index:5; bottom: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:#999;
}

.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);
}




