@charset "UTF-8";
/* CSS Document */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
@font-face {
  font-family: 'tw_font';
  src: url('../../font/NotoSansTC-VariableFont_wght.ttf');
}
@font-face {
  font-family: 'en_font';
  src: url('../../font/ROCKET WILDNESS.ttf');
}
body {
  font-family: "tw_font";
  margin: 0 auto 0 auto;
  /*background-color: hsla(0,0%,100%,1.00);*/
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* 設定 body 的最小高度為視窗的高度 */
  color: #7D7D7D;
}
body a {
  text-decoration: none;
  color: #7D7D7D;
}
@media screen and (min-width:1025px) { /*桌面*/
  /*=========================版本=========================*/
  #lang {
    position: fixed;
    top: 10px;
    right: 50px;
    z-index: 3;
  }
  #lang a {
    color: hsla(0, 0%, 100%, 1.00);
    display: inline-block;
    border: 1px solid hsla(0, 0%, 100%, 1.00);
    margin: 0 5px 0 5px;
    padding: 5px;
    font-size: 12px;
    text-decoration: none; /* 防止文字下劃線影響效果 */
    transition: transform 0.3s ease, color 0.3s ease, background-color 0.3s ease;
  }
  #lang a:hover {
    transform: scale(1.1); /* 放大 1.2 倍 */
  }
  /*=========================版本=========================*/
  /*=========================首頁廣告視窗=========================*/
  #home_ad_bg {
    background-color: hsla(0, 0%, 0%, 0.70);
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 300;
  }
  #home_ad_bg .icon-cross {
    color: hsla(0, 0%, 100%, 1.00);
    font-size: 30px;
    font-weight: lighter;
    position: fixed;
    top: 8vh;
    right: 25vw;
    text-shadow: 0px 0px 10px hsla(0, 0%, 0%, 0.40);
    cursor: pointer;
  }
  #home_ad_bg .icon-cross:hover {
    color: hsla(359, 46%, 54%, 1.00);
  }
  #home_ad_wrap {
    background-color: hsla(0, 0%, 100%, 1.00);
    position: fixed;
    top: 12.5vh;
    left: 25vw;
    width: 50vw;
    height: 75vh;
    -webkit-box-shadow: 0px 0px 10px hsla(0, 0%, 0%, 0.30);
    box-shadow: 0px 0px 10px hsla(0, 0%, 0%, 0.30);
    overflow-y: auto;
  }
  /*=========================首頁廣告視窗=========================*/
  /*=========================header=========================*/
  header {
    min-height: 100px;
    background-color: hsla(0, 0%, 100%, 1.00);
    padding: 10px;
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 3;
    border-bottom: 1px solid #D4D4D4;
    display: flex;
  }
  header aside {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    border: 0px solid #000000;
    position: relative;
    display: flex;
    align-items: center; /* 垂直置中 */
    padding: 0 5%;
  }
  #header-pc {
    display: block;
    z-index: 1;
    margin: 0;
  }
  #header-pc p {
    margin: 0;
  }
  #header-mobile {
    display: none;
    z-index: -1;
    margin: 0;
  }
  #header-mobile p {
    margin: 0;
  }
  #logo {
    width: 175px;
    /*position: absolute;
      top: 10px;
      left: 30px;*/
    display: block;
    margin-right: 10%;
  }
  #logo img {
    width: 100%;
    height: auto;
    display: block;
  }
  /*=========================header=========================*/
  /*=========================MOVbanner=========================*/
  #MOVwrap {
    width: 100vw;
    height: 46vw;
    border: 0px solid hsla(0, 0%, 0%, 1.00);
    overflow-y: hidden;
    position: relative;
  }
  .MOVbanner_mask {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #MOVbanner {
    margin-top: 100px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    border: 0px solid hsla(0, 0%, 0%, 1.00);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
  }
  #MOV_cont_left {
    position: absolute;
    top: 8vw;
    left: 15vw;
    z-index: 2;
    width: 20vw;
    height: auto;
    display: none;
  }
  #MOV_cont_left1 {
    position: absolute;
    top: 14vw;
    left: 14.5vw;
    z-index: 3;
    width: 10vw;
    height: auto;
    /* 設定旋轉中心點在上方邊緣中心 */
    transform-origin: 60% 0%;
    /* 套用擺動動畫 */
    animation: swing 4.5s ease-in-out infinite;
  }
  #MOV_cont_left2 {
    position: absolute;
    top: 8.6vw;
    left: 24vw;
    z-index: 3;
    width: 10.6vw;
    height: auto;
    transform-origin: 33% 0%;
    /* 套用擺動動畫 */
    animation: swing 4s ease-in-out infinite;
  }
  /* 定義擺動動畫 */
  @keyframes swing {
    0% {
      transform: rotate(-5deg);
    }
    50% {
      transform: rotate(5deg);
    }
    100% {
      transform: rotate(-5deg);
    }
  }
  /* Logo 從上淡入 */
  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  /* 文字從右淡入 */
  @keyframes fadeInLeft {
    from {
      opacity: 0;
      transform: translateX(30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  /* 按鈕放大淡入 */
  @keyframes fadeInScale {
    from {
      opacity: 0;
      transform: scale(0.8);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
  #MOV_cont_logo {
    position: absolute;
    top: 13vw;
    left: 42vw;
    z-index: 2;
    width: 32vw;
    height: auto;
    opacity: 0;
    animation: fadeInDown 1s ease-out forwards;
    animation-delay: 0.3s;
  }
  #MOV_cont_txt {
    position: absolute;
    top: 25vw;
    right: 29vw;
    z-index: 2;
    width: 25vw;
    height: auto;
    opacity: 0;
    animation: fadeInLeft 1s ease-out forwards;
    animation-delay: 0.8s;
  }
  #MOV_cont_button {
    position: absolute;
    top: 32vw;
    right: 29vw;
    z-index: 2;
    width: 7vw;
    height: auto;
    display: block;
    cursor: pointer;
    opacity: 0;
    animation: fadeInScale 0.8s ease-out forwards;
    animation-delay: 1.3s;
    transform: scale(1);
    transition: transform 0.3s ease-out !important;
  }
  #MOV_cont_button:hover {
    transform: scale(1.1) !important;
  }
  /*=========================MOVbanner=========================*/
  /*=========================雙邊裝飾圖=========================*/
  #right_img_bg {
    width: 18vw;
    position: absolute;
    right: 0;
    top: 39vw;
    z-index: 2;
  }
  #left_img_bg {
    width: 15vw;
    position: absolute;
    left: 0;
    z-index: 2;
    top: 20vw;
  }
  #left_img_bg2 {
    width: 15vw;
    position: absolute;
    left: 0;
    z-index: 2;
    bottom: 0;
  }
  /*=========================雙邊裝飾圖=========================*/
  /*=========================banner=========================*/
  #banner-pc {
    min-height: 150px;
    display: block;
    z-index: 1;
    margin-top: 130px;
  }
  #banner-mobile {
    min-height: 150px;
    display: none;
    z-index: -1;
  }
  /*=========================banner=========================*/
  /*=========================首頁內容=========================*/
  #index-container {
    display: flex;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    flex: 1;
    position: relative;
    padding-bottom: 0px;
  }
  #index-main-content {
    border-bottom: 1px solid hsla(0, 0%, 49%, 1.00);
    min-height: 500px;
    flex: 10;
    order: 2;
    max-width: 1440px;
    margin: 0 auto;
  }
  #index-main-content-pc {
    display: block;
    z-index: 1;
  }
  #index-main-content-mobile {
    display: none;
    z-index: -1;
  }
  /*=========================首頁內容=========================*/
  /*=========================內頁內容=========================*/
  #container {
    display: flex;
    width: 100%;
    border: 0px solid hsla(0, 0%, 49%, 1.00);
    margin-left: auto;
    margin-right: auto;
    flex: 1; /* 使內容佔滿剩餘的空間 */
    padding-top: 2%;
    position: relative;
  }
  .container_hr {
    height: 1px;
    width: 80%;
    max-width: 1440px;
    margin: 0 auto;
    background-color: #C9C9C9;
  }
  #main-content {
    /*min-height: 500px;*/
    flex: 10;
    padding: 0px;
    order: 2;
    margin: 0 auto;
    margin-top: 100px;
  }
  #main-content-pc {
    display: block;
    z-index: 1;
  }
  #main-content-mobile {
    display: none;
    z-index: -1;
  }
  /*=========================內頁內容=========================*/
  /*=========================導覽輔助列=========================*/
  .TopNavBar {
    width: 80%;
    color: hsla(0, 0%, 42%, 1.00);
    font-size: 11pt;
    font-weight: 300;
    margin: 0 auto 20px auto;
    display: block;
  }
  /*=========================導覽輔助列=========================*/
  /*=========================浮動選單=========================*/
  #float_nav {
    color: hsla(0, 0%, 100%, 1.00);
    text-align: center;
    padding-top: 50px;
    padding-bottom: 70px;
    display: none;
  }
  #float_nav a {
    color: hsla(0, 0%, 100%, 1.00);
    border-radius: 5px;
    background-color: hsla(359, 52%, 54%, 1.00);
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 15px;
    margin: 10px;
    padding-right: 15px;
  }
  /*=========================浮動選單=========================*/
  /*=========================左區塊=========================*/
  #sidebar-left {
    flex: 2;
    padding: 10px;
    display: block;
    z-index: 1;
    order: 1;
  }
  /*=========================左區塊=========================*/
  /*=========================左選單=========================*/
  .leftNAV_wrap {
    border: 0px solid hsla(0, 0%, 32%, 1.00);
    padding: 0 0 10px 0;
    margin: 0 0 10px 0;
  }
  /*=========================左選單=========================*/
  /*=========================左廣告=========================*/
  .leftAD_wrap {
    border: 0px solid hsla(0, 0%, 32%, 1.00);
  }
  .leftAD_wrap_title {
    text-align: center;
    font-size: 14pt;
    font-weight: 400;
    margin: 10px 0 5px 0;
    border-bottom: 0px solid hsla(0, 0%, 32%, 1.00);
    display: none;
  }
  .leftAD {
    display: block;
    width: 98%;
    padding: 1%;
    margin: 0 auto 0 auto;
    height: auto;
    transition: transform 0.6s;
  }
  .leftAD:hover {
    transform: scale(1.03);
  }
  /*=========================左廣告=========================*/
  /*=========================右廣告=========================*/
  #sidebar-right {
    flex: 2;
    padding: 10px;
    border: 0px solid hsla(0, 0%, 49%, 1.00);
    order: 3;
  }
  .rightAD {
    display: block;
    width: 98%;
    padding: 1%;
    height: auto;
    transition: transform 0.6s;
  }
  .rightAD:hover {
    transform: scale(1.03);
  }
  /*=========================右廣告=========================*/
  /*=========================下廣告=========================*/
  #foodAD {
    padding: 3% 2% 3% 2%;
    border-top: 0px solid hsla(0, 0%, 55%, 1.00);
    background-color: hsla(0, 0%, 91%, 1.00);
  }
  .foodADtyp {
    padding: 2%;
    display: flex;
    border-bottom: 0px solid hsla(0, 0%, 49%, 1.00);
    margin-top: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center; /* 水平置中 */
  }
  .foodAD_h2 {
    text-align: center;
    display: block;
    margin: 0;
    color: hsla(0, 0%, 60%, 1.00);
  }
  .foodADtyp_a {
    display: block;
    padding: 1%;
    height: auto;
    width: 18%;
    transition: transform 0.6s;
  }
  .foodADtyp_a:hover {
    transform: scale(1.05);
  }
  .footerAD_img {
    display: block;
    height: auto;
    width: 100%;
  }
  /*=========================下廣告=========================*/
  /*=========================footer=========================*/
  #index_footer {
    min-height: 200px;
    /*background-color: hsla(0, 0%, 0%, 0.15);*/
    color: hsla(0, 0%, 100%, 1.00);
    padding-top: 30px;
    padding-bottom: 10px;
    border-top: 0px solid #404040;
    width: 100%;
    margin: 0 auto;
    position: relative;
  }
  #footer {
    min-height: 200px;
    /*background-color: hsla(0, 0%, 0%, 1.00);*/
    color: hsla(0, 0%, 100%, 1.00);
    padding: 20px;
    border-top: 0px solid #404040;
    width: 100%;
    margin: 0 auto;
    position: relative;
  }
  #footer-pc {
    max-width: 1440px;
    margin: 0 auto 0 auto;
    display: block;
    z-index: 1;
    width: 100%;
    border: 0px solid rgba(0, 0, 0, 1.00);
    padding-left: 5vw;
  }
  #footer-tab {
    display: none;
    z-index: -1;
  }
  #footer-mobile {
    display: none;
    z-index: -1;
  }
  #footer_right_img {
    width: 30%;
    height: auto;
    position: absolute;
    bottom: 0px;
    right: 0px;
  }
  #footer_logo {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 1.00);
  }
  #footer_logo img {
    width: 100%;
  }
  /*=========================footer=========================*/
  /*=========================icon=========================*/
  #icon_wrap {
    display: flex;
    position: fixed;
    z-index: 100;
    top: 50px;
    right: 40px;
    border: 0px solid hsla(0, 0%, 100%, 1.00);
    align-items: center; /* 在水平方向上置中子元素 */
  }
  #home_icon {
    display: block;
    padding: 5px 10px 5px 10px;
    position: relative;
  }
  #home_icon .icon-home {
    color: #fff;
    font-size: 17pt;
  }
  #home_icon .icon-home:hover {
    color: hsla(0, 0%, 55%, 1.00);
  }
  #search_icon {
    display: block;
    padding: 5px 10px 5px 10px;
    position: relative;
  }
  #search_icon .icon-search {
    color: #fff;
    font-size: 17pt;
  }
  #search_icon .icon-search:hover {
    color: hsla(0, 0%, 55%, 1.00);
  }
  #shop_icon {
    display: block;
    padding: 5px 10px 5px 10px;
    position: relative;
  }
  #shop_icon .icon-cart {
    color: #fff;
    font-size: 17pt;
  }
  #shop_icon .icon-cart:hover {
    color: hsla(0, 0%, 55%, 1.00);
  }
  #shop_icon .icon-message {
    color: hsla(359, 55%, 55%, 1.00);
    position: absolute;
    font-size: 18pt;
    right: -5px;
    top: -10px
  }
  #shop_icon .icon-message .snum {
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 15px;
    font-family: Arial;
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    border: 0px solid hsla(0, 0%, 0%, 1.00);
    line-height: 17pt;
  }
  #member_icon {
    display: block;
    padding: 5px 10px 5px 10px;
  }
  #member_icon .icon-account {
    color: #fff;
    font-size: 20pt;
  }
  #member_icon .icon-account:hover {
    color: hsla(0, 0%, 55%, 1.00);
  }
  #icon-phone {
    display: block;
    padding: 5px 10px 5px 10px;
  }
  #icon-phone .icon-phone {
    color: #fff;
    font-size: 17pt;
  }
  #icon-phone .icon-phone:hover {
    color: hsla(0, 0%, 55%, 1.00);
  }
  #line_icon {
    display: block;
    padding: 5px 10px 5px 10px;
  }
  #line_icon .icon-line {
    color: #fff;
    font-size: 17pt;
  }
  #line_icon .icon-line:hover {
    color: hsla(0, 0%, 55%, 1.00);
  }
  #FB_icon {
    display: block;
    padding: 5px 10px 5px 10px;
  }
  #FB_icon .icon-facebook {
    color: #fff;
    font-size: 17pt;
  }
  #FB_icon .icon-facebook:hover {
    color: hsla(0, 0%, 55%, 1.00);
  }
  #YT_icon {
    display: block;
    padding: 5px 10px 5px 10px;
  }
  #YT_icon .icon-youtube {
    color: #fff;
    font-size: 17pt;
  }
  #YT_icon .icon-youtube:hover {
    color: hsla(0, 0%, 55%, 1.00);
  }
  #IG_icon {
    display: block;
    padding: 5px 10px 5px 10px;
  }
  #IG_icon .icon-instagram {
    color: #fff;
    font-size: 17pt;
  }
  #IG_icon .icon-instagram:hover {
    color: hsla(0, 0%, 55%, 1.00);
  }
  #WC_icon {
    display: block;
    padding: 5px 10px 5px 10px;
  }
  #WC_icon .icon-wechat {
    color: #fff;
    font-size: 17pt;
  }
  #WC_icon .icon-wechat:hover {
    color: hsla(0, 0%, 55%, 1.00);
  }
  #mail_icon {
    display: block;
    padding: 5px 10px 5px 10px;
  }
  #mail_icon .icon-mark {
    color: #fff;
    font-size: 17pt;
  }
  #mail_icon .icon-mark:hover {
    color: hsla(0, 0%, 55%, 1.00);
  }
  /*=========================自訂圖標(上傳圖片/SVG時生效)=========================*/
  #icon_wrap img, #icon_wrap svg {
    display: block;
    width: 20px;
    height: auto;
  }
  /* 滑鼠移入的效果：圖片/SVG不能像字型icon一樣直接換color，用透明度做提示即可 */
  #icon_wrap a:hover img, #icon_wrap a:hover svg {
    opacity: 0.6;
  }
  /*=========================自訂圖標(上傳圖片/SVG時生效)=========================*/
  /*=========================icon=========================*/
}
@media screen and (min-width:768px) and (max-width:1024px) { /* 平板：直接沿用桌面版樣式 */
  /*=========================版本=========================*/
  #lang {
    position: fixed;
    top: 10px;
    right: 50px;
    z-index: 3;
  }
  #lang a {
    color: hsla(0, 0%, 100%, 1.00);
    display: inline-block;
    border: 1px solid hsla(0, 0%, 100%, 1.00);
    margin: 0 5px 0 5px;
    padding: 5px;
    font-size: 12px;
    text-decoration: none; /* 防止文字下劃線影響效果 */
    transition: transform 0.3s ease, color 0.3s ease, background-color 0.3s ease;
  }
  #lang a:hover {
    transform: scale(1.1); /* 放大 1.2 倍 */
  }
  /*=========================版本=========================*/
  /*=========================首頁廣告視窗=========================*/
  #home_ad_bg {
    background-color: hsla(0, 0%, 0%, 0.70);
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 300;
  }
  #home_ad_bg .icon-cross {
    color: hsla(0, 0%, 100%, 1.00);
    font-size: 30px;
    font-weight: lighter;
    position: fixed;
    top: 8vh;
    right: 25vw;
    text-shadow: 0px 0px 10px hsla(0, 0%, 0%, 0.40);
    cursor: pointer;
  }
  #home_ad_bg .icon-cross:hover {
    color: hsla(359, 46%, 54%, 1.00);
  }
  #home_ad_wrap {
    background-color: hsla(0, 0%, 100%, 1.00);
    position: fixed;
    top: 12.5vh;
    left: 25vw;
    width: 50vw;
    height: 75vh;
    -webkit-box-shadow: 0px 0px 10px hsla(0, 0%, 0%, 0.30);
    box-shadow: 0px 0px 10px hsla(0, 0%, 0%, 0.30);
    overflow-y: auto;
  }
  /*=========================首頁廣告視窗=========================*/
  /*=========================header=========================*/
  header {
    min-height: 100px;
    background-color: hsla(0, 0%, 100%, 1.00);
    padding: 10px;
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 3;
    border-bottom: 1px solid #D4D4D4;
    display: flex;
  }
  header aside {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    border: 0px solid #000000;
    position: relative;
    display: flex;
    align-items: center; /* 垂直置中 */
    padding: 0 5%;
  }
  #header-pc {
    display: block;
    z-index: 1;
    margin: 0;
  }
  #header-pc p {
    margin: 0;
  }
  #header-mobile {
    display: none;
    z-index: -1;
    margin: 0;
  }
  #header-mobile p {
    margin: 0;
  }
  #logo {
    width: 175px;
    /*position: absolute;
      top: 10px;
      left: 30px;*/
    display: block;
    margin-right: 10%;
  }
  #logo img {
    width: 100%;
    height: auto;
    display: block;
  }
  /*=========================header=========================*/
  /*=========================MOVbanner=========================*/
  #MOVwrap {
    width: 100vw;
    height: 46vw;
    border: 0px solid hsla(0, 0%, 0%, 1.00);
    overflow-y: hidden;
    position: relative;
  }
  .MOVbanner_mask {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #MOVbanner {
    margin-top: 100px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    border: 0px solid hsla(0, 0%, 0%, 1.00);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
  }
  #MOV_cont_left {
    position: absolute;
    top: 8vw;
    left: 15vw;
    z-index: 2;
    width: 20vw;
    height: auto;
    display: none;
  }
  #MOV_cont_left1 {
    position: absolute;
    top: 14vw;
    left: 14.5vw;
    z-index: 3;
    width: 10vw;
    height: auto;
    /* 設定旋轉中心點在上方邊緣中心 */
    transform-origin: 60% 0%;
    /* 套用擺動動畫 */
    animation: swing 4.5s ease-in-out infinite;
  }
  #MOV_cont_left2 {
    position: absolute;
    top: 8.6vw;
    left: 24vw;
    z-index: 3;
    width: 10.6vw;
    height: auto;
    transform-origin: 33% 0%;
    /* 套用擺動動畫 */
    animation: swing 4s ease-in-out infinite;
  }
  /* 定義擺動動畫 */
  @keyframes swing {
    0% {
      transform: rotate(-5deg);
    }
    50% {
      transform: rotate(5deg);
    }
    100% {
      transform: rotate(-5deg);
    }
  }
  /* Logo 從上淡入 */
  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  /* 文字從右淡入 */
  @keyframes fadeInLeft {
    from {
      opacity: 0;
      transform: translateX(30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  /* 按鈕放大淡入 */
  @keyframes fadeInScale {
    from {
      opacity: 0;
      transform: scale(0.8);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
  #MOV_cont_logo {
    position: absolute;
    top: 13vw;
    left: 42vw;
    z-index: 2;
    width: 32vw;
    height: auto;
    opacity: 0;
    animation: fadeInDown 1s ease-out forwards;
    animation-delay: 0.3s;
  }
  #MOV_cont_txt {
    position: absolute;
    top: 25vw;
    right: 29vw;
    z-index: 2;
    width: 25vw;
    height: auto;
    opacity: 0;
    animation: fadeInLeft 1s ease-out forwards;
    animation-delay: 0.8s;
  }
  #MOV_cont_button {
    position: absolute;
    top: 32vw;
    right: 29vw;
    z-index: 2;
    width: 7vw;
    height: auto;
    display: block;
    cursor: pointer;
    opacity: 0;
    animation: fadeInScale 0.8s ease-out forwards;
    animation-delay: 1.3s;
    transform: scale(1);
    transition: transform 0.3s ease-out !important;
  }
  #MOV_cont_button:hover {
    transform: scale(1.1) !important;
  }
  /*=========================MOVbanner=========================*/
  /*=========================雙邊裝飾圖=========================*/
  #right_img_bg {
    width: 18vw;
    position: absolute;
    right: 0;
    top: 39vw;
    z-index: 2;
  }
  #left_img_bg {
    width: 15vw;
    position: absolute;
    left: 0;
    z-index: 2;
    top: 20vw;
  }
  #left_img_bg2 {
    width: 15vw;
    position: absolute;
    left: 0;
    z-index: 2;
    bottom: 0;
  }
  /*=========================雙邊裝飾圖=========================*/
  /*=========================banner=========================*/
  #banner-pc {
    min-height: 150px;
    display: block;
    z-index: 1;
    margin-top: 130px;
  }
  #banner-mobile {
    min-height: 150px;
    display: none;
    z-index: -1;
  }
  /*=========================banner=========================*/
  /*=========================首頁內容=========================*/
  #index-container {
    display: flex;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    flex: 1;
    position: relative;
    padding-bottom: 0px;
  }
  #index-main-content {
    border-bottom: 0px solid hsla(0, 0%, 49%, 1.00);
    min-height: 500px;
    flex: 10;
    order: 2;
    max-width: 1440px;
    margin: 0 auto;
  }
  #index-main-content-pc {
    display: block;
    z-index: 1;
  }
  #index-main-content-mobile {
    display: none;
    z-index: -1;
  }
  /*=========================首頁內容=========================*/
  /*=========================內頁內容=========================*/
  #container {
    display: flex;
    width: 100%;
    border: 0px solid hsla(0, 0%, 49%, 1.00);
    margin-left: auto;
    margin-right: auto;
    flex: 1; /* 使內容佔滿剩餘的空間 */
    padding-top: 2%;
    position: relative;
  }
  .container_hr {
    height: 1px;
    width: 80%;
    max-width: 1440px;
    margin: 0 auto;
    background-color: #C9C9C9;
  }
  #main-content {
    /*min-height: 500px;*/
    flex: 10;
    padding: 0px;
    order: 2;
    margin: 0 auto;
    margin-top: 100px;
  }
  #main-content-pc {
    display: block;
    z-index: 1;
  }
  #main-content-mobile {
    display: none;
    z-index: -1;
  }
  /*=========================內頁內容=========================*/
  /*=========================導覽輔助列=========================*/
  .TopNavBar {
    width: 80%;
    color: hsla(0, 0%, 42%, 1.00);
    font-size: 11pt;
    font-weight: 300;
    margin: 0 auto 20px auto;
    display: block;
  }
  /*=========================導覽輔助列=========================*/
  /*=========================浮動選單=========================*/
  #float_nav {
    color: hsla(0, 0%, 100%, 1.00);
    text-align: center;
    padding-top: 50px;
    padding-bottom: 70px;
    display: none;
  }
  #float_nav a {
    color: hsla(0, 0%, 100%, 1.00);
    border-radius: 5px;
    background-color: hsla(359, 52%, 54%, 1.00);
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 15px;
    margin: 10px;
    padding-right: 15px;
  }
  /*=========================浮動選單=========================*/
  /*=========================左區塊=========================*/
  #sidebar-left {
    flex: 2;
    padding: 10px;
    display: block;
    z-index: 1;
    order: 1;
  }
  /*=========================左區塊=========================*/
  /*=========================左選單=========================*/
  .leftNAV_wrap {
    border: 0px solid hsla(0, 0%, 32%, 1.00);
    padding: 0 0 10px 0;
    margin: 0 0 10px 0;
  }
  /*=========================左選單=========================*/
  /*=========================左廣告=========================*/
  .leftAD_wrap {
    border: 0px solid hsla(0, 0%, 32%, 1.00);
  }
  .leftAD_wrap_title {
    text-align: center;
    font-size: 14pt;
    font-weight: 400;
    margin: 10px 0 5px 0;
    border-bottom: 0px solid hsla(0, 0%, 32%, 1.00);
    display: none;
  }
  .leftAD {
    display: block;
    width: 98%;
    padding: 1%;
    margin: 0 auto 0 auto;
    height: auto;
    transition: transform 0.6s;
  }
  .leftAD:hover {
    transform: scale(1.03);
  }
  /*=========================左廣告=========================*/
  /*=========================右廣告=========================*/
  #sidebar-right {
    flex: 2;
    padding: 10px;
    border: 0px solid hsla(0, 0%, 49%, 1.00);
    order: 3;
  }
  .rightAD {
    display: block;
    width: 98%;
    padding: 1%;
    height: auto;
    transition: transform 0.6s;
  }
  .rightAD:hover {
    transform: scale(1.03);
  }
  /*=========================右廣告=========================*/
  /*=========================下廣告=========================*/
  #foodAD {
    padding: 3% 2% 3% 2%;
    border-top: 0px solid hsla(0, 0%, 55%, 1.00);
    background-color: hsla(0, 0%, 91%, 1.00);
  }
  .foodADtyp {
    padding: 2%;
    display: flex;
    border-bottom: 0px solid hsla(0, 0%, 49%, 1.00);
    margin-top: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center; /* 水平置中 */
  }
  .foodAD_h2 {
    text-align: center;
    display: block;
    margin: 0;
    color: hsla(0, 0%, 60%, 1.00);
  }
  .foodADtyp_a {
    display: block;
    padding: 1%;
    height: auto;
    width: 18%;
    transition: transform 0.6s;
  }
  .foodADtyp_a:hover {
    transform: scale(1.05);
  }
  .footerAD_img {
    display: block;
    height: auto;
    width: 100%;
  }
  /*=========================下廣告=========================*/
  /*=========================footer=========================*/
  #index_footer {
    min-height: 200px;
    /*background-color: hsla(0, 0%, 0%, 0.15);*/
    color: hsla(0, 0%, 100%, 1.00);
    padding-top: 30px;
    padding-bottom: 10px;
    border-top: 0px solid #404040;
    width: 100%;
    margin: 0 auto;
    position: relative;
  }
  #footer {
    min-height: 200px;
    /*background-color: hsla(0, 0%, 0%, 1.00);*/
    color: hsla(0, 0%, 100%, 1.00);
    padding: 20px;
    border-top: 0px solid #404040;
    width: 100%;
    margin: 0 auto;
    position: relative;
  }
  #footer-pc {
    display: none;
    z-index: -1;
  }
  #footer-tab {
    max-width: 1440px;
    margin: 0 auto 0 auto;
    display: block;
    z-index: 1;
    width: 100%;
    border: 0px solid rgba(0, 0, 0, 1.00);
    padding-left: 5vw;
  }
  #footer-mobile {
    display: none;
    z-index: -1;
  }
  #footer_right_img {
    width: 25%;
    height: auto;
    position: absolute;
    bottom: 0px;
    right: 0px;
  }
  #footer_logo {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 1.00);
  }
  #footer_logo img {
    width: 100%;
  }
  /*=========================footer=========================*/
  /*=========================icon=========================*/
  #icon_wrap {
    display: flex;
    position: fixed;
    z-index: 100;
    top: 50px;
    right: 40px;
    border: 0px solid hsla(0, 0%, 100%, 1.00);
    align-items: center; /* 在水平方向上置中子元素 */
  }
  #home_icon {
    display: block;
    padding: 5px 10px 5px 10px;
    position: relative;
  }
  #home_icon .icon-home {
    color: #fff;
    font-size: 17pt;
  }
  #home_icon .icon-home:hover {
    color: hsla(0, 0%, 55%, 1.00);
  }
  #search_icon {
    display: block;
    padding: 5px 10px 5px 10px;
    position: relative;
  }
  #search_icon .icon-search {
    color: #fff;
    font-size: 17pt;
  }
  #search_icon .icon-search:hover {
    color: hsla(0, 0%, 55%, 1.00);
  }
  #shop_icon {
    display: block;
    padding: 5px 10px 5px 10px;
    position: relative;
  }
  #shop_icon .icon-cart {
    color: #fff;
    font-size: 17pt;
  }
  #shop_icon .icon-cart:hover {
    color: hsla(0, 0%, 55%, 1.00);
  }
  #shop_icon .icon-message {
    color: hsla(359, 55%, 55%, 1.00);
    position: absolute;
    font-size: 18pt;
    right: -5px;
    top: -10px
  }
  #shop_icon .icon-message .snum {
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 15px;
    font-family: Arial;
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    border: 0px solid hsla(0, 0%, 0%, 1.00);
    line-height: 17pt;
  }
  #member_icon {
    display: block;
    padding: 5px 10px 5px 10px;
  }
  #member_icon .icon-account {
    color: #fff;
    font-size: 20pt;
  }
  #member_icon .icon-account:hover {
    color: hsla(0, 0%, 55%, 1.00);
  }
  #icon-phone {
    display: block;
    padding: 5px 10px 5px 10px;
  }
  #icon-phone .icon-phone {
    color: #fff;
    font-size: 17pt;
  }
  #icon-phone .icon-phone:hover {
    color: hsla(0, 0%, 55%, 1.00);
  }
  #line_icon {
    display: block;
    padding: 5px 10px 5px 10px;
  }
  #line_icon .icon-line {
    color: #fff;
    font-size: 17pt;
  }
  #line_icon .icon-line:hover {
    color: hsla(0, 0%, 55%, 1.00);
  }
  #FB_icon {
    display: block;
    padding: 5px 10px 5px 10px;
  }
  #FB_icon .icon-facebook {
    color: #fff;
    font-size: 17pt;
  }
  #FB_icon .icon-facebook:hover {
    color: hsla(0, 0%, 55%, 1.00);
  }
  #YT_icon {
    display: block;
    padding: 5px 10px 5px 10px;
  }
  #YT_icon .icon-youtube {
    color: #fff;
    font-size: 17pt;
  }
  #YT_icon .icon-youtube:hover {
    color: hsla(0, 0%, 55%, 1.00);
  }
  #IG_icon {
    display: block;
    padding: 5px 10px 5px 10px;
  }
  #IG_icon .icon-instagram {
    color: #fff;
    font-size: 17pt;
  }
  #IG_icon .icon-instagram:hover {
    color: hsla(0, 0%, 55%, 1.00);
  }
  #WC_icon {
    display: block;
    padding: 5px 10px 5px 10px;
  }
  #WC_icon .icon-wechat {
    color: #fff;
    font-size: 17pt;
  }
  #WC_icon .icon-wechat:hover {
    color: hsla(0, 0%, 55%, 1.00);
  }
  #mail_icon {
    display: block;
    padding: 5px 10px 5px 10px;
  }
  #mail_icon .icon-mark {
    color: #fff;
    font-size: 17pt;
  }
  #mail_icon .icon-mark:hover {
    color: hsla(0, 0%, 55%, 1.00);
  }
  /*=========================自訂圖標(上傳圖片/SVG時生效)=========================*/
  #icon_wrap img, #icon_wrap svg {
    display: block;
    width: 20px;
    height: auto;
  }
  /* 滑鼠移入的效果：圖片/SVG不能像字型icon一樣直接換color，用透明度做提示即可 */
  #icon_wrap a:hover img, #icon_wrap a:hover svg {
    opacity: 0.6;
  }
  /*=========================自訂圖標(上傳圖片/SVG時生效)=========================*/
  /*=========================icon=========================*/
}
@media screen and (max-width:767px) { /*行動裝置*/
  /*=========================版本=========================*/
  /*body{
	background-image: url(https://hui.cdesign.tw/000_web_Style/huispace_style/img/mob_home.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 100% auto;
	}*/
  #lang {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 3;
  }
  #lang a {
    color: hsla(0, 0%, 100%, 1.00);
    display: inline-block;
    border: 1px solid hsla(0, 0%, 100%, 1.00);
    margin: 0 5px 0 5px;
    padding: 5px;
    font-size: 12px;
    text-decoration: none; /* 防止文字下劃線影響效果 */
    transition: transform 0.3s ease, color 0.3s ease, background-color 0.3s ease;
  }
  #lang a:hover {
    transform: scale(1.1); /* 放大 1.2 倍 */
  }
  /*=========================版本=========================*/
  /*=========================首頁廣告視窗=========================*/
  #home_ad_bg {
    background-color: hsla(0, 0%, 0%, 0.70);
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1100;
  }
  #home_ad_bg .icon-cross {
    color: hsla(0, 0%, 100%, 1.00);
    font-size: 30px;
    font-weight: lighter;
    position: fixed;
    top: 5vh;
    right: 5vw;
    text-shadow: 0px 0px 10px hsla(0, 0%, 0%, 0.40);
    cursor: pointer;
  }
  #home_ad_bg .icon-cross:hover {
    color: hsla(359, 46%, 54%, 1.00);
  }
  #home_ad_wrap {
    background-color: hsla(0, 0%, 100%, 1.00);
    position: fixed;
    top: 11vh;
    left: 5vw;
    width: 90vw;
    height: 75vh;
    -webkit-box-shadow: 0px 0px 10px hsla(0, 0%, 0%, 0.30);
    box-shadow: 0px 0px 10px hsla(0, 0%, 0%, 0.30);
    overflow-y: auto;
  }
  /*=========================首頁廣告視窗=========================*/
  /*=========================header=========================*/
  header {
    min-height: 60px;
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 5;
    border: 0px solid hsla(0, 0%, 0%, 1.00);
    background-color: #FFFFFF;
  }
  #header-pc {
    display: none;
    z-index: -1;
  }
  #header-pc p {
    margin: 0;
  }
  #header-mobile {
    display: block;
    z-index: 1;
  }
  #header-mobile p {
    margin: 0;
  }
  #logo {
    width: 20vw;
    position: absolute;
    top: 10px;
    left: 4vw;
  }
  #logo img {
    width: 100%;
    height: auto;
    display: block;
  }
  /*=========================header=========================*/
  /*=========================MOVbanner=========================*/
  #MOVwrap {
    width: 100vw;
    height: 51vw;
    border: 0px solid hsla(0, 0%, 0%, 1.00);
    overflow: hidden;
    position: relative;
    top: 60px;
  }
  .MOVbanner_mask {
    width: 100%;
    height: 52vw;
    position: absolute;
    left: 0;
    z-index: 1;
    border: 0px solid hsla(0, 0%, 0%, 1.00);
  }
  #MOVbanner {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    border: 0px solid hsla(0, 0%, 0%, 1.00);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
  }
  #MOV_cont_left {
    position: absolute;
    top: 5vw;
    left: 10vw;
    z-index: 2;
    width: 10vw;
    height: auto;
    border: 1px solid hsla(0, 0%, 0%, 1.00);
    display: none;
  }
  #MOV_cont_left1 {
    border: 0px solid hsla(0, 0%, 0%, 1.00);
    position: absolute;
    top: 10vw;
    left: 6vw;
    z-index: 3;
    width: 15vw;
    height: auto;
    /* 設定旋轉中心點在上方邊緣中心 */
    transform-origin: 60% 0%;
    /* 套用擺動動畫 */
    animation: swing 4.5s ease-in-out infinite;
  }
  #MOV_cont_left2 {
    position: absolute;
    top: 0vw;
    left: 19vw;
    z-index: 3;
    width: 20vw;
    height: auto;
    transform-origin: 33% 0%;
    /* 套用擺動動畫 */
    animation: swing 4s ease-in-out infinite;
  }
  /* 定義擺動動畫 */
  @keyframes swing {
    0% {
      transform: rotate(-5deg);
    }
    50% {
      transform: rotate(5deg);
    }
    100% {
      transform: rotate(-5deg);
    }
  }
  /* Logo 從上淡入 */
  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  /* 文字從右淡入 */
  @keyframes fadeInLeft {
    from {
      opacity: 0;
      transform: translateX(30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  /* 按鈕放大淡入 */
  @keyframes fadeInScale {
    from {
      opacity: 0;
      transform: scale(0.8);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
  #MOV_cont_logo {
    position: absolute;
    top: 1vw;
    left: 42vw;
    z-index: 2;
    width: 50vw;
    height: auto;
    opacity: 0;
    animation: fadeInDown 1s ease-out forwards;
    animation-delay: 0.3s;
  }
  #MOV_cont_txt {
    position: absolute;
    top: 20vw;
    right: 8vw;
    z-index: 2;
    width: 50vw;
    height: auto;
    opacity: 0;
    animation: fadeInLeft 1s ease-out forwards;
    animation-delay: 0.8s;
  }
  #MOV_cont_button {
    position: absolute;
    top: 35vw;
    right: 8vw;
    z-index: 2;
    width: 20vw;
    height: auto;
    display: block;
    cursor: pointer;
    opacity: 0;
    animation: fadeInScale 0.8s ease-out forwards;
    animation-delay: 1.3s;
    transform: scale(1);
    transition: transform 0.3s ease-out !important;
  }
  #MOV_cont_button:hover {
    transform: scale(1.1) !important;
  }
  /*=========================MOVbanner=========================*/
  /*=========================雙邊裝飾圖=========================*/
  #right_img_bg {
    width: 23vw;
    position: absolute;
    right: 0;
    top: 65vw;
    z-index: 4;
  }
  #left_img_bg {
    width: 25vw;
    position: absolute;
    left: 0;
    z-index: 2;
    top: 74vw;
  }
  #left_img_bg2 {
    width: 15vw;
    position: absolute;
    left: 0;
    z-index: 2;
    bottom: 0;
  }
  /*=========================雙邊裝飾圖=========================*/
  /*=========================banner=========================*/
  #banner-pc {
    min-height: 150px;
    display: none;
    z-index: -1;
  }
  #banner-mobile {
    min-height: 150px;
    display: block;
    z-index: 1;
    margin-top: 100px;
  }
  /*=========================banner=========================*/
  /*=========================首頁內容=========================*/
  #index-container {
    /*display: flex;*/
    flex-direction: column; /* 將 flex 方向改為垂直方向，即上下排列 */
    width: 100%;
    position: relative;
    flex: 1; /* 使內容佔滿剩餘的空間 */
  }
  #index-main-content {
    min-height: 500px;
    /*flex: 4;*/
    order: 1;
  }
  #index-main-content-pc {
    display: none;
    z-index: -1;
  }
  #index-main-content-mobile {
    display: block;
    z-index: 1;
  }
  /*=========================首頁內容=========================*/
  /*=========================內頁內容=========================*/
  #container {
    display: flex;
    flex-direction: column; /* 將 flex 方向改為垂直方向，即上下排列 */
    width: 100%;
    margin-top: 60px;
    position: relative;
    flex: 1; /* 使內容佔滿剩餘的空間 */
  }
  #main-content {
    /*min-height: 500px;*/
    /*flex: 4;*/
    order: 1;
  }
  #main-content-pc {
    display: none;
    z-index: -1;
  }
  #main-content-mobile {
    display: block;
    z-index: 1;
  }
  .container_hr {
    height: 1px;
    width: 80%;
    max-width: 1440px;
    margin: 0 auto;
    background-color: #C9C9C9;
  }
  /*=========================內頁內容=========================*/
  /*=========================輔助導覽=========================*/
  .TopNavBar {
    color: hsla(0, 0%, 42%, 1.00);
    font-size: 11pt;
    font-weight: 300;
    margin: 0 0 20px 0;
    display: block;
  }
  /*=========================輔助導覽=========================*/
  /*=========================浮動選單=========================*/
  #float_nav {
    color: hsla(0, 0%, 100%, 1.00);
    text-align: center;
    padding-top: 50px;
    padding-bottom: 70px;
    display: none;
  }
  #float_nav a {
    color: hsla(0, 0%, 100%, 1.00);
    border-radius: 5px;
    background-color: hsla(359, 52%, 54%, 1.00);
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 15px;
    margin: 10px;
    padding-right: 15px;
    display: inline-block;
  }
  /*=========================浮動選單=========================*/
  /*=========================左區塊=========================*/
  #sidebar-left {
    /*flex: 1;*/
    padding: 10px;
    z-index: 1;
    order: 2;
  }
  /*=========================左區塊=========================*/
  /*=========================左選單=========================*/
  .leftNAV_wrap {
    display: none;
  }
  /*=========================左選單=========================*/
  /*=========================左廣告=========================*/
  .leftAD_wrap {
    border: 0px solid hsla(0, 0%, 32%, 1.00);
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* 水平置中 */
  }
  .leftAD_wrap_title {
    text-align: center;
    font-size: 14pt;
    font-weight: 400;
    margin: 10px 0 5px 0;
    border-bottom: 0px solid hsla(0, 0%, 32%, 1.00);
    display: none;
  }
  .leftAD {
    display: block;
    padding: 1%;
    width: 50%;
  }
  .leftAD img {
    display: block;
    width: 100%;
    height: auto;
  }
  /*=========================左廣告=========================*/
  /*=========================右廣告=========================*/
  #sidebar-right {
    /*flex: 1;*/
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* 水平置中 */
    order: 3;
  }
  .rightAD {
    display: block;
    width: 50%;
    padding: 1%;
  }
  .rightAD img {
    display: block;
    width: 100%;
    height: auto;
  }
  /*=========================右廣告=========================*/
  /*=========================下廣告=========================*/
  #foodAD {
    padding: 10px;
    background-color: hsla(0, 0%, 90%, 1.00);
  }
  .foodADtyp {
    padding: 2%;
    margin-top: 30px;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* 水平置中 */
  }
  .foodAD_h2 {
    text-align: center;
    display: block;
    margin: 0;
    color: hsla(0, 0%, 60%, 1.00);
  }
  .foodADtyp_a {
    display: block;
    padding: 1%;
    height: auto;
    width: 48%;
  }
  .footerAD_img {
    display: block;
    height: auto;
    width: 100%;
  }
  /*=========================左廣告=========================*/
  /*=========================footer=========================*/
  body {
    overflow-x: hidden;
  }
  #index_footer {
    min-height: 150px;
    color: hsla(0, 0%, 100%, 1.00);
    width: 100%;
    margin: 0 auto;
    padding-top: 10vw;
    position: relative;
    padding-bottom: 2vw;
  }
  #footer {
    min-height: 150px;
    color: hsla(0, 0%, 100%, 1.00);
    width: 100%;
    margin: 0 auto;
    padding-top: 10vw;
    position: relative;
    border-top: 0px solid #797979;
    padding-bottom: 2vw;
  }
  #footer-pc {
    display: none;
    z-index: -1;
  }
  #footer-tab {
    display: none;
    z-index: -1;
  }
  #footer-mobile {
    border-top: 0px solid #7D7D7D7D;
    display: block;
    z-index: 1;
    margin: 0 auto;
    padding-top: 5vw;
    width: 90%;
  }
  #footer_right_img {
    width: 20%;
    height: auto;
    position: absolute;
    bottom: 0px;
    right: 0;
  }
  #footer_logo {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 1.00);
  }
  #footer_logo img {
    width: 100%;
  }
  /*=========================footer=========================*/
  /*=========================icon=========================*/
  #icon_wrap {
    display: flex;
    position: fixed;
    z-index: 100;
    border: 0px solid hsla(0, 0%, 100%, 1.00);
    align-items: center; /* 在水平方向上置中子元素 */
    justify-content: center;
    bottom: 0px;
    background-color: hsla(0, 0%, 0%, 1.00);
    padding: 10px 0 10px 0;
    width: 100%;
  }
  #home_icon {
    display: block;
    padding: 5px 10px 5px 10px;
    position: relative;
  }
  #home_icon .icon-home {
    color: #fff;
    font-size: 17pt;
  }
  #home_icon .icon-home:hover {
    color: hsla(0, 0%, 55%, 1.00);
  }
  #search_icon {
    display: block;
    padding: 5px 10px 5px 10px;
    position: relative;
  }
  #search_icon .icon-search {
    color: #fff;
    font-size: 17pt;
  }
  #search_icon .icon-search:hover {
    color: hsla(0, 0%, 55%, 1.00);
  }
  #shop_icon {
    display: block;
    padding: 5px 10px 5px 10px;
    position: relative;
  }
  #shop_icon .icon-cart {
    color: #fff;
    font-size: 17pt;
  }
  #shop_icon .icon-cart:hover {
    color: hsla(0, 0%, 55%, 1.00);
  }
  #shop_icon .icon-message {
    color: hsla(359, 55%, 55%, 1.00);
    position: absolute;
    font-size: 18pt;
    right: -5px;
    top: -10px
  }
  #shop_icon .icon-message .snum {
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 15px;
    font-family: Arial;
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    border: 0px solid hsla(0, 0%, 0%, 1.00);
    line-height: 17pt;
  }
  #member_icon {
    display: block;
    padding: 5px 10px 5px 10px;
  }
  #member_icon .icon-account {
    color: #fff;
    font-size: 20pt;
  }
  #member_icon .icon-account:hover {
    color: hsla(0, 0%, 55%, 1.00);
  }
  #icon-phone {
    display: block;
    padding: 5px 10px 5px 10px;
  }
  #icon-phone .icon-phone {
    color: #fff;
    font-size: 17pt;
  }
  #line_icon {
    display: block;
    padding: 5px 10px 5px 10px;
  }
  #line_icon .icon-line {
    color: #fff;
    font-size: 17pt;
  }
  #line_icon .icon-line:hover {
    color: hsla(0, 0%, 55%, 1.00);
  }
  #FB_icon {
    display: block;
    padding: 5px 10px 5px 10px;
  }
  #FB_icon .icon-facebook {
    color: #fff;
    font-size: 17pt;
  }
  #FB_icon .icon-facebook:hover {
    color: hsla(0, 0%, 55%, 1.00);
  }
  #YT_icon {
    display: block;
    padding: 5px 10px 5px 10px;
  }
  #YT_icon .icon-youtube {
    color: #fff;
    font-size: 17pt;
  }
  #YT_icon .icon-youtube:hover {
    color: hsla(0, 0%, 55%, 1.00);
  }
  #IG_icon {
    display: block;
    padding: 5px 10px 5px 10px;
  }
  #IG_icon .icon-instagram {
    color: #fff;
    font-size: 17pt;
  }
  #IG_icon .icon-instagram:hover {
    color: hsla(0, 0%, 55%, 1.00);
  }
  #WC_icon {
    display: block;
    padding: 5px 10px 5px 10px;
  }
  #WC_icon .icon-wechat {
    color: #fff;
    font-size: 17pt;
  }
  #WC_icon .icon-wechat:hover {
    color: hsla(0, 0%, 55%, 1.00);
  }
  #mail_icon {
    display: block;
    padding: 5px 10px 5px 10px;
  }
  #mail_icon .icon-mark {
    color: #fff;
    font-size: 17pt;
  }
  #mail_icon .icon-mark:hover {
    color: hsla(0, 0%, 55%, 1.00);
  }
  /*=========================自訂圖標(上傳圖片/SVG時生效)=========================*/
  #icon_wrap img, #icon_wrap svg {
    display: block;
    width: 20px;
    height: auto;
  }
  /* 滑鼠移入的效果：圖片/SVG不能像字型icon一樣直接換color，用透明度做提示即可 */
  #icon_wrap a:hover img, #icon_wrap a:hover svg {
    opacity: 0.6;
  }
  /*=========================自訂圖標(上傳圖片/SVG時生效)=========================*/
  /*=========================icon=========================*/
}