@charset "UTF-8";
.moreico, .moreico--basic, .btn--basic, .moreico--move, .btn--move, .moreico--primary, .btn--primary {
	-webkit-transition: all 300ms cubic-bezier(0.42, 0, 0.58, 1);
	-o-transition: all 300ms cubic-bezier(0.42, 0, 0.58, 1);
	transition: all 300ms cubic-bezier(0.42, 0, 0.58, 1);
}

.card__img {
	display: block;
	position: relative;
	overflow: hidden;
	width: 100%;
}

.card__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	-webkit-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
}

.flex--end {
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.flex--between {
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

.flex--acenter {
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.flex--astart {
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}

.flex--jcstart {
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
}

.flex--jcenter {
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.grid {
	display: grid;
}

.grid--space2 {
	grid-template-columns: 1fr 1fr;
}

.grid--space3 {
	grid-template-columns: 1fr 1fr 1fr;
}

.grid--space4 {
	grid-template-columns: 1fr 1fr 1fr 1fr;
}

.grid--space5 {
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.grid--space64 {
	grid-template-columns: 60% 38%;
}

.grid--space46 {
	grid-template-columns: 45% 55%;
}

.grid--gap25 {
	grid-gap: 25px;
}

.grid--gap30 {
	grid-gap: 35px 30px;
}

.grid--gap60 {
	grid-gap: 60px;
}

@media only screen and (max-width: 1024px) {
	.grid--space5 {
		grid-template-columns: 1fr 1fr 1fr;
	}
	.grid--gap60 {
		grid-gap: 30px;
	}
	.grid--space46 {
		grid-template-columns: 1fr;
	}
}

@media only screen and (max-width: 768px) {
	.grid--space2 {
		grid-template-columns: 1fr;
	}
	.grid--space3 {
		grid-template-columns: 1fr 1fr;
	}
	.grid--space4 {
		grid-template-columns: 1fr 1fr;
	}
	.grid--space5 {
		grid-template-columns: 1fr 1fr;
	}
	.grid--gap25, .grid--gap30, .grid--gap60 {
		grid-gap: 30px 20px;
	}
	.grid--space64 {
		grid-template-columns: 1fr;
	}
}

@media only screen and (max-width: 540px) {
	.grid--space3, .grid--space4, .grid--space5 {
		grid-template-columns: 1fr;
	}
}

.font--40 {
	font-size: clamp(28px, 3.5vw, 40px);
}

.font--36 {
	font-size: clamp(28px, 2.9vw, 36px);
}

.font--34 {
	font-size: clamp(24px, 2.5vw, 34px);
}

.font--32 {
	font-size: clamp(22px, 2.3vw, 32px);
}

.font--30 {
	font-size: clamp(22px, 2.3vw, 30px);
}

.font--26 {
	font-size: clamp(22px, 2.2vw, 26px);
}

.font--24 {
	font-size: clamp(22px, 2.1vw, 24px);
}

.font--22 {
	font-size: 22px;
}

.font--20 {
	font-size: 20px;
}

.font--18 {
	font-size: 18px;
}

.font--16 {
	font-size: 16px;
}

.font--15 {
	font-size: 15px;
}

.font--14 {
	font-size: 14px;
}

.font--md {
	font-weight: 500;
}

.font--bold {
	font-weight: 700;
}

.font--green {
	color: #3dc36e;
}

.font--red {
	color: #E60505;
}

.font--blue {
	color: #007BCE;
}

.font--black {
	color: #000;
}

.font--gray {
	color: #808080;
}

.font--gray500 {
	color: #adb5bd;
}

.font--gray800 {
	color: #343a40;
}

.font--primary {
	color: #3dc36e;
}

.font--white {
	color: #fff;
}

.font--center {
	text-align: center;
}

.font--line {
	border: 1px solid #fff;
	border-radius: 3px;
	padding: 0 10px;
}

.font--through {
	text-decoration: line-through;
}

.page__sort {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
}

.page__title {
	display: block;
	letter-spacing: 2;
	font-size: clamp(22px, 3vw, 36px);
	font-weight: bold;
	color: #496853;
	margin-bottom: 20px;
	padding-left: 30px;
	background: url("../../images/icon-01.svg");
	background-position: left 50%;
	background-repeat: no-repeat;
}

.page__subtitle {
	display: block;
	font-family: "Noto Sans TC", "Lato", sans-serif;
	color: #3dc36e;
	font-weight: bold;
	letter-spacing: 5px;
	position: relative;
}

.page__itemtitle {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 22px;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	width: 100%;
}

.page__itemtitle i {
	color: #36BE81;
	font-size: 20px;
	margin-right: 5px;
}

.page__itemtitle p {
	color: #333;
	font-weight: 700;
}

.page__tip {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin-bottom: 10px;
}

.page__tip li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	background: #D9F1D9;
	line-height: 35px;
	border-radius: 5px;
	padding: 0 10px;
	font-size: 16px;
	color: #104A32;
	margin: 0 8px 5px 0;
}

.page__tip li i {
	margin-right: 5px;
}

.page__subtip {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-ms-flex-line-pack: center;
	    align-content: center;
	margin-bottom: 20px;
}

.page__txt {
	font-size: 18px;
	font-size: 1.125rem;
	line-height: 2.25rem;
}

.page__info {
	margin-bottom: 20px;
	border-bottom: 1px dashed #ddd;
}

.page__img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.page__content70 {
	display: inline-block;
	width: calc(100% - 350px);
}

.page__more {
	position: absolute;
	top: 6px;
	right: 0;
	font-size: 18px;
	font-weight: bold;
	color: #41946D;
	border: 1px solid #87A597;
	border-width: 1px 0 1px 0;
	padding: 6px 10px;
}

.page__more:hover {
	color: #333;
}

.page--full {
	width: 100%;
}

.page--pd30 {
	padding: 30px;
}

.page--pdtb80 {
	padding-top: 80px;
	padding-bottom: 80px;
}

.page--pdtb120 {
	padding-top: 120px;
	padding-bottom: 120px;
}

.page--pdb60 {
	padding-bottom: 60px;
}

.page--pdb100 {
	padding-bottom: 100px;
}

.page--mtb50 {
	margin-top: 50px;
	margin-bottom: 50px;
}

.page--mt50cut {
	margin-top: -50px;
}

.page--mt60cut {
	margin-top: -60px;
}

.page--mb20 {
	margin-bottom: 20px;
}

.page--mb50 {
	margin-bottom: 50px;
}

.page--mb80 {
	margin-bottom: 80px;
}

.page--mb100 {
	margin-bottom: 100px;
}

.page--center {
	margin: auto;
}

.page--shadow {
	-webkit-box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
	        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
	border: none !important;
}

.page--bgwhite {
	background: #fff;
	padding: 20px;
}

.page--bgray {
	background: #F8F9FB;
}

.page--full {
	width: 100%;
}

.page--w70 {
	width: calc(100% - 33% - 30px);
}

.page--w30 {
	width: 33%;
}

.page--line {
	border: 1px solid #dedede;
}

.page__right-main {
	width: calc(78% - 30px);
}

.page--bgreen {
	background: #3dc36e;
}

.page--bgray {
	background: #F5F8F9;
}

.page--bgimg {
	background: url("../../images/pic-info.jpg");
	background-position: left top;
	background-repeat: no-repeat;
}

@media only screen and (max-width: 1600px) {
	.page--mt60cut {
		margin-top: 20px;
	}
}

@media only screen and (max-width: 1080px) {
	.page--pdtb120 {
		padding-top: 80px;
		padding-bottom: 80px;
	}
	.page--pdb100 {
		padding-bottom: 80px;
	}
	.page--mb100 {
		margin-bottom: 60px;
	}
	.page--w70 {
		width: 100%;
		margin-right: 0;
	}
	.page--w30 {
		width: 100%;
	}
	.page__right-main {
		width: 100%;
	}
	.page__content70 {
		display: inline-block;
		width: 100%;
	}
	.page--bgimg {
		background: url("../../images/pic-infos.jpg");
		background-position: left top;
		background-repeat: no-repeat;
	}
}

@media only screen and (max-width: 768px) {
	.page--pdtb80 {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.page--pd30 {
		padding: 15px;
	}
	.page--mb80 {
		margin-bottom: 40px;
	}
	.page--mb100 {
		margin-bottom: 40px;
	}
	.page__img img {
		margin: auto;
		width: 100%;
		height: auto;
	}
	.page__more {
		font-size: 16px;
		padding: 2px 10px;
	}
}

@media only screen and (max-width: 480px) {
	.page__title {
		padding-left: 0;
		background: none !important;
	}
}

/*====共用====*/
.edit {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	padding-top: 1rem;
	padding-bottom: 1rem;
	line-height: 1.6;
}

.edit p {
	font-size: 18px;
}

.edit img {
	max-width: 100%;
	margin: 15px auto;
}

.edit--gray {
	background: #EFF2F6;
	padding: 30px;
}

.edit--line {
	border-top: 1px solid #dfdfdf;
	border-bottom: 1px solid #dfdfdf;
}

.edit-keyword {
	margin: 20px auto 30px;
}

@media only screen and (max-width: 540px) {
	.edit--gray {
		padding: 15px;
	}
}

.moreico {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 180px;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	padding: 10px 20px;
	font-family: "Noto Sans TC", "Lato", sans-serif;
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
	z-index: 3;
	border-radius: 5px;
	overflow: hidden;
}

.moreico img, .moreico i {
	margin: 0 10px;
}

.moreico--gray, .btn--gray {
	background: #EBEBEB;
	color: #333;
}

.moreico--gray:hover, .btn--gray:hover {
	background: #333;
	color: #fff;
}

.moreico--black, .btn--black {
	background: #000;
	color: #fff;
	margin-bottom: 15px;
}

.moreico--black:hover, .btn--black:hover {
	background: #3dc36e;
	color: #fff;
}

.moreico--basic, .btn--basic {
	color: #333;
}

.moreico--line, .btn--line {
	border: 1px solid #fff;
	color: #fff;
	background: transparent;
}

.moreico--line:hover, .btn--line:hover {
	background: #fff;
	color: #333;
}

.moreico--blueline, .btn--blueline {
	border-radius: 99rem;
	border: 1px solid #68A5C9;
	color: #333;
	background: #fff;
}

.moreico--blueline:hover, .btn--blueline:hover {
	background: #68A5C9;
	color: #fff;
}

.moreico--move:hover, .btn--move:hover {
	padding-right: 0;
}

.moreico--shadow, .btn--shadow {
	-webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
	        box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
	color: #333;
}

.moreico--primary, .btn--primary {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	padding: 0 15px;
	font-size: 18px;
	line-height: 50px;
	color: #fff;
	background: #3dc36e;
	border-radius: 99rem;
	border: none;
}

.moreico--primary i, .btn--primary i {
	font-size: 16px;
	width: 22px;
	height: 22px;
	background: #fff;
	color: #064A7C;
	border-radius: 99rem;
	margin-left: 10px;
}

.moreico--primary:hover, .btn--primary:hover {
	background: #333;
	color: #fff;
}

.moreico--submit, .btn--submit {
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	position: relative;
	background: #3dc36e;
}

.moreico--submit:hover, .btn--submit:hover {
	background: #333;
}

.moreico--common, .btn--common {
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	border: 1px solid #EBEBEB;
	color: #555;
}

.moreico--common:hover, .btn--common:hover {
	background: #333;
}

.agree_icon {
	display: block;
	margin: 20px 0;
	width: 100%;
}

.agree_icon input[type=checkbox].css-checkbox {
	display: none;
}

.agree_icon input[type=checkbox].css-checkbox + label.css-label.agree {
	padding-left: 45px;
	display: inline-block;
	line-height: 30px;
	background-repeat: no-repeat;
	background-position: 0 -60px;
	font-size: 20px;
	vertical-align: middle;
	cursor: pointer;
}

.agree_icon input[type=checkbox].css-checkbox:checked + label.css-label.agree {
	background-position: 0 0;
}

.agree_icon label.css-label.agree {
	background-image: url(../../images/csscheckbox.png);
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	height: 30px;
	overflow: hidden;
}

.qry-main {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin-top: 10px;
}

.qry-main::before {
	content: '數量';
	width: 60px;
	font-size: 18px;
	font-weight: 700;
	color: #5C5959;
}

.qry-contain {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border: 1px solid #d4d9de;
	border-radius: 4px;
	width: calc(100% - 60px);
	height: 44px;
	text-align: center;
	position: relative;
}

.qty {
	color: #4a4e5c;
	font-size: 20px;
	width: calc(100% - 44px * 2 - 2px);
	text-align: center;
	line-height: 43px;
	height: 43px;
	border: 1px solid #d4d9de;
	border-width: 0px 0 1px 0;
}

.qty-btn {
	cursor: pointer;
	font-weight: 900;
	line-height: 44px;
	display: table-cell;
	width: 60px;
}

.qty-btn.disabled {
	color: #aaa;
}

.qty-btn.increase-btn {
	color: #ff5353;
	background: #fff;
	border-left: 1px solid #d4d9de;
}

input.qtyplus {
	border: none;
}

input.qtyminus {
	border: none;
}

.arrow {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	width: 100%;
}

.arrow li {
	width: 50%;
}

.arrow li:nth-of-type(1) {
	border-right: 1px solid #d3d3d3;
}

.arrow a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	font-size: 18px;
	color: #333;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
	padding: 30px 50px 20px;
}

.arrow a:hover {
	background: #E9E9E9;
}

.arrow a:hover i {
	border: 1px solid #333;
	background: #333;
}

.arrow a:hover i::after {
	color: #fff;
}

.arrow a i {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	position: absolute;
	top: 20px;
	border: 1px solid #707070;
	background: #fff;
	border-radius: 99rem;
	width: 40px;
	height: 40px;
}

.arrow a i::before {
	position: absolute;
	top: -15px;
	width: 100px;
	content: attr(title);
	font-size: 16px;
	color: #1F7CA5;
	font-weight: 700;
}

.arrow a i::after {
	font-size: 20px;
	color: #333;
	font-family: 'icomoon' !important;
}

.arrow a.arrow__prev {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.arrow a.arrow__prev i {
	left: 0;
}

.arrow a.arrow__prev i::before {
	left: 48px;
}

.arrow a.arrow__prev i::after {
	content: "\e925";
}

.arrow a.arrow__next {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}

.arrow a.arrow__next i {
	right: 0;
}

.arrow a.arrow__next i::before {
	right: 0;
}

.arrow a.arrow__next i::after {
	content: "\e928";
}

@media only screen and (max-width: 1024px) {
	.arrow li {
		width: 100%;
	}
}

/*======塊狀+文字敘述列表=====*/
.card__item {
	display: block;
	position: relative;
	border-radius: 6px;
}

.card__item:hover .card__img img {
	-webkit-transform: scale(1.08);
	    -ms-transform: scale(1.08);
	        transform: scale(1.08);
}

.card__item:hover .card__img::before {
	opacity: 0.6;
}

.card__item:hover .card__img::after {
	opacity: 1;
	margin-top: 0;
}

.card__item:hover .card--bg::after {
	left: 10px;
	top: 10px;
	background: #9EE1B7;
}

.card__img {
	width: 100%;
	padding-bottom: 75%;
	border-radius: 6px 6px 0 0;
}

.card__info {
	padding: 18px 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

.card__title {
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	width: 100%;
	font-size: clamp(18px, 3vw, 20px);
	line-height: 1.25;
	height: 48px;
	overflow: hidden;
	overflow: hidden;
	display: -webkit-box;
	-o-text-overflow: ellipsis;
	   text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	color: #3dc36e;
}

.card__tip {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	color: #FDA203;
}

.card__tip::before {
	content: "$";
	font-size: 18px;
	font-family: 'Montserrat';
}

.card__tip::after {
	content: "起";
	font-size: 18px;
}

.card__tip p {
	font-size: 30px;
	font-weight: bold;
	font-family: 'Montserrat';
	margin: 0 5px;
}

.card__txt {
	height: 50px;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5rem;
	color: #7f7f7f;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	   text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.card__tag {
	position: absolute;
	top: 15px;
	right: 15px;
	z-index: 2;
	font-size: 17px;
	color: #fff;
	padding: 0 10px;
	background: #3dc36e;
	border-radius: 99rem;
}

.card--bg {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
}

.card--bg::after {
	content: "";
	background: #E9F3E7;
	width: 100%;
	height: 100%;
	position: absolute;
	border-radius: 6px;
	left: 10px;
	top: -10px;
	z-index: -1;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.card--bg .card__img {
	border-radius: 6px;
}

.card--bgray {
	background: #FAFAFA;
}

.card--bgfree {
	padding-top: 80px;
	padding-bottom: 80px;
	background: url("../../images/pic-free.jpg");
	background-position: 50% 50%;
	background-repeat: no-repeat;
}

.card--bgline {
	background: #fff;
	border: 1px solid #DFDFDF;
}

/*FB+Line*/
.community {
	position: fixed;
	right: 0;
	top: 50vh;
	height: auto;
	z-index: 500;
}

.community a {
	display: block;
	width: 58px;
	height: 58px;
}

.community a.fb {
	background: #115bc0;
}

.community a.fb::before {
	content: "\ea90";
	font-family: 'icomoon';
	display: block;
	line-height: 58px;
	margin: auto;
	font-size: 36px;
	color: #fff;
	text-align: center;
}

.community a.line {
	background: #00c402;
}

.community a.line::before {
	content: "\e922";
	font-family: 'icomoon';
	display: block;
	line-height: 58px;
	margin: auto;
	font-size: 35px;
	color: #fff;
	text-align: center;
}

.community a.mail {
	background: #333;
}

.community a.mail::before {
	content: "\e949";
	font-family: 'icomoon';
	display: block;
	line-height: 58px;
	margin: auto;
	font-size: 36px;
	color: #fff;
	text-align: center;
}

@media only screen and (max-width: 480px) {
	.community a.fb {
		display: none;
	}
	.community a.line:before {
		font-size: 30px;
		line-height: 40px;
	}
	.community a.mail {
		display: none;
	}
	.community a {
		width: 40px;
		height: 40px;
	}
}
