@charset "utf-8";

/* a鏈結字 */
a { color:#333;}
a:hover,
a:focus {
	color:var(--color-accent);
	text-decoration:none;
}



/*讓footer置底*/
html, body {
	height: 100%;
	margin: 0;
}
body{
	display: flex; /*使物件依序排列*/
	flex-direction: column; /*使物件垂直排列*/
}
.wrapper {
	flex-grow: 1; /*可佔滿垂直剩餘的空間*/
	/*overflow-x:hidden;*/
}




/*-------------------------------------------------------------------------------------------

	#wrapper

-------------------------------- */
.dark_bg{
	background-color: rgba(var(--bg-rgb),1);
	
	background-size: 40px 40px;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, 
					  transparent 1px), 
					  linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, 
					  transparent 1px);
}





/*-------------------------------------------------------------------------------------------

	#logo

-------------------------------- */
.logo{
	max-width:180px;
}
.logo img{
	display:block; max-width:100%; height:auto;
}





/*-------------------------------------------------------------------------------------------

	#form

-------------------------------- */
.form-control{
	background-color: rgb(0 0 0 / 0.3);
	border-color: rgba(var(--two-bright-rgb),0.3);
	color: #fff;
}
.form-control:focus{
	background-color: rgb(0 0 0 / 0.5);
	border-color:var(--one-color);
	outline: 2px solid transparent;
    outline-offset: 2px;
	color: #fff;
    box-shadow: 0 0 0 2px var(--one-color);
}

.form-title{
	color:#fff;
}



.input-group_icon .form-control{
	padding-left: 50px;
}
.input-group_icon .input-group-row-auto{
	position:relative;
}
.input-group_icon .input-group-row-auto .iconsvg{
	position: absolute; top: 50%; left: 1rem;
	width:20px; height:20px;
	transform:translate(0, -50%);
}
.input-group_icon .input-group-row-auto .iconsvg:before{
	background-color:var(--one-color);
}





/*-------------------------------------------------------------------------------------------

	#btn
		.btn_primary：主要按鈕

-------------------------------- */
.btn_primary{
	background-image: linear-gradient(to right, var(--one-color),var(--two-color));
	border:0px solid rgba(255,255,255,0);
	color:#fff;
}
.btn_primary .iconsvg:before{
	background-color:#fff;
}
.btn_primary:hover{
	color:#fff;
	box-shadow: 0 0 30px rgba(var(--one-rgb),0.6);
}









/*-------------------------------------------------------------------------------------------

	#login

-------------------------------- */
.secbox_account{
	width:100%; height:100%;
	overflow:hidden;
}
.accountbox{
	position:relative;
	width: 100%; height:auto;
	margin:2rem auto 4rem auto;
}
.accountbox_login{
	max-width: 28rem;
}
.accountbox_register{
	max-width: 48rem;
}
/*.accountbox_msg{
	max-width: 600px;
}*/


.heading_account{
	color:#fff;
	margin-top:0;
	margin-bottom:2rem;
	text-align:center;
}

.text_account{
	color:#fff;
	font-size:var(--text-sm);
	margin-top:-1rem;
	margin-bottom:2rem;
	text-align:center;
}

.logo_account{
	max-width:200px;
	margin-left:auto; margin-right:auto;
	margin-bottom:1rem;
}

.accountbox .logo-subtext{
	color:var(--one-color);
	font-size: var(--text-sm);
	font-weight:600;
	margin-top:0.5rem;
	margin-bottom:2rem;
	text-align:center;
}


.glass-panel{
	position:relative;
	background: rgba(var(--one-darker-rgb), 0.6);
    border: 1px solid rgba(var(--two-light-rgb),0.4);
	border-radius: 1.5rem;
	padding: 2rem;
	
   /* -webkit-backdrop-filter: blur(12px);
			backdrop-filter: blur(12px);*/
			
    box-shadow: 0 0 #0000, 0 0 #0000, 0 0 15px rgba(var(--two-light-rgb),0.5);
}
.glass-panel:before{
	position:absolute; z-index:-1; top: -10rem; left:-5rem; content:"";
	width: 16rem; height: 16rem;
	background-color:rgba(var(--one-light-rgb),0.2);
	border-radius: 50%;
	filter:blur(80px);
}
.glass-panel:after{
	position:absolute; z-index:-1; bottom: -5rem; right:-5rem; content:"";
	width: 16rem; height: 16rem;
	background-color: rgba(var(--two-light-rgb),0.2);
	border-radius: 50%;
	filter:blur(80px);
}



