/*
	2021/05/06
*/

body
{
	background: white;
}

button , select , input[type="radio"] , input[type="checkbox"] ,
input[type="submit"] , label , a
{
	cursor: pointer;
}

input[type="number"]
{
	-moz-appearance:textfield;
}

/*****     Class     *****/
.Notice
{
	color: red;
	display: none;
	font-size: 13px;
	text-align: left;
}

.NoData /* 沒有資料 */
{
	color: black;
	text-align: center;
	font-size: 16px;
	padding: 30px 0;
}

.DevicePc
{
	display: block;
}

.DeviceMobile
{
	display: none;
}

/*************** 共同 ***************/
/*****     input select textarea     *****/
.Ipt , .Sel , .Textarea
{
	background: white;
	box-sizing: border-box;
	position: relative;
	width: 100%;
	border-radius: 5px;	
}

.Ipt input , .Sel select , .Textarea textarea
{
	color: black;
	min-height: 50px;
	font-size: 16px;
	display: block;
	width: 100%;
	padding: 5px;
	
}

.Ipt input::placeholder , .Textarea textarea::placeholder
{
	color: #585858;
	font-size: 16px;
}

.Sel select
{
	color: black;
}

.SelDecro
{
	background: #E5C25B;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	position: absolute;
	top: calc(50%);
	right: 0;
	transform: translateY(-50%);
	pointer-events: none;
	width: 50px;
	height: 50px;
}

.SelDecro::after
{
	border-top: 11px solid #342305;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	width: 0;
	height: 0;
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	pointer-events: none;
}

.Textarea textarea
{
	width: calc(100%);
	padding: 10px;
	min-height: 80px;
	resize: vertical;
}

/*****     checkbox     *****/
.CheckBox
{
	display: block;
	text-align: center;
}

.CheckIpt , .CheckText
{
	vertical-align: middle;
	display: inline-block;
}

.CheckIpt
{
	background: white;
	border: 1px solid #808080;
	border-radius: 2px;
	width: 15px;
	height: 15px;
	position: relative;
	margin: 0 10px 0 0 !important;
}

.CheckIpt:checked
{
	/* background: #FFD9EB;
	border: 1px solid #FFD9EB; */
}

.CheckIpt::after
{
	border: solid #808080;
	content: '';
	position: absolute;
	left: calc(50% - 1px);
	top: 3px;
	width: 3px;
	height: 7px;	
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg) translateX(-50%);
	-ms-transform: rotate(45deg) translateX(-50%);
	transform: rotate(45deg) translateX(-50%);
	display: none;
}

.CheckIpt:checked::after
{
	display: block;
}

.CheckText
{
	color: #808080;
	max-width: calc(100% - 34px);
	font-size: 14px;
}

/*****     Radiobox     *****/
.RadioBox
{
	display: inline-block;
	text-align: center;
}

.RadioIpt , .RadioText
{
	vertical-align: middle;
	display: inline-block;
}

.RadioIpt
{
	background: white;
	border-radius: 1px;
	width: 20px;
	height: 20px;
	position: relative;
	margin: 0 10px 0 0 !important;
}

.RadioIpt:checked
{
	/* background: #FFD9EB;
	border: 1px solid #FFD9EB; */
	background: #E5C25B;
}

.RadioText
{
	color: white;
	font-size: 20px;
}

/*****     input[type="file"]     *****/
.FileBox
{
	position: relative;	
	width: 100%;
	text-align: center;	
}

.FileAppear
{
	border: 1px solid #999999;
	background: white;
	box-sizing: border-box;
	border-radius: 10px;
	width: 100%;
	display: block;
	padding: 60px 20px;
}

.FileIcon
{
	width: 100%;
	margin: 0 0 10px 0;
}

.FileIcon i
{
	color: #CCCCCC;
	font-size: 60px;
}

.FileImg
{
	width: 300px;
	margin: 0 auto 15px auto;
}

.FileTxt
{
	color: #CCCCCC;
	font-size: 16px;
	font-weight: 600;
}

/*****     箭頭 ( > )     *****/
.AfterArrow
{
	border-top: 5px solid white;
	border-right: 5px solid white;	
	display: inline-block;
	width: 20px;
	height: 20px;
}

.AfterArrow.right
{
	transform: rotate(45deg) translate(-50%,-50%);
	-webkit-transform: rotate(45deg) translate(-50%,-50%);
}

