/* 當你想為某一個區塊或方塊，增加背景，請在該區塊/方塊上增加class名稱
例如：

在HTML裡：
<div class="abc">我要增加背景</div> 

在css裡：
.abc{
    background-image: url(../images/body_bg.webp);  <------圖檔位置
    background-position: center; <-----圖片在區塊/方塊裡的定位
    background-size: cover;  <-----圖片在區塊/方塊裡的大小
}

 */

/* 補充 
    學習資料
    https://ithelp.ithome.com.tw/articles/10223887
    https://ithelp.ithome.com.tw/articles/10224214
*/

/* 全站背景 */
body {
  background-image: linear-gradient(to bottom, #375444 0%, #425b48 100%);
  background-position: center;
  background-size: 2400px;
}

main {
  position: relative;
  /* background-image: linear-gradient(to bottom, #375444 0%, #425b48 100%); */
  background-image: url("../images/bgmain.png");
  background-size: 2400px;
  background-repeat: no-repeat;
  overflow: hidden;
  background-position: top center;
}

.bgRepeat {
  background-image: url("../images/bgrepeat.png");
  background-size: 2300px;
  background-repeat: repeat;
  overflow: hidden;
  background-position: top center;
}

@media (max-width: 1199px) {
  main {
    background-size: 2300px;
  }
  .bgRepeat {
    background-size: 2000px;
  }
}

@media (max-width: 991px) {
  main {
    background-size: 1900px;
  }
  .bgRepeat {
    background-size: 1800px;
  }
}

@media (max-width: 767px) {
  body {
    background-image: linear-gradient(to bottom, #375444 0%, #425b48 100%);
    background-position: center;
    background-size: 100vw;
  }
  
  main {
    position: relative;
    /* background-image: linear-gradient(to bottom, #375444 0%, #425b48 100%); */
    background-image: url("../images/bgmain-mb.png");
    background-size: 100vw;
    background-repeat: no-repeat;
    overflow: hidden;
    background-position: top center;
  }

  .bgRepeat {
    background: url("../images/bgrepeat-mb.png");
    background-position: top center;
    background-size: 110vw;
    background-repeat: repeat;
    overflow: hidden;
  }
}

#kvTopBN2 {
  position: relative;
  /* background: url("../images/bgtop.jpg"); */
  background-position: center top;
}

#kvTopBN2 .kvtt {
  animation: floatShine 2s ease-in-out -1s infinite both alternate;
}

@keyframes floatShine {
  0% {transform: translateY(-1%); filter: brightness(1.25);}
  25% {filter: brightness(1.08);}
  60% {filter: brightness(1.15);}

  100% {transform: translateY(-5%); filter: brightness(1);}
}

@media (max-width: 767px) {
  @keyframes floatShine {
    0% {transform: translateY(3%); filter: brightness(1.25);}
    25% {filter: brightness(1.08);}
    60% {filter: brightness(1.15);}
  
    100% {transform: translateY(-1%); filter: brightness(1);}
  }
}

#kvTopBN2 .kvslides {
  position: absolute;
  width: 100%;
  overflow: hidden;
  top: 0;
}

@media (max-width: 767px) {
  #kvTopBN2 .kvslides {
    position: absolute;
    text-align: center;
    width: 100%;
    overflow: hidden;
    top: 40%;
  }
}

.shineWord {
  position: absolute;
  text-align: center;
  top: 0;
  left: 0;
  right: 0;
  background: none 0% 0% / auto repeat scroll padding-box border-box
    rgba(0, 0, 0, 0);
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
  -webkit-filter: brightness(1.5);
  filter: brightness(1.5);
  -webkit-mask-size: 500% 400%;
  mask-size: 500% 400%;
  -webkit-mask-image: -webkit-linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 1) 50%,
    rgba(255, 255, 255, 0) 60%
  );
  mask-image: -webkit-linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 1) 50%,
    rgba(255, 255, 255, 0) 60%
  );
  transition: -webkit-mask-position;
  transition-duration: 3s;
  transform: translate3d(0, 0, 0);
  -webkit-animation: move 2s linear infinite;
  animation: move 2s linear infinite;
}