.formlist_account .form-title{
	color:rgba(139, 92, 246, 1);
}
.formlist_account .btn{
	width:100%;
	margin:0;
}


.linkbar_account{
	display:flex; flex-wrap:wrap;
	align-items:center;
	
	font-size:var(--text-sm); font-weight:600;
	color:#fff;
	margin-top:1rem;
}
.linkbar_account a{
	color:var(--one-color);
}
.linkbar_account a:hover{
	color:var(--two-color);
}





/*-------------------------------------------------------------------------------------------

	#menu

-------------------------------- */
.menu{
	display:flex; flex-wrap:wrap;
	align-items:center;
}
.menu > li{
	margin-left:1rem;
}
.menu > li:first-child{
	margin-left:0;
}
@media (min-width:1200px){
	.menu > li{
		margin-left:2rem;
	}
}

.navlink{
	position:relative;
	display:flex; flex-wrap:wrap;
	align-items:center;
	font-size:var(--text-base); font-weight:600;
	color:rgba(var(--one-lighter-rgb),1);
	padding:0.25rem;
	transition:transform 0.3s ease;
}
.navlink .iconsvg{
	margin:0 3px;
	width:20px; height:20px;
}
.navlink .iconsvg:before{
	background-color:rgba(var(--one-lighter-rgb),1);
}
a.navlink:hover{
	color:var(--one-color);
}
a.navlink:hover .iconsvg:before{
	background-color:var(--one-color);
}





/*-------------------------------------------------------------------------------------------

	#header

-------------------------------- */
.header{
	background:rgba(var(--bg-rgb),1);
	border-bottom:1px solid rgba(var(--two-light-rgb),0.5);
	box-shadow: 0 10px 15px rgba(var(--two-light-rgb),0.1);
	margin-bottom:1rem;
}
.header_inner{
	padding:0.75rem 0;
}
.header .header_row{
	align-items:center; justify-content:space-between;
}
.header .header-two{
	display:none;
}
@media (min-width:992px){
	.header .header-two{
		display:block;
	}
}




/*-------------------------------------------------------------------------------------------

	#infolist_footer:頁尾資訊

-------------------------------- */
.infolist_footer li{
	margin-bottom:0.5rem;
}
.infolist_footer > li:last-child{ margin-bottom:0; }

.infolist_footer .info{
	margin-right:2rem;
}

.info_footer,
.info_footer a{
	font-size:var(--text-sm);
	color:rgba(var(--one-lighter-rgb),1);
}
.info_footer .iconsvg{
	margin-right:3px;
	width:18px; height:18px;
}
.info_footer .iconsvg:before{
	background-color:rgba(var(--one-lighter-rgb),1)
}
.info_footer a:hover{
	color:var(--one-color);
}




/*-------------------------------------------------------------------------------------------

	#navbar_social：社群

-------------------------------- */
.navbar_social{
	display:flex; flex-wrap:wrap;
	align-items:center; justify-content:center;
}
@media (min-width:992px){
	.navbar_social{
		justify-content:flex-end;
	}
}
.navbar_social > li{
	margin-right:1rem;
}
.navbar_social > li:last-child{ margin-right:0; }


.sociallink{
	display:block;
	padding:0.25rem;
	border:1px solid rgba(var(--one-lighter-rgb),0.3);
	border-radius:50%;
	transition:transform 0.3s ease;
}
.sociallink .iconsvg:before{
	-webkit-mask-size: 80% 80%;
    		mask-size: 80% 80%;
}
.sociallink:hover{
	transform: translateY(-0.25rem);
}

.sociallink_fb .iconsvg:before{
	background-color:rgba(24,119,242,1);
}
.sociallink_fb:hover{
	border-color:rgba(24,119,242,1);
	box-shadow: 0 0 15px rgba(24,119,242,1);
}

.sociallink_line .iconsvg:before{
	background-color:rgba(0,195,0,1);
}
.sociallink_line:hover{
	border-color:rgba(0,195,0,1);
	box-shadow: 0 0 15px rgba(0,195,0,1);
}





/*-------------------------------------------------------------------------------------------

	#footer

-------------------------------- */
.footer{
	background:rgba(var(--bg-rgb),1);
	border-top:1px solid rgba(var(--two-light-rgb),0.5);
	box-shadow: 0 -10px 15px rgba(var(--two-light-rgb),0.2);
	margin-top:4rem;
	padding:2rem 0 7.55rem 0;
}
.footer_inner{
	max-width:1400px;
	margin-left:auto; margin-right:auto;
}

