@charset "utf-8";

/*字用*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;500;700;900&display=swap');

body {
	margin: 0;
	padding: 0;
	font-family: 'Noto Sans TC', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "微軟正黑體", sans-serif, "Apple Color Emoji",
		"Segoe UI Emoji", "Segoe UI Symbol";
	color: #333;
}

a {
	color: #555;
}

a:hover {
	color: #a0a0a0;
}

/*vicky*/
/*================================*/
html {
	overflow: -moz-hidden-unscrollable;
}

body::-webkit-scrollbar {
	display: none;
}

/*修改logo位置*/
.fixed-top {
	left: 15px;
}

.top-banner {
	background: url(../images/bg.jpg) no-repeat center;
	background-size: cover;
	width: 100%;
	height: 100vh;
}

.top-banner-s {
	background: url(../images/bg_mobile.jpg) no-repeat center;
	background-size: cover;
	width: 100%;
	height: 100vh;
	display: none;
}

.eyes-pic-a {
	background: url(../images/eye1.gif) no-repeat right center;
	background-size: cover;
	width: 100%;
	height: 100vh;
}

.eyes-pic-b {
	background: url(../images/eye2.jpg) no-repeat left center;
	background-size: cover;
	width: 100%;
	height: 100vh;
}

.eyecontent img {
	max-width: 100%;
	width: 100%;
	height: auto;
}

.eyecontent img.smallscreen {
	display: none;
}

.warning {
	font-size: 0.5rem;
	color: #505050;
	bottom: 0;
	max-width: 970px;
	margin: 0 auto;
	padding: 15px;
	left: 0;
	right: 0;
	position: absolute;
}

.eyecontent {
	position: relative;
}

/*=== 右側按鈕 ===*/
.mainlist {
	position: fixed;
	top: 32vh;
	right: 1%;
	z-index: 100;
}

.mainlist a {
	text-decoration: none;
	border-radius: 100%;
	text-align: center;
	margin: 3px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5px;
}

a.button-a, a.button-b, a.button-c {
	width: 100px;
	height: 100px;
	color: #5f2c2c;
	background: #ffffff;
	box-shadow: 0px 0px 9px 0px rgb(9 37 45/ 35%);
	transition: all .5s;
}

a.button-a {
	width: 120px;
	height: 120px;
}

a.button-a:hover, a.button-b:hover, a.button-c:hover, .mainlist a.active, a:active {
	color: #ffffff;
/* 	background-color: #c9ab20; */
}

.mainlist .btn {
	width: 50px;
	height: 50px;
	border-radius: 100%;
	border: solid 2px;
	margin-top: 10px;
	color: #c9ab20;
	font-size: 30px;
}

@media screen and (max-width: 992px) {
	.top-banner {
		display: none;
	}
	.top-banner-s {
		display: block;
	}
	.eyes-pic-a, .eyes-pic-b {
		display: none;
	}
	.eyecontent img.smallscreen {
		display: block;
	}
}

@media screen and (max-width: 576px) {
	.fixed-top {
		left: 6px;
	}
	.navbar img {
		width: 85%;
	}
	.mainlist {
		top: 36vh;
		right: 3%;
	}
	a.button-a, a.button-b, a.button-c {
		width: 70px;
		height: 70px;
		font-size: 14px;
	}
	.mainlist .btn {
		width: 36px;
		height: 36px;
		line-height: 0;
		font-size: 24px;
	}
}

/*===社群分享===*/
.share {
	display: flex;
	position: fixed;
	bottom: 0;
	right: 1%;
	color: #ffffff;
	z-index: 100;
}

.share-text {
	padding: 0 10px;
	line-height: 40px;
	text-shadow: 1px 1px 3px rgb(0 0 0/ 85%);
}

.share .items li {
	display: inline-flex;
	list-style: none;
}

.items ul {
	padding-left: 0.3rem;
	line-height: 0;
}

.share .items li a {
	display: block;
	position: relative;
	border: 1px solid #fff;
	border-radius: 100%;
	width: 40px;
	height: 40px;
	background-color: #c9ab20;
	margin-left: 0.2rem;
}

.share .items li a::before {
	display: block;
	width: 30px;
	height: 30px;
	position: absolute;
	left: 0;
	right: 0;
	top: 12%;
	transform: translateX(12%);
	-webkit-transform: translateX(12%);
	-moz-transform: translateX(12%);
	transition: ease-in-out .5s;
	-webkit-transition: ease-in-out .5s;
	-moz-transition: ease-in-out .5s;
}

