*{
	margin:0;
	padding:0;
	-webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

html,body{
	width:100%;
	background:url(img_bk.png);
	background-color:#3d0439;
}

#venice-travel{
	min-width:320px;
	max-width:1920px;
	margin:0 auto;
	background-color:#600b5c;
	position:relative;
	overflow: hidden;
}

/* ==================== 開場動畫 ==================== */

#loader-bg {
  	display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0px;
    left: 0px;
	background: url("img_open_bg.jpg") no-repeat left top;
	background-size: 100%;
	background-position: left top;
    background-color: #600b5c;
    z-index: 50;
}


#loader {
  	display: none;
  	position: fixed;
  	top: 30%;
  	left: 0;
	right: 0;
  	margin: 0 auto;
  	width: 50%;
  	text-align: center;
  	z-index: 55;
}

#loader p{
	color: #FFF;
	font-size: 30px;
	line-height: 40px;
	margin-bottom: 20px;
	overflow: hidden;
}

#loader p.main_title{
	font-size: 45px; 
	color: #fcd590;
}

#loader p span{
    animation: animateToRight 5s forwards;
    animation-fill-mode: backwards;
  }
  @keyframes animateToRight {
    0% {
	  opacity: 0;
      transform: translateX(300px);
    }
    90%, 100% {
      opacity: 1;
      transform: translateX(0);
    }

  }

.loaded {
  opacity: 0;
  visibility: hidden;
}



/* ==================== 逐漸出現動畫效果 ==================== */

.fadein {
  opacity : 0;
  transform: translateY(20px);
  transition: all 1s;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/*==================================== 主視覺 ====================================*/ 

#venice-travel .main_top{
	width: 100%;
	height: 0;
	padding-bottom: 82%;
	background: url("img_top_mainbg.jpg") no-repeat left top;
	background-color: #600b5c;
	background-size: 100%;
	background-position: left top;
	position: relative;
	
	animation:backopen 3s 1;
	-moz-animation:backopen 3s 1;
	-webkit-animation:backopen 3s 1;
	
}

@keyframes backopen{
	from{filter: opacity(0);}
	to{filter: opacity(1);}
}

#venice-travel .dec_top_screen{
	width: 100%;
	height: 0;
	padding-bottom: 54.6875%;
	background: url("img_dec_top_screen.png") no-repeat left top;
	background-size: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
}

#venice-travel .top_content{
	width: 100%;
	height: 0;
	padding-bottom: 52%;
	position: relative;
}

#venice-travel .dec_r_01{
	width: 14.6%;
	height: 0;
	padding-bottom: 18.25%;
	background: url("img_dec_r_01.png") no-repeat left top;
	background-size: 100%;
	position: absolute;
	top: 5vw;
	right: 3vw;
	z-index: 25;
}

#venice-travel .dec_l_01{
	width: 13.021%;
	height: 0;
	padding-bottom: 18.75024%;
	background: url("img_dec_l_01.png") no-repeat left top;
	background-size: 100%;
	position: absolute;
	bottom: -6.5vw;
	left: 2vw;
	z-index: 25;
}


#venice-travel h1.heading{
	width: 37.5%;
	height: 0;
	padding-bottom: 29.16667%;
	text-indent: -9999px;
	background: url("img_maintitle.png") no-repeat left top;
	background-size: 100%;
	position: absolute;
	top: 3.6vw;
	left: 11.5%;
	z-index: 20;
	
}

#venice-travel .slider_container{
	width:100%;
	height:auto;
	position:relative;
	
	opacity:0;
	
	animation-name:toppic;
	animation-fill-mode:forwards;
	animation-duration:5s;
}

@keyframes toppic{
		
    from{
		opacity:0;
    }
    to{ 
		opacity:1;
    }
	
	
}