.footer .logo{
	max-width:140px;
	margin-left:auto; margin-right:auto;
	margin-bottom:1rem;
}
@media (min-width:992px){
	.footer .logo{
		margin-left:0; margin-right:0;
	}
}

.footer .infolist_footer{
	text-align:center;
}
.footer .info_footer{
	width: 100%;
	justify-content: center;
	margin-right:0;
}
@media (min-width:992px){
	.footer{
		padding:2rem 0;
	}
	
	.footer .infolist_footer{
		text-align:left;
	}
	.footer .info_footer{
		width: auto;
		justify-content: flex-start;
		margin-right:2rem;
	}
	
	.footer .info_footer.webdesigner{
		width:100%;
		justify-content: flex-end;
	}
}

.footer .navbar_social{
	margin-top:1rem;
	margin-bottom:1rem;
}
@media (min-width:992px){
	.footer .navbar_social{
		margin-top:0;
	}
}





/*-------------------------------------------------------------------------------------------

	#scrolltop：回頂端

-------------------------------- */
.scrolltop{
	position: fixed; z-index:9998; right:20px; bottom:90px;
    
	display:flex; flex-wrap:wrap;
	align-items:center; justify-content:center;
	
	width:50px; height:50px;
    
	background: rgba(var(--bg-rgb), 1);
    border: 2px solid rgba(var(--two-rgb),0.7);
	border-radius:50%;
	box-shadow: 0 0 15px rgba(var(--two-rgb),0.8);

	cursor:pointer;
	opacity:0;
}
@media (min-width:992px){
	.scrolltop{
		bottom:30px;
	}
}
.scrolltop-text{
	position:relative;
	display:block;
	color:#fff;
	font-size:var(--text-xs); font-weight: 600;
	padding-top:6px;
	text-align:center;
}
.scrolltop-text:before{
	position:absolute; top:0; left:50%; content:"";
	width:0; height:0;
	margin-left:-6px;
	border-left:6px solid transparent;
	border-right:6px solid transparent;
	border-bottom:6px solid #fff;
}

@media (min-width:992px){
	.scrolltop:hover{
		border-color:rgba(var(--one-rgb),1);
		box-shadow: 0 0 15px rgba(var(--one-rgb),1);
	}
	.scrolltop:hover .scrolltop-text{
		color:rgba(var(--one-rgb),1);
	}
	.scrolltop:hover .scrolltop-text:before{
		border-bottom-color:rgba(var(--one-rgb),1);
	}
	.scrolltop.show{ opacity:1; }
}

/*.scrolltop:focus,
.scrolltop:active,
.scrolltop:visited{
    border-color:rgba(var(--two-rgb),0.7);
	box-shadow: 0 0 15px rgba(var(--two-rgb),0.8);
}
.scrolltop:focus .scrolltop-text,
.scrolltop:active .scrolltop-text,
.scrolltop:visited .scrolltop-text{
	color:#fff;
}
.scrolltop:focus .scrolltop-text:before,
.scrolltop:active .scrolltop-text:before,
.scrolltop:visited .scrolltop-text:before{
	border-bottom-color:#fff;
}*/





/*-------------------------------------------------------------------------------------------

	#mobile-nav:移動端底部固定列

-------------------------------- */
.mobile-nav{
	position: fixed; z-index: 9999; bottom:0; left: 0;
	display:flex; flex-wrap:wrap;
	
	width: 100%;
	background:rgba(var(--bg-rgb),1);
	border-top:1px solid rgba(var(--one-rgb),0.5);
	box-shadow: 0 -5px 10px rgba(var(--one-rgb),0.4);
}
@media (min-width:992px){
	.mobile-nav{
		display: none;
	}
}

.fixedlink{
	position:relative;
	display: block;
	flex: 1 0 0%;

	font-size:10px; font-weight:600;
	color:rgba(var(--one-lighter-rgb),1);
	padding:0.75rem 0;
	margin: 0;
	text-align: center;
}
.fixedlink .iconsvg{
	margin:0 auto 0.25rem auto;
	width:20px; height:20px;
}
.fixedlink .iconsvg:before{
	background-color:rgba(var(--one-lighter-rgb),1);
}
.fixedlink span{ display:block; }


.fixedlink:hover{
	color:var(--one-color);
}
.fixedlink:hover .iconsvg:before{
	background-color: var(--one-color);
}


