
html, body{  
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    background-color: #ffefd3;
    font-family: "Noto Sans TC", sans-serif;
    background-image: url(../images/contbg.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
}

a{
  text-decoration: none;
}
hr{
  margin: 5px auto;
}

/* gotop */
.gotop{
  width: 60px;
  height: 60px;
  border-radius: 360px;
  position: fixed;
  bottom: 1%;
  right: 1%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  background-color: #1e63af;
  transition: transform 0.3s ease;
  padding-top: 12px;
  z-index: 99;
}
.gotopLink{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #FFF;  
  transition: transform 0.3s ease;
}


.gotop:hover{
 transform: scale(1.1);
}

.gotop p{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #FFF;
}

@media(max-width:430px){
  .gotop{
  width: 45px;
  height: 45px;  
  padding-top: 12px;
  font-size: 0.8rem;
}
}



/* 第一區 HEADER */
/* .doubleHeader{
    height: 50px;
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: #ffffff;
} */

/* 倒數計時 */
.doubleHeaderTime {
    width: 35px;
    position: fixed;
    top: 50%;
    right: 1%;
    color: #ffffff;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    background: rgb(204, 16, 16);
    border: 2px solid #FFF;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    animation: float 3s ease-in-out infinite;
    padding: 10px 5px;
    z-index: 1;
    }

    #countdown {
      display: inline-block;
      font-size: 1rem;
      font-weight: bold;
      letter-spacing: 2px;
      animation: glow 1.5s ease-in-out infinite alternate;
    }

    @media(max-width:768px){
      #countdown{
        font-size: 0.9rem;
      }
    }

    @keyframes glow {
      from {
        text-shadow: 0 0 10px #fff, 0 0 20px #ffeb3b, 0 0 30px #ff9800;
      }
      to {
        text-shadow: 0 0 20px #fff, 0 0 30px #ffeb3b, 0 0 40px #ff9800;
      }
    }

    @keyframes float {
      0%, 100% {
        transform: translateY(0px);
      }
      50% {
        transform: translateY(-10px);
      }
    }

    footer {
      display: none;
      /* position: absolute;
      bottom: 20px; */
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.7);
    }

/* 第二區 BANNERNER */
.doubleBanner{
    width: 100%;
}
.doubleBanner img{
    width: 100%;
}
.mob-doubleBanner{
    width: 100%;
    display: none;
}
.mob-doubleBanner img{
    width: 100%;
}

@media(max-width:768px){
  .doubleBanner{
    display: none;
}
.mob-doubleBanner{
    display: block;
}
}


/* 第三區 選單 */
.doubleMenu {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0px;
  gap: 30px;
  margin-bottom: 30px;
  margin-top: -17px;
  background-color: #ff0a4b;
}
@media(max-width:768px){
  .doubleMenu {
    padding: 10px;
  }
}

.doubleButton {
  width: 25%;
  text-align: center;
  padding: 30px 20px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  /* transition: transform 0.3s; */
  position: relative;
}
@media(max-width:768px){
  .doubleButton {
    width: 100%;
    padding: 10px;
  }
}

.doubleButton:hover {
  transform: scale(1.05);
  z-index: 20;
}

.doubleButton img {
  width: 90%;
  height: 100%;  
  object-fit: cover;
  transition: transform 0.3s;
}

.doubleButton:hover img {
  transform: scale(1.03);
}

@media(max-width:768px){
  .doubleButton img{
    width: 100%;
  }
}

/* 子選單容器 */
.doubleMenu-2 {
  width: 100%;
  position: relative;
  justify-content: center;
  gap: 30px;
}

.doubleLink{
  text-align: center;
  padding-left: 50px;
  color: #FFF;
  font-size: 1.5rem;
  padding: 0px 30px;
  border-right: 2px #C20088 dashed;
}

@media(max-width:768px){
  .doubleLink{
    width: 30%;
    font-size: 1rem;
  }
}

/* 子按鈕基本樣式 */
.doubleButton-2, .doubleButton-3 {
  width: 100%;
  height: 100px;
  position: absolute; 
  top: 0px;
  left: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  opacity: 0;
  /* transform: translateY(-10px); */
  pointer-events: none;
  transition: all 0.4s ease;
  margin-top: -30px;
}

