@charset "utf-8";

/* = = = 網站全域設定 = = = = = = = = = = = = = = = = = = = = = = = = = = =*/

/*色彩與文字大小*/
:root {
  --MainColor: #F39801; /*網站主要色系*/
  --SubColor_1: #E17721; /*網站輔助色系 1*/
  --SubColor_2: #44403F; /*網站輔助色系 2*/
  --FontColor_1: #FFFFFF; /*內文顏色 1*/
  --FontColor_2: #DDDDDD; /*內文顏色 2*/
  --FontColor_3: #AAAAAA; /*內文顏色 3*/
  --BackgroundColor: #202020; /*背景顏色*/
  --BorderColor: #cccccc; /*框線顏色*/
  --RedFont: #d12e2e;
  --SFontE: "Noto Serif Display", "微軟正黑體", sans-serif; /*特殊字體 英文*/
  --SFontC: "Noto Sans", "微軟正黑體", sans-serif; /*特殊字體 中文*/
  --LineHeight: 180%;
  --LetterSpacing_B: 2px;
  --LetterSpacing_S: 1px;
  --Transition: .3s ease-in-out;
  --f48: 48px;
  --f40: 40px;
  --f36: 36px;
  --f32: 32px;
  --f28: 28px;
  --f24: 24px;
  --f22: 22px;
  --f20: 20px;
  --f18: 18px;
  --f17: 17px;
  --f16: 16px;
  --f15: 15px;
  --f14: 14px;
}
@media (max-width:1024px) {
  :root{
    --f48: 40px;
    --f40: 36px;
    --f36: 32px;
    --f32: 28px;
    --f28: 24px;
    --f24: 22px;
    --f22: 20px;
  }
}
@media (max-width:768px) {
  :root{
    --f48: 32px;
    --f40: 28px;
    --f36: 26px;
    --f32: 24px;
    --f28: 20px;
    --f24: 20px;
    --f20: 18px;
    --f18: 17px;
    --f17: 16px;
  }
}
@media (max-width:600px) {
  :root{
    --f48: 28px;
    --f40: 24px;
    --f36: 22px;
    --f32: 20px;
    --f28: 18px;
    --f24: 18px;
    --f22: 18px;
    --f20: 17px;
    --f18: 16px;
    --f17: 15px;
  }
}
@media (max-width:375px) {
  :root{
    --f48: 24px;
    --f40: 20px;
    --f36: 18px;
    --f32: 18px;
    --f28: 17px;
    --f24: 17px;
    --f22: 17px;
    --f20: 16px;
    --f18: 15px;
  }
}

/*--animation---------------------------------------*/

/*--基礎設定---------------------------------------*/

/*反白顏色*/
::-moz-selection{ background-color: var(--SubColor_1); color: var(--BackgroundColor);}
::selection{ background-color: var(--SubColor_1); color: var(--BackgroundColor);}
.linkBox_Open + span i { transform: rotate(45deg);}

/*滾輪*/
::-webkit-scrollbar { width: 7px;}/*滾輪寬度*/
::-webkit-scrollbar-button { background: transparent; border-radius: 4px; height: 0;}/*滾輪與視窗上下的間距*/
::-webkit-scrollbar-track-piece { background: var(--BackgroundColor); border-left: 1px solid var(--BorderColor);}/*滾輪軌道背景*/
::-webkit-scrollbar-thumb { border-radius: 0; background-color: var(--MainColor);}/*滾輪樣式*/
::-webkit-scrollbar-track { box-shadow: transparent;}/*滾輪軌道樣式*/

/*中英文轉換
.tp_lang { display: inline-block;}
.tp_lang a { border: 1px solid var(--BorderColor); padding: 3px; background: #00000088; transition: var(--Transition);}
.tp_lang a:hover { background: var(--MainColor); transition: var(--Transition);}
.tp_lang a::before { background: transparent;}*/

/*頁面內容*/
div#page { background: var(--BackgroundColor);}
#content_main, #content { background: transparent;}
/*.services_page .edit, .other_page .edit { padding-top: 80px;}*/
.path { display: none;}

/*TOP*/
#to_top { color: transparent; padding: 0; background: transparent; border: 2px solid var(--SubColor_1); background-size: contain; transform: rotateX(180deg) scale(0.8); transition: .3s ease-in-out;}
#to_top:hover { transform: scale(0.9) translateY(-20px) rotateX(180deg); opacity: .6; transition: .3s ease-in-out;}
#to_top i.top { width: 50px; height: 50px; top: 0; left: -8px;}
#to_top i.top::before {
  height: 13px;
  width: 13px;
  top: 35%;
  left: 50%;
  background: transparent;
  border-right: 3px solid var(--SubColor_1);
  border-bottom: 3px solid var(--SubColor_1);
  transform-origin: 0;
  transform: rotate(45deg) translate(-50%, -50%);
  border-radius: 0;
}
#to_top i.top::after { display: none; background: transparent; opacity: 0;}

/*--聯絡資訊---------------------------------------*/

/*項目*/
.footer_info li p.tel:before, .info_TEL:before { content: '電話：';}
.footer_info li p.phone:before, .info_PHONE:before { content: '手機：';}
.footer_info li p.line:before, .info_LINE:before { content: "LINE：";}
.footer_info li p.mail:before, .info_MAIL:before { content: "信箱：";}
.footer_info li p.add:before, .info_ADD:before { content: '地址：';}
.footer_info li p.add2:before, .info_ADD2:before { content: '網拍經營：';}
.footer_info li p.taxid:before, .info_TAXID:before { content: '營業時間：';}

/*順序*/
.footer_info li p.tel, .list_before.info li.info_TEL { order: 3;}
.footer_info li p.taxid, .list_before.info li.info_TAXID { order: 1;}
.footer_info li p.mail, .list_before.info li.info_MAIL { order: 4;}
.footer_info li p.add, .list_before.info li.info_ADD { order: 5;}
.footer_info li p.add2, .list_before.info li.info_ADD2 { order: 2;}

/*--首頁功能頁區塊---------------------------------------*/

/*區塊設定*/
.module_i_news, .prod_part, .module_i_album, .news_part, .contact_content { margin: auto; padding: 0 0 80px;}
.module_i_news section, .prod_part section, .module_i_album section, .news_part section, .i_contact_box section { width: 96%; max-width: 1600px; margin: auto;}