.fixedlink.centermark .iconsvg{
	position: absolute; z-index: 10000; top:0; left: 50%;
	width: 50px; height: 50px;
	background-image: linear-gradient(45deg, var(--one-color),var(--two-color));
	border:4px solid rgba(var(--bg-rgb),1);
	border-radius: 50%;
	box-shadow: 0 0 10px rgba(var(--one-rgb),1);
	transform:translate(-50%, -50%);
}
.fixedlink.centermark .iconsvg:before{
	background-color: #fff;
	
	-webkit-mask-size: 50% 50%;
    		mask-size: 50% 50%;
}
.fixedlink.centermark span{
	color:var(--one-color);
	padding-top:24px;
}

/*.fixedlink.centermark:hover .iconsvg:before{
	background-color: #fff;
}*/





/*-------------------------------------------------------------------------------------------

	#common

-------------------------------- */

/* ===== Breadcrumb-nav：導覽路徑 */
.breadcrumb-nav{
	position:relative;
	margin-bottom:2rem;
	padding-left:10px;
}

.breadcrumb li{ display:inline-block; }
.breadcrumb li:after{
	content:"/";
	color:rgba(var(--one-lighter-rgb),1);
	font-size:var(--text-xs);
	margin-left:4px;
}
.breadcrumb li:last-child:after{ display:none; }

.breadcrumb li{
	display:inline-block; vertical-align:middle;
	font-size:var(--text-sm); line-height:1.5;
}

.breadcrumb li,
.breadcrumb li a{
	color:rgba(var(--one-lighter-rgb),1);
}
.breadcrumb li a:hover{
	color:var(--one-color);
}



/* ===== 返回*/
.pageback{
	display: inline-flex;
	align-items:center; justify-content:flex-end;
	
	width:100%;
	color:rgba(var(--one-lighter-rgb),1);
	font-size:var(--text-sm); font-weight:600;
}
.pageback .iconsvg{
	width:14px; height:14px;
	margin-right:4px;
}
.pageback .iconsvg:before{
	background-color:rgba(var(--one-lighter-rgb),1);
}
.pageback a{
	color:var(--two-color);
}
.pageback a:hover{
	color:var(--one-color);
}

.pageback_pagend{
	justify-content:center;
	font-size:var(--text-base);
}



/* ===== 超標說明*/
.standard-tips{
	color:rgba(var(--one-lighter-rgb),1);
	font-size:var(--text-sm); font-weight:600;
}
.standard-tips .redtext{
	color:var(--three-color);
	color:red;
}




/* ===== 搜尋*/
.searchbox{
	margin:2rem 0;
}
.searchbox-inner{
	display:flex; flex-wrap:wrap;
	align-items:center;
}

.searchbox .searchtext{
	color:#fff;
}
.searchbox .form-control{
	flex:1 1 auto;
    width:1%; min-width:0;
}
.searchbox .btn{
}
.searchbox .btn .iconsvg{
	width:24px; height:24px;
}
@media (min-width:768px){
	.searchbox{
		margin:0;
	}
	.searchbox .form-control{
		flex:1 1 auto;
		padding: calc(var(--text-base) * 0.75) calc(var(--text-base) * 1);
	}
	.searchbox .btn{
		padding: calc(var(--text-base) * 0.75) calc(var(--text-base) * 0.75);
	}
}








/*-------------------------------------------------------------------------------------------

	#index

-------------------------------- */
.secbox_pd{
	max-width:1200px;
	margin-left:auto; margin-right:auto;
}

@media (min-width:1200px){
	.secbox_idx{
		margin-top:5rem;
	}
}

.panel-header{
	margin-bottom:2rem;
}
.panel-header .heading-panel{
	margin-bottom:1rem;
}
.panel-header .btn{
	margin:0 0.5rem;
}
@media (min-width:768px){
	.panel-header{
		display:flex; flex-wrap:wrap;
		align-items:center; justify-content: space-between;
	}
	.panel-header .heading-panel{
		margin:0;
	}
}


.panel_border{
	background: rgba(var(--one-darker-rgb), 0.8);
    border: 1px solid rgba(var(--two-light-rgb),0.4);
	border-radius: 1.5rem;
	margin-bottom:3rem;
	box-shadow: inset 0 0 15px rgb(0 242 254 / 5%), 0 0 15px rgba(var(--two-light-rgb),0.2);
}

.panel_pd{
	padding: 1rem;
}
@media (min-width:576px){
	.panel_pd{
		padding: 2rem;
	}
}

.panel_border .heading-panel{ margin-top:0; }