.share .items li a::after {
	display: block;
	width: 30px;
	height: 30px;
	position: absolute;
	left: 0;
	right: 0;
	top: 12%;
	opacity: 0;
	transform: translate3d(12%, 30%, 0);
	-webkit-transform: translate3d(12%, 30%, 0);
	-moz-transform: translate3d(12%, 30%, 0);
	transition: ease-in-out .5s;
	-webkit-transition: ease-in-out .5s;
	-moz-transition: ease-in-out .5s;
}

.share .items li .fb-icon::before {
	content: '';
	background: url(../images/fb-icon.png) no-repeat;
}

.share .items li .fb-icon::after {
	content: '';
	background: url(../images/fb-icon.png) no-repeat;
}

.share .items li .line-icon::before {
	content: '';
	background: url(../images/line-icon.png) no-repeat;
}

.share .items li .line-icon::after {
	content: '';
	background: url(../images/line-icon.png) no-repeat;
}

.share .items li a:hover::before {
	transform: translate3d(12%, -30%, 0);
	-webkit-transform: translate3d(12%, -30%, 0);
	-moz-transform: translate3d(12%, -30%, 0);
	opacity: 0;
}

.share .items li a:hover::after {
	transform: translate3d(12%, 0, 0);
	-webkit-transform: translate3d(12%, 0, 0);
	-moz-transform: translate3d(12%, 0, 0);
	opacity: 1;
}

@media ( max-width : 1024px) {
	.share {
		bottom: 0;
	}
}

@media ( max-width : 767px) {
	.share {
		left: 0;
	}
}

@media ( max-width : 576px) {
	.share p {
		display: none;
	}
}

@media ( max-width : 414px) {
	.share .items li a {
		width: 35px;
		height: 35px;
	}
	.share .items li a::before, .share .items li a::after {
		width: 27px;
		height: 27px;
		background-size: contain !important;
	}
}

@media ( max-width : 375px) {
	.share {
		left: 0;
	}
}

/*================================*/
#pp-nav {
	margin-top: -32px;
	top: 30%;
}

#pp-nav.right {
	right: 3%;
}

/*Lynn*/
/*============ common =============*/
.common-pgs {
	width: 100vw;
	height: 100vh;
	overflow: hidden;
}

/*共用背景*/
.common-pg-bg {
	background: url(../images/common-bg.jpg) no-repeat;
	background-position: center center;
	background-size: cover;
	overflow: hidden;
}

.hight-max {
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 8vh 5vw;
}

/*文字*/
.title2-1 {
	color: #c9ab20;
	font-size: 32px;
	text-align: center;
}

.title2-2 {
	color: #fff;
	font-size: 36px;
	text-align: center;
}

.title3-1 {
	color: #c9ab20;
}

.title3-2 {
	font-size: 26px;
	color: #fff;
	text-align: center;
	margin-bottom: 30px;
}

.ts-1 {
	font-size: 18px;
	color: #555;
}

.py-6 {
	padding-top: 4rem;
	padding-bottom: 4rem;
}
/*問答頁文字*/
.title-main {
	font-size: 28px;
}

.title-bg {
	font-size: 20px;
}

.form-check {
	margin-left: 16px;
	font-size: 16px;
}

small {
	font-size: 18px;
	font-weight: 400;
}

.btn {
	font-size: 20px;
}

/*按鈕*/
.btn-color1 {
	background: #c9ab20;
	color: #fff;
	letter-spacing: 0.1em;
	transition: all .3s;
}

.btn-color1:hover {
	background: #c9ab20;
	color: #fff;
	opacity: 0.5;
	transform: scale(.9, .9);
}

@media screen and (max-width: 992px) {
	.title2-1 {
		font-size: 22px;
	}
	.title2-2 {
		font-size: 32px;
	}
	.title3-1 {
		font-size: 22px;
	}
	.title3-2 {
		font-size: 24px;
	}
}

@media screen and (max-width: 767px) {
	.common-pgs {
		height: auto;
	}
	.hight-max {
		height: auto;
		min-height: 750px;
	}
}

@media screen and (max-width: 480px) {
	.title2-1 {
		font-size: 20px;
	}
	.title2-2 span, .title3-2 span {
		display: block;
	}
	.title2-2 {
		font-size: 30px;
	}
	.title3-2 {
		font-size: 18px;
	}
	.title-main {
		font-size: 24px;
	}
	.btn {
		font-size: 14px;
	}
}