/*標題*/
.news_part .title_i_box h6, .module_i_news .title_i_box h6, .i_prod_tit h2, .i_video_tit h2, .module_i_album .title_i_box h6 
  { font-size: var(--f36); color: var(--MainColor); font-family: var(--SFontE); letter-spacing: var(--LetterSpacing_B); text-transform: uppercase;}
  
.news_part .title_i_box h4, .module_i_news .title_i_box h4, .i_prod_tit span, .i_video_tit span, .module_i_album .title_i_box h4 
  { font-size: var(--f24); color: var(--SubColor_1); font-family: var(--SFontC); letter-spacing: var(--LetterSpacing_B);}

/*按鈕*/
.animated-arrow { background: transparent; border-radius: 0; transition: var(--Transition);}
.animated-arrow:hover { background: transparent; transition: var(--Transition);}
.animated-arrow b, .animated-arrow i { color: var(--FontColor_3); letter-spacing: var(--LetterSpacing_S);}

.fa-arrow-right::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 10px;
  background: var(--FontColor_3);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

/*--功能頁 相關推薦---------------------------------------*/

/*區塊設定*/
.news_related, .prod_related { background: transparent;}
.news_related_list, .related_list, .lastPage { max-width: 1600px; width: 96%; margin: auto;}
.news_related_list, .related_list { grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));}

/*標題*/
.prod_related h6 span, .news_related h6 span { display: block;}
.prod_related h6 span:before, .news_related h6 span:before { font-size: var(--f20); font-family: var(--SFontC); color: var(--MainColor); letter-spacing: var(--LetterSpacing_B);}

/*項目*/
.news_related_list li, .related_list li { filter: grayscale(1); transition: var(--Transition);}
.news_related_list li:hover, .related_list li:hover { filter: grayscale(0); transition: var(--Transition);}

/*圖片*/
.news_related_list li figure { aspect-ratio: 3 / 2;}
.related_list li figure { aspect-ratio: 1 / 1;}

/*項目標題*/
.news_related_list li a, .related_list li a { border: 1px solid var(--BorderColor); padding: 0;}
.news_related_list li a p, .related_list li a p { padding: 10px; font-size: var(--f15);}

/*下一頁*/
.news_related_b_box, .prod_related_b_box { text-align: center; margin-top: 40px;}
.lastPage { display: inline-block; margin: auto; font-size: var(--f16); background: transparent; border: 1px solid var(--MainColor); color: var(--MainColor); transition: var(--Transition);}
.lastPage:hover { color: var(--BackgroundColor); background-color: var(--MainColor); transition: var(--Transition);}

/*--功能頁 頁碼---------------------------------------*/
.page { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; width: 100%; margin: 40px auto;}
.page li { display: flex; margin: 3px; line-height:30px; align-items: center; justify-content: center; border-radius: 100%;}
.page li.pre_page, .page li.next_page a:hover { background: var(--MainColor);}