#venice-travel .slider_container div { /* -- 圖片輪播部分 -- */
	width:80%;
	height: auto;
	overflow:hidden;
	border-radius: 3vw;
	border:#f3c473 8px solid;
	
	/*border: 10px solid transparent;
	-moz-border-image: -moz-linear-gradient(top left, #b98f3c 0%, #ffcf80 100%);
	-webkit-border-image: -webkit-linear-gradient(top left, #b98f3c 0%, #ffcf80 100%);
	border-image: linear-gradient(to bottom right, #b98f3c 0%, #ffcf80 100%);*/ /* CSS3 邊框圖片 border-image 無法對應圓角 */
	/*border-image-slice: 1;*//* 邊框圖片分割 */
	
    position: absolute;
    top: 11vw;
    left: 0;
	right: 0;
	margin: 0 10%;
    opacity: 0;
    filter: alpha(opacity=0);
	
	-webkit-animation: round 20s linear infinite;
            animation: round 20s linear infinite;
}



@-webkit-keyframes round { /* 100%/20s=5%/1s */
    5% {
        opacity: 1;
        filter: alpha(opacity=100);
        /* 0 - 1秒 淡入*/
    }
    25% {
        opacity: 1;
        filter: alpha(opacity=100);
        /* 1- 5秒靜止*/
    }
    30% {
        opacity: 0;
        filter: alpha(opacity=0);
        /* 5-6秒淡出*/
    }
}
@keyframes round {
    5% {
        opacity: 1;
        filter: alpha(opacity=100);
        /* 0 - 1秒 淡入*/
    }
    25% {
        opacity: 1;
        filter: alpha(opacity=100);
        /* 1- 5秒靜止*/
    }
    30% {
        opacity: 0;
        filter: alpha(opacity=0);
        /* 5-6秒淡出*/
    }
}

#venice-travel .slider_container div:nth-child(1) {
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
}

#venice-travel .slider_container div:nth-child(2) {
    -webkit-animation-delay: 5s;
            animation-delay: 5s;
}

#venice-travel .slider_container div:nth-child(3) {
    -webkit-animation-delay: 10s;
            animation-delay: 10s;
}

#venice-travel .slider_container div:nth-child(4) {
    -webkit-animation-delay: 15s;
            animation-delay: 15s;
}


#venice-travel .slider_container div img{
	width:100%;
	height:auto;
    display: block;
}

 
#venice-travel .slider_container-mobile{ /* 手機圖片輪播 */
	display:none;
}

#venice-travel .intro_content{
	width: 100%;
	margin: 0 auto;
	position: relative;
}

#venice-travel .dec_l_02{
	width: 32.2917%;
	height: 0;
	padding-bottom: 27.0834%;
	background: url("img_dec_l_02.png") no-repeat left top;
	background-size: 100%;
	position: absolute;
	bottom:0;
	left: 0;
}

#venice-travel .dec_r_02{
	width: 33.8542%;
	height: 0;
	padding-bottom: 26.562526%;
	background: url("img_dec_r_02.png") no-repeat left top;
	background-size: 100%;
	position: absolute;
	bottom:5vw;
	right: 0;
}

#venice-travel .intro_txt{
	width: 27.0833333%;
	text-align: center;
	margin: 30px auto;
}

#venice-travel .intro_txt span{
	display: block;
	width: 100%;
	height: 0;
	padding-bottom: 15.0962%;
	text-indent: -9999px;
}

#venice-travel .intro_txt span:nth-child(1){
	background:url("img_lead_01.png") no-repeat left top;
	background-size: 100%;
}

#venice-travel .intro_txt span:nth-child(2){
	background:url("img_lead_02.png") no-repeat left top;
	background-size: 100%;
}

#venice-travel .intro_txt span:nth-child(3){
	background:url("img_lead_03.png") no-repeat left top;
	background-size: 100%;
}

#venice-travel .intro_txt span:nth-child(4){
	background:url("img_lead_04.png") no-repeat left top;
	background-size: 100%;
}