.heading-panel{
	display:flex; flex-wrap:wrap;
	align-items: center;
	color:#fff;
}
.heading-panel .iconsvg{
	margin-right:7px;
	width:18px; height:18px;
	filter: drop-shadow(0 0 5px rgba(var(--one-rgb),0.5));
}
.heading-panel .iconsvg:before{
	background-color:var(--one-color);	
}




/* ===== 餐點時段 radio button*/
.meal-radio{
	display:none;
}
.meal-radio + label{
	display:flex; flex-wrap:wrap;
	align-items:center;
	
	background-color: transparent;
	border:1px solid rgba(var(--one-lighter-rgb),0.3);
	border-radius: 3rem;
	
	color:rgba(var(--one-lighter-rgb),1);
	
	font-size:var(--text-base); font-weight:600; line-height: 1;
	padding: calc(var(--text-base) * 0.75) calc(var(--text-base) * 1.5);
	
	cursor:pointer;
}
.meal-radio + label .iconsvg{
	margin-right:5px;
	width:20px; height:20px;
}
.meal-radio + label .iconsvg:before{
	background-color:rgba(var(--one-lighter-rgb),1);
}

.meal-radio:checked + label{
	background: linear-gradient(135deg, rgba(var(--one-rgb),0.2) 0%, rgba(var(--two-rgb),0.3) 100%);
	
	color: var(--one-color);
	border-color: var(--two-color);
	box-shadow: 0 0 15px rgba(var(--two-rgb),0.5);
}
.meal-radio:checked + label .iconsvg:before{
	background-color:var(--one-color);
}



/* ===== 餐點時段 分析按鈕*/
.btn_meal{
	display:block;
	width:100%; height:auto;
	background: rgba(var(--one-darker-rgb), 0.8);
    border: 1px solid rgba(var(--two-light-rgb),0.4);
	border-radius: 1.5rem;
	padding: 1.5rem 0.5rem;
	margin:0;
	box-shadow: inset 0 0 15px rgb(0 242 254 / 5%), 0 0 15px rgba(var(--two-light-rgb),0.2);
	transition:transform 0.3s ease;
}
@media (min-width:992px){
	.btn_meal{
		padding: 3rem 0.5rem;
	}
}
.btn_meal .iconsvg{
	width:60px; height:60px;
	background-color:rgba(255,255,255,0.1);
	border-radius:0.5rem;
	margin-left:auto; margin-right:auto;
	margin-bottom:0.25rem;
	transition:transform 0.3s ease;
}
.btn_meal .iconsvg:before{
	background-color:#fff;
	
	-webkit-mask-size: 50% 50%;
    		mask-size: 50% 50%;
}

.btn_meal h3{
	color:#fff;
	margin-bottom:0.5rem;
}
.btn_meal p{
	font-size:var(--text-sm); font-weight:400;
	color:rgba(var(--one-lighter-rgb),1);
	margin-bottom:0;
}

.btn_meal:hover{
	background: rgba(var(--one-darker-rgb), 0.9);
	border-color:rgba(var(--one-rgb),1);
	box-shadow: 0 0 15px rgba(var(--one-rgb),1);
	transform: translateY(-0.25rem);
}



.btn_meal.picture .iconsvg{
	background-color:rgba(var(--one-rgb),0.1);
}
.btn_meal.picture .iconsvg:before{
	background-color:rgba(var(--one-rgb),1);
}
.btn_meal.picture:hover{
	border-color:rgba(var(--one-rgb),1);
	box-shadow: 0 0 15px rgba(var(--one-rgb),0.8);
}
.btn_meal.picture:hover .iconsvg{
	transform: scale(1.1); 
	box-shadow: 0 0 15px rgba(var(--one-rgb),0.5);
}


.btn_meal.log .iconsvg{
	background-color:rgba(var(--two-rgb),0.1);
}
.btn_meal.log .iconsvg:before{
	background-color:rgba(var(--two-rgb),1);
}
.btn_meal.log:hover{
	border-color:rgba(var(--two-rgb),1);
	box-shadow: 0 0 15px rgba(var(--two-rgb),0.8);
}
.btn_meal.log:hover .iconsvg{
	transform: scale(1.1); 
	box-shadow: 0 0 15px rgba(var(--two-rgb),0.5);
}


.btn_meal.analysis .iconsvg{
	background-color:rgba(236,72,153,0.1);
}
.btn_meal.analysis .iconsvg:before{
	background-color:rgba(236,72,153,1);
}
.btn_meal.analysis:hover{
	border-color:rgba(236,72,153,1);
	box-shadow: 0 0 15px rgba(236,72,153,0.8);
}
.btn_meal.analysis:hover .iconsvg{
	transform: scale(1.1); 
	box-shadow: 0 0 15px rgba(236,72,153,0.5);
}