@-webkit-keyframes move {
  from {
    -webkit-mask-position: 150% 0px;
    mask-position: 150% 0px;
  }
  to {
    -webkit-mask-position: 0% 0px;
    mask-position: 0% 0px;
  }
}

@keyframes move {
  from {
    -webkit-mask-position: 150% 0px;
    mask-position: 150% 0px;
  }
  to {
    -webkit-mask-position: 0% 0px;
    mask-position: 0% 0px;
  }
}

/* 按鈕顏色 */
.btnset a {
  color: #057b53;
  border: 3px solid #ffb400;
  background-color: #fff;
  box-shadow: 0px 7px #ae4e00;
  line-height: 1.2;
} /*來去逛逛*/

.btnset a:hover {
  /*    color: rgb(44, 40, 1);*/
  color: #fff;
  border: 3px solid #ffb400;
  background-color: #ca141d;
  box-shadow: 0px 5px #ae4e00;
} /*來去逛逛滑鼠移入*/

@media (max-width: 991px) {
  .btnset {
    font-size: 14px;
  }
}

@media (max-width: 425px) {
  .btnset {
    font-size: 12px;
  }
}

.nocarslideinnBox01 {
  background-color: #084b7d;
  padding: 10px;
}

/* 原價特價折疊控制 打開變1列 關掉變2列 */
.productSetprice .priceBox {
  flex-direction: row !important;
}

/* logo區圖片大小控制 */
.logooutbox .logoinn {
  flex-basis: 11%;
}

/* 其他東西自己寫這↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ */

.squarepppinfoinn-box.pppinfobox {
  background: #075f9e;
  text-decoration: none;
  color: #fff;
}

/* 斷點區 */

@media screen and (max-width: 1659px) {
}
@media screen and (max-width: 1399px) {
}
@media screen and (max-width: 1199px) {
}

@media screen and (max-width: 991px) {
}

@media screen and (max-width: 767px) {
  .actablebox {
    font-size: 14px;
  }
  .actablebox th.table-title {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 640px) {
  .logooutbox .logoinn {
    flex-basis: 24%;
  }
}

@media screen and (max-width: 480px) {
}

/* 特效 */
/* 硬幣飛 */
.flyCoins {
  z-index: 9;
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: repeat-y;
  background-position: center top;
  background-size: 1450px;
  background-image: url(../images/coins.png);
}

.flyLeft {
  z-index: 9;
  position: fixed;
  pointer-events: none;
  width: 25vw;
  top: 58vh;
  left: -10vw;
}

.flyRight {
  z-index: 9;
  position: fixed;
  pointer-events: none;
  width: 25vw;
  top: 20vh;
  right: -10vw;
}

@media (max-width: 767px) {
  .flyCoins {
    z-index: 9;
    background: unset;
  }
}

/* 滑鼠視差 */
.mouseParallax {
  position: fixed;
  width: 100vw;
  height: 100vh;
  bottom: -50vh;
  left: 0;
  background: #7f7f7f29;
}

.cloud {
  position: absolute;
  top: 0;
  bottom: 0;
  width: auto;
  height: auto;
  z-index: 999;
  opacity: 0.8;
}

/* FTP */
/* 海陸套組懶人包 */
#sectionfoodset {
  margin-top: -40px;
}

#sectionfoodset .title {
  margin-bottom: -50px;
}

@media (max-width: 767px) {
  #sectionfoodset {
    margin-top: -20px;
  }
}

/* 戶外烤 VS. 在家烤 */
#sectionvs {
  margin-top: 80px;
}

#sectionvs .container {
  background: url("../images/bgchill.png");
  background-repeat: no-repeat;
  background-size: contain;
  padding: 0;
}

#sectionvs .titlevs {
  position: relative;
  z-index: 99;
  margin-top: -75px;
  animation: jumpShine 1.5s ease-out -1s infinite alternate both;
}

@keyframes jumpShine {
  0% {transform: translateY(0); scale: 1.08;}
  100% {transform: translateY(30px); scale: 1;}
}

@media (max-width: 767px) {
  @keyframes jumpShine {
    0% {transform: translateY(0); scale: 1.05;}
    100% {transform: translateY(4px); scale: 1;}
  }
}

#sectionvs .titlevs-m {
  display: none;
}

#sectionvs .pdvs {
  margin-top: calc(-220px + 75px);
}