#venice-travel .intro_txt span:nth-child(5){
	background:url("img_lead_05.png") no-repeat left top;
	background-size: 100%;
}

#venice-travel .intro_txt span:last-child{
	padding-bottom: 36.0577%;
	background: url("img_lead_06.png") no-repeat left top;
	background-size: 100%;
}

#venice-travel .intro_txt img{
	width: 100%;
	height: auto;
	display: block;
}

#venice-travel .venice_area{
	width: 100%;
	padding-top: 9vw;
	background: url("img_qa_bg.jpg") no-repeat left top;
	background-size: 100%;
	background-color: #3b0539;
	position: relative;
	
}

#venice-travel .dec_l_03{
	width: 16.667%;
	height: 0;
	padding-bottom: 21.879375%;
	background: url("img_dec_l_03.png") no-repeat left top;
	background-size: 100%;
	position: absolute;
	top:0;
	left: 0;
}

#venice-travel .dec_r_03{
	width: 16.667%;
	height: 0;
	padding-bottom: 21.879375%;
	background: url("img_dec_r_03.png") no-repeat left top;
	background-size: 100%;
	position: absolute;
	top:0;
	right: 0;
}

#venice-travel .venice_area h2{
	width: 38.5416667%;
	height: 0;
	padding-bottom: 13.021%;
	background: url("img_tt_01.png") no-repeat left top;
	background-size: 100%;
	text-indent: -9999px;
	margin: 0 auto 5.2vw;
}

#venice-travel .question_contenct{
	width: 62.5%;
	margin: 0 auto;
}

#venice-travel .question_contenct .card{
	display:inline-block;
	vertical-align:top;
	width: 46%;
	margin-right: 8%;
	margin-bottom: 30px;
	position:relative;
	cursor: pointer;
}

#venice-travel .question_contenct .card:nth-child(even){
	margin-right: 0;
}

#venice-travel .question_contenct .card span{
	display: none;
}

#venice-travel .question_contenct .card:hover span{
	display:block;
	position: absolute;
    top: 0
}

#venice-travel .question_contenct .card img{
	width: 100%;
	height: auto;
	display: block;
}

#venice-travel .question_contenct .lat-animate{ 
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-fill-mode: both;
	-webkit-animation-fill-mode: both;
}

#venice-travel .question_contenct .flip{
    backface-visibility: visible!important; /*當元素旋轉時，該元素是有用的，可以決定是否能夠看到元素的背面。*/
	 -webkit-backface-visibility: visible!important;
    animation-name: latflip;
	 -webkit-animation-name: latflip;
}


@keyframes latflip{
0% {
	transform: perspective(800px) rotate3d(0,1,0,90deg); /*--CSS transform-3D的透視 --*/
    -webkit-transform: perspective(800px) rotate3d(0,1,0,90deg);
	animation-timing-function: ease-in;
    -webkit-animation-timing-function: ease-in;
    opacity: 0;
}

40% {
	transform: perspective(1000px) rotate3d(0,1,0,-20deg);
    -webkit-transform: perspective(1000px) rotate3d(0,1,0,-50deg);
	animation-timing-function: ease-in;
    -webkit-animation-timing-function: ease-in;   
}

60% {
	transform: perspective(1000px) rotate3d(0,1,0,10deg);
    -webkit-transform: perspective(1000px) rotate3d(0,1,0,20deg);
    opacity: 1;
}

80% {
	transform: perspective(1000px) rotate3d(0,1,0,-5deg);
    -webkit-transform: perspective(1000px) rotate3d(0,1,0,-10deg); 
}
100% {
	transform: perspective(1000px);
    -webkit-transform: perspective(1000px);
   
}

}

#venice-travel .mask_area{
	width: 100%;
	padding-top: 6.6vw;
	background: url("img_mask_bg.jpg") no-repeat left top;
	background-size: 100%;
	background-color: #21001f;
	position: relative;
}