/*-------------------------------------------------------------------------------------------

	#result_ai

-------------------------------- */
.typelist{
	display:flex; flex-wrap:wrap;
}
.typelist li{
	width:100%;
	border-bottom: 1px solid rgba(255,255,255,0.05);
}


.typelist.twocols li{
	width:100%;
}
@media (min-width:576px){
	.typelist.twocols li{
		width: 50%;
	}
}

.typelist.threecols li{
	width:100%;
}
@media (min-width:576px){
	.typelist.threecols li{
		width: 33.3333%;
	}
}

.type-meta{
	display:flex; flex-wrap: nowrap;
	align-items:center; justify-content: space-between;
	
	font-size: var(--text-sm);
	color:#fff;
	padding:0.5rem 1rem;
}
.type-meta:hover{
	background: rgba(var(--one-light-rgb),0.1);
}
@media (min-width:576px){
	.type-meta{
		padding:0.75rem 1.5rem;
	}
}


.type-meta.thead{
	border-ra: 1rem 1rem 0 0;
	background: rgba(255,255,255,0.05);
}

.typelist li.threadline:nth-of-type(1) .type-meta.thead{
	border-radius:0.5rem 0.5rem 0 0;
}
@media (min-width:576px){
	.typelist.twocols li.threadline:nth-of-type(1) .type-meta.thead{
		border-radius:1rem 0 0 0;
	}
	.typelist.twocols li.threadline:nth-of-type(2) .type-meta.thead{
		border-radius:0 1rem 0 0;
	}
	
	
	.typelist.threecols li.threadline:nth-of-type(1) .type-meta.thead{
		border-radius:1rem 0 0 0;
	}
	.typelist.threecols li.threadline:nth-of-type(3) .type-meta.thead{
		border-radius:0 1rem 0 0;
	}
}

.type-meta .type{
	min-width: 60px;
	color:rgba(var(--one-lighter-rgb),1);
}
.type-meta .num{
	min-width: 60px;
	text-align: right;
}

.type-meta .redtext{
	color:var(--three-color);
	color:red;
}
.type-meta .redmark{
	border-radius: 0.25rem;
	font-size: var(--text-lg); font-weight: 600;
	color:var(--three-color);
	padding:0.25rem 0.5rem;
	box-shadow: 0 0 13px rgba(var(--three-rgb),0.4);	
}

.type-meta .bluemark{
	color:var(--one-color);
}



/* ===== 食品介紹 */
.card_food_profile{
	border-radius: 1.5rem;
	overflow: hidden;
}
.card_food_profile .card-photo .item-fitimg:before{
    padding-bottom:75%;
}
.card_food_profile .card-photo .fitimg{
	-webkit-object-fit: cover;
	   -moz-object-fit: cover;
		    object-fit: cover;
}
.card_food_profile .tag_aimark{
	position: absolute; top:10px; right:10px;
	background: rgba(var(--bg-rgb),1);
	border-radius: 0.75rem;
	color:var(--one-color);
	font-size: var(--text-xs);
	padding:0.25rem 0.5rem;
}

.card_food_profile .card-body{
	padding:1rem;
}





/*-------------------------------------------------------------------------------------------

	#result-manual

-------------------------------- */
.promptbox{
	background:rgba(var(--bg-rgb),1);
	border-radius: 1.5rem;
	color:rgba(var(--one-lighter-rgb),1);
	font-size: var(--text-sm); line-height:1.6;
	padding:1.5rem;
}


/* 按鈕容器，設定為 relative 方便定位標籤 */
.copy-btn-wrap {
	position: relative;
	display: inline-block;
}
		
/* 「已複製」小標籤樣式 */
.copy-tips {
	position: absolute; top: 50%; right: -120px;
	transform: translateX(-45%) translateY(-50%);
	
	color: transparent;
	padding: 5px 10px;
	border-radius: 4px;
	font-size: var(--text-sm);
	text-align:center;
	
	white-space: nowrap;
	
	opacity: 0; /* 預設隱藏 */
	transition: opacity 0.3s, transform 0.3s;
	pointer-events: none; /* 防止遮擋點擊 */
}
/* 顯示狀態 */
.copy-tips.show {
	opacity: 1;
	
	border:1px solid rgba(var(--one-rgb),1);
	color: var(--one-color);
	box-shadow: 0 0 15px rgba(var(--one-rgb),0.8);
	transform: translateX(-50%) translateY(-50%);
}