.AfterArrow.left
{
	transform: rotate(-135deg) translate(-50%,-50%);
	-webkit-transform: rotate(-135deg) translate(-50%,-50%);
}

/*****     彈窗     *****/
.WindowBox
{
	background: rgba(0,0,0,.3);
	width: 100%;
	position: fixed;
	height: 100vh;
	top: 0;
	left: 0;
	z-index: 1000;
	display: none;
}

.WindowBox.active
{
	display: block;
}

.WindowContainer
{
	background: #160E00;
	box-sizing: border-box;
	position: absolute;
	border-radius: 5px;
	width: 600px;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 13;
}

.WindowTop
{
	border-bottom: 1px solid #F9DF7B;
	text-align: center;
	box-sizing: border-box;
	width: 100%;
	position: relative;
}

.WindowTit
{
	color: #F9DF7B;
	font-size: 30px;
	font-weight: 600;
	padding: 15px 5px;
	width: 100%;
	box-sizing: border-box;
}

.WindowX
{
	background: #E5C25B;
	color: #160E00;
	cursor: pointer;
	border-radius: 5px;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	z-index: 1;
	font-size: 24px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	display: block;
}

.WindowContent
{
	width: 100%;
	word-break: break-all;
	box-sizing: border-box;
	padding: 10px 0 50px 0;
	max-height: 750px;
	overflow-y: scroll;
}

.WindowContent::-webkit-scrollbar
{
	background: transparent;
	width: 5px;
	border-radius: 999rem;
}

.WindowContent::-webkit-scrollbar-thumb
{
	background: #E5C25B;
	border-radius: 999rem;
}

.WindowBg
{
	width: 100%;
	position: absolute;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	z-index: 12;
}

/*****     按鈕     *****/
/*     ㄟ你     */
.BtnAny
{
	background: #0D395E;
	color: white;
	padding: 13px 5px;
	min-width: 160px;
	border-radius: 999rem;
	font-size: 18px;
	font-weight: 600;
	display: inline-block;
	text-align: center;
}

/*     返回     */
.BtnBackBox
{
	border-top: 1px solid #E0E0E0;
	border-bottom: 1px solid #E0E0E0;
	padding: 25px 0;
	width: 100%;
}

.BtnBackInner
{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: max-content;
}

.BtnBackIcon
{
	color: black;
	font-size: 20px;
	margin: 0 20px 0 0;
}

.BtnBackTxt
{
	color: black;
	font-size: 18px;
}

/*****     框架     *****/
.Container
{
	min-height: calc(100vh - 615px);
}

/*****     日期顯示     *****/
.DateBox
{
	position: relative;
	box-sizing: border-box;
}

.DateIcon , .DateIcon i
{
	width: 2.5vw;
	height: 2.5vw;
	line-height: 2.5vw;
	border-radius: 999rem;
}

.DateIcon
{
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
	background: white;
	text-align: center;
	padding: .31vw;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
}

.DateIcon i
{
	background: #E08C44;
	color: white;
	font-size: 1.2vw;
}

.DateView
{
	background: white;
	color: #828282;
	font-size: 0.94vw;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
	border-radius: 999rem;
	padding: .52vw 1.77vw .52vw 3.91vw;
	display: inline-block;
}

/*****     Header     *****/
header
{
	/* border-top: 15px solid #D49855; */
	height: 450px;
	width: 100%;
	text-align: center;
	position: relative;
}

