﻿@charset "utf-8";
/* CSS Document */
*{box-sizing:border-box;}
html,body{
	font-family:Arial, Helvetica, "微軟正黑體",sans-serif;
	font-size:15px;
	color:#4d4b49;
	background-color:#794e29;
}
a{text-decoration:none;}
.wraper{
	width:100%;}
#gotop{
	display: none;
	width: 3rem;
    height: 3rem;
    border-radius: 2rem;
    background-color:#353232;
    text-align: center;
    line-height: 3rem;
    color: white;
    position: fixed;
    right: 2rem;
    bottom:3.333rem;
    z-index: 999;
    font-size:1.0666rem;
	cursor:pointer;}
#gotop:hover{
	background-color:#bb8636;}
/*大圖*/
.topicbox{
	position: relative;
	z-index: 0;
	overflow: hidden;}
.topicwraper{
	background: url('../images/head-bg.jpg') repeat-x top center;
	}
.top-animate{
	height: 750px;
	position:relative;
}	
.top-animate>img{
	position: absolute;
	right: 0;
	left: 0;
	margin: 0 auto;
}
.top-animate>img:nth-child(1){
	bottom: 125px;
	z-index: 5;
}
.top-animate>img:nth-child(2){
	bottom: 280px;
	z-index: 2;
	margin-top:-280;
	animation: AA 5s infinite alternate;
}
@-webkit-keyframes AA{
	0%{filter: drop-shadow(2px 4px 5px white);}
	50%{filter: drop-shadow(2px 4px 60px white);}
	100%{filter: drop-shadow(2px 4px 5px white);}
}
.top-animate>img:nth-child(3){
	top: 280px;
	z-index: 7;
}
.top-animate>img:nth-child(4){
	top: 50px;
	z-index: 8;
}


/*選單*/       				
.menu-wraper{
	background: linear-gradient(to bottom, #131313 0%,#4c4c4c 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	border: 4px solid transparent;
	border-width: 4px 0 4px 0;
	border-image: linear-gradient(to right, rgb(176, 110, 10) 0%, rgb(251, 231, 160) 50%, rgb(176, 110, 10) 100%);
	border-image-slice: 1;
	}
#SHOWMENU{
	position: sticky;
	top: 0;
	z-index: 1010;
}
ul.maintabs{
	width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    padding-left: 0;}
ul.maintabs>li{
    text-align: center;
	width:calc(100% / 4);
	margin: auto ;
	transition: all 0.8s linear;
	line-height: 70px;
    font-size: 1.4rem;
    font-weight: bold;
	border-left:1px solid #493c3b ;
	}
ul.maintabs>li:last-child{
	border-right:1px solid #493c3b ;
}	
ul.maintabs>li:hover {
	color: #fdebb3;
	background-color: rgba(50, 29,10, .8);
}  	
ul.maintabs>li>a{
    display:block;
	color: white;
	transition: all 0.5s linear;
	letter-spacing: 1px;
}