#venice-travel .mask_area h3{
	width: 66.67%;
	height: 0;
	padding-bottom: 20.834375%;
	text-indent: -9999px;
	background: url("img_tt_mask.png") no-repeat left top;
	background-size: 100%;
	margin: 0 auto 30px;
	
}

#venice-travel .dec_l_04{
	width: 15%;
	height: 0;
	padding-bottom: 20.3125%;
	background: url("img_dec_l_04.png") no-repeat left top;
	background-size: 100%;
	position: absolute;
	top:0;
	left: 0;
}

#venice-travel .dec_r_04{
	width: 15%;
	height: 0;
	padding-bottom: 20.3125%;
	background: url("img_dec_r_04.png") no-repeat left top;
	background-size: 100%;
	position: absolute;
	top:0;
	right: 0;
}

#venice-travel .smooth{
	width: 100%;
}

#venice-travel .smooth figure{
    margin: 0 10px;
	display:inline-block;
	vertical-align:top;
        
}
        
#venice-travel .smooth figure img{
    width: 100%;
    height:auto;
    margin-bottom: 20px;
    border-radius: 20px;
	border:#f3c473 5px solid;
        
}


#venice-travel .tour_area{
	width: 100%;
	background: url("img_tour_bg.jpg") no-repeat left top;
	background-size: 100%;
	background-color: #600b5c;
	padding-top: 1.5625vw;
	padding-bottom: 30px;
}

#venice-travel .tour_area h2{
	width: 38.5416667%;
	height: 0;
	padding-bottom: 13.021%;
	background: url("img_tt_02.png") no-repeat left top;
	background-size: 100%;
	text-indent: -9999px;
	margin: 0 auto 100px; 
}

#venice-travel .italy_tours{
	width: 57.29166667%;
	margin: 0 auto 50px;
	
}

#venice-travel .italy_tours a{
	display: block;
	width: 100%;
	height: 0;
	padding-bottom: 40.909091%;
	text-indent: -9999px;
	background:url("img_banner_tour.jpg") no-repeat left top;
	background-size: 100%;
	border-radius: 30px;
    box-shadow: 5px 8px 0 rgb(51 51 51 / 30%);
    transition: all .4s ease;
}

#venice-travel .italy_tours a:hover{
	box-shadow: 5px 8px 0 rgb(255 255 255 / 80%);
    transform: translateY(5%);
}
	

#venice-travel .tour_content{
	width: 62.5%;
	margin: 0 auto;
}

#venice-travel a.tour-box{
	display: inline-block;
	vertical-align: top;
	text-align: center;
	width: 30%;
	margin: 0 1.6%;
	background-color: #fbebd0;
	box-shadow: 0px 6px 0 rgb(71 7 0 / 60%);

}

#venice-travel a.tour-box:hover{
	margin-top: -15px;
    transition: margin-top 1s;
    -webkit-transition: margin-top 1s;
    -moz-transition: margin-top 1s;
}

    
#venice-travel a.tour-box img{
	width: 100%;
	height: auto;
	display: block;
}

#venice-travel a.tour-box .tour_txt{
	width: 100%;
	padding: 15px;
	text-align: left;
	
}

#venice-travel a.tour-box .tour_txt h4{
	font-size: 1.5625vw;
	font-weight: 500;
	color: #000;
	-webkit-text-stroke: 1px #000;
	margin-bottom: 10px;
	letter-spacing: 1px;
	
}

#venice-travel a.tour-box .tour_txt p{
	font-size: 0.8333vw;
	line-height: 2vw;
	color: #222;
	text-align: justify;
}

#venice-travel a.tour-box .price{
	width: 100%;
	margin-bottom: 10px;
	text-align: right;
}

#venice-travel a.tour-box .price span{
	display:inline-block;
	vertical-align:middle;
	padding:2px;
	border:#666 1px solid;
	font-size:0.85vw;
	margin-right:10px;
	color: #222;
}