.headerBgBox , .headerBg
{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

/*      indexHeader      */
.headerBgBox.index .owl-stage-outer , .headerBgBox.index .owl-stage ,
.headerBgBox.index .owl-item
{
	height: 100%;
}

.headerBgBox.index .owl-nav
{
	width: 100%;
	left: 0;
	position: absolute;
	top: calc(50% + 41px);
	transform: translateY(-50%);
	z-index: 99;
}

.headerBgBox.index .owl-nav .owl-prev ,
.headerBgBox.index .owl-nav .owl-next
{
	background: #4C4847;
	color: white;
	border-radius: 3px;
	position: absolute;
	top: calc(50% + 41px);
	transform: translateY(-50%);
	z-index: 99;
	width: 40px;
	height: 40px;
	line-height: 30px;
	text-align: center;
	cursor: pointer;
	font-size: 30px;
}

.headerBgBox.index .owl-nav .owl-prev
{
	left: 15px;
}

.headerBgBox.index .owl-nav .owl-next
{
	right: 15px;
}

.index_0 header
{
	height: auto;
}

.index_0 .headerBgBox,
.index_0 .headerBg
{
	height: 900px;
	width: 100%;
	position: unset;
	top: unset;
	left: unset;
	z-index: unset;
}

.index_0 .headerBg
{
	background-size: 100% 100% !important;
}

/*     真Header     */
.headerRealBox
{
	background: #FFFFFF;
	box-sizing: border-box;
	width: 100%;
	padding: 20px 0 0 0;
	position: relative;
	z-index: 10;
}

/*     Logo     */
.headerMenuLogo
{
	width: 350px;
	display: block;
	margin: 0 auto 10px auto;
}

/*     主要項目     */
.headerMenuBox
{
	width: 100%;
	box-sizing: border-box;
}

.headerMenuInner
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 15px;
}

.headerMenuBlock
{
	/* padding: 0 55px; */
	position: relative;
}

.headerMenuBlock:not(:last-child)
{
	/* margin: 0 110px 0 0; */
}

.headerMenuBtn
{
	border-right: 2px solid #FF0066;
	border-left: 2px solid #FF0066;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5px 10px;
	position: relative;
	z-index: 2;
}

.headerMenuBtnTxtBox
{}

.headerMenuBtn i,.headerMenuBtnTxt0
{
	color: #FF0066;
}

.headerMenuBtnTxt0
{
	font-weight: bold;
	font-size: 18px;
	/* min-width: 72px; */
}

.headerMenuBtnTxt1
{
	color: #000000;
	font-size: 15px;
}

/* .headerMenuBtn i
{
	color: #000000;
	font-size: 18px;
	margin: 0 0 0 10px;
}

.headerMenuBlock.active .headerMenuBtnTxt
{
	color: #000000;
}

.headerMenuBlock.active .headerMenuBtn i
{
	color: #000000;
} */

/*     副項目     */
.headerMenuSubBox
{
	width: 190px;
	word-break: break-all;
	position: absolute;
	top: 29px;
	left: 2px;
	z-index: 5;
	display: none;
	padding: 25px 0 0 0;
}

.headerMenuBlock:hover .headerMenuSubBox
{
	display: block;
}

.headerMenuSubList
{
	background: white;
	width: 100%;
	display: block;
}

.headerMenuSubList:hover
{
	background: #F9F9F9;
}

.headerMenuSubList:not(:last-child)
{
	border-bottom: 1px solid #F2F2F2;
}

.headerMenuSubListBtn
{
	color: #6D5134;
	font-size: 16px;
	padding: 10px 5px;
	box-sizing: border-box;
}

