@charset "UTF-8";
/* CSS Document */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
body {
  font-family: 'Roboto', sans-serif;
  margin: 0 auto 0 auto;
  background-color: hsla(0, 0%, 100%, 1.00);
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* 設定 body 的最小高度為視窗的高度 */
}
body a {
  text-decoration: none;
  color: hsla(0, 0%, 0%, 1.00);
}
@media screen and (min-width:601px) { /*桌面*/
/*=========================版本=========================*/
#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: 80px;
    background-color: hsla(0,0%,0%,0.50); 
    /*background-color: transparent;  初始背景透明 */
    transition: background-color 0.3s ease; /* 添加平滑过渡效果 */
    color: hsla(0, 0%, 100%, 1.00);
    padding: 10px;
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 2;
  }
  header.scrolled {
    background-color: hsla(23,4%,35%,0.7); /* 滚动时背景变为半透明黑色 */
  }
  #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: 100%;
    max-width: 1280px;
    border: 0px solid hsla(0, 0%, 0%, 1.00);
    display: block;
    margin: 5px auto 0px auto;
  }
  #logo img {
    width: 60px;
    height: auto;
    display: block;
  }
  /*=========================header=========================*/
  /*=========================MOVbanner=========================*/
  #MOVbanner {
    margin-top: 100px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 1280px;
    border: 0px solid hsla(0, 0%, 0%, 1.00);
  }
  /*=========================MOVbanner=========================*/
  /*=========================banner=========================*/
  #banner-pc {
    min-height: 150px;
    display: block;
    z-index: 1;
    margin-top: 0px;
    position: relative;
  }
  .banner_footerimg {
    width: 100%;
    height: auto;
    position: absolute;
    bottom: -85px;
  }
  #banner-mobile {
    min-height: 150px;
    display: none;
    z-index: -1;
  }
  /*=========================banner=========================*/
  /*=========================首頁內容=========================*/
  #index-content-bg {
    position: relative;
    background-image: url(../../img/content_bg.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
    background-attachment: fixed;
    border: 0px solid hsla(0, 0%, 49%, 1.00);
  }
  /* 半透明的叠加层 */
  #index-content-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.3); /* 控制透明度，0.5 表示50%透明度 */
    z-index: 0; /* 保证叠加层在背景图上方 */
  }
  #index-container {
    display: flex;
    width: 100%;
    border: 0px solid hsla(0, 0%, 49%, 1.00);
    margin-left: auto;
    margin-right: auto;
    flex: 1;
    position: relative;
    padding-bottom: 0px;
    max-width: 1280px;
  }
  #index-main-content {
    min-height: 500px;
    flex: 10;
    order: 2;
  }
  #index-main-content-pc {
    display: block;
    z-index: 1;
  }
  #index-main-content-mobile {
    display: none;
    z-index: -1;
  }
  /*=========================首頁內容=========================*/
  /*=========================內頁內容=========================*/
   #content-bg {
    position: relative;
    background-image: url(../../img/content_bg.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
    background-attachment: fixed;
    border: 0px solid hsla(0, 0%, 49%, 1.00);
  }
  /* 半透明的叠加层 */
  #content-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.3); /* 控制透明度，0.5 表示50%透明度 */
    z-index: 0; /* 保证叠加层在背景图上方 */
  }
  #container {
    display: flex;
    width: 100%;
    border: 0px solid hsla(0, 0%, 49%, 1.00);
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    flex: 1; /* 使內容佔滿剩餘的空間 */
    padding-top: 2%;
    position: relative;
    max-width: 1280px;
    /*background-color: hsla(0,0%,96%,1.00);*/
  }
  #main-content {
    min-height: 500px;
    flex: 10;
    padding: 20px;
    order: 2;
  }
  #main-content-pc {
    display: block;
    z-index: 1;
  }
  #main-content-mobile {
    display: none;
    z-index: -1;
  }
  /*=========================內頁內容=========================*/
  /*=========================導覽輔助列=========================*/
  .TopNavBar {
    color: hsla(0, 0%, 42%, 1.00);
    font-size: 11pt;
    font-weight: 300;
    margin: 0 auto 30px auto;
    display: block;
    max-width: 1280px;
    border: 0px solid hsla(0, 0%, 0%, 1.00);
  }
  /*=========================導覽輔助列=========================*/
    /*=========================浮動選單=========================*/  
    #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: 150px;
    background-color: hsla(23,4%,35%,1.00);
    color: hsla(0, 0%, 100%, 1.00);
    padding: 20px;
    border-top: 0px solid hsla(0, 0%, 0%, 1.00);
  }
  #footer {
    min-height: 150px;
    background-color: hsla(23,4%,35%,1.00);
    color: hsla(0, 0%, 100%, 1.00);
    padding: 20px;
  }
  #footer-pc {
    display: block;
    z-index: 1;
  }
  #footer-mobile {
    display: none;
    z-index: -1;
  }
  /*=========================footer=========================*/
  /*=========================icon=========================*/
  #icon_wrap {
    display: flex;
    position: fixed;
    z-index: 100;
    top: 70px;
    right: 15%;
    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;
    transition: color 0.8s; /* 添加文本颜色过渡效果 */
  }
  #home_icon .icon-home:hover {
    color: #FFE800; 
    text-shadow: 0px 0px 5px hsla(0,0%,0%,0.70);
  }
  #search_icon {
    display: block;
    padding: 5px 10px 5px 10px;
    position: relative;
  }
  #search_icon .icon-search {
    color: #fff;
    font-size: 17pt;
	transition: color 0.8s; /* 添加文本颜色过渡效果 */
  }
  #search_icon .icon-search:hover {
    color: #FFE800; 
    text-shadow: 0px 0px 5px hsla(0,0%,0%,0.70);
  }
  #shop_icon {
    display: block;
    padding: 5px 10px 5px 10px;
    position: relative;
  }
  #shop_icon .icon-cart {
    color: #fff;
    font-size: 17pt;
	transition: color 0.8s; /* 添加文本颜色过渡效果 */
  }
  #shop_icon .icon-cart:hover {
    color: #FFE800; 
    text-shadow: 0px 0px 5px hsla(0,0%,0%,0.70);
  }
  #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;
	transition: color 0.8s; /* 添加文本颜色过渡效果 */
  }
  #member_icon .icon-account:hover {
    color: #FFE800; 
    text-shadow: 0px 0px 5px hsla(0,0%,0%,0.70);
  }
  #icon-phone {
    display: block;
    padding: 5px 10px 5px 10px;
  }
  #icon-phone .icon-phone {
    color: #fff;
    font-size: 17pt;
	transition: color 0.8s; /* 添加文本颜色过渡效果 */
  }
  #icon-phone .icon-phone:hover {
    color: #FFE800; 
    text-shadow: 0px 0px 5px hsla(0,0%,0%,0.70);
  }
  #line_icon {
    display: block;
    padding: 5px 10px 5px 10px;
  }
  #line_icon .icon-line {
    color: #fff;
    font-size: 17pt;
	transition: color 0.8s; /* 添加文本颜色过渡效果 */
  }
  #line_icon .icon-line:hover {
    color: #FFE800; 
    text-shadow: 0px 0px 5px hsla(0,0%,0%,0.70);
  }
  #FB_icon {
    display: block;
    padding: 5px 10px 5px 10px;
  }
  #FB_icon .icon-facebook {
    color: #fff;
    font-size: 17pt;
	transition: color 0.8s; /* 添加文本颜色过渡效果 */
  }
  #FB_icon .icon-facebook:hover {
    color: #FFE800; 
    text-shadow: 0px 0px 5px hsla(0,0%,0%,0.70);
  }
  #YT_icon {
    display: block;
    padding: 5px 10px 5px 10px;
  }
  #YT_icon .icon-youtube {
    color: #fff;
    font-size: 17pt;
	transition: color 0.8s; /* 添加文本颜色过渡效果 */
  }
  #YT_icon .icon-youtube:hover {
    color: #FFE800; 
    text-shadow: 0px 0px 5px hsla(0,0%,0%,0.70);
  }
  #IG_icon {
    display: block;
    padding: 5px 10px 5px 10px;
  }
  #IG_icon .icon-instagram {
    color: #fff;
    font-size: 17pt;
	transition: color 0.8s; /* 添加文本颜色过渡效果 */
  }
  #IG_icon .icon-instagram:hover {
    color: #FFE800; 
    text-shadow: 0px 0px 5px hsla(0,0%,0%,0.70);
  }
   
    