/*-------------------------------------------------------------------------------------------

	#profile

-------------------------------- */
.secbox_profile{
	max-width: 48rem;
	margin-left: auto; margin-right: auto;
}

.formlist_profile .form-title{
	color:#fff;
}
.formlist_profile .btn{
	width:100%;
	margin:0;
}





/*-------------------------------------------------------------------------------------------

	#records

-------------------------------- */
.tblist{
	background: rgba(var(--one-darker-rgb), 0.8);
    border: 1px solid rgba(var(--two-light-rgb),0.4);
	border-radius: 1rem;
	margin-top:2rem;
	margin-bottom:2rem;
	box-shadow: inset 0 0 15px rgb(0 242 254 / 5%), 0 0 15px rgba(var(--two-light-rgb),0.2);
	overflow: hidden;
}
.tblist li{
	border-bottom: 1px solid rgba(var(--two-light-rgb),0.4);
}
.tblist li:last-child{
	border-bottom-width: 0;
}

.tbline{
	display:flex; flex-wrap:wrap;
	align-items: center;
	
	color:#fff;
	font-weight: 600;
	padding:0.25rem 1rem;
}
.tbline .tbmeta{
	flex: 1 0 0%;
	padding:0.5rem 0.25rem;
}

.tbline .btn{
	background:rgba(var(--one-rgb),0.1);
	border-color: rgba(var(--one-rgb),0.3);
	border-radius:0.5rem;
	font-size: var(--text-sm);
	padding:calc(var(--text-sm) * 0.5) calc(var(--text-sm) * 1);
	color:var(--one-color);
	margin: 0;
}
.tbline .btn .iconsvg{
	margin-left:4px;
	width:20px; height: 20px;
}
.tbline .btn .iconsvg:before{
	background-color:var(--one-color);
}
.tbline .btn:hover{
	background:rgba(var(--one-rgb),0.3);
	box-shadow: 0 0 14px rgba(var(--one-rgb),0.5);
}

.tbline .tbmeta.more .btn{ width:100%; }
@media (min-width:768px){
	.tbline .tbmeta.more .btn{ width:auto; }
}




/*===== 表格-進食紀錄*/
.tbline_record{
	padding:1rem;
}
.tbline_record .tbmeta{
	flex:none;
}
.tbline_record .tbmeta.date{ order:2; width: 50%; }
.tbline_record .tbmeta.name{
	order:1;
	width: 100%;
	border-width:0 0 1px 0;
	border-style: solid;
	border-color: rgba(255,255,255,0.1);
}
.tbline_record .tbmeta.kcal{ order:3; width: 50%; }
.tbline_record .tbmeta.more{ order:4; width: 100%; }
@media (min-width:768px){
	.tbline_record{
		padding:0.25rem 1rem;
	}
	.tbline_record .tbmeta{
		flex: 1 0 0%;
		width: auto;
	}
	.tbline_record .tbmeta.date{ order:1; flex:1; }
	.tbline_record .tbmeta.name{
		order:2; flex:2;
		border-width:0;
	}
	.tbline_record .tbmeta.kcal{ order:3; flex:1; }
	.tbline_record .tbmeta.more{ order:4; flex:1; }
}

.tbline_record .date p{
	color:rgba(var(--one-lighter-rgb),1);
	font-size: var(--text-xs); font-weight: 600;
	margin-bottom: 0;
}


.tbline_record .kcal span{
	display: inline-block;
}

.tbline_record .kcal .title{
	color:rgba(var(--one-lighter-rgb),1);
	font-size: var(--text-sm);
}
@media (min-width:768px){
	.tbline_record .kcal .title{
		display: none;
	}
}
.tbline_record .kcal .num{
	background: rgba(var(--four-rgb),0.1);
	border:1px solid rgba(var(--four-rgb),0.8);
	border-radius: 1rem;
	color:rgba(var(--four-rgb),1);
	padding:0.25rem 0.75rem;
	box-shadow: 0 0 10px rgba(var(--four-rgb),0.3);
}