#sectionvs .pdas {
  background: url("../images/bga.png");
  background-size: 100% 100%;
}

#sectionvs .pda {
  position: absolute;
}

#sectionvs .pda.pda01 {
  width: 53.86%;
  max-width: 53.86%;
  top: 1.5%;
  left: 0%;
}

#sectionvs .pda.pda02 {
  width: 50%;
  max-width: 50%;
  top: 40%;
  left: 0%;
}

#sectionvs .pda.pda03 {
  width: 84.91%;
  max-width: 84.91%;
  top: 78%;
  left: 4%;
}

#sectionvs .pda.pda04 {
  width: 58.5%;
  max-width: 58.5%;
  top: 55%;
  left: 41%;
}

#sectionvs .pdbs {
  background: url("../images/bgb.png");
  background-size: 100% 100%;
}

#sectionvs .pdb {
  position: absolute;
}

#sectionvs .pdb.pdb01 {
  width: 54.39%;
  max-width: 54.39%;
  top: 3%;
  right: 0%;
}

#sectionvs .pdb.pdb02 {
  width: 50%;
  max-width: 50%;
  top: 40%;
  right: 0%;
}

#sectionvs .pdb.pdb03 {
  width: 59.47%;
  max-width: 59.47%;
  top: 64%;
  right: 50%;
}

#sectionvs .pdb.pdb04 {
  width: 82.63%;
  max-width: 82.63%;
  top: 72%;
  right: 0%;
}

@media (max-width: 767px) {
  #sectionvs {
    margin-top: 30px;
  }

  #sectionvs .container {
    background: url("../images/bgchill.png");
    background-repeat: repeat-y;
    background-size: cover;
    background-position: top center;
    padding: 0 15px;
  }

  #sectionvs .titlevs {
    display: none;
  }

  #sectionvs .titlevs-m {
    display: flex;
    margin-top: -30px;
    z-index: 9;
    animation: jumpShine 1.5s ease-out -1s infinite alternate both;
  }

  #sectionvs .pdbs {
    margin-top: -25px;
  }

  #sectionvs .pdvs {
    margin-top: -10px;
  }
}

.section2pd2slides .imgzidex .title {
  position: absolute;
  width: 26%;
  max-width: 26%;
  top: 0;
  left: 5%;
}

/* 熱搜關鍵字 */
#sectionhashtag {
  position: relative;
  margin-top: 40px;
}

#sectionhashtag .title {
  margin-bottom: -40px;
}

#sectionhashtag .hashtag {
  display: flex;
  width: 14.25%;
  max-width: 14.25%;
  margin-top: 15px;
}

@media (max-width: 1199px) {
  #sectionhashtag {
    position: relative;
    margin-top: 40px;
  }

}

@media (max-width: 991px) {
  #sectionhashtag {
    position: relative;
    margin-top: 35px;
  }
}

@media (max-width: 767px) {
  #sectionhashtag {
    position: relative;
    margin-top: 30px;
  }

  #sectionhashtag .hashtag {
    display: flex;
    width: 33.2%;
    max-width: 33.2%;
    margin-top: 5px;
  }
}

/* 活動辦法 */
section#method {
  color: #fff;
}

section#method a {
  color: #ffee00;
}


/* 輪播邊 */
.bd {
  background: #fff;
  border-style: solid;
  border-width: 9px 0 9px 0;
  /* filter: drop-shadow(0 10px 0 #90ca3f7c); */
}

.bdYellow {
  border-image: url("../images/borderyellow.png") 15 0 15 0 repeat repeat;
}

.bdBlue {
  border-image: url("../images/borderblue.png") 15 0 15 0 repeat repeat;
}

.bdRed {
  border-image: url("../images/borderred.png") 15 0 15 0 repeat repeat;
}

@media (max-width: 767px) {
  .bd {
    border-width: 7px 0 7px 0;
    /* filter: drop-shadow(0 10px 0 #90ca3f7c); */
  }
  .bdYellow {
    border-image: url("../images/borderyellow.png") 20 0 20 0 repeat repeat;
  }
  .bdBlue {
    border-image: url("../images/borderblue.png") 20 0 20 0 repeat repeat;
  }
  .bdRed {
    border-image: url("../images/borderred.png") 20 0 20 0 repeat repeat;
  }
}