#venice-travel a.tour-box .price .money{
	display:inline-block;
	vertical-align:middle;
	font-size:2vw;
	font-family:Arial, Helvetica, sans-serif;
	font-weight:600;
	color:#ff0000;
}

#venice-travel a.tour-box .price .money span{
	border:none;
	color:#222;
	font-weight: 300;
}

#venice-travel .more_to{
	width: 40%;
	margin: 60px auto 30px;
	text-align: center;
}

#venice-travel .more_to a{
	display: block;
	width: 100%;
	height: 4.167vw;
	color: #FFF;
	font-size: 1.6vw;
	line-height: 4.167vw;
	background-color: #ff6b3e;
	border-radius: 2.08vw;
	transition:all 0.3s;
    position:relative;
	z-index:2;
}

#venice-travel .more_to a:hover,
#venice-travel .more_to a:active{
	color:#FFF;
}

#venice-travel .more_to a:after{
	width:0%;
    height:100%;
    border-radius:40px;
    background-color:#d33831;
    content:"";
    position:absolute;
    top:0;
    left:0;
    transition:all 0.3s;
    z-index:-1;
}

#venice-travel .more_to a:hover:after,
#venice-travel .more_to a:active:after{
	border:3px solid #d33831;
    width:100%;
}

#venice-travel .more_to a span{
	margin-left: 5px;
}



#venice-travel .page_footer{
	clear: both;
	width: 100%;
	height: 0;
	padding-bottom: 58%;
	background: url("img_footer_bg.jpg") no-repeat left top;
	background-size: 100%;
	background-position: left bottom;
	background-color: #600b5c;
	position: relative;
}

/*#venice-travel .page_footer p{
	width: 100%;
	height: 3.125vw;
	text-align: center;
	color:#fff;
	font-size: 1.1vw;
	line-height: 3.125vw;
	background-color: #ff6b3e;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 2;*/
	
}


/* ==== 增加電商廣告20221202 ====*/


#venice-travel .event_banner{
	width: 100%;
	margin: 50px auto;
}

#venice-travel .event_banner a{
	display: block;
	max-width:800px;
	margin:0 auto;
}


#venice-travel .ad_content{
	margin:0 auto;
	width: 100%;
}

#venice-travel .ad_content p{
	font-size: 30px;
	font-weight: 600;
	color: #000;
	margin: 20px auto;
	background-color: #fef102;
	padding: 10px;
} 

#venice-travel .ad_content img{
	width: 100%;
	height: auto;
	display: block;
}


/*----------------------RWD變換-----------------------------*/
@media screen and (max-width: 1280px){
	
	#venice-travel .main_top{
		padding-bottom: 90%;
	}
	
	#venice-travel .tour_content {
		width: 80%;
		margin: 0 auto;
	}
	
	
	#venice-travel .intro_txt {
		width: 32%;
	}
	
	#venice-travel .venice_area h2{
		margin: 0 auto 50px;
	}
}


@media screen and (max-width: 1024px){
	
	#venice-travel .main_top {
    	width: 100%;
    	height: 0;
		padding-bottom: 86%;
	}
	
	#venice-travel .tour_area h2{
		margin: 0 auto 50px;
	}
	
	#venice-travel a.tour-box .tour_txt p{
		font-size: 13px;
		line-height: 20px;
	}
	
	#venice-travel a.tour-box .tour_txt h4{
		font-size: 18px;
	}
	
	#venice-travel a.tour-box .price .money{
		font-size: 24px;
	}
	
	#venice-travel a.tour-box .price span{
		font-size: 13px;
		padding: 1px 3px;
	}
	
	#venice-travel .more_to a{
		font-size: 18px;
		height: 60px;
		line-height: 60px;
		border-radius: 30px;
	}
	
	
}