/*     社群     */
.headerSocialBox
{
	width: 60px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.headerSocialBtn
{
	filter: brightness(0);
	display: block;
	width: 25px;
}

.headerSocialBtn:not(:last-child)
{
	margin: 0 10px 0 0;
}

/*     主題/Solgan     */
.headerTopic
{
	width: 100%;
	word-break: break-all;
	position: absolute;
	left: 50%;
	top: calc(50% + 45px);
	transform: translate(-50%,-50%);
	z-index: 2;
}

.index_0 .headerTopic
{
	top: 50%;	
}

.headerTopicTxt
{
	color: #000000;
	width: 100%;
	font-size: 50px;
}

/*     index標語     */
/* .headerInfo
{
	width: calc(50% - 60px);
	text-align: left;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateY(-50%);
	z-index: 50;
}

.headerInfoSolgan
{
	color: white;
	font-size: 3.5vw;
	font-weight: bold;
	letter-spacing: 4px;
	margin: 0 0 20px 0;
	word-break: keep-all;
}

.headerInfoBtn
{
	color: white;
	background: #44b5e0;
	border-radius: 5px;
	display: inline-block;
	font-weight: bold;
	font-size: 1.56vw;
	padding: .78vw 1.04vw;
} */

/*****     共同     *****/
/*     商品     */
.GoodsItemBox
{
	width: 100%;
	box-sizing: border-box;
	margin: 0 auto;
	display: flex;
	align-items: stretch;
	justify-content: flex-start;
	word-break: break-all;
	flex-wrap: wrap;
	margin: 0 0 -40px 0;
}

.GoodsItemBlock
{
	width: calc((100% - 60px)/3);
	/* width: 400px; */
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-direction: column;
	margin: 0 0 40px 0;
	box-sizing: border-box;
	padding: 0 0 20px 0;
}

.GoodsItemBlock:not(:nth-child(3n))
{
	margin: 0 30px 40px 0;
}

/* .GoodsItemBlock:hover
{
	border: 1px solid #F2C94C;
} */

.GoodsItemImg
{
	width: 100%;
	display: block;
	/* height: 19.04vw; */
	margin: 0 0 .5vw 0;	
	overflow: hidden;
}

/* .GoodsItemImg img
{
	transition: all .5s ease-in-out;
} */

/* .GoodsItemBlock:hover .GoodsItemImg img
{
	transform: scale(1.3);
} */

.GoodsItemKind
{
	display: block;
	box-sizing: border-box;
	width: 100%;
	margin: 0 0 .94vw 0;
}

.GoodsItemKindTxt
{
	color: rgb(51, 51, 51,.3);
	font-size: 1.04vw;
}

.GoodsItemTit
{
	display: block;
	box-sizing: border-box;
	width: 100%;
	margin: 0 0 .5vw 0;
	flex: 1;
}

.GoodsItemTitTxt
{
	color: #6D5134;
	font-size: 1.56vw;
	text-align: center;
	margin: 0 0 25px 0;
}

.GoodsItemSellBox
{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.GoodsItemUnit
{
	color: #BC0000;
	font-weight: bold;
	font-size: 2.08vw;
	padding: 0 0 0 5px;
}

.GoodsItemUnit.type2
{
	font-size: 1.45vw;
}

.GoodsItemDetail
{
	box-sizing: border-box;
	width: 100%;
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.GoodsItemDetailList
{
	color: rgb(51, 51, 51,.8);
	font-size: 16px;
	width: 100%;
}

.GoodsItemBtnToBuy
{
	border: 1px solid #6D5134;
	display: block;
	text-align: center;
	width: fit-content;
	margin: 5px auto 0 auto;
}

.GoodsItemBtnToBuyTxt
{
	color: #6D5134;
	padding: 5px 20px;
	font-size: 18px;
}

/*     金額     */
.PriceBox
{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
	word-break: break-all;
	font-weight: 600;
}

.PriceOriginalBox , .PriceSaleBox
{
	color: #BC0000;	
	font-size: 2.08vw;	
}

.PriceBox.type2 .PriceOriginalBox ,
.PriceBox.type2 .PriceSaleBox
{
	font-size: 1.45vw;
}

.PriceOriginalBox.active
{
	color: #999999;
	font-size: 1.56vw;
	text-decoration: line-through;
}

.PriceBox.type2 .PriceOriginalBox.active
{
	font-size: 1.04vw;
}

.PriceSaleBox
{
	padding: 0 1.56vw 0 0;
}

.PriceBox.type2 .PriceSaleBox
{
	padding: 0 1.04vw 0 0;
}

/*****     首頁     *****/
.indexBox
{
	width: 100%;
}

.indexPicBox
{
	width: 100%;
}

.indexPic
{
	display: block;
	width: 100%;
}

/*****     商品列表     *****/
.goodsBox
{
	width: 100%;
	box-sizing: border-box;
	padding: 5.73vw 16.8vw 10vw 16.8vw;
}

.goodsBox .PriceBox
{
	justify-content: center;
}

/*****     商品內容     *****/
.goodsdtBox
{
	width: 100%;
}

/*     介紹     */
.goodsdtInfoBox
{
	width: 100%;
	box-sizing: border-box;
	padding: 5.73vw 16.8vw 4.69vw 16.8vw;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
}

/*   圖片   */
.goodsdtInfoImgBox
{
	width: 29.69vw;
}

.goodsdtInfoImgMain
{
	width: 100%;
	height: 29.69vw;
	margin: 0 0 1.09vw 0;
}

.goodsdtInfoImgSubBox
{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	overflow-x: auto;
	flex-wrap: nowrap;
}

.goodsdtInfoImgSubBox::-webkit-scrollbar
{
	background: #e4e4e4;
	height: 7px;
	border-radius: 999rem;
}

.goodsdtInfoImgSubBox::-webkit-scrollbar-thumb
{
	background: #ac7d4b;
	border-radius: 999rem;
}

.goodsdtInfoImgSubBtn
{
	cursor: pointer;
	width: 6.51vw;
	height: 6.51vw;
	flex-shrink: 0;
}

.goodsdtInfoImgSubBtn:not(:last-child)
{
	margin: 0 1.2vw 0 0;
}

/*   文字敘述   */
.goodsdtInfoCont
{
	width: 32.29vw;
	word-break: break-all;
}

/* 產品名稱 */
.goodsdtInfoTit
{
	color: #6D5134;
	/* font-size: 50px; */
	font-size: 2.6vw;
	margin: 0 0 20px 0;
}

.goodsdtInfoMoney
{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	margin: 0 0 45px 0;
}

.goodsdtInfoListBox
{
	width: 100%;
	margin: 0 0 25px 0;
}

.goodsdtInfoList
{
	width: 100%;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	word-break: break-all;
	align-items: center;
	position: relative;
	box-sizing: border-box;
	line-height: 35px;
}

.goodsdtInfoList:not(:last-child)
{
	margin: 0 0 20px 0;
}

/* 各介紹標題 */
.goodsdtInfoListTit
{
	color: #6D5134;
	font-size: 18px;
	margin: 0 5px 0 0;
}

.goodsdtInfoListTxt
{
	color: #6D5134;
	font-size: 18px;
}

/* 社群按鈕 */
.goodsdtInfoListBtnSocail
{
	display: block;
	width: 2.6vw;
}

.goodsdtInfoListBtnSocail:not(:last-child)
{
	margin: 0 10px 0 0;
}

/* 購買按鈕 */
.goodsdtInfoBtnBuy
{
	background: #6D5134;
	display: block;
	width: 18.91vw;
}

.goodsdtInfoBtnBuyTxt
{
	text-align: center;
	width: 100%;
	padding: 0.94vw 0;
}

.goodsdtInfoBtnBuyTxt i
{
	color: white;
	font-size: 20px;
	margin: 0 12px 0 0;
}

.goodsdtInfoBtnBuyTxt span
{
	color: white;
	font-size: 18px;
}

/*     產品其他圖片     */
.goodsdtOtherPicBox
{
	width: 100%;
	margin: 40px 0 0 0;
}

.goodsdtOtherPic
{
	width: 100%;
}

/*     返回     */
.goodsdtBox .BtnBackBox
{
	margin: 5.73vw 0 0 0;
}

/*     相關產品     */
.goodsdtRelateBox
{
	background: #E5E5E5;
	width: 100%;
	box-sizing: border-box;
	padding: 5.73vw 16.8vw;
}

.goodsdtRelateTopic
{
	width: 100%;
	margin: 0 0 60px 0;
}

.goodsdtRelateTopicTxt
{
	color: #333333;
	font-size: 50px;
	width: 100%;
}

/*****     優惠活動     *****/
.event_0 header
{
	height: auto;
}

.eventBox
{
	background-position: top !important;
    	background-size: 100% auto !important;
    	background-repeat: repeat-y !important;
	width: 100%;
	box-sizing: border-box;
	/* padding: 5.73vw 25.52vw 11.46vw 25.52vw; */
}

.eventBlockBox
{
	width: 100%;
}

.eventBlock
{
	display: block;
	width: 100%;
	position: relative;
}

.eventBlockImg
{
	width: 100%;
}

/* 
.eventBlock .DateBox
{
	position: absolute;
	width: 100%;
	z-index: 2;
	top: 17px;
	left: 14px;
} */

/*     介紹     */
.eventInfoBox
{
	background: rgba(0,0,0,.5);
	box-sizing: border-box;
	padding: 1.04vw;
	width: 100%;
	word-break: break-all;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
}

.eventInfoTit
{
	color: white;
	font-size: 1.56vw;
	position: relative;
	margin: 0 0 1.56vw 0;
}

.eventInfoTxt
{
	color: white;
	font-size: 1.04vw;
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

/*****     優惠活動-內容     *****/
.eventdtBox
{
	box-sizing: border-box;
	padding: 5.21vw 25.52vw 9.64vw 25.52vw;
	width: 100%;
	word-break: break-all;
}

.eventdtPicBox
{
	width: 100%;
	margin: 0 0 25px 0;
}

.eventdtBox .DateBox
{
	margin: 0 0 30px 0;
}

.eventdtTit
{
	color: #6D5134;
	font-size: 30px;
	position: relative;
	margin: 0 0 30px 0;
}

.eventdtContBox
{
	color: #6D5134;
	font-size: 18px;
	line-height: 35px;
	width: 100%;
	margin: 0 0 85px 0;
}

/*****     品質認證     *****/
.certificationBox
{
	width: 100%;
}

.certificationBlockBox
{
	width: 100%;
	box-sizing: border-box;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap: wrap;
	padding: 0 20px;
	margin: 0 0 -20px 0;
}

.certificationBlock
{
	width: calc((100% - 60px)/4);
	margin: 0 0 20px 0;
}

.certificationBlock:not(:nth-child(4n))
{
	margin: 0 20px 20px 0;
}

.certificationBlockImg
{
	width: 100%;
}

/*****     商家資訊     *****/
/*     當頁     */
.infoBox
{
	background: #E5E5E5;
	width: 100%;	
}

.infoPicBox
{
	width: 100%;
}

.infoPic
{
	width: 100%;
}

.infoPic3Box
{
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap: wrap;
}

.infoPic3
{
	width: calc((100% - 80px)/3);
	margin: 0 0 20px 0;
}

.infoPic3:not(:nth-child(3n))
{
	margin: 0 40px 20px 0;
}

.infoVideoBox
{
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap: wrap;
}

.infoVideo
{
	width: calc((100% - 80px)/2);
	margin: 0 0 20px 0;
}

.infoVideo:not(:nth-child(2n))
{
	margin: 0 80px 20px 0;
}

.infoVideo iframe
{
	width: 100% !important;
	height: 28.5vw !important;
}

/*****     隱私權     *****/
.termsBox
{
	width: 100%;
}

.termsCont
{
	color: #333333;
	font-size: 20px;
	word-break: break-all;
	width: 100%;
	box-sizing: border-box;
	padding: 5.73vw 25.42vw;
	line-height: 40px;
}

/*****     +好友     *****/
.lineBox
{
	width: 100%;
	min-height: calc(100vh - 655px);
	padding: 20px 0;
}

.lineImg
{
	max-width: 100%;
	width: fit-content;
	margin: 0 auto;
}

/*****     Footer     *****/
footer
{
	background: #D99694;
	text-align: left;
	width: 100%;
	padding: 20px 0;
}

/* .footerContainer
{
	padding: 3.13vw 0;
	box-sizing: border-box;
	width: 100%;
	padding: 3.39vw 11.46vw 3.39vw 18.75vw;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
} */

/*     Logo     */
/* .footerLogoBox
{
	width: 300px;
}

.footerLogo
{
	color: #9EC8D6;
	font-family: '微軟雅黑';
	font-weight: bold;
	font-size: 25px;
	width: 100%; 
	margin: 0 auto 0 0;
	display: block;
} */

/*     主要項目     */
/* .footerInfoBox
{
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
}

.footerMenuBox
{
	width: auto;
	margin: 0 100px 0 0;
}

.footerMenuBtn
{
	display: block;
}

.footerMenuBtn:not(:last-child)
{
	margin: 0 0 15px 0;
}

.footerMenuBtnTxt
{
	color: white;
	font-size: 20px;
} */

/*     社群     */
/* .footerSocialBox
{
	width: auto;
}

.footerSocialBtn
{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.footerSocialBtn:not(:last-child)
{
	margin: 0 0 15px 0;
}

.footerSocialBtnIcon
{
	width: 25px;
	text-align: center;
	margin: 0 5px 0 0;
}

.footerSocialBtnName
{
	color: white;
	font-size: 20px;
} */

/*     CopyRight     */
/* .footerCopyRight
{
	color: rgba(255,255,255,.7);
	padding: 1.04vw 11.46vw 1.04vw 18.75vw;
	width: 100%;
	text-align: right;
	font-size: 12px;
	box-sizing: border-box;
} */

.footerTopic
{
	color: #000000;
	font-size: 16px;
	font-weight: bold;
	width: 100%;
	text-align: center;
	margin: 0 0 25px 0;
}

.footerRowBox
{
	width: 100%;
	text-align: center;
}

.footerRow
{
	width: 100%;
	font-size: 12px;
}

.footerRow:not(:last-child)
{
	margin: 0 0 5px 0;
}

.footerRow a
{
	color: #000000;
}