/*=====申請頁=====*/

/*活動辦法*/
.activity-t {
	display: block;
	color: #fff;
	font-size: 22px;
	text-align: center;
	margin-bottom: 0.5%;
}

.activity-step {
	display: flex;
	width: 100%;
	justify-content: space-evenly;
	padding: 0;
	overflow-y: auto;
}

.activity-step li {
	list-style: none;
	width: calc(100%/ 5 - 20px);
	padding: 35px 20px 40px;
	margin: 10px;
	background: #fae069;
}

.activity-step li:nth-child(even) {
	background: #ffea8a;
}

.activity-step li span.step-title {
	display: table;
	color: #5f2c2c;
	font-size: 2rem;
	font-weight: 600;
	margin: 0 0 23%;
}

.activity-step li span.step-title:after {
	content: "";
	display: block;
	border-bottom: 3px solid #fff;
	margin-top: 3px;
}

.activity-warning {
	color: #505050;
	font-size: 12px;
	margin: 0 10px;
}

@media screen and (max-width: 992px) {
	/*產品照*/
	.pd-box {
		display: none;
	}
	.activity-step {
		flex-direction: column;
	}
	.activity-step li {
		display: flex;
		width: 100%;
		padding: 20px 20px;
		margin: 0 auto;
	}
	.activity-step li span.step-title {
		margin: 0 5% 0 0;
	}
	.activity-step strong {
		display: contents;
	}
}

@media screen and (min-width: 769px) {
	.form-wrap{
	height: calc(100vh - 200px);
	}
}

@media screen and (max-width: 767px) {
	.activity-step li {
		font-size: 15px;
		padding: 20px 45px 20px 20px;
	}
	.activity-step li span.step-title {
		font-size: 1.5rem;
	}
}

/*表單*/
.form-wrap {
	max-width: 600px;
	padding: 5px 25px;
	overflow-y: auto;
}

.form-control:focus, .form-select:focus {
	color: #333;
	border-color: #eee;
	background: #f5f5f5;
	box-shadow: none;
}

.form-control-plaintext {
	background: #f5f5f5;
	padding: 6px 10px;
	color: #6c6c6c;
}

.phone-box {
	position: relative;
}

.verify {
	position: absolute;
	right: 5px;
	top: 33px;
	border: 0;
	padding: 6px 15px;
	border-radius: 5px;
	background-color: #d0d0d0;
	transition: all .3s;
}

.verify:hover {
	background-color: #9a9a9a;
}

.ts-6 {
	font-size: 0.92rem;
}

@media screen and (max-width: 1024px) {
	.form-wrap {
		font-size: 15px;
		
	}
}

@media screen and (max-width: 480px) {
	.form-wrap {
		font-size: 13px;
	}
}

/*==================資料查詢&填寫 ==================*/
.page-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 100%;
	padding: 7.5vh 3vw;
	min-height: 100vh;
}

.page-wrap.popup {
	padding: 2vh 7vw;
	/*  min-height:auto;*/
}

/*資料填寫*/
.data-content {
	position: relative;
	padding: 5vh 2vw 5vh;
	width: 100%;
	max-width: 700px;
	background-color: #fff;
	border-radius: 10px;
	outline: 0;
	-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.3);
	box-shadow: 0 3px 9px rgba(0, 0, 0, 0.3);
	overflow-y: auto;
}

/*問答頁*/
.question-content {
	position: relative;
	padding: 5vh 3vw 5vh;
	width: 100%;
	max-width: 700px;
	background-color: #fff;
	border-radius: 10px;
	outline: 0;
	-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.3);
	box-shadow: 0 3px 9px rgba(0, 0, 0, 0.3);
	overflow-y: auto;
}

.page-p-fz {
	color: #fff;
	text-align: center;
	font-size: 1.1em;
}

.code-pic {
	width: 100%;
	height: auto;
	max-width: 360px;
	margin: 0 auto;
	display: block;
	padding: 0 20px 20px;
}

.qrcode-pic{
	width:50%;
}

.popup-h5 {
	color: #555;
}

/*================================
 資料查詢&填寫 手機版
=================================*/
@media screen and (max-width: 767px) {
	.page-wrap {
		padding: 10vh 7vw;
	}
}