.page li.active { }
.page li strong, .page li a { display: block; height: inherit; min-width: 30px; line-height: var(--LineHeight); padding: 0; color: #ccc; border: 1px solid var(--BorderColor); transition: var(--Transition);}
.page li strong:hover, .page li a:hover { background: var(--MainColor); border: 1px solid var(--MainColor);}

/*--手機版下方按鈕---------------------------------------*/
#bottom_menu { background: var(--BackgroundColor);}
#bottom_menu li a { color: var(--FontColor_3);}

/*#bottom_menu li:first-child:nth-last-child(3) { width: 100%;}
#bottom_menu > li:not(#bottom_menu > li:first-child) { display: none;}手機板隱藏購物車、匯款通知*/

/*--RWD---------------------------------------*/

@media screen and (max-width: 1024px) { }

@media screen and (max-width: 768px) {
  #to_top { bottom:60px;}
}
  
@media screen and (max-width: 600px) {}

/* = = = 預設解除背景輪播 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

#content_main { margin:0;}
.bannerindex { position:relative; height:auto;}
.swiper-banner { position:static; margin:0; height:auto;} 
/* .swiper-slide img { height:auto;} */
@media screen and (max-width: 768px) {
    .bannerindex { padding:0; margin:0;}
}

/* = = = Index banner = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

/*全版大圖
.swiper-fade .swiper-slide { position: relative; height: 100vh;}
.swiper-banner .swiper-slide img { position: absolute; left: 0; top: 0; width: 100%; height: 100%; object-fit: cover;}*/

/*大圖壓slogan
.swiper-slide:nth-child(1)::before {
  content: '';
  clear: both;
  position: absolute;
  pointer-events: none;
  width: 720px;
  height: 173px;
  top: 41%;
  right: 10%;
  background: url(https://pic03.eapple.com.tw/400754/ban01.png) no-repeat center;
  background-size: cover;
  z-index: 1;
}

.swiper-slide:nth-child(2)::before {
  content: '';
  clear: both;
  position: absolute;
  pointer-events: none;
  width: 581px;
  height: 420px;
  top: 25%;
  left: 10%;
  background: url(https://pic03.eapple.com.tw/400754/ban02.png) no-repeat center;
  background-size: cover;
  z-index: 1;
}*/

/*--RWD---------------------------------------*/

@media screen and (max-width: 1024px) {
}

@media screen and (max-width: 600px) {
}

/* = = = banner = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

.banner { position: relative; background: transparent; padding: 0; height: auto;}

.banner h5 { position: relative; color: var(--MainColor); letter-spacing: var(--LetterSpacing_B); font-weight: 900; font-size: 36px; font-family: var(--SFontC); line-height: var(--LineHeight);}
.banner h5::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  text-align: center;
  font-family: var(--SFontE);
  font-weight: 600;
  letter-spacing: var(--LetterSpacing_S);
  color: var(--FontColor_2);
}
.banner.banA h5::before { content: "NEWS";}/*促銷方案*/
.other_select_page .banner.banA::before { content: "";}/*下拉編輯頁*/
.banner.banB h5::before { content: "SERVICE";}/*服務項目*/
.other_page .banner.banB h5::before { content: "";}/*其他編輯頁*/
.case_page .banner.banB h5::before { content: "";}/*施工實錄*/
.banner.banC h5::before { content: "CONTACT";}/*聯絡表單*/
.banner.banE h5::before { content: "ALBUM";}/*相簿管理*/
.banner.banF h5::before { content: "PRODUCT";}/*店家商品*/
.article_a .banner.banblog h5::before { content: "CASES";}/*文章管理01*/
.article_b .banner.banblog h5::before { content: "NEWS";}/*文章管理02*/

/*--RWD---------------------------------------*/

@media screen and (max-width: 1024px) { }
@media screen and (max-width: 768px) { }

/* = = = header = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

/*header*/
/*.pageIndex .header_area { position: fixed; background: transparent; border: none; transition: var(--Transition);}*/
/*.pageIndex .header_area.sticky,*/ .header_area, .header_area.sticky { background: #44403F; border-bottom: 1px solid #666; transition: var(--Transition);}
/*.header_area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,1) 0%,rgba(0,0,0,0) 100%);
  opacity: .6;
  pointer-events: none;
  transition: var(--Transition);
}
.header_area.sticky::before { height: 100%; transition: var(--Transition);}*/
.main_header_area .container { width: 96%; max-width: 1980px;}
.navigation { grid-template-columns: 200px 1fr; height: 70px;}

/*logo*/
.header_area .nav-header { position: relative; max-width: 100%; width: 100%; height: 100%; z-index: 99; transition: var(--Transition);}
.header_area.sticky .nav-header { transition: var(--Transition);}
/*.pageIndex .header_area .nav-header::before,*/ .header_area .nav-header::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(https://pic03.eapple.com.tw/400754/logo-w.svg) no-repeat center;
  background-size: contain;
  pointer-events: none;
  transition: var(--Transition);
}
.header_area.sticky .nav-header::before, .header_area .nav-header::before { background-image: url(https://pic03.eapple.com.tw/400754/logo-w.svg); transition: var(--Transition);}
.nav-brand { width: 100%; height: 100%;}
.nav-brand img { display: none;}

/*SubMenu*/
/*.me_tp_features { display:none;}隱藏整列*/
.shop_search_btn { background: var(--MainColor);}
.tp_links a { display: none;}/*隱藏選單按鈕連結*/
.tp_links a:hover { color: var(--MainColor);}

/*.pageIndex .me_tp_features,*/ .me_tp_features { margin: 0; padding: 7px 0;}
/*.pageIndex .tp_btn_cart, .pageIndex .tp_btn_notice { filter: brightness(5); transition: var(--Transition);}*/
.header_area.sticky .tp_btn_cart, .header_area.sticky .tp_btn_notice, .tp_btn_cart, .tp_btn_notice { filter: brightness(1); transition: var(--Transition);}
.me_tp_features a { color: var(--FontColor_1);}/*購物車搜尋欄*/

/*.box_search { display:none;}隱藏購物車搜尋欄*/
/*.me_tp_features a.tp_btn_cart { display: none;}隱藏購物車*/
/*.me_tp_features a.tp_btn_notice { display: none;}隱藏匯款通知*/

/*--menu---------------------------------------*/

.stellarnav { padding: 0;}
.stellarnav > ul { display: flex; align-items: center; justify-content: flex-end; gap: 20px; transition: var(--Transition);}
.stellarnav > ul:hover > li { opacity: 0.6; transition: var(--Transition);}
.stellarnav > ul > li { transition: var(--Transition);}
.stellarnav > ul:hover > li:hover { opacity: 1; transition: var(--Transition);}

.stellarnav > ul > li > a { margin: 0; height: 30px;}
/*.pageIndex .stellarnav > ul > li > a b,*/ .stellarnav > ul > li > a b { font-weight: 600; padding: 0; color: #FFFFFF; font-size: var(--f16); height: 30px; line-height: 30px;}
.stellarnav li > a b:last-of-type { font-family: var(--SFontC); font-weight: 900;}/*第二格名稱*/
.stellarnav > ul > li:hover > a b { color: var(--MainColor);}
.stellarnav > ul > li > a:hover b { transform: translateY(-30px); -webkit-transform: translateY(-30px); -moz-transform: translateY(-30px);}

/*下拉箭頭
.pageIndex .stellarnav > ul > li.has-sub > a:after { border-top: 6px solid #EEEEEE;}*/

/*下滑狀態*/
.header_area.sticky .stellarnav > ul > li > a b, .stellarnav > ul > li > a b { color: #efefef;}
.header_area.sticky .stellarnav > ul > li:hover > a b { color: var(--MainColor);}
.pageIndex .header_area.sticky .stellarnav > ul > li.has-sub > a:after, .stellarnav > ul > li.has-sub > a:after { border-top: 6px solid  #efefef;}
.pageIndex .header_area.sticky .stellarnav > ul > li.has-sub:hover > a:after, .stellarnav > ul > li.has-sub:hover > a:after { border-top: 6px solid  #efefef;}

/*--下拉選單---------------------------------------*/

/*下拉超過30個變大*/

.stellarnav.desktop li.bigMenu>ul{display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); left: 0; width: 100%; position: fixed; padding: 20px;}
.stellarnav.desktop li.bigMenu ul ul{top: 100%; left: 0; width: 100%; background: #efefef; height: auto; max-height: 300px; overflow: auto;}
.stellarnav.desktop li.bigMenu ul ul li{margin: 0;} 
.stellarnav.hasBigMenu li.bigMenu li.has-sub > a:after{border-left: 6px solid transparent; border-bottom:unset; border-right: 6px solid transparent; border-top: 6px solid #898989; right: 5px;}

/* 主分類超過30個但次分類直接顯示 
.stellarnav.desktop li.bigMenu>ul{grid-gap: 10px;}
.stellarnav.desktop li.bigMenu li{border: 0;}
.stellarnav.desktop li.bigMenu>ul>li>a{border: 1px solid #ddd;}
.stellarnav.desktop li.bigMenu ul ul{display: block !important; position: relative; top: 0; background: unset; border: 0;}
.stellarnav.desktop li.bigMenu ul ul li{border: 0;}
*/

/*電腦版選單 / 統一設定*/
.stellarnav.desktop li.bigMenu > ul { background: transparent;}
.stellarnav ul ul { background: var(--BackgroundColor); border: 1px solid var(--BorderColor);}
.stellarnav li li { background: transparent; border: none; backdrop-filter: blur(10px);}
.stellarnav li li a { font-size: var(--f16); color: var(--FontColor_1);}

/*電腦版選單 / 第一層*/
.stellarnav li > ul:hover > li { opacity: .6; transition: var(--Transition);}
.stellarnav li > ul:hover > li:hover { opacity: 1; transition: var(--Transition);}

/*電腦版選單 / 第二層*/
.stellarnav li.drop-left ul ul { padding-right: 5px;}
.stellarnav li > ul > li > ul:hover > li { opacity: .6; transition: var(--Transition);}
.stellarnav li > ul > li > ul:hover > li:hover { opacity: 1; transition: var(--Transition);}

/*--手機版選單---------------------------------------*/
.stellarnav.mobile.active { z-index: 9999;}

/*漢堡*/
.stellarnav .menu-toggle span.bars span { background: var(--MainColor);}
.stellarnav .menu-toggle:after { color: var(--MainColor);}

/*close*/
.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu { background: transparent; color: var(--FontColor_1);}
.stellarnav .icon-close:after, .stellarnav .icon-close:before { border-bottom: solid 2px var(--FontColor_1); top: 7px; right: 3px;}

/*選單*/
.stellarnav.mobile.left > ul { background: var(--BackgroundColor);}
.stellarnav.mobile > ul > li { border: none;}
.stellarnav.mobile li a { color: var(--FontColor_1); padding: 20px 30px;}
.stellarnav.mobile > ul > li > a { margin: 0; padding: 20px 43px 20px 10px;}
.stellarnav.mobile > ul > li > a b { color: var(--MainColor);}
.stellarnav.mobile > ul > li > a b:last-of-type { display: none;}/*選單名稱第二格*/

.stellarnav.mobile ul ul { background: var(--SubColor_1);}
.stellarnav.mobile ul ul li { margin: 0; background: transparent;}

/* + */
.stellarnav.mobile > ul > li > a.dd-toggle { padding: 20px 6px;}
.stellarnav a.dd-toggle .icon-plus { }
.stellarnav a.dd-toggle .icon-plus:before, .stellarnav a.dd-toggle .icon-plus:after { border-bottom: solid 3px var(--FontColor_3);}

/*分類*/
.stellarnav.mobile li.open { padding: 0; background: var(--BackgroundColor);}
.stellarnav.mobile li.open li.open { background: var(--BackgroundColor);}
.stellarnav.mobile li > ul:hover > li { opacity: 1;}

/*--RWD---------------------------------------*/

@media screen and (max-width: 1024px) {
  /*header*/
  .navigation { height: 100px;}

  /*logo*/
  .header_area .nav-header { height: 80px;}

  /*menu*/
  .stellarnav { padding: 20px 0 0;}
  .stellarnav > ul { justify-content: center; gap: 2%;}
}

@media screen and (max-width: 768px) {
  /*header*/
  .header_area { position: static; background: transparent;}
  .navigation { height: 50px;}

  /*logo*/
  .header_area .nav-header { width: 100%; margin: 10px 0;}
  .header_area .nav-header::before { max-height: 50px;}

  /*menu*/
  .header_area.sticky .me_tp_features, .me_tp_features { display: none;}
  .stellarnav { padding: 0;}
  .stellarnav.mobile > ul > li > a b:last-of-type { display: none;}
}

/* = = = footer = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

.footer { background: #44403f; border-top: 1px solid var(--BorderColor); padding: 50px 0;}
.footer .center, .copy { width: 96%; max-width: 1980px;}
.footer_info { position: relative; grid-template-columns: 1fr; z-index: 3; padding: 0;}
.footer_info ul { padding-top: 22px; width: calc(100% - 50px);}
.footer_info li { padding-top: 0;}
.footer_info li:nth-child(1) { display: grid; grid-template-columns: repeat(3,1fr); width: 100%; position: relative; margin-bottom: 20px;}
.footer_info li:nth-child(2) { width: 100%; margin-top: 20px;}

/*logo*/
.footer_logo { position: relative; width: 100%;}
.footer_logo::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 30%;
  border-bottom: 1px solid var(--BorderColor);
  width: calc(100% - 200px);
}
.footer_logo a { position: relative; display: inline-block; max-width: 100%; width: 150px; height: 60px;}
.footer_logo a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(https://pic03.eapple.com.tw/400754/logo.svg) no-repeat center;
  background-size: contain;
}
.footer_logo img { display: none; max-width: 100%;}

/*footer info*/
.list_before li::before { position: relative; display: inline-block; width: auto;}
.footer_info li p { color: var(--FontColor_1); line-height: 2; display: inline-block; width: 100%;}
.footer_info li p a { color: inherit;}

/*footer menu*/
.footer_menu { display: grid; grid-template-columns: repeat(8, 1fr); gap: 10px; width: 100%;}
.footer_menu a { margin: 0; text-align: center; padding: 5px; line-height: initial; background: transparent; color: var(--FontColor_2); letter-spacing: 1px; border: 1px solid var(--BorderColor); transition: all 0.3s;}
.footer_menu a:first-child { display: none;}
.footer_menu a:hover { background: var(--SubColor_2); color: var(--FontColor_1);}

/*icon*/
.box_link { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; max-width: 100%;}

.box_link a {
  display: block;
  width: 100%;
  color: var(--FontColor_1);
  border-radius: 0;
  padding: 0;
  margin-bottom: 9px;
  font-size: var(--f18);
  border: none;
  border-bottom: 1px solid var(--BorderColor);
  transition: var(--Transition);
}
.box_link a:hover { background: transparent; border-bottom: 1px solid var(--MainColor); transition: var(--Transition);}
.box_link i { position: relative; display: block; text-align: left; padding: 20px 10px; color: var(--FontColor_1);}

/*box_link圖標設定*/
.box_link i::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background: var(--MainColor);
  transition: var(--Transition);
}

/*box_link文字設定*/
.box_link i::after {
  content: "";
  font-size: inherit;
  color: var(--FontColor_1);
  font-weight: normal;
  letter-spacing: var(--LetterSpacing_B);
  padding-left: 0;
  font-family: var(--SFontC);
  transition: var(--Transition);
}

.box_link i.fa-phone-volume::after { content: "CALL US";}
.box_link i.fa-mobile-screen-button::after { content: "CELL PHONE";}
.box_link i.fa-facebook-f::after { content: "FACEBOOK";}
.box_link i.fa-instagram::after { content: "INSTAGRAM"; }
.box_link .fa-envelope::after { content: "E-Mail";}
.box_link .fa-line::after { content: "LINE";}

/*box_link順序調整*/
.box_link a.me_tp_call { order: 2;}
.box_link a.me_tp_fb { order: 3;}
.box_link a.me_tp_line { order: 1;}
.box_link a.me_tp_mail { order: 5;}
.box_link a.me_tp_ig { order: 4;}

/*版權*/
.copy { position: relative; z-index: 2; color: var(--FontColor_1); border: none; padding: 10px 0 60px; text-align: right; margin: 0 auto;}
.copy a { color: var(--FontColor_1); transition: var(--Transition);}
.copy a:hover { color: var(--FontColor_1); opacity: .6; transition: var(--Transition);}

/*側邊浮動按鈕*/
.info_fix { z-index: 99;}

/*--RWD---------------------------------------*/

@media screen and (max-width: 1024px) {
  /*footer info*/
  .footer_info li:nth-child(1) { grid-template-columns: repeat(2,1fr);}
}

@media screen and (max-width: 768px) {
  /*footer*/
  .footer_info ul { width: 100%;}

  /*footer info*/
  .footer_info li:nth-child(1) { grid-template-columns: repeat(1,1fr);}

  /*box_link*/
  .box_link { grid-template-columns: repeat(3, 1fr);}
}

@media screen and (max-width: 600px) {
  /*logo*/
  .footer_logo { text-align: center;}
  .footer_logo::before { bottom: -15px; right: auto; left: 50%; transform: translateX(-50%); width: 50%;}

  /*footer info*/
  .footer_info { justify-content: center;}
  .footer_info li p { width: 100%;}

  /*footer menu*/
  .footer_info li:nth-child(2) { width: 100%; margin-top: 25px;}
  .footer_menu { display: grid; grid-template-columns: repeat(3, 1fr);}

  /*icon*/
  .box_link { grid-template-columns: repeat(1, 1fr);}

  /*版權*/
  .copy { padding: 30px 0; width: 90%; text-align: center;}

  /*底部按鈕*/
  .footer.with_shopping_mode { padding:30px 0 70px;}
}

/* = = = 商品頁面 / 模組預設 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2023.1.5  */
.product_page .main_part { max-width:1500px;}
/* .product_info_page .main_part { max-width:1200px;} */

.product_page .show_content,
.product_info_page .show_content { width: 100%; display: flex; justify-content: space-between; flex-wrap: wrap; align-items: flex-start; align-content: flex-start;}
.product_page .product_menu_list { position: relative; width: 220px; letter-spacing: 1px; /*border-right: 1px solid #ccc;*/ min-height: 30vw;}
.product_page .products-list,
.product-wrapper { width: calc(100% - 270px);}
ul.page { width: 100%;}

.product-layer-two li ul { position:static; margin-top:5px; /*display:block !important;*/ width:100%; margin-left:0;}
.product-layer-two li:hover ul { border: none !important; /*display:block !important;*/}
.product-layer-two li li { display: block; padding:0; transition: var(--Transition);}
.product-layer-two li li a { padding: 5px 10px; transition: var(--Transition);}
.product-layer-two li li:hover > a { background:transparent; color:var(--MainColor); transition: var(--Transition);}
.product-layer-two > li { width:100%; max-width:100%; padding:0; text-align:left; border-bottom:1px dotted #ccc; padding-bottom: 5px;}
.product-layer-two > li ul > li + li { margin-top:5px;}

.product_info_page .product-layer-two { display: none;}
.product_info_page .products-list,
.product-wrapper { width: 100%;}

.product-layer-two li li:hover{ margin-left: 15px;}
.product-layer-two li li > a:before { content: ""; position: absolute; width: 12px; height: 8px; background: transparent; left: 10px; margin-left: -20px; top: 50%; margin-top: -4px; clip-path: polygon(0 0, 100% 50% , 0 100%); transition: var(--Transition);}
.product-layer-two li li:hover > a:before { background: var(--MainColor); transition: var(--Transition);}

.product_info_page .half_box { width: 100%; float: none; padding-right: 0;}
.product_info_page .half_box li.btn_blankTop { margin-top: 50px; justify-content: space-between; display: flex;}
.product_info_page .half_box li.btn_blankTop input { width: calc(50% - 10px); background-image: none; padding: 0; text-align: center;}

/*--RWD---------------------------------------*/
@media screen and (max-width: 1200px) {}
@media screen and (max-width: 980px) {}
@media screen and (max-width: 768px) {
  .product_menu_list,
  .products-list,
  .product-wrapper { width: 100%;}
  .product-layer-two { margin-right: 0; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); grid-gap: 5px;}
  .product_page .product-layer-two,
  .product_page .products-list { width: 100%; border-right: none;}
  .product_page .product_menu_list > h5{display: block;} 

  .product_page .show_content > a { order: 1;}
  .product_page ul.products-list { order: 2;}
  .product_page ul.page { order: 3;}
  .product_page .product_menu_list {width: 100%; order: 0; min-height: unset;}
}
@media screen and (max-width: 600px) {}

/* = = = 商品頁面 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

/*--分類---------------------------------------*/

.product_page .product_menu_list > h5 { color: var(--MainColor); font-size: var(--f20);}

.product-layer-two li a { font-size: var(--f16); color: var(--FontColor_1); background: var(--BackgroundColor); border: 1px solid var(--BorderColor);}
.product-layer-two li a:hover { color: var(--MainColor); transition: var(--Transition);}
.product-layer-two li li { background: transparent;}
.product-layer-two li li a { background: transparent; font-size: var(--f14);}
.product-layer-two li i { color: var(--FontColor_3);}

/*--商品項目---------------------------------------*/

.products-list .name { color: var(--MainColor); font-weight: 600; font-size: var(--f16); height: 51px;}

/*價格*/
.products-list .price { margin-bottom: 5px;}
.products-list .price b { margin: 0 5px; line-height: var(--LineHeight); color: var(--MainColor);}
.products-list .price b.ori_price { font-size: var(--f14); color: var(--FontColor_3);}
.products-list .price b.sp_price { color: var(--MainColor);}

/*詳細資料*/
.products-list .more { border: 1px solid var(--MainColor); color: var(--MainColor);}
.products-list .item a:hover .more { background: var(--MainColor);}

/*--商品內頁---------------------------------------*/

.sidebarBtn h2, .mobile_product_name { color: var(--MainColor); font-weight: 600; font-size: var(--f24); font-family: var(--SFontC); letter-spacing: var(--LetterSpacing_B);}

/*輪播小圖*/
.block { background: var(--MainColor);}

/*側邊資訊*/
.sidebarBtn .price { color: #888; font-size: var(--f22);}
.sidebarBtn .price span { font-size: var(--f16);}
.sidebarBtn .price span:first-of-type { text-decoration: line-through;}

/*按鈕顏色*/
.inquiry_a1 { background: var(--SubColor_1); transition: var(--Transition);}
.inquiry_a2 { background: var(--SubColor_2); transition: var(--Transition);}
.inquiry_a3 { background: var(--MainColor); transition: var(--Transition);}
.inquiry_a1:hover, .inquiry_a2:hover, .inquiry_a3:hover { background: var(--SubColor_1); color: var(--FontColor_1); transition: var(--Transition);}

/*內文編輯區*/
.pd_tabTitle li a { font-size: var(--f16); color: var(--FontColor_1);}
.pd_tabTitle li::after { background: var(--BorderColor);}

.pd_tabTitle li.activeTab a { font-size: var(--f16); color: var(--MainColor); font-weight: 900;}
.pd_tabTitle li.activeTab::after { background: var(--MainColor);}

.pd_tabInner_contain .edit { color: var(--FontColor_1); letter-spacing: var(--LetterSpacing_S); text-align: justify; line-height: 150%;}

/*--RWD---------------------------------------*/
@media screen and (max-width: 1200px) {}
@media screen and (max-width: 980px) {}
@media screen and (max-width: 768px) {

  /*模組預設*/
  .product_menu_list,
  .products-list,
  .product-wrapper { width: 100%;}
  .product-layer-two { margin-right: 0; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); grid-gap: 5px;}
  .product_page .product-layer-two,
  .product_page .products-list { width: 100%; border-right: none;}
  .product_page .product_menu_list > h5 { display: block;} 

  .product_page .show_content > a { order: 1;}
  .product_page ul.products-list { order: 2;}
  .product_page ul.page { order: 3;}
  .product_page .product_menu_list {width: 100%; order: 0; min-height: unset;}
}
@media screen and (max-width: 600px) {}

/* = = = 商品訂購/詢價 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

/*按鈕*/
.total_amount .rewrite_simple, .total_amount .send_simple { font-size: var(--f16);}
.rewrite_simple { background: var(--FontColor_3) url(../images/simple_left.png) 10% center no-repeat; transition: var(--Transition);}
.send_simple { background: var(--MainColor) url(../images/simple_right.png) 88% center no-repeat; transition: var(--Transition);}
.rewrite_simple:hover, .send_simple:hover { opacity: .6; transition: var(--Transition);}

/*--購物車---------------------------------------*/

/*商品列表*/
.shopping-cart .cart_head { }
.shopping-cart .cell { font-size: var(--f16); color: var(--FontColor_1);}
.shopping-cart .cell.product_name p { color: var(--FontColor_1); font-size: var(--f16);}
.fa-lg { color: var(--FontColor_1);}

/*小計*/
.total_amount li:nth-child(1), .total_amount li:nth-child(2) { color: var(--FontColor_1); font-size: var(--f16);}

/*匯款資料*/
.car_page .information_left { display: block; margin: 20px 0 0;}
.car_page .blank_letter.i { position: relative; color: var(--FontColor_1); font-size: var(--f24); padding: 0;}
.car_page .blank_letter.i::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: calc(100% - 200px);
  height: 1px;
  background: var(--BorderColor);
}
.list_before.account li { color: var(--FontColor_1); font-size: var(--f15);}
.contact_le_map { display: none; background: var(--MainColor);}/*聯絡表單*/

/*--訂購資料---------------------------------------*/

/*訂購資料*/
.formbox_form li .form__label { color: var(--FontColor_1); font-size: var(--f15);}
.form label { color: var(--FontColor_1); font-size: var(--f15);}/*單選*/
.border200 { color: #444;}
.form label.Bigcheck { color: var(--FontColor_1); font-size: var(--f15);}/*同訂購人*/

/*小計*/
.total_amount li { color: var(--FontColor_1); font-size: var(--f16);}
.total_amount li input[name=DiscountCode] { color: #444;}/*折扣碼*/
.total_amount li#DiscountStr span { color: var(--RedFont);}/*折扣碼使用狀況*/
.total_amount li.red { color: var(--RedFont);}

/*確認訂購*/
.declaration { background: var(--MainColor); border-radius: 10px;}

/*--訂單成立---------------------------------------*/

/*匯款*/
.order_pay .blank_letter, .order_pay .information_left { color: var(--FontColor_1); font-size: var(--f24);}
.pay_text a { border: 1px solid var(--BorderColor); font-size: var(--f16); transition: var(--Transition);}
.pay_text a:first-child:hover { background: #07C105; transition: var(--Transition);}
.pay_text a:last-child:hover { background: var(--MainColor); transition: var(--Transition);}

/*商品訂單*/
.order_list_tit b { color: var(--MainColor); font-size: var(--f28);}
.order_list_tit span { color: var(--FontColor_3); font-size: var(--f12);}

.order_list_tab tbody { border: 1px solid var(--BorderColor);}
.order_list_tab td { color: var(--FontColor_1); font-size: var(--f15); border-top: 1px solid var(--BorderColor);}
.order_list_tab td:nth-child(1) { color: #444; font-size: var(--f15);}
.order_list_tab td:last-of-type { border-bottom: 1px solid var(--BorderColor);}

.payer { background: transparent;}

/*購物清單*/
.order_list_head p { color: var(--MainColor); font-size: var(--f28); border-bottom: none;}

.order_list_pro tr:first-child { background: var(--MainColor);}
.order_list_pro tr:first-child td { color: var(--FontColor_1); font-size: var(--f14);}

.order_list_pro td { color: var(--FontColor_1); font-size: var(--f14);}
.last_box_money em span { color: var(--RedFont); font-size: var(--f28);}

/*--匯款頁面---------------------------------------*/

/*--RWD---------------------------------------*/
@media screen and (max-width: 768px) {}

/* = = = 文章管理 01 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

/*--文章管理 / 共同設定---------------------------------------*/

/*文章列表*/
.module_i_news li, .subbox_item { position: relative; width: 100%; border-bottom: 1px solid var(--BorderColor);}
.module_i_news li a, .subbox_item a { display: block; width: 100%; height: 100%; padding: 5px;}
.module_i_news li a::before, .module_i_news li a::after, .subbox_item a::after,.subbox_item a::before { display: none; pointer-events: none;}

.module_i_news li::before, .subbox_item::before { 
    content: 'READ MORE';
    position: absolute;
    z-index: 19;
    bottom: 10px;
    right: 10px;
    opacity: 0.3;
    font-size: var(--f15);
    color: #888;
    pointer-events: none;
    transition: all .5s;
}
.module_i_news li::after, .subbox_item::after {
    content: "";
    position: absolute;
    bottom: -1px;
    right: 0;
    width: 0;
    height: 1px;
    background: var(--MainColor);
    opacity: 1;
    transition: all .5s;
}
.module_i_news li:hover::after, .subbox_item:hover::after { opacity: 1; left: 0; width: 100%; transition: all .5s;}
.module_i_news li:hover::before, .subbox_item:hover::before { opacity: 1; transition: var(--Transition);}

/*文章呈現*/
.i_blog_ri, .blog_list_ri { margin: 20px 0;}

.i_blog_le, .i_blog_ri, .blog_list_le, .blog_list_ri { width: 100%;}
.i_blog_le, .blog_list_le { aspect-ratio: 3 / 2; overflow: hidden;}/*文章縮圖長寬比例*/
.module_i_news li a img, .subbox_item a img { transition: .5s ease-in-out;}
.module_i_news li a:hover img, .subbox_item a:hover img { transform: scale(1.1); transition: .5s ease-in-out;}

.i_blog_ri h5, .blog_list_ri h5 { color: var(--MainColor); font-size: var(--f20); letter-spacing: 1px; font-weight: 600;}
.i_blog_ri em, .blog_list_ri em { color: var(--FontColor_3); font-size: var(--f14);}
.i_blog_ri p, .blog_list_ri p { color: var(--FontColor_3); font-size: var(--f15);}

/*--文章管理 / 首頁---------------------------------------*/

/*列表*/
.module_i_news ul { max-width: 100%; width: 100%; display: grid; gap: 10px; grid-template-columns: repeat(4,1fr);}
/*.module_i_news ul li:nth-of-type(n+4) { display: none;}*/

/*按鈕*/
.i_blog_b a.animated-arrow { background: transparent; border-radius: 15px; transition: var(--Transition);}
.i_blog_b a.animated-arrow:hover { background: transparent;}
.i_blog_b a.animated-arrow b { color: var(--FontColor_3); font-weight: normal; letter-spacing: 3px; transition: var(--Transition);}
.i_blog_b a.animated-arrow:hover b { transition: var(--Transition);}
.i_blog_b a.animated-arrow i { color: var(--FontColor_3);}

/*--文章管理 / 外---------------------------------------*/

.blog_page .main_part { max-width: 1600px; width: 96%;}

/*列表搜尋*/
h5.blog_le_t { display: none;}

/*分類*/
.blog_le .accordion { border-radius: 5px;}
.blog_le .accordion > li { transition: var(--Transition);}
.blog_le .accordion > li:hover { background: var(--MainColor) !important; transition: var(--Transition);}
.blog_le .accordion > li.open:hover { background: var(--BackgroundColor) !important; transition: var(--Transition);}
.blog_le .accordion > li.on_this_category { background: var(--MainColor) !important; transition: var(--Transition);}
.blog_le .accordion > li a { color: var(--FontColor_1); font-weight: normal;}
.blog_le .accordion > li > i { color: var(--FontColor_1);}
.blog_le .accordion > li .link { padding: 0;}
.blog_le .accordion > li .link:last-child { border-bottom: 1px solid var(--BorderColor);}
.blog_le .accordion > li .link a, .blog_le .accordion > li.on_this_category .link a { margin-right: 55px; transition: var(--Transition);}
.blog_le .accordion > li:hover .link a, .blog_le .accordion > li.on_this_category .link a { color: #FFF !important; transition: var(--Transition);}

/*下拉箭頭*/
.blog_le .accordion li .link i { color: var(--FontColor_2);}
.fa-chevron-down::before {
  content: '';
  width: 12px;
  height: 6px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background: var(--FontColor_2);
}
.blog_le .accordion > li.on_this_category .link .fa-chevron-down::before { background: #FFFFFF;}

/*次分類*/
.blog_le .accordion .open li { background: #FFFFFFAA !important;}
.open .link { background: var(--MainColor);}
.open .link a { color: var(--BackgroundColor) !important;}
.submenu { background: transparent;}
.submenu li.on_this_category a { background: var(--SubColor_1);}

/*次分類展開*/
.blog_le .accordion > li.on_this_category ul li a { color: #FFFFFF;}
.blog_le .accordion > li.on_this_category ul li:hover a { color: #FFFFFF; background: var(--SubColor_1);}
.blog_le .accordion > li.on_this_category ul li a i::before { color: #FFFFFF}

.blog_le .accordion > li.on_this_category ul li.on_this_category a { background: var(--SubColor_1);}

/*次分類 hover*/
.submenu:hover li a { color: var(--FontColor_1); opacity: .3;}
.submenu:hover a:hover { color: var(--FontColor_1); background: transparent; opacity: 1;}
.submenu:hover li a::before { background: var(--FontColor_3); transition: var(--Transition);}
.submenu:hover li:hover a::before { background: var(--FontColor_3); transition: var(--Transition);}

/*分類/文章標題*/
h4.blog_category_title { font-size: var(--f24); letter-spacing: 1px; color: var(--MainColor); border-bottom: 1px var(--BorderColor) solid;}

/*文章列表*/
.blog_subbox { margin: auto; display: grid; grid-template-columns: repeat(3,1fr);}
.blog_subbox:before { content:none;}

/*--文章管理 / 內---------------------------------------*/

.blog_box { max-width: 1600px; margin: auto;}
.blog_box_edit { color: var(--FontColor_1); max-width: 100%; margin: auto;}

/*封面圖*/
.blog_box_edit .articel_mainPic { }

/*回列表*/
.blog_back a.article_btn_back { background: var(--MainColor); border: 1px solid var(--SubColor_1); transition: 0var(--Transition);}
.blog_back a.article_btn_back:hover { background: var(--FontColor_1); border-color: var(--FontColor_1); transition: 0var(--Transition);}

/*上/下一篇*/
.blog_back a.article_btn_prev, .blog_back a.article_btn_next { background: transparent; color: var(--SubColor_1); border: 1px solid var(--SubColor_1); transition: 0var(--Transition);}
.blog_back a.article_btn_prev:hover, .blog_back a.article_btn_next:hover { background: var(--SubColor_1); color: var(--BackgroundColor); transition: 0var(--Transition);}

/*--RWD---------------------------------------*/

@media screen and (max-width: 1024px) {
  /*首頁*/
  .module_i_news ul, .blog_subbox { width: 100%; grid-template-columns: repeat(2,1fr);}
}

@media screen and (max-width: 425px) {
  /*首頁*/
  .module_i_news ul, .blog_subbox { grid-template-columns: 1fr;}
}

/* = = = 相簿管理 02 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

/*--相簿管理 / 共同設定---------------------------------------*/

.album_page .main_part, .album_class_page .main_part { max-width: 1800px; width: 96%;}

/*--相簿管理 / 主分類---------------------------------------*/

/*項目排序*/
.clearfix { }
.clearfix:hover a:hover:after { opacity: 0; transition: var(--Transition);}
.clearfix:hover a:after { opacity: 1; transition: var(--Transition);}

/*項目*/
.show-list { display: flex; grid-gap: 20px;}
.show-list .item { padding: 0; margin: auto 0; background: transparent; transition: var(--Transition);}
.show-list .overlay { opacity: 1; transform: scale(1); transition: var(--Transition);}
.show-list .item:hover .overlay { opacity: 0; transition: var(--Transition);}

/*圖片*/
.show-list .show_pic { height: 50vh; line-height: 260px; padding: 0; padding-bottom: 0; aspect-ratio: initial;}
.show-list .show_pic img:hover { transform: scale(1.1);}

/*名稱*/
.show-list .show_name {
  position: absolute;
  right: 50%;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0%);
  width: 100%;
  height: auto;
  padding: 10px;
  font-size: var(--f16);
  font-weight: 400;
  text-align: center;
  color: #ffffff;
  background: #00000088;
  border: none;
  transition: var(--Transition);
}
.show-list .item:hover .show_name { color: #fff; opacity: 1;}

/*--相簿管理 / 次分類---------------------------------------*/

/*相簿名稱*/
.subalbum-menu h2 { color:var(--MainColor); font-size: var(--f24); letter-spacing: var(--LetterSpacing_B);}
.block { display: none;}

/*項目排序*/
.other_subalbum { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;}
.other_subalbum li { width: 100%;}
.other_subalbum:hover li a img { opacity: .6; transition: var(--Transition);}
.other_subalbum li a img { transition: var(--Transition);}
.other_subalbum li:hover a img { opacity: 1; transition: var(--Transition);}

/*項目名稱*/
.other_subalbum p { font-size: var(--f16); color: var(--FontColor_1); margin-top: 10px; letter-spacing: var(--LetterSpacing_S);}

/*其他相簿*/
.fa-image::before { color: var(--FontColor_3);}
.album_fixed_title { background: transparent;}
.album_fixed_title span:before { content: '觀看更多'; color: var(--FontColor_3); font-size: var(--f16); letter-spacing: var(--LetterSpacing_S);}

.other_album_choice li { background: var(--MainColor);}
.other_album_choice li a { color: #fff;}

/*--RWD---------------------------------------*/

@media screen and (max-width: 1024px) {
  .show-list, .clearfix, .other_subalbum { display: grid; grid-template-columns: repeat(3,1fr);}
}
@media screen and (max-width: 768px) {
  .show-list, .clearfix, .other_subalbum { grid-template-columns: repeat(2,1fr);}
}
@media screen and (max-width: 480px) {
  .show-list, .clearfix, .other_subalbum { grid-template-columns: repeat(1,1fr);}
}

/* = = = 聯絡表單 02 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

.contact_content form { display: flex; align-items: flex-start; gap: 20px;}

/*表單最大寬度設定*/
.contact_content { max-width: 1200px;}
.contact_content .information_right { width: 100%;}

/*標題*/
.blank_letter { color: var(--FontColor_2); font-size: 19px; letter-spacing: 3px; text-indent: 3px; font-weight: 500;}
h4.blank_letter.i { }

/*側邊資訊*/
.contact_content .information_left { width: 100%; order: 2;}
/*.clearfix:before, .clearfix:after { display: none;}*/
.contact_le_nomap { width: 100%; order: -1;}
.list_before { display: flex; flex-direction: column; width: 100%; margin: 20px 0;}
.list_before.info li { padding-left: 0; color: var(--FontColor_3);}

/*表格樣式*/
.contact_form li { padding: 0; margin-bottom: 20px;}
.contact_form li .form__label { width: 100%; text-align: left; margin-left: 0; padding: 0 0 10px; color: var(--FontColor_2);}/*標題*/
.contact_form li input.noborder { border: none; color: var(--FontColor_1); background: #FFFFFF; border-radius: 3px; padding: 10px;}/*文字欄*/
.contact_form li textarea.noborder {  border: none; color: var(--FontColor_1); background: #FFFFFF; border-radius: 3px; padding: 10px;}/*文字區塊*/
.form select { color: var(--FontColor_2); background: transparent;}/*下拉式*/
.form select option { background: var(--FontColor_3);}/*下拉式選項*/
input[type="checkbox"], input[type="radio"] { margin: 0 10px 10px;}/*複選、單選*/

/*驗證碼*/
.contact_form li:nth-last-of-type(2) .form__insert { display: inline-flex; align-items: center; justify-content: flex-start; flex-wrap: nowrap;}
/*.contact_form li:nth-last-of-type(2) .form__insert img { filter: invert(1) grayscale(1) brightness(2.4);}*/
/*.contact_form li:nth-last-of-type(2) input.noborder { border: 1px var(--BorderColor) solid;}*/
.captcha { margin-right: 20px;}

/*按鈕*/
.contact_form li.last blockquote { border-radius: 3px;}/*重新填寫*/
.contact_form li.last blockquote input { color: var(--FontColor_1);}/*重新填寫*/
.contact_form li.last input { color: #FFFFFF;}/*送出*/
.contact_form li.last cite { color: var(--FontColor_3); background: var(--MainColor); border: 1px solid var(--MainColor); border-radius: 3px;}/*送出*/
.contact_form .fa-arrow-right::before { background: #FFFFFF;}

.contact_form li.last blockquote { border: 1px var(--BorderColor) solid;}
.contact_le_map a { background: var(--MainColor);}

@media screen and (max-width: 768px) { 
  .contact_content form { flex-direction: column;}

  /*資訊*/
  .contact_content .information_left { width: 96%; margin: auto; padding: 50px 0; grid-template-columns: repeat(1, 1fr);}
  h4.blank_letter.i { position: relative; display: block; width: 100%; margin-top: 20px;}
  h4.blank_letter.i::after {content: "GET IN TOUCH"; position: absolute; left: 0; top: 0; font-weight: 300; font-size: 19px; letter-spacing: 2px; text-indent: 2px; font-family: var(--SFontC);}
  .list_before, .list_before.account { width: 100%; padding: 20px 0;}
  .list_before.info::after { display: none;}
  .contact_le_nomap { width: 100%;}

  /*表單*/
  .contact_content .information_right { display: block; width: 96%; margin: auto;}
}

@media screen and (max-width: 425px){
  /*聯絡表單*/
  .contact_form li { padding-left: 0;}
  .contact_form li .form__label { margin: 0 0 10px; width: 100%; text-align: left;}
  .contact_form li .form__insert { width: 100%;}
}