@media screen and (max-width: 768px){
	
	#venice-travel .main_top{
		padding-bottom: 92%;
	}
	
	#venice-travel .slider_container div{
		border: #f3c473 5px solid;
	}
	
	#venice-travel .dec_l_02{
		left: -3%;
	}
	
	#venice-travel .dec_r_02{
		right: -3%;	
	}
	
	#venice-travel .intro_txt {
		width: 36%;
	}
	
	#venice-travel .venice_area h2 {
		margin: 0 auto 20px;
	}
	
	#venice-travel .question_contenct{
		width: 75%;
	}
	
	#venice-travel .mask_area h3 {
		margin:  0 auto 10px;
	}
	
	#venice-travel .more_to{
		margin: 30px auto;
	}
	
	#venice-travel .italy_tours {
		width: 70%;
	}
	
	#venice-travel .tour_content {
		width: 90%;
		margin: 0 auto;
	}
	
	#venice-travel a.tour-box{
       box-shadow: 0px 3px 0 rgb(71 7 0 / 60%);
	}
	
	#venice-travel .more_to a{
		height: 50px;
		line-height: 50px;
		border-radius: 25px;
		font-size: 16px;
	}
	
	#venice-travel .page_footer p{
		height: 30px;
		line-height: 30px;
		font-size: 13px;
	}
	
	/* ==== 增加電商廣告20221202 ====*/

	#venice-travel .event_banner a{
		display: block;
		width: 80%;
		margin:0 auto;
	}


	#venice-travel .ad_content p{
		font-size: 24px;
		line-height: 30px;
	} 



}