.doubleButton-2 {
  color: #ffffff;
  background: #ff6f61; 
}
.doubleButton-2 a:hover{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  color: #ff6f61;
  background: #fff; 
}
.doubleButton-3 {
  color: #FFF;
  background-color: #ff40c9;
}
.doubleButton-3 a{
  color: #FFF;
}
.doubleButton-3 a:hover{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  color: #ff40c9;
  background: #fff; 
}

/* 顯示狀態 */
.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

  /* 預設顯示 doubleButton-2 */
    .doubleButton-2.default-show {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

/* 第四區 商品區 */
.doubleCont{
  width: 100%;
  max-width: 1500px;
  margin: 200px auto;
  border-radius: 45px; 
}
@media(max-width:768px){
  .doubleCont{
    margin-top: 50px auto;
  }
}
/* 卡片特效 */
/* Hover 效果 */
.cardEffect {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
}
.cardEffect:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  filter: brightness(1.05);
}

.cardEffect:hover img {
  transform: scale(1.05);
}


/* 價格 */
.cardPrice{
  position: absolute;
  left: 0px;
  bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  align-items: baseline;
  padding: 0px 0px 10px 20px;
}
.priceTxt{
  color: #f9de83;
  font-size: 1rem;
  font-weight: bold;
}
.priceNum{
  color:#f9de83;
  font-size: 2rem;
  gap: 30px;
}
@media(max-width:1454px){
  .cardPrice{
  position:relative;
  padding: 0px;
  }
}
/* 點我看行程 */
.cardLink{
  position: absolute;
  right: 0px;
  bottom: 10px;
  width: 100%;
  color: #1c3d66;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: right;
  padding-right: 35px 0px !important;  
  margin: 0px;
}
.cardLink img{
  width: 150px;
}
@media(max-width:800px){
  .cardLink img{
    width: 130px;
  }
}

/* 雙11狂旅五星賞 */
.boxCont-1{
  background-color: #fe603e;
  border-radius: 45px;
}
.doubletittle-1{
  width: 100%;
  max-width: 1500px;
  height: 100%;
  border-radius: 45px;
}
.doubletittle-1 img{
  width: 100%;
  max-width: 1500px;
  height: 100%;
  border-radius: 45px;
}
.mobdoubletittle-1{
  display: none;
  width: 100%;
  height: 100%;
  border-radius: 45px;
}
.mobdoubletittle-1 img{
  width: 100%;
  height: 100%;
  border-radius: 45px;
}
@media(max-width:800px){
  .doubletittle-1{
    display: none;
  }
  .mobdoubletittle-1{
    display: block;
  }
}
.box1{
  width: 100%;
  max-width: 1500px;
  height: auto;
  /* border: 1px solid black; */
}
.card-1{
  position: relative;
  width: 30%;
  max-width: 500px;
  height: 500px;
  background: #cc4426;
  border-radius: 15px;
  border: 3px solid #fFF;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px 20px 60px 20px;
  margin: 60px auto;
  overflow: hidden;
}

@media(max-width:800px){
  .card-1{
    width: 80%;
    height: auto;
  }
}

/* 指定日期免小費 */
.box2{
  border:5px solid #0072c9;
  border-radius: 45px;
  background-color: #3facff;
  padding: 20px;
}



/* 標題 */
.doubletittle{
  width: 300px;
  margin-top: 475px;
  height: 100px;
  padding-top: 18px;
  font-size: 1.55rem;
  font-weight: bold;
  text-align: center;
  color: #FFF;
  border-radius: 60px 60px 0px 0px;
  background-color: #0072c9;
  margin: 0 auto;
}

.doubletittle img{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}