/*===== 表格-健康分析*/
.tbline_analysis{
	padding:1rem;
}
.tbline_analysis .tbmeta{
	flex:none;
	width: 100%;
}
.tbline_analysis .tbmeta.date{
	border-width:0 0 1px 0;
	border-style: solid;
	border-color: rgba(255,255,255,0.1);
	margin-bottom:0.5rem;
}
@media (min-width:768px){
	.tbline_analysis{
		padding:0.5rem 1rem;
	}
	.tbline_analysis .tbmeta{
		flex: 1 0 0%;
		width: auto;
	}
	.tbline_analysis .tbmeta.date{ flex:1; border-width:0; }
	.tbline_analysis .tbmeta.status{ flex:3; }
	.tbline_analysis .tbmeta.more{ flex:1; text-align:center; }

}


/*===== 標題列*/
.tbline.thead{
	background: rgba(var(--two-bright-rgb), 0.1);
	color:rgba(var(--one-lighter-rgb),1);
	font-size: var(--text-sm); font-weight: 600;
}

.tbline_record.thead,
.tbline_analysis.thead{
	padding:0.25rem 1rem;
}
.tbline_record.thead .tbmeta,
.tbline_analysis.thead .tbmeta{
	padding:0.5rem 0;
	margin:0;
}




.type_taglist{
	display:flex; flex-wrap:wrap;
	gap:0.5rem;
}
.type_tag{
	background:rgba(var(--one-lighter-rgb),0.1);
	border:1px solid rgba(var(--one-lighter-rgb),0.2);
	border-radius:1rem;
	color:rgba(var(--one-lighter-rgb),1);
	font-size: var(--text-base); font-weight: 600;
	padding:0.25rem 0.75rem;
}

.type_tag.nothing{
	background:rgba(var(--four-rgb),0.1);
	borde-colorr:rgba(var(--four-rgb),0.2);
	color:rgba(var(--four-rgb),1);
}

.type_tag .redtext{
	color:var(--three-color);
	color:red;
}




/*===== 表單-上傳檔案欄位美化*/

/* 隱藏原始樣式醜陋的 input */
input[type="file"] {
  display: none;
}
.btn-upload {
	display:block;
	width:100%;
	background: rgba(11,16,30, 1);
	border: 2px dashed rgba(var(--two-bright-rgb),0.4);
	border-radius: 0.5rem;
	color:rgb(var(--two-bright-rgb),1);
	padding:1rem;
	cursor: pointer;
	text-align:center;
}
.btn-upload:hover {
	background:rgba(var(--two-bright-rgb),0.1);
	border-color: rgba(var(--two-bright-rgb),1);
}

.btn-upload .title{
	margin:0.5rem 0;
}
.btn-upload .subtext{
	font-size: var(--text-xs);
	color:rgb(var(--two-bright-rgb),0.7);
}
.btn-upload .iconsvg{
	width:32px; height:32px;
	margin-left:auto; margin-right:auto;
}
.btn-upload .iconsvg:before{
	background-color:rgb(var(--two-bright-rgb),1);
}


/*上傳欄位是圖片*/
.btn-upload_img{
	border-color:rgba(var(--one-light-rgb),0.6);
	color:rgba(var(--one-light-rgb),1);
}
.btn-upload_img:hover {
	background:rgba(var(--one-light-rgb),0.1);
	border-color: rgba(var(--one-light-rgb),1);
}
.btn-upload_img .subtext{
	color:rgba(var(--one-light-rgb),0.7);
}
.btn-upload_img .iconsvg:before{
	background-color:rgba(var(--one-light-rgb),0.6);
}


.info-text {
	margin-top: 1rem;
	color: #888;
	font-size: var(--text-sm);
	text-align:center;
}

/* 選中檔案後的高亮樣式 */
.has-file {
  color: var(--one-color);
  font-weight: bold;
}






/*-------------------------------------------------------------------------------------------

	#message

-------------------------------- */
.secbox_message{
	/*width:100%; height:100%;
	overflow:hidden;*/
}


.msgbox{
	max-width:500px;
	margin:3rem auto;
	text-align:center;
}

.msgbox .panel_border{
	border: 1px solid rgba(var(--one-rgb),1);
	box-shadow: inset 0 0 15px rgb(0 242 254 / 5%), 0 0 30px rgba(var(--one-rgb),0.6);
}

.msgbox .heading-panel{
	color:var(--three-color);
	justify-content:center;
}
/*.msgbox .heading-panel .iconsvg:before{
	background-color:var(--three-color);
}*/

.msg-conent{
	color:#fff;
	font-size:var(--text-lg);
}






/*-------------------------------------------------------------------------------------------

	#pwd_change

-------------------------------- */
.secbox_pwd_change{
	max-width: 28rem;
	margin-left: auto; margin-right: auto;
}