@media screen and (max-width: 600px){
	
	#loader{
		width: 80%;
	}
	
	#loader p{
		font-size: 18px;
		line-height: 36px;
		margin-bottom: 5px;
	}

	#loader p.main_title{
		font-size: 28px; 
	}
	
	#venice-travel .main_top {
		padding-bottom: 210%;
	}
	
	#venice-travel .top_content{
		padding-bottom: 125%;
	}
	
	#venice-travel .dec_top_screen{
		width: 100%;
		height: 0;
		padding-bottom: 125%;
		background: url("img_dec_top_screen_m.png") no-repeat left top;
		background-size: 100%;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 10;
	}
	
	#venice-travel .dec_r_01 {
		width: 22.5%;
		height: 0;
		padding-bottom: 30%;
		right: 0;
	}
	
	#venice-travel .dec_l_01 {
    	width: 20%;
    	height: 0;
		padding-bottom: 29%;
		left: 0;
	}
	
	#venice-travel h1.heading {
		width: 65%;
		height: 0;
		padding-bottom: 52%;
		position: absolute;
		top: 12vw;
		left: 15%;
		z-index: 20;
	}
	
	
	#venice-travel .slider_container{ /* 手機圖片輪播 */
		display:none;
	}


	#venice-travel .slider_container-mobile{
		display: block;
		width:100%;
		height:auto;
		position:relative;

		opacity:0;

		animation-name:toppic;
		animation-fill-mode:forwards;
		animation-duration:5s;
	}

	@keyframes toppic{

		from{
			opacity:0;
		}
		to{ 
			opacity:1;
		}


	}

	#venice-travel .slider_container-mobile div { /* -- 圖片輪播部分 -- */
		width:80%;
		height: auto;
		overflow:hidden;
		border-radius: 3vw;
		border:#f3c473 3px solid;
		position: absolute;
		top: 120px;
		left: 0;
		right: 0;
		margin: 0 10%;
		opacity: 0;
		filter: alpha(opacity=0);

		-webkit-animation: round 20s linear infinite;
				animation: round 20s linear infinite;
	}



	@-webkit-keyframes round { /* 100%/20s=5%/1s */
		5% {
			opacity: 1;
			filter: alpha(opacity=100);
			/* 0 - 1秒 淡入*/
		}
		25% {
			opacity: 1;
			filter: alpha(opacity=100);
			/* 1- 5秒靜止*/
		}
		30% {
			opacity: 0;
			filter: alpha(opacity=0);
			/* 5-6秒淡出*/
		}
	}
	@keyframes round {
		5% {
			opacity: 1;
			filter: alpha(opacity=100);
			/* 0 - 1秒 淡入*/
		}
		25% {
			opacity: 1;
			filter: alpha(opacity=100);
			/* 1- 5秒靜止*/
		}
		30% {
			opacity: 0;
			filter: alpha(opacity=0);
			/* 5-6秒淡出*/
		}
	}

	#venice-travel .slider_container-mobile div:nth-child(1) {
		-webkit-animation-delay: 0s;
				animation-delay: 0s;
	}

	#venice-travel .slider_container-mobile div:nth-child(2) {
		-webkit-animation-delay: 5s;
				animation-delay: 5s;
	}

	#venice-travel .slider_container-mobile div:nth-child(3) {
		-webkit-animation-delay: 10s;
				animation-delay: 10s;
	}

	#venice-travel .slider_container-mobile div:nth-child(4) {
		-webkit-animation-delay: 15s;
				animation-delay: 15s;
	}


	#venice-travel .slider_container-mobile div img{
		width:100%;
		height:auto;
        display: block;
	}
	
	#venice-travel .intro_txt {
		width: 70%;
	}
	
	#venice-travel .dec_l_02,
	#venice-travel .dec_r_02,
	#venice-travel .dec_l_04,
	#venice-travel .dec_r_04{
		display: none;
	}
	
	#venice-travel .venice_area h2,
	#venice-travel .tour_area h2{
		width: 60%;
		height: 0;
		padding-bottom: 24%;
		margin: 0 auto 10px;
	}
	
	#venice-travel .venice_area{
		background: url(img_qa_bg.jpg) no-repeat left top,
			        url(img_qa_bg02.jpg) repeat-y left top;
    	background-size: 100%, 100%;
    	background-color: #fbebd0;
	}
    
    #venice-travel .dec_r_03 {
        width: 25%;
        height: 0;
        padding-bottom: 18%;
    }
    
    #venice-travel .dec_l_03 {
        width: 24%;
        height: 0;
        padding-bottom: 18%;
    }
	
	#venice-travel .question_contenct {
		width: 100%;
		text-align: center;
	}
	
	#venice-travel .question_contenct .card{
		width: 70%;
		margin: 0 auto 30px;
	}
	
	#venice-travel .mask_area h3 {
    	width: 90%;
    	height: 0;
		padding-bottom: 28%;
		margin: 0 auto 10px;
	}
	
	#venice-travel .tour_area{
		padding-top:0;
	}
	
	#venice-travel .italy_tours {
		width: 90%;
	}

	#venice-travel .italy_tours a{
		border-radius: 10px;
    	box-shadow: 3px 5px 0 rgb(51 51 51 / 30%);
	}
	
	#venice-travel .italy_tours a:hover {
   		box-shadow: 3px 5px 0 rgb(255 255 255 / 80%);
		transform: translateY(3%);
	}
	
	#venice-travel .tour_content{
		width: 100%;
	}
	
	#venice-travel a.tour-box {
		display: block;
		width: 70%;
		margin: 10px auto 30px;
	}
	
	#venice-travel a.tour-box .tour_txt h4 {
		font-size: 20px;
		-webkit-text-stroke: 0px #000;
		font-weight: 600;
	}
	
	#venice-travel a.tour-box .tour_txt p {
    	font-size: 13px;
		line-height: 20px;
	}
	
	#venice-travel a.tour-box .price .money{
		font-size: 30px;
	}
	
	#venice-travel .more_to {
		width: 80%;
	}
	
	#venice-travel .page_footer{
		padding-bottom: 95%;
		background-size: 150%;
	}
	
	/* ==== 增加電商廣告20221202 ====*/

	#venice-travel .ad_content p{
		font-size: 18px;
		line-height: 30px;
	} 


}


@media screen and (max-width: 320px){
	
	#venice-travel .top_content {
		padding-bottom: 120%;
	}
	
	
}