/* 卡片 */
.cardBox{
  width: 100%;
  max-width: 1500px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

@media(max-width:792px){
  .cardBox{
    display: block;
    justify-content: center;
    padding-bottom: 10px;
  }
}

.card-2{
  position: relative;
  width: 30%;
  max-width: 500px;
  height: 490px;
  background: #0b78cc;
  border-radius: 15px;
  border: 3px solid #fFF;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px 20px 60px 20px;
  margin: 60px auto;
  overflow: hidden;
}

@media(max-width:800px){
  .card-2{
    width: 90%;
    height: auto;
  }
}

/* 標籤 */
.cardLabel{
  position: absolute;
  top: 9%;
  left: 2%;
  z-index: 100;
}
.cardLabel p{
  position: absolute;
  top: 1%;
  left: 19%;
  color: #0b305f;
  font-size: 1.4rem;
  font-weight: 500;
  font-family: 'Gill Sans';
  text-shadow:  1px 1px #FFF;
  z-index: 100;
}
.cardLabel img{
  width: 100px;
}

@media(max-width:500px){
  .cardLabel img{
  width: 90px;  
}
.cardLabel p{
  position: absolute;
  top: 3%;
  left: 19%;
  font-size: 1.25rem;
}
}



.cardImg{
  width: 100%;
  border-radius: 10px;
}
.cardImg img{
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.cardBigtxt{
  color: #ffffff;
  text-align: center;
  font-size: 1.2rem;
  padding: 5px 0px;
}
.cardBigtxt-2{
  color: #fcefab;
  text-align: center;
  font-size: 1.2rem;
  padding: 5px 0px;
}

.cardSmailltxt{
  width: 100%;
  color: #ffffff;
  text-align: right;
  font-size: 1.1rem;
  word-wrap: break-word;
  padding: 5px 0px 5px 0px;
}
@media(max-width:1000px){
  .cardSmailltxt{  
  text-align: center;
}
}




/* 現折1111 */
.boxCont-3{
  background-color: #e83232;
  border-radius: 45px;
}
.doubletittle-3{
  width: 100%;
  max-width: 1500px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.doubletittle-3 img{
  width: 100%;
  max-width: 1500px;
  border-radius: 45px 45px 0px 0px;
  margin: auto;
}
.card-3{
  position: relative;
  width: 30%;
  max-width: 500px;
  height: 520px;
  background: #af2e11;
  border-radius: 15px;
  border: 3px solid #fFF;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px 20px 60px 20px;
  margin: 60px auto;
  overflow: hidden;
}

@media(max-width:800px){
  .card-3{
    width: 80%;
    height: auto;
  }
}


/* 第4-4區 送限定好禮 */
.doubletittle-4{
  width: 300px;
  margin-top: 475px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  font-weight: bold;
  color: #ffffff;
  border-radius: 60px 60px 0px 0px;
  background-color: #2175d1;
  margin: 0 auto;
}
.box4{
  border:5px solid #2175d1;
  border-radius: 45px;
  background-color: #fffef3;
  padding: 20px;
}
.card-4{
  position: relative;
  width: 30%;
  max-width: 500px;
  height: 490px;
  background: #2175d1;
  border-radius: 15px;
  border: 3px solid #015fc4;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px 20px 60px 20px;
  margin: 60px auto;
  overflow: hidden;
}

@media(max-width:800px){
  .card-4{
    width: 90%;
    height: auto;
  }
}


/* 第4-5區 雙11再抽五星酒店住宿 */
.doubletittle-5{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px auto;
}
.notice-5{
  max-width: 1400px;
  height: auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  border-radius: 45px;
  border: 5px solid #fd8710;
  background-color: #FFF;
  padding: 20px;
}
@media(max-width:792px){
  .notice-5{
    display: block;
    justify-content:left;
  }
}
.noticeTxt{
  width: 33%;
  padding: 20px;
}
@media(max-width:792px){
  .noticeTxt{
    width: 90%;
    padding: 10px;
  }
}
.noticeLine{
  width: 1px;
  height:auto;
  background-color: #CCC;
}
@media(max-width:792px){
  .noticeLine{
    display: none;
    justify-content:left;
  }
}

/* 活動注意事項 */
.doubletittle-6{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px auto;
}
.notice-6{
  max-width: 1400px;
  height: auto; 
  border-radius: 45px;
  border: 5px solid #fd8710;
  background-color: #FFF;
  padding: 20px 50px;
}
.TxtFlex{
  display: flex;
  align-items: center;
}
.noticeTxtFlex{
  padding: 10px;
}
.noticeTxtFlex img{
  width: 200px;
  padding-top: 45px;
}
@media(max-width:792px){
  .notice-6{
    display: block;
    justify-content:left;
  }
}
.noticeTxt-6{
  width: 100%;
}
@media(max-width:792px){
  .noticeTxt-6{
    width: 90%;
    padding: 10px;
  }
  .noticeTxt-6 p{
    margin: 0px;
  }
}
@media(max-width:768px){
  .notice-6{
    padding: 10px 20px;
  }
   .noticeTxt-6{
    width: 100%;
  }
  .TxtFlex{
    display: block;
    justify-content: center;
    align-items: center;
}
    .noticeTxtFlex{
      padding: 0px;
    }
    .noticeTxtFlex img{
      width: 120px;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 10px 0px 0px 0px;
      margin: auto;
    }
}