#WC_icon {
    display: block;
    padding: 5px 10px 5px 10px;
  }
  #WC_icon .icon-wechat {
    color: #fff;
    font-size: 17pt;
	transition: color 0.8s; /* 添加文本颜色过渡效果 */
  }
  #WC_icon .icon-wechat:hover {
    color: #FFE800; 
    text-shadow: 0px 0px 5px hsla(0,0%,0%,0.70);
  }
    
    
  #mail_icon {
    display: block;
    padding: 5px 10px 5px 10px;
  }
  #mail_icon .icon-mark {
    color: #fff;
    font-size: 17pt;
	transition: color 0.8s; /* 添加文本颜色过渡效果 */
  }
  #mail_icon .icon-mark:hover {
    color: #FFE800; 
    text-shadow: 0px 0px 5px hsla(0,0%,0%,0.70);
  }
  /*=========================icon=========================*/
}
@media screen and (max-width:600px) { /*行動裝置*/
/*=========================版本=========================*/
#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: 300;
  }
  #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: 100px;
    /*background-color: hsla(0, 0%, 0%, 1.00);*/
	background-color: transparent; /* 初始背景透明 */
    transition: background-color 0.3s ease; /* 添加平滑过渡效果 */
    color: hsla(0, 0%, 100%, 1.00);
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 2;
  }
	
   header.scrolled {
    background-color: hsla(23,4%,35%,0.7); /* 滚动时背景变为半透明黑色 */
  }
	
  #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: 50px;
    position: absolute;
    top: 10px;
    left: 30px;
  }
  #logo img {
    width: 100%;
    height: auto;
    display: block;
  }
  /*=========================header=========================*/
  /*=========================MOVbanner=========================*/
  #MOVbanner {
    margin-top: 80px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    border: 0px solid hsla(0, 0%, 0%, 1.00);
  }
  /*=========================MOVbanner=========================*/
  /*=========================banner=========================*/
	.banner_footerimg {
    width: 100%;
    height: auto;
    position: absolute;
    bottom: -15px;
	border:0px solid hsla(0,0%,0%,1.00);
  }
  #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-content-bg {
    position: relative;
    background-image: url(../../img/mobile_content_bg.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
    background-attachment: fixed;
    border: 0px solid hsla(0, 0%, 49%, 1.00);
  }
  /* 半透明的叠加层 */
  #index-content-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.85); /* 控制透明度，0.5 表示50%透明度 */
    z-index: 0; /* 保证叠加层在背景图上方 */
  }
  #index-container {
    display: flex;
    flex-direction: column; /* 將 flex 方向改為垂直方向，即上下排列 */
    width: 100%;
    margin-top: 0px;
    padding-top: 2%;
    position: relative;
    flex: 1; /* 使內容佔滿剩餘的空間 */
  }
  #index-main-content {
    min-height: 500px;
    /*flex: 4;*/
    padding: 20px;
    order: 1;
  }
  #index-main-content-pc {
    display: none;
    z-index: -1;
  }
  #index-main-content-mobile {
    display: block;
    z-index: 1;
  }
  /*=========================首頁內容=========================*/
  /*=========================內頁內容=========================*/
  #content-bg {
    position: relative;
    background-image: url(../../img/mobile_content_bg.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
    background-attachment: fixed;
    border: 0px solid hsla(0, 0%, 49%, 1.00);
  }
  /* 半透明的叠加层 */
  #content-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.85); /* 控制透明度，0.5 表示50%透明度 */
    z-index: 0; /* 保证叠加层在背景图上方 */
  }
  #container {
    display: flex;
    flex-direction: column; /* 將 flex 方向改為垂直方向，即上下排列 */
    width: 100%;
    margin-top: 0px;
    padding-top: 2%;
    position: relative;
    flex: 1; /* 使內容佔滿剩餘的空間 */
  }
  #main-content {
    min-height: 500px;
    /*flex: 4;*/
    padding: 20px;
    order: 1;
  }
  #main-content-pc {
    display: none;
    z-index: -1;
  }
  #main-content-mobile {
    display: block;
    z-index: 1;
  }
  /*=========================內頁內容=========================*/
  /*=========================輔助導覽=========================*/
  .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=========================*/
  #index_footer {
    min-height: 150px;
    background-color: hsla(23,4%,35%,1.00);
    color: hsla(0, 0%, 100%, 1.00);
    padding: 20px;
    border-top: 0px solid hsla(0, 0%, 0%, 1.00);
  }
  #footer {
    min-height: 150px;
    background-color: hsla(23,4%,35%,1.00);
    color: hsla(0, 0%, 100%, 1.00);
  }
  #footer-pc {
    display: none;
    z-index: -1;
  }
  #footer-mobile {
    display: block;
    z-index: 1;
  }
  /*=========================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(23,9%,27%,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);
  }
  /*=========================icon=========================*/
}