@media screen and (max-width: 480px) {
	.data-content {
		padding: 5vh 4vw 5vh;
	}
	.popup-h5 {
		font-size: 1.05rem;
	}
	.qrcode-pic{
		width:80%;
	}
}

/*===== 隱私權&網站服務條款 =====*/
.popup-content {
	max-height: 520px;
	margin: 1.5vh 1.5vh 0;
	padding-right: 2vh;
	overflow-y: auto;
	font-size: 16px;
	color: #555;
}

.list-gray {
	color: #555;
	margin: 3vh auto;
	padding-left: 0;
}

.list-gray li {
	margin-bottom: 2vh;
	list-style: none;
}

ul.list-2 {
	padding-left: 0;
}

ul.list-2 li {
	margin-left: 30px;
	text-indent: -11px;
	margin-left: 18px;
}

.popup-close {
	position: absolute;
	top: 12px;
	right: 20px;
	font-size: 25px;
}

/*條款*/
/*
.title-terms{
  text-indent: -48px;
  margin-left: 30px;;
}
*/
@media screen and (max-width: 768px) {
	.popup-content {
		max-height: 650px;
		margin: 1vh 2vh;
	}
}

@media screen and (max-width: 640px) {
	.popup-content {
		font-size: 14px;
		 max-height: 520px;
		 margin:1.5vh 1.5vh 0;
	}
	.list-gray {
		font-size: 14px;
	}
}

@media screen and (max-width: 480px) {
	.popup-content {
		max-height: 500px;
		margin: 1vh 1vh 0;
	}
	.list-gray {
		padding-left: 5px;
	}

	/*問答頁*/
	.popup-content-question {
		max-height: 520px;
		margin: 1.5vh 0 0;
		padding-right: 2vh;
		overflow-y: auto;
		color: #555;
	}
	.list-gray-question {
		color: #555;
		margin: 1vh auto;
		padding-left: 5px;
	}
	.list-gray-question li {
		margin-bottom: 2vh;
		list-style: none;
	}
}

@media screen and (max-width: 375px) {
	.popup-content-question {
		max-height: 350px;
	}
	
	.title-main {
		font-size: 22px;
	}
	small {
		font-size: 14px;
	}
	.form-check {
		font-size: 13px;
	}
	.btn {
		font-size: 14px;
	}
	
	 .popup-content {
        max-height: 350px;
    }

    .list-gray {
        font-size: 13px;
    }
}

/*===== 問答頁 =====*/
.popup-content-question {
	max-height: 55vh;
	margin: 3vh 0vh;
	padding: 0 2vh;
	overflow-y:auto;
}

/* .title-bg .is-invalid, .title-bg:invalid {
	color: #D94843;
}
.form-check .is-invalid, .form-check:invalid {
    background-color: #F9E4E0;
} */
.answer-error {
	background-color: #ffeae6;
	background-image:
		url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20320%20512%22%20fill%3D%22%23dc3545%22%20width%3D%2212%22%20height%3D%2212%22%20stroke%3D%22%23dc3545%22%3E%3Cpath%20d%3D%22M310.6%20361.4c12.5%2012.5%2012.5%2032.75%200%2045.25C304.4%20412.9%20296.2%20416%20288%20416s-16.38-3.125-22.62-9.375L160%20301.3L54.63%20406.6C48.38%20412.9%2040.19%20416%2032%20416S15.63%20412.9%209.375%20406.6c-12.5-12.5-12.5-32.75%200-45.25l105.4-105.4L9.375%20150.6c-12.5-12.5-12.5-32.75%200-45.25s32.75-12.5%2045.25%200L160%20210.8l105.4-105.4c12.5-12.5%2032.75-12.5%2045.25%200s12.5%2032.75%200%2045.25l-105.4%20105.4L310.6%20361.4z%22%2F%3E%3C%2Fsvg%3E);
	background-repeat : no-repeat;
	background-position: right calc(0.375em + 0.1875rem) center;
	background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
	background-repeat: no-repeat
}

.answer-error-title {
	color: #db544f;
}


/*===== 密碼頁 =====*/

/* 半透明遮罩背景 */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5); /* 半透明黑背景 */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10; /* 保證疊在最上層 */
}

/* 密碼表單內容 */
.overlay-content {
  background: #fff;  /* 白底 */
  padding: 20px;
  border-radius: 10px;
  max-width: 500px;
  width: 85%;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.3);
}