ul.maintabs>li>a:before{
	content: "";
    display: inline-block;
    width: 24px;
    height: 31px;
    background-image: url(../images/tabs-icon.png);
    background-repeat: no-repeat;
    background-position: top;
    margin-right: 5px;
    margin-left: -10px;
    position: relative;
    top: 5px;
}
#PAGE1 ul.maintabs>li:nth-child(1)>a:before,
#PAGE2 ul.maintabs>li:nth-child(2)>a:before,
#PAGE3 ul.maintabs>li:nth-child(3)>a:before,
#PAGE4 ul.maintabs>li:nth-child(4)>a:before,
#PAGE5 ul.maintabs>li:nth-child(5)>a:before,
ul.maintabs>li:hover>a:before{
	background-position: bottom;
}
#PAGE1 ul.maintabs>li:nth-child(1),
#PAGE2 ul.maintabs>li:nth-child(2),
#PAGE3 ul.maintabs>li:nth-child(3),
#PAGE4 ul.maintabs>li:nth-child(4),
#PAGE5 ul.maintabs>li:nth-child(5){
	color: #fdebb3;
	background-color: rgba(50, 29,10, .8);
}
#PAGE1 ul.maintabs>li:nth-child(1)>a,
#PAGE2 ul.maintabs>li:nth-child(2)>a,
#PAGE3 ul.maintabs>li:nth-child(3)>a,
#PAGE4 ul.maintabs>li:nth-child(4)>a,
#PAGE5 ul.maintabs>li:nth-child(5)>a,
ul.maintabs>li>a:hover{
	color: #fdebb3;
	background-color: rgba(50, 29,10, .8);
}
/*次選單*/
#SECMENU{
	position: sticky;
	z-index: 1010;
	top: 70px;
}
.sec-menu>ol{
	display: flex;
    width: 1000px;
    margin: 0 auto;
    padding: 1rem 0;
    flex-wrap: nowrap;
    justify-content: center;
}
.sec-menu>ol>li{
	border: 3px solid #b06e0a;
	border-radius: 15px;
    background: linear-gradient(to bottom, #f8cf85 0%,#d49732 100%);
	margin:0 1rem;
	box-shadow: 3px 5px rgba(105, 53, 8, .6);
	border-radius: 15px;
	transition: all 0.5s linear;
}
.sec-menu>ol>li:hover,
.sec-menu>ol>li.active{
	background: linear-gradient(to bottom,#ffffff 0%,#f9deb7 100%);
	box-shadow: 1px 0px rgba(105, 53, 8, .6);
	transform: translateY(4px);
}
.sec-menu>ol>li>a{
	display: block;
    color: #572f0b;
    font-size: 1.46666rem;
    font-weight: 700;
    line-height: 40px;
    padding: 0 .75rem;
}

/*內容區*/
.contentwraper{
	width: 100%;
    height: auto;
    background: url(../images/content-bg.jpg) no-repeat center top;
    background-attachment: fixed;
    background-size: cover;
	}
.content{
	width: 1000px;
	margin: 0 auto;
	padding: 4rem 0 2rem 0;
}

/*內容標題*/
.titlebox{
	padding-bottom:1rem;}

h3.title{
	display: block;
	margin: 0 auto;
	width: 562px;
	height: 130px;
	background: url("../images/title01.png");
	text-indent: -9999px;
	background-position: center !important;
	background-repeat: no-repeat !important;}
h3.title2{background: url("../images/title02.png");}	
h3.title3{background: url("../images/title03.png");}
h3.title4{background: url("../images/title04.png");}
h3.title5{background: url("../images/title05.png");}

h4.bartitle{
	text-indent: -9999px;
	width: 100%;
	height: 51px;
	background: url("../images/bar1-1.jpg");
	background-repeat: no-repeat !important;
	background-position: center !important;
	margin-bottom: 1rem;
	background-size: cover !important;
}
h4.bartitle2{background: url("../images/bar1-2.jpg");}
h4.bartitle3{background: url("../images/bar1-3.jpg");}
h4.bartitle4{background: url("../images/bar1-4.jpg");}
h4.bartitle5{background: url("../images/bar1-5.jpg");}

h4.bartitle6{background: url("../images/bar2-1.jpg");}
h4.bartitle7{background: url("../images/bar2-2.jpg");}
h4.bartitle8{background: url("../images/bar2-3.jpg");}
h4.bartitle9{background: url("../images/bar2-4.jpg");}

h4.bartitle10{background: url("../images/bar3-1.jpg");}
h4.bartitle11{background: url("../images/bar3-2.jpg");}
h4.bartitle12{background: url("../images/bar3-3.jpg");}
h4.bartitle13{background: url("../images/bar3-4.jpg");}
h4.bartitle14{background: url("../images/bar3-5.jpg");}

h4.bartitle15{background: url("../images/bar4-1.jpg");}
h4.bartitle16{background: url("../images/bar4-2.jpg");}

h4.bartitle17{background: url("../images/bar5-1.jpg");}
h4.bartitle18{background: url("../images/bar5-2.jpg");}

/*促銷廣告*/
.sale-wraper{
    margin-top: 1.5rem;
    border: 2px solid #b06e0a;
    padding: 1rem;
	border-radius: 5px;
}
.sale-wraper >img{border: 1px solid #b06e0a;}

/*商品*/
.goodswraper{
	width: 100%;
    border: 2px solid #b06e0a;
    padding:4rem 1.5rem 1.5rem;
    margin-bottom: 1rem;
	border-radius: 5px;
}
.goodswraper2{
	background: white;
	border:unset;
	padding: 1.5rem;
	margin-top: 1.5rem;
	border-radius: 5px;
	
}
#BOX1,#BOX2,#BOX3,#BOX4,#BOX5{padding-top: 5rem;}
#BOX5{margin-bottom: 1rem;}
.goodsbox{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.goods-cover{
    padding:10px;
	background: linear-gradient(to bottom, rgb(176, 110, 10) 0%, rgb(251, 231, 160) 50%, rgb(176, 110, 10) 100%);
	position: relative;
}
.goods-cover:before,
.goods-cover:after{
	content: "";
    display: block;
    width: 30px;
    height: 30px;
    background: #b1710d;
    border-radius: 15px;
    z-index: 10;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.goods-cover:before{top:0;}
.goods-cover:after{bottom: 0;}

.goods-cover:nth-of-type(3n){
	margin-right: 0;
}
.goods{
	padding: 25px 10px 0px;
}
a.tours{display: block;}
a.tours>h2{
	font-size: 1.1rem;
    letter-spacing: 1px;
    color: #535353;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;/*行數*/
}
a.tours:hover>h2{
	color: rgb(102, 52, 21);
}
.pinner{
	text-align: right;}	
.price{
	font-size: 0.7rem;
    color: #c41919;
    font-weight: 800;
    display: inline-block;
}
.price>span{
	font-size:1.5rem;}

.date a{color:#81511c;}
.date a.more{
	color: #81511c;
	display: inline-block;
}	
.date a.more:hover{
	color: #553411;
	text-decoration: underline;
}
.goodsinner{
	padding: 1rem 0 .5rem;
}
span.start{
	display: inline-block;
    color: #81511c;
    margin-right: .5rem;
    font-size: .75rem;
}
.price:hover{color: rgb(133, 36, 36);}
.tagwraper{
	margin-bottom: .5rem;}
.tagwraper>span.tag{
	display: inline-block;
    font-size: 13px;
    color: #81511c;
    padding: .15rem;
    border: 1px solid #81511c;
    border-radius: 15px;
    margin-bottom: 5px;
}
.other{
	text-align: center;
	padding: .5rem 0;
}
.other>a{
	display: inline-block;
    line-height: 45px;
    width: 160px;
    background: #ce8a21;
    color: white;
    font-weight: 700;
    border-radius: 20px;
    font-size: 1.2rem;
    border: 2px solid #b06e0a;
}
.other>a:hover{
	background: #a07a11;
}
.other2>a{
    width: 300px;
    background: #3b5997;
    color: white;
    font-size: 1.4rem;
    border: 4px solid #303031;
	transition: all 0.3s linear;
	box-shadow: 2px 3px 0px #303031;
}
.other2>a:hover{
	box-shadow: 1px 1px 0px #303031 ;
	transform: translateY(2px);
}

/*補助攻略*/
.goodsbox2{padding: 1.5rem 0;}
.time{padding: 1.5rem;}
.time:after{
	content: "》";
    font-weight: 700;
    font-size: 32px;
    position: absolute;
    margin-top: 120px;
	margin-left: 10px;
    color: #ab7834;
}
.time:last-child::after{
	content: "";
}
.time>img,.receiv-img>img{max-width: 100%;}
h5.coupon-p{
	font-size: 1.2rem;
	font-weight: 700;
}
.receiv-img{text-align: center;}
.receive-box{
    border: 1px solid #e5be80;
    margin: 1rem 0;
}
h5.receiv-title{font-size: 1.6rem; font-weight: 700;}
h5.receiv-title2{margin-bottom: 1rem; text-align:center;}
.coupon-box{
	border: 1px solid #d8a555;
    margin-left: -1px;
    margin-top: -1px;
}
h5.coupon-title {
    display: block;
    background: #d8a555;
    padding: .5rem;
    color: white;
    font-weight: 700;
    text-align: center;
	font-size: 1.375rem;
	margin-bottom: 0;
	margin-top: -1px;}
h5.coupon-title2{
	background: #b28744;
}
h5.sale{font-weight: 700;color: #945f11;}
h5.sale,p.sale-p{text-align: center;margin-bottom: 0;margin-top: .5rem;}
p.sale-p{color: #81511c;}
.coupon-txt{padding: .5rem; color:#805615; font-weight: 700;}
.coupon-txt>h6{font-size: 1.2rem;font-weight: bold;}
.coupon-txt>p{margin-bottom: 0;}
.coupon-txt>p>span{font-size: 1.6rem;}

span.gifts-topic{font-size:1.4rem; font-weight: bold;}
.gifts-inner{margin-left: 1rem; margin-top: 2rem;}
span.fb-b{font-size: 1.2rem; font-weight: 700;}
.fb-img{text-align: center;}
.fb-img>img{width: 100%;}
/*.bank-box>a.bank-link>img{width: 100%;}*/
.bank-box{
	display: flex;
    flex-wrap: wrap;
    border: 1px solid #e5be80;;
    justify-content: center;
    align-items: center;
}
.area{
	width: 100%;
	padding: 1rem;
    border: 1px solid #e0a15a;
    /*border-radius: 10px;*/
	display: flex;
	flex-wrap: wrap;
}
a.hrc-goods{
	display: flex;
	border-bottom: 1px solid #e0a15a;
	transition: all 0.5s ease;
	flex-wrap: wrap;
	padding: 1rem;
	align-items: center;
}
a.hrc-goods:hover{background-color:#f1eae5;}
a.hrc-goods h2{
	color: #805615;
    font-size: 1.1rem;
    line-height: 1.7rem;
}
img.banklogo{width: 200px;height: auto;}

@media screen and (max-width:992px){
a.hotel-btn{display: none;}
a.mainbtn{
	display: block;
    width: 50px;
    height: 50px;
    background: url(../images/menu.png);
    background-size: contain;
    position: fixed;
    z-index: 1200;
    top: 45px;
    right: 5px;
    cursor: pointer;}
.wraper{}
#gotop{
	 right: 1rem;bottom: 1rem;}
.topicwraper{
	height:0;
	padding-bottom:63.8148%;
	background:url(../images/head_sp.jpg) no-repeat center;
	background-size:cover;}
.top-animate{display: none;}
/*選單*/	
nav#SHOWMENU{
	display:none;
	position: fixed;
    top: 35px;
    width: 100vw;
    height: 100vh;
    padding: 2rem;
    z-index: 1201;
    margin: 0;
    background: rgba(0,0,0,.85);}
.menu-wraper {
		background:unset;
		border: 0;
		border-width: unset;
		border-image: unset;
		border-image-slice: unset;
}
ul.maintabs {
	width: 100%;
	margin:0 auto;
	flex-wrap:wrap;
	margin-top: 4rem;}
ul.maintabs li{
	width: 100%;
    margin-bottom: 2rem;
    border-left: unset;
}
ul.maintabs li a{font-size: 1.4rem;}
#SECMENU{top: 45px;}
#BOX1, #BOX2, #BOX3, #BOX4, #BOX5 {padding-top: 3rem;}
.contentwraper{padding:0;}
.content{width:100%;padding:1rem;}
.time {padding: .5em 0;text-align: center;}
.time:after{display: none;}	
.sec-menu>ol{width: 100%;}

}


@media screen and (max-width:576px){
.time>img{width: 60%;}	
.receiv-img>img{width: 60%;}
#SECMENU{display: none;}
h3.title{
	margin: 0 auto;
	width: 100%;
	height: 0;
	padding-bottom:23%;
	background-size: cover;
}
#BOX1, #BOX2, #BOX3, #BOX4, #BOX5 {padding-top: 0;}
.goodswraper {
    padding: .5rem;}
a.hrc-goods{padding: 1rem 0;}
.fb-img>img {
    width: 60%;
}
img.banklogo{
	display: block;
    margin: 0 auto .5rem;
}
.bk-img>img{
	width: 100%;
}
.gifts-inner{margin-left: 0; padding: 10px;margin-top: 0;}
}