/*20160930 by kevin*/
@charset "utf-8";
/* CSS Document */

/*------------------------------------------CSS Reset 開始-------------------------------*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
div,
span,
applet,
object,
iframe,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dt,
dd,
li,
fieldset,
form,
label,
legend,
caption,
tbody,
tfoot,
thead,
th,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  box-sizing: border-box;
  /*font: inherit;*/ /*修改部分 by kevin 20140822*/
  /*vertical-align: baseline;*/ /*修改部分 by kevin 20140822*/
}

html{
  /* font-size: 1.6em; */
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  /*list-style: none;*/ /*修改部分 by kevin 20140822 會影響到網邊*/
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  /*border-collapse: collapse;
	border-spacing: 0;*/
}

body {
  margin: 0;
  padding: 0;
  background: #fff;
  color: #333;
  font-family: Arial, Helvetica, sans-serif, "Century Gothic", "Times New Roman",
    Times, serif, "微軟正黑體", "新細明體";
  /*overflow-x: hidden;*/
  letter-spacing: 1px;
  -webkit-text-size-adjust: none; /*解決iphone橫平轉豎屏時字變大的問題*/

  font-family: var(--mandarin_font);
  font-size: var(--fontSize); /* 16px */

}

/* ~~ 元素/標籤選取器 ~~ */
ul,
ol,
dl {
  /* 由於瀏覽器之間的差異，最佳作法是在清單中使用零寬度的欄位間隔及邊界。為了保持一致，您可以在這裡指定所要的量，或在清單包含的清單項目 (LI、DT、DD) 上指定所要的量。請記住，除非您寫入較為特定的選取器，否則在此執行的作業將重疊顯示到 .nav 清單。 */
  padding: 0;
  margin: 0;
}

/*-----↓↓↓↓新增部分 by kevin 20150108 為了網編↓↓↓↓-----*/
ul,
ol {
  padding-left: 40px;
}
/*-----↑↑↑↑新增部分 by kevin 20150108 為了網編↑↑↑↑-----*/

/*h1, h2, h3, h4, h5, h6,*/
p {
  margin: 0;
  padding: 0;
}

/*img{ display:block;}*/ /*清除IE7下方溢位*/

a img {
  /* 這個選取器會移除某些瀏覽器在影像由連結所圍繞時，影像周圍所顯示的預設藍色邊框 */
  border: none;
}

.clearfloat {
  /* 這個類別可放置在 <br /> 或空白的 Div 上，當做接在 #container 內最後一個浮動 Div 後方的最後一個元素 (如果從 #container 移除或取出 #footer) */
  clear: both;
  height: 0;
  font-size: 0.0625em;
  line-height: 0;
}
a {
  /*color:#ccc;*/ /*修改部分 by kevin 20140814 會影響到網編區 不宜使用*/
  text-decoration: none;
  outline: none; /* for Firefox Google Chrome  */ /*讓a點擊時不會出現框線*/
  behavior: expression(
    this.onFocus=this.blur()
  ); /* for IE */ /*讓a點擊時不會出現框線*/
}
a:hover {
  /*color:#ccc;*/ /*修改部分 by kevin 201450108 太醜了所以刪掉*/
  text-decoration: underline;
  /*opacity:0.9;新增部分 by kevin 20150121*/ /*會影響到輪播 刪除 by kevin 20150324*/
}

a:active,
a:focus {
  /* 這個選取器群組可以讓使用鍵盤導覽的使用者，也和使用滑鼠的使用者一樣擁有相同的滑過體驗。 */
  text-decoration: none;
}

area {
  outline: none;
}
/*------------------------------------------CSS Reset 結束-------------------------------*/

/*------------------------------------------icon-字型 開始-------------------------------*/
@font-face {
  font-family: "LigatureSymbols";
  src: url("../icon_fonts/ligature_symbols/LigatureSymbols-2.11.eot");
  src: url("../icon_fonts/ligature_symbols/LigatureSymbols-2.11.eot?#iefix")
      format("embedded-opentype"),
    url("../icon_fonts/ligature_symbols/LigatureSymbols-2.11.woff")
      format("woff"),
    url("../icon_fonts/ligature_symbols/LigatureSymbols-2.11.ttf")
      format("truetype"),
    url("../icon_fonts/ligature_symbols/LigatureSymbols-2.11.svg#LigatureSymbols")
      format("svg");
  src: url("../icon_fonts/ligature_symbols/LigatureSymbols-2.11.ttf")
    format("truetype");
  font-weight: normal;
  font-style: normal;
}
.lsf,
.lsf-icon:before {
  font-family: "LigatureSymbols";
  -webkit-text-rendering: optimizeLegibility;
  -moz-text-rendering: optimizeLegibility;
  -ms-text-rendering: optimizeLegibility;
  -o-text-rendering: optimizeLegibility;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -ms-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-font-feature-settings: "liga" 1, "dlig" 1;
  -moz-font-feature-settings: "liga=1, dlig=1";
  -ms-font-feature-settings: "liga" 1, "dlig" 1;
  -o-font-feature-settings: "liga" 1, "dlig" 1;
  font-feature-settings: "liga" 1, "dlig" 1;
}

.lsf-icon:before {
  content: attr(title);
  /*margin-right:0.3em;*/
}
/*------------------------------------------icon-字型 結束-------------------------------*/

/*--------------------------------------loading畫面 開始---------------------------------*/
.loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  background: #fff;
  text-align: center;

  /*新增by pekey 20171211*/
  padding-top: 250px;
}

/*Loading畫面CSS開始*/
#circularG {
  position: relative;
  width: 58px;
  height: 58px;
  margin: auto;
}

.circularG {
  position: absolute;
  background-color: var(--primary_color); /*此為Loding的點點顏色*/
  width: 14px;
  height: 14px;
  border-radius: 0.5625em;
  -o-border-radius: 0.5625em;
  -ms-border-radius: 0.5625em;
  -webkit-border-radius: 0.5625em;
  -moz-border-radius: 0.5625em;
  animation-name: bounce_circularG;
  -o-animation-name: bounce_circularG;
  -ms-animation-name: bounce_circularG;
  -webkit-animation-name: bounce_circularG;
  -moz-animation-name: bounce_circularG;
  animation-duration: 1.1s;
  -o-animation-duration: 1.1s;
  -ms-animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  -moz-animation-duration: 1.1s;
  animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-direction: normal;
  -o-animation-direction: normal;
  -ms-animation-direction: normal;
  -webkit-animation-direction: normal;
  -moz-animation-direction: normal;
}

#circularG_1 {
  left: 0;
  top: 23px;
  animation-delay: 0.41s;
  -o-animation-delay: 0.41s;
  -ms-animation-delay: 0.41s;
  -webkit-animation-delay: 0.41s;
  -moz-animation-delay: 0.41s;
}

#circularG_2 {
  left: 6px;
  top: 6px;
  animation-delay: 0.55s;
  -o-animation-delay: 0.55s;
  -ms-animation-delay: 0.55s;
  -webkit-animation-delay: 0.55s;
  -moz-animation-delay: 0.55s;
}

#circularG_3 {
  top: 0;
  left: 23px;
  animation-delay: 0.69s;
  -o-animation-delay: 0.69s;
  -ms-animation-delay: 0.69s;
  -webkit-animation-delay: 0.69s;
  -moz-animation-delay: 0.69s;
}

#circularG_4 {
  right: 6px;
  top: 6px;
  animation-delay: 0.83s;
  -o-animation-delay: 0.83s;
  -ms-animation-delay: 0.83s;
  -webkit-animation-delay: 0.83s;
  -moz-animation-delay: 0.83s;
}

#circularG_5 {
  right: 0;
  top: 23px;
  animation-delay: 0.97s;
  -o-animation-delay: 0.97s;
  -ms-animation-delay: 0.97s;
  -webkit-animation-delay: 0.97s;
  -moz-animation-delay: 0.97s;
}

#circularG_6 {
  right: 6px;
  bottom: 6px;
  animation-delay: 1.1s;
  -o-animation-delay: 1.1s;
  -ms-animation-delay: 1.1s;
  -webkit-animation-delay: 1.1s;
  -moz-animation-delay: 1.1s;
}

#circularG_7 {
  left: 23px;
  bottom: 0;
  animation-delay: 1.24s;
  -o-animation-delay: 1.24s;
  -ms-animation-delay: 1.24s;
  -webkit-animation-delay: 1.24s;
  -moz-animation-delay: 1.24s;
}

#circularG_8 {
  left: 6px;
  bottom: 6px;
  animation-delay: 1.38s;
  -o-animation-delay: 1.38s;
  -ms-animation-delay: 1.38s;
  -webkit-animation-delay: 1.38s;
  -moz-animation-delay: 1.38s;
}

@keyframes bounce_circularG {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.3);
  }
}

@-o-keyframes bounce_circularG {
  0% {
    -o-transform: scale(1);
  }

  100% {
    -o-transform: scale(0.3);
  }
}

@-ms-keyframes bounce_circularG {
  0% {
    -ms-transform: scale(1);
  }

  100% {
    -ms-transform: scale(0.3);
  }
}

@-webkit-keyframes bounce_circularG {
  0% {
    -webkit-transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0.3);
  }
}

@-moz-keyframes bounce_circularG {
  0% {
    -moz-transform: scale(1);
  }

  100% {
    -moz-transform: scale(0.3);
  }
}
/*Loading畫面CSS結束*/

.loading_tit {
  padding: 20px 0px 0px 15px;
  display: inline-block;
  font-size: 1em;
  font-weight: bold;
  color: #333;
  font-family: 微軟正黑體;
  text-align: center;
}
/*-------------------------------------loading畫面 結束---------------------------------*/

/*Webkit,Opera9.5+,Ie9+ 控制文字選取時的顏色*/
::selection {
  background: #1a73e8;
  color: #fff;
}

/*Mozilla Firefox 控制文字選取時的顏色*/
::-moz-selection {
  background: #1a73e8;
  color: #fff;
}

.wrap {
  width: 80%;
  /*width:984px;*/
  margin: 0 auto;
  padding: 0;
}

@media (max-width: 1280px) {
  .wrap {
    width: 95%;
  }
}

@media screen and (min-width: 991px) and (max-width: 1280px) and (-webkit-min-device-pixel-ratio: 1.25),
  only screen and (-o-min-device-pixel-ratio: 125/100) {
  /* 在螢幕放大125%且寬度大於990時，套用這裡的特定樣式 */

  /*.wrap {
		 width:76%;
	} */
}

@media screen and (min-width: 991px) and (-webkit-min-device-pixel-ratio: 1.25),
  only screen and (-o-min-device-pixel-ratio: 125/100) {
  /* 在螢幕放大125%且寬度大於990時，套用這裡的特定樣式 */

  .wrap {
    width: 90%;
  }
}

@media (max-width: 990px) {
  .wrap {
    width: 85%;
  }
}
@media (max-width: 768px) {
  .wrap {
    width: 90%;
  }
}

/*-------input reset--------------------------------------------------------*/
input,
textarea,
select {
  font-family: Arial, Helvetica, sans-serif, "Century Gothic", "Times New Roman",
    Times, serif, "微軟正黑體", "Microsoft JhengHei", "新細明體";
  font-size: 0.9375em;
  border-radius: 0.1875em;
  border: solid 0.0625em #cacaca;
}
input[type="text"],
.input,
input[type="password"],
input[type="search"],
input[type="email"],
input[type="tel"],
input[type="time"],
input[type="number"],
input[type="date"] {
  margin: 0;
  padding: 0;
  outline: none;
  vertical-align: middle;
  height: 3.125rem;
  line-height: 3.125rem; /* 20250414 */
  width: 100%;
  transition: 0.2s ease all;
  padding: 0px 6px 0px 6px;
  box-sizing: border-box;
  border-radius: .625rem;
  font-size: 1em; /* 20250414 */
  
}
input[type="text"]:focus,
.input:focus,
input:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="time"]:focus,
input[type="number"]:focus,
input[type="date"]:focus {
  border: solid 0.0625em #d5d5d5;
}
input[type="text"]:disabled,
.input:disabled,
input:disabled,
input[type="password"]:disabled,
input[type="search"]:disabled,
input[type="email"]:disabled,
input[type="tel"]:disabled,
input[type="time"]:disabled,
input[type="number"]:disabled,
input[type="date"]:disabled,
select:disabled {
  background-color: #e6e6e6;
  border-color: #e6e6e6;
  color: #747474;
}

input[type="button"],
input[type="submit"],
input[type="reset"] {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  margin: 0;
  padding: 0;
  outline: none;
  cursor: pointer;
  vertical-align: middle;
  border: none;
  width: 155px;
  height: 45px;
  background: #fff0;
  color: var(--primary_color);
  border: 0.0625em solid var(--primary_color);
  border-radius: 0.125em;
  font-size: 1em;
  line-height: 3.125rem; /* 20250414 */
  transition: 0.2s ease all;
  letter-spacing: normal;
}
input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover {
  /* opacity:0.5; */
}

input[type="reset"] {
  background: var(--primary_color);
  color: #fff;
}

input[type="radio"],
input[type="checkbox"] {
  margin: 0px;
  padding: 0px;
  outline: none;
  vertical-align: baseline;
  cursor: pointer;
}

textarea {
  margin: 0;
  padding: 0;
  outline: none;
  vertical-align: middle;
  line-height: 1.5em;
  width: 100%;
  resize: none;
  height: 117px;
  transition: 0.2s ease all;
  box-sizing: border-box;
  padding: 3px;
  
}
textarea:focus {
  border: solid 0.0625em #d5d5d5;
}

select {
  margin: 0;
  padding: 0;
  outline: none;
  vertical-align: middle;
  /* padding: 9px 0px 10px 7px; */
  padding: 0px 0px 0px 7px;

  height: 42px;
  line-height: 2.625em;

  transition: 0.2s ease all;
  background: #fff;
  letter-spacing: 1px;
  -webkit-appearance: none; /* Safari 和 Chrome */
  -moz-appearance: none; /* Firefox */
  -ms-appearance: none; /*for Internet Explorer*/
  -o-appearance: none; /*for Opera*/
  appearance: none;
  background: #fff url(../images/chevron-down.svg) no-repeat;
  
  background-size: .9375em;/* 20250414 */
  background-position: 95% 50%;
  padding-right: 18px !important;
  border-radius: .625rem;
  font-size: 1em;
  line-height: 3.125rem;/* 20250414 */
  height: 3.125rem;
}
select::-ms-expand {
  /*for Internet Explorer*/
  display: none;
}
select:focus {
  border: solid 0.0625em #d5d5d5;
}

label {
  cursor: pointer;
}

@media (max-width: 990px){
  input[type="text"],
.input,
input[type="password"],
input[type="search"],
input[type="email"],
input[type="tel"],
input[type="time"],
input[type="number"],
input[type="date"] {
  font-size: 1em;
  
}
}
/* 在螢幕放大125%且寬度大於991時，套用這裡的特定樣式 */ 
@media screen and (min-width: 991px) and (min-height: 500px) and (max-height: 1000px) and (-webkit-min-device-pixel-ratio: 1.25) and (-webkit-max-device-pixel-ratio: 1.49), only screen and (min-resolution: 125dpi) and (max-resolution: 149dpi) {
  input[type="text"],
.input,
input[type="password"],
input[type="search"],
input[type="email"],
input[type="tel"],
input[type="time"],
input[type="number"],
input[type="date"] {
 font-size: 1em;
  
}
  select {
    font-size: 1em;
    
  }
}
/* 在螢幕放大150%且寬度大於991時，套用這裡的特定樣式 */ 
@media screen and (min-width: 991px) and (min-height: 500px) and 
(max-height: 1000px) and (-webkit-min-device-pixel-ratio: 1.5) and 
(-webkit-max-device-pixel-ratio: 1.74), only screen and (min-resolution: 150dpi) and 
(max-resolution: 174dpi) { 
  input[type="text"],
  .input,
  input[type="password"],
  input[type="search"],
  input[type="email"],
  input[type="tel"],
  input[type="time"],
  input[type="number"],
  input[type="date"] {
   font-size: 1em;
    
  }
  select {
    font-size: 1em;
    
  }
}

/*-------輪播----------------------------------------------------------------------------*/

/*首頁banner區*/
/* .index_bannerArea{
	display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    align-content: flex-start;	
} */

/*首頁banner右側-------------------------------------*/
/* .index_bannerRight{
	box-sizing:border-box;
	width:30%;	
}

	.index_bannerRightIn{
		display: flex;
		flex-wrap: wrap;
		flex-direction: row;
	} */

/*首頁banner右側列表*/
/* .index_bannerR_list{
		box-sizing:border-box;
		width:50%;
		padding-left: 10px;
		
	}
	.index_bannerR_list:first-child{
		padding-bottom:10px;
	}	
	.index_bannerR_list:nth-child(2){
		padding-bottom:10px;
	}

	.index_bannerR_list a{
		display: block;
		position: relative;
		padding-top: 100%;
	}	
		.index_bannerR_list img{			
			position: absolute;
			top: 0;
			left: 0;
			bottom: 0;
			right: 0;
			float: none;
			width: 100% !important;
			height: 100% !important;
			object-fit: cover;
		}

		.index_bannerR_list a:hover {
			background-color:#000;
			transition: 0.3s ease all;
		}
		.index_bannerR_list a:hover img {
		    opacity:0.5;
			transition: 0.3s ease all;
		} */

/*首頁banner------------------------------------------------*/
body{
  /* background: url(../index/images/bg.webp);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover; */
}
.bottom_bg{
  width: 100%;
}
.bottom_bg img{
  width: 100%;
  height: auto;

}
.banner {
  background: #fff0;
  position: relative;
}

.main .swiper-button-prev,
.main .swiper-button-next {
  display: block;
  position: absolute;
  top: 50%;
  margin: 0px;
  /* z-index: 10;
    cursor: pointer; */
  width: 60px;
  height: 60px;
  background-size: 60px;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.main .swiper-button-prev {
  background-image: url(../index/images/left_arrow.png);
}
.main .swiper-button-next {
  background-image: url(../index/images/right_arrow.png);
}
.main .swiper-button-prev:after,
.main .swiper-button-next:after {
  /* content: 'prev'; */
  display: none;
}

/* .inmain::before{
  position: absolute;
  content: "";
  bottom: -10px;
  left: 0;
  width: 100%; */
  /* height: 100%; */
  /* aspect-ratio: 4.17 / 1; */
  /* background-image: url(../images/in_bg.webp); 1920 * 460 */
  /* background-position: center top;
  background-repeat: no-repeat;
  background-size: 100%;
  
  z-index: -1;
} */
/*輪播區*/
.swiper-container {
  height: auto;
}
.swiper-slide img {
  width: 100%;
  height: auto;
}

/*輪播點點*/
.main .swiper-pagination {
  z-index: 888;
  height: 10px;
  opacity: 1;
}
.main .swiper-pagination-clickable .swiper-pagination-bullet {
  background-color: #fff;
  z-index: 5;
  display: inline-block;
  width: 10px;
  height: 10px;
  opacity: 1;
}
.main
  .swiper-pagination
  span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--primary_color);
}

.index_bannerArea .swiper-pagination {
  left: 15px !important;
  text-align: left;
}

/*輪播區*/
.swiper-container {
  height: auto;
}
.swiper-wrapper {
}
.swiper-slide {
}
.swiper-slide img {
  width: 100%;
  height: auto;
}

.swiper-active-switch {
  /*輪播點點當前模式*/
  /* background: #c42605; */
}

.banner .swiper-slide a {
  display: block;
}

.pcBanner,
.mobileBanner {
  /* background-position: center;
					background-repeat: no-repeat;
					background-size: cover; */
}

.banner .swiper-slide a:focus {
  background-color: var(--fourth_color);
}
.banner .swiper-slide a:hover img,
.banner .swiper-slide a:focus img {
  opacity: 0.8;
}

.pcBanner {
}
.mobileBanner {
  display: none;
}

/* 在螢幕放大150%且寬度大於991時，套用這裡的特定樣式 */
@media screen and (min-width: 991px) and (-webkit-min-device-pixel-ratio: 1.5),
  only screen and (-o-min-device-pixel-ratio: 150/100) {
  .main .swiper-button-prev,
  .main .swiper-button-next {
    width: calc(60px / 1.5);
    height: calc(60px / 1.5);
    background-size: calc(60px / 1.5);
  }
}

@media (max-width: 1100px) {
  .pcBanner {
    display: none;
  }
  .mobileBanner {
    display: block;
  }

  .main .swiper-button-prev,
  .main .swiper-button-next {
    display: none;
  }
}

/*-------頁次--RWD版 by kevin 20150921------------------------------------------------------------------------*/
.page_area_rwd {
  text-align: center;
  padding: 25px 0px 0px 0px;
}
.page_left_arrow,
.page_right_arrow {
  width: 83px;
  font-size: 0.9375em;
  font-weight: bold;
  text-align: center;
  display: inline-block;
  vertical-align: top;
}
.page_left_arrow a,
.page_right_arrow a {
  text-decoration: none;
  display: block;
  transition: 0.2s ease all;
  color: #fff;
  line-height: 2.5em;
  background: var(--primary_color);
  border-radius: 0.125em;
}
.page_left_arrow a:hover,
.page_right_arrow a:hover {
  background: #f39800;
}
.page_select {
  display: inline-block;
  padding: 0px 7px;
  vertical-align: top;
}
.page_select select {
  width: auto !important;
  font-size: 0.9375em !important;
  padding: 8px 18px 7px 16px !important;
  border: solid 0.0625em #a4a4a4 !important;
  height: 40px !important;
  box-sizing: border-box;
  border-radius: 0.1875em;
}

/*-------頁次--置中版--修改 by kevin 20150328------------------------------------------------------------------------*/
.page_area {
  margin: 0px 0px 0px 0px;
}
.page_area table {
  margin: 0 auto; /*置中*/
  /*margin: 0px 0px 0px auto;*/ /*靠右*/
}
.page_area table td {
  vertical-align: top;
}
.page_bot {
  float: left;
  padding-top: 3px;
  margin-right: 5px;
}
.page_pages {
  float: left;
  font-size: 0.75em;
  text-align: center;
  color: #000;
  line-height: 1.0625em;
  margin-top: -5px;
  width: 55px;
}
.page_text {
  float: left;
  margin: 0;
  padding: 0;
  border: solid 0.0625em #b5b5b5 !important;
  background: #fff !important;
  width: 54px !important;
  height: 19px !important;
  line-height: 1.0625em !important;
  margin-left: 8px !important;
  margin-right: 5px !important;
}

.page_area a {
  transition: 0.2s ease all;
}

.page_area a:hover {
  opacity: 0.7;
  filter: alpha(opacity=70); /* 针对 IE8 以及更早的版本 */
}











			
	
/*-------頁籤------------------------------------------------------------------------*/
.tab_area {
	
}
	.tabs_btn_now {
		transition:0.3s ease all;
		font-size:1.375em; /*22px*/
		line-height:39px;
		padding:0px 36px 0px 36px;
		text-align:center;
		display:none;
		position:relative;
		background:#fff;
		border-bottom: solid 1px #e3e3e3;
		font-weight:bold;
	}
		.tabs_btn_now:hover {
			background:#fff;
		}
		.tabs_btn_now_arrow {
			position: absolute;
			/* border-top: solid 5px #333; */
			top: 50%;
			right: 20px;
      transform: translateY(-50%);
			/* border-left: solid 5px rgba(255, 255, 255, 0);
			border-right: solid 5px rgba(255, 255, 255, 0); */
		}
    .tabs_btn_now_arrow i{
      font-size: 1.12rem;
      display: block;
    }




		
	.img-scroll {
		height:39px;
		position:relative;
		/* background-color: #fff; */
		height: auto;
	}
		.img-list { 
			position:relative; 
		}
			ul.tabs {
				margin:0; 
				padding:0; 
				list-style:none;
			}
				.tabs li {
					float:left;
					/* width: 25%; */
					font-size: 0.875em; /*20250410*/
					color:#000000;
					line-height: normal;
					box-sizing: border-box;
					position: relative;
          
				}

				/* active */
				.tabs li.active {
				}

					.tabs span {
						text-decoration:none;
						display:block;
						/* padding: 20px 45px; */
						transition:0.3s ease all;
						background:#fff;
						text-align:center;
						cursor:pointer;
						box-sizing: border-box;
						border-bottom: 1px solid #fff0;
						border: none;
						border-left: 0;
						font-size:1.375em; /*22px*/
						border-radius: 10px 10px 0 0;
						height: 42px;
						line-height: 24px;




						color: #000;
						background: transparent;
						border:none;
						height: auto;
						line-height: normal;
						padding: clamp(0.4194rem, 0.6771vw, 0.8125rem) 0; /* 最小值 6.71px、大小約 0.6771vw、最大值 13.00px */
						padding-left:  clamp(1.4517rem, 2.3438vw, 2.8125rem); /* 最小值 23.23px、大小約 2.3438vw、最大值 45.00px */
						padding-right: clamp(1.4517rem, 2.3438vw, 2.8125rem); /* 最小值 23.23px、大小約 2.3438vw、最大值 45.00px */
					}

					.tabs li:nth-of-type(1) span {
						/* border-left: 1px solid var(--seventh_color); 
						border-top-left-radius: 3px;
						border-bottom-left-radius: 3px;*/
					}

					.tabs li:last-of-type span { 
						/* border-top-right-radius: 3px;
    					border-bottom-right-radius: 3px; */
					}

					/* hover */
					.tabs li span:hover {
						/* background-color: #cccccc; */
						/* color: #ffffff; */
						/* opacity: 0.5; */
					}
					.tabs li:hover span:after {
						width: 100%;
						transition: width 0.3s ease;
					}

					/* active */
					.tabs li.active span {
						/* background-color: #cccccc; */
						/* color: #ffffff; */
						position: relative;
						/* border-bottom: 1px solid #fff0; */
						/* border-bottom: none; */
						/* border-top-left-radius: 10px;
						border-top-right-radius: 10px; */

            color: #fff;
            background: var(--eighth_color);
					}
					.tabs li span:after{
						/* position: absolute; */
						/* content: ""; */
						/* width: 0%; */
						/* height: 3px; */
						/* background-color: var(--primary_color); */
						/* bottom: 0; */
						/* left: 0; */
						/* transition: width 0.3s ease; */
					}
					.tabs li.active span:after{
						/* width: 100%; */
					}

						/* active */
						.tabs li.active span:before {
							position: absolute;
							content:'';
							/* border-top: solid 10px #cccccc;
							border-left: solid 10px rgba(255,255,255,0);
							border-right: solid 10px rgba(255,255,255,0);
							bottom: -10px;

							left: 50%;
							-webkit-transform:  translateX(-50%);
							transform:  translateX(-50%);

							opacity: 0; */
							background-image: url(../images/tab_arrow.svg);
							background-size: cover;
							background-position: center;
							background-repeat: no-repeat;
							bottom: -13px;
							left: 50%;
							-webkit-transform:  translateX(-50%);
							transform:  translateX(-50%);
							height: 14px;
							aspect-ratio: 29 / 16;
						}

		
		#tab1{}
		.tab_content{}



/*產品內頁頁籤的網編區*/
.p_tab_text_area {
	background:#fff;
	/* padding: 30px 0px 0px; */
}



@media (max-width: 760px){
	/*頁籤*/
	.tab_area {
		position:relative;
	}
		.tabs_btn_now {
			display:block;
		}
		
		.img-scroll {
			display:none;
			height:auto;
			/*position: absolute;*/
			width: 100%;
			
			/* z-index: 999; */ 
			/* 修正 modify by pekey 20210429 */
			z-index: 99;
		}
			.tabs li, .img-scroll1 .tabs li, .img-scroll2 .tabs li, .img-scroll3 .tabs li, .img-scroll4 .tabs li, .img-scroll5 .tabs li {
				float:none;
				text-align:center;
				width:100%;
				font-size:15px;
				border-radius:0px;
				border: none;
				border-bottom: solid 1px #cccccc;
			}
				.tabs li.active:after {
					content:"";
				}

					.tabs span {
						border: 0px;
					}

					.tabs li:nth-of-type(1) span {
						border-left: 0px;
						border-top-left-radius: 0px;
						border-bottom-leftradius: 0px;
					}
					.tabs li:last-of-type span {
						border-top-right-radius: 0px;
						border-bottom-right-radius: 0px;
					}
					.tabs li.active span {
						/* background-color: #cccccc; */
						color: #ffffff;
						position: relative;
						border: none;
						background-color: var(--eighth_color);
						border-radius: 0px;
					}


          						/* active */
						.tabs li.active span:before {
							display: none;
						}
}






















/*-------驗證碼----------------------------------------------------------------------------*/
.captcha {
  line-height: 2.3125em;
  padding: 0px 0px 5px 0px !important;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.captcha input[type="text"] {
  width: 80px;
  margin-right: 5px;
}
.captcha a {
  transition: 0.5s ease all;
  color: #fff;
  background: var(--secondary_color);
  border: var(--secondary_color) solid 0.15rem;
  border-radius: 0.3125em;
  padding: 2px 11px;
  font-size: 0.875em;
  line-height: 1.8125em;
  display: inline-block;
  text-decoration: none;
}
.captcha a:hover {
}

.captcha img {
  vertical-align: middle;
  margin-right: 5px;
}
.captcha span {
  /* color:#c30000; */
  color: var(--fourth_color);
  margin: 0 5px;
}

/* 文字驗證碼(另開新視窗) */
.captchaB_wrap {
  display: inline-flex;
  flex-wrap: wrap;
  font-size: 0.875em;
  line-height: 1.8125em;
}
.captchaB {
}
.captchaB span {
  /* color: #c30000; */
  color: var(--fourth_color);
  display: block;
  margin: 0;
}

.captchaB a {
  transition: 0.5s ease all;
  color: #fff;
  background-color: var(--secondary_color);
  border-radius: 0.3125em;
  padding: 2px 11px 2px;
  font-size: inherit;
  display: inline-block;
  line-height: inherit;
  text-decoration: none;
  vertical-align: middle;
  margin: 0px 0px 0px 5px;
  border: #333 solid 0.15rem;
}

@media (max-width: 1100px) {
  .captchaB_wrap {
    width: 100%;
    /* padding-top: 12px; */
    padding-top: 5px;
  }
  .captchaB_wrap .captchaB:first-child {
    padding: 0;
  }
  .captchaB_wrap .captchaB:first-child a {
    margin: 0;
  }
}

/*-------表單區----------------------------------------------------------------------------*/
/*表單區底*/
.form_area_bg {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0px 20px;
}
@media (max-width: 800px) {
  .form_area_bg {
    padding: 0px;
  }
}

/*表單區備註*/
.form_remark {
  font-size: 0.9375em;
  line-height: 1.375em;
  padding: 10px 0px 25px 0px;
}
/*必填icon*/
.requirde_icon {
  display: inline-block;
  font-size: 1.125em;
  line-height: 1;
  color: #cb2923;
  background: #ffffff00;
  padding: 0px;
}
.requirde_icon a {
  display: inline-block;
  font-size: 0.8em;
  line-height: inherit;
  color: inherit;
  text-decoration: none;
}
/*表單區*/
.form_area {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  vertical-align: top;
  justify-content: space-between;
  align-content: flex-start;
}
/*表單區左*/
.form_left {
  width: 48%;
  float: left;
}
/*表單區右*/
.form_right {
  width: 48%;
  float: right;
}
.form_list {
  box-sizing: border-box;
  font-size: 0.9375em;
  line-height: 1.4;
  width: 100%;
}
.form_list.fLType2 {
  width: 49%;
}

.fL_tit {
  font-size: 1em;
  font-weight: 500;
  padding: 3px 0px 6px 0px;
  position: relative;
}
/*必填icon*/
.fL_tit .requirde_icon {
}
.fL_tit .cBT_checkbox {
  font-size: 0.75em;
  line-height: 1;
}
.fL_tit .cBT_checkbox input[type="checkbox"] {
  /*Judy修改20210929*/
  display: inline-block;
  font-size: 0.75em;
  line-height: 1;
  vertical-align: -6%;
}

.fL_info {
  padding: 0px 0px 9px 0px;
  padding: 0px 0px 17px 0px;
}

.fL_info select {
  width: 100%;
}

/*沒有輸入框時*/
.fL_info.no_input {
  padding: 13px 0px 17px 0px;
}

.fL_info label {
  display: inline-block;
}

/*地址樣式*/
.fLR_address {
  position: relative;
  padding-left: 315px;
  box-sizing: border-box;
}
.fLTypeTwEn .fLR_address {
  width: 49.5%;
}

.fLR_address select {
  position: absolute;
  left: 0px;
  width: 100px;
  height: 42px;
}
.fLR_address select:nth-of-type(2) {
  position: absolute;
  left: 105px;
}

/* input.fLRA_postalCode {
							position:absolute;
							width:100px;
							left:220px;
						} 
						.fLR_address input.fLRA_address {
						}*/
.fLR_address input.fLRA_postalCode {
  position: absolute;
  width: 100px;
  left: 210px;
}
.fLR_address input.address.fLRA_address {
  width: 100%;
}

/*地址樣式*/
/* .fL_info.address{
						position: relative;
						padding-left: 320px;
					}
						.fL_info.address select {
							width: 75px;
							height: 42px;
							position: absolute;
							left: 0px;
						}
						.fL_info.address select:nth-of-type(2) {
							left:80px;
						}	
						.fL_info.address select:nth-of-type(3) {
							left:160px;
						}				
						.fL_info.address > input[type='text'] {
							position: absolute;
							width:75px;
							left:240px;
						}
						.fL_info.address div{
						}
						.fL_info.address div > input[type='text']{
						} */

/*地址樣式*/
/* .fL_info.country{
					}
					
					.fL_info.country div{
						position: relative;
						padding-left: 80px;
					}     
						
						.fL_info.country select{
							position: absolute;
							width:75px;
							left:0px;
						}     
						
						.fL_info.country input{
						} */

/*生日樣式*/
.fL_info.birthday {
}
.fL_info.birthday select {
  width: auto;
  margin: 0px 0px 0px 0px;
}

/*檔案上傳樣式*/
.inputFile {
  position: relative;
  border: solid 0.0625em #aeaeae;
  background: #fff;
  border-radius: 0.1875em;
  padding: 0px 80px 0px 0px;
  margin-bottom: 17px;
  /* margin: 0px 0px 17px; */
}
.inputFile input[type="text"] {
  border: none;
  background: none;
}

.inputFile label {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  text-align: right;
}
.inputFile label div {
  background: var(--primary_color);
  color: #fff;
  font-size: 0.9375em;
  /* line-height: 2.625em; */
  line-height: 3em;
  text-align: center;
  width: 80px;
  display: inline-block;
  transition: 0.3s ease all;
}
.inputFile label:hover div {
  background: var(--secondary_color);
}
/* .inputFile label div:focus ,
						.inputFile:focus  {
							background: var(--fourth_color);
						} */

.inputFile input[type="file"] {
  display: none;
}

/*檔案上傳button*/
.upload {
  position: relative;
  padding-right: 90px;
}
.upload .upload_button {
  position: absolute;
  right: 0;
  top: 0;
  background: var(--secondary_color);
  border-color: var(--secondary_color);
  height: auto;
  line-height: 2.625em;
  line-height: 3em;
  color: #fff;
  width: 80px;
  border-radius: 0.1875em;
  font-size: 0.9375em;
}

.upload .upload_button:hover {
  background: var(--third_color);
  border-color: var(--third_color);
  transition: 0.3s ease all;
}

/*檔案已上傳*/
.uploaded {
  color: var(--primary_color);
}
.uploaded a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.uploaded a:hover {
  opacity: 0.5;
}

/*多選----------------------------*/
.find_out_area {
  padding: 0px 0px 17px 0px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  vertical-align: top;
  /* justify-content: space-between; */
  align-items: center;
}
.find_out {
  padding: 0px 10px 0px 0px;
}
.find_out label {
}
.find_out input[type="checkbox"] {
  margin-right: 5px;
}

.find_out.other label {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.find_out.other input[type="checkbox"] {
  /* padding-right: 5px; */
}
.find_out.other input.other {
  height: 30px;
  line-height: normal;
  margin-left: 5px;
}

/* .find_out_area{
					padding: 0px 0px 17px 0px;
					display: flex;
					flex-direction: row;
					flex-wrap: wrap;
					vertical-align: top;
					align-content: flex-start;
				}
					.find_out{
						padding: 0px 10px 0px 0px;
					}
					.find_out label{
					}
						.find_out input[type="checkbox"]{
						} */

/*報讀功能限制與規範----------------------------*/
.enrollSoftware_text {
  background-color: #ececec;
  padding: 14px 17px 0;
  border-radius: 0.3125em;
  margin-bottom: 17px;
  color: var(--secondary_color);
}
.enrollSoftware_text .fL_tit,
.enrollSoftware_text .no_input {
  color: inherit;
  font-weight: 600;
  font-size: 18px;
  font-size: min(
    max(0.93vw, 1em),
    1.125em
  ); /*字體大小 2.5vw、最小值 12px、最大值 18px*/
}

/*同意條款*/
.agreeToTerms {
  font-size: 0.9375em;
  line-height: 1.4375em;
  text-align: center;
  margin: 20px 0px 0px;
}
.agreeToTerms strong {
  padding: 10px 0px;
  display: inline-block;
}
.agreeToTerms a {
  color: #d7261a;
  text-decoration: none;
}
.agreeToTerms a:hover {
  opacity: 0.5;
}

.agreeArea {
}
.agreeArea.textArea {
  text-align: left;
  height: 200px;
  border-radius: 0.1875em;
  border: solid 0.0625em #aeaeae;
  overflow-y: auto;
  word-break: break-word;
  padding: 10px;
}

@media (max-width: 1200px) {
  /*Judy修改20210929*/

  /*地址樣式*/
  .fLR_address {
    padding: 47px 0px 0px;
  }
  .fLR_address select {
    width: 49%;
    top: 0;
  }
  .fLR_address select:nth-of-type(2) {
    left: unset;
    right: 0;
    width: 49%;
    top: 0;
  }
  .fLR_address input.fLRA_postalCode {
    position: unset;
    width: 100%;
    left: unset;
  }
  .fLR_address input.address.fLRA_address {
    margin-top: 5px;
    margin-bottom: 17px;
  }

  /* .fL_info.address{
								position: relative;
								padding-left: 280px;
							}
								.fL_info.address select {
									width: 65px;
								}
								.fL_info.address select:nth-of-type(2) {
									left: 70px;
								}	
								.fL_info.address select:nth-of-type(3) {
									left: 140px;
								}				
								.fL_info.address > input[type='text'] {
									position: absolute;
									width:65px;
									left: 210px;
								} */
}

@media (max-width: 800px) {
  /*表單區左*/ /*表單區右*/
  .form_left,
  .form_right {
    float: none;
    width: auto;
  }

  .form_list.fLType2 {
    width: 100%;
  }

  /*沒有輸入框時*/
  .fL_info.no_input {
    padding: 0px 0px 5px 0px;
  }
  .fL_info label {
    padding: 6px 0px;
  }

  .inputFile label {
    top: -6px;
  }
}
@media (max-width: 575px) {
  .cart_big_tit span.red {
    padding: 0px;
  }
  /*地址樣式*/
  .fL_info.address {
    position: static;
    padding-left: 0px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
  .fL_info.address select {
    width: 24%;
    height: 42px;
    position: static;
    left: inherit;
  }
  .fL_info.address select:nth-of-type(2),
  .fL_info.address select:nth-of-type(3) {
    left: inherit;
  }
  .fL_info.address > input[type="text"] {
    position: static;
    width: 24%;
    left: inherit;
  }
  .fL_info.address div {
    margin-top: 6px;
    width: 100%;
  }
}
@media (max-width: 500px) {
  .cBT_checkbox {
    display: block;
    padding: 5px 0px 0px 0px;
  }
  .fL_tit .cBT_checkbox {
    /*Judy修改20210929*/
    display: inline-block;
    padding: 0;
  }
  .receiving_record {
    padding: 0px;
  }
}
@media (max-width: 320px) {
  /*生日樣式*/
  .fL_info.birthday {
    letter-spacing: 0px;
    white-space: nowrap;
    font-size: 0.75em;
  }
}

.form_list_remark {
  font-size: 0.9375em;
  line-height: 1.4;
  color: #c13e42;
  padding: 12px 0px 0px 0px;
}

/*未出貨*/
/* .no_shipping {
	color:#007be4;
} */

/*未付款*/
/* .unpaid {
	color:#d70d13;
} */

/*已取消*/
/* .cancel {
	color:#929292;
} */

/*兩個按鍵時*/
/* table .cPL_twoBtn input[type='button'] {
		float:left;
		box-sizing:border-box;
		width:48%;
		padding: 0px 8px;
		text-align: center;
		color: var(--primary_color);
	}
	table .cPL_twoBtn input[type='button']:nth-of-type(2) {
		float: right;
		color: #fff;
		box-sizing:border-box;
		
		background-color: var(--primary_color);
		border: 0.0625em var(--primary_color) solid;
	} */

/* /////////////////////////////////// */

/*-------hack----------------------------------------------------------------------------*/
.hack {
  padding: 20px;
}
.hack_demo {
  float: left;
  width: 50%;
  line-height: 200px;
  text-align: center;
  box-sizing: border-box;
  border: solid 0.0625em #ccc;
}

/* IE10、11、edge模式 */
@media all and (-ms-high-contrast: none) {
  .ie10Up {
    color: #fff;
    background: #06f;
  }
  *::-ms-backdrop,
  .ie10Up {
    color: #fff;
    background: #06f;
  }
}

/*firefox*/
@-moz-document url-prefix() {
  .firefox {
    color: #fff;
    background: #c00;
  }
}

/*Safari和chrome*/
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .safariAndChrome {
    color: #fff;
    background: #333;
  }
}

/*/////////////////////////////////////////////////////////*/
/*-------table--------*/
/*/////////////////////////////////////////////////////////*/

.no_bg {
}
.no_bg table {
  width: 100%;
  margin: 0 auto;
  border-radius: 0.1875em;
  overflow: hidden;
  font-size: 0.9375em;
  line-height: 1.1;
  color: #333;
}

/* 表格_標題 */
.no_bg caption {
}

/* 表格_表頭 */
.no_bg thead {
}
.no_bg thead tr {
}
.no_bg thead th {
  text-align: center;
  vertical-align: middle;
  font-size: 1em;
  line-height: 1.5;
  color: #fff;
  padding: 10px 15px;
  box-sizing: border-box;
  background: var(--secondary_color);
  min-width: 68px;
  font-weight: normal;
}
.no_bg thead th:first-of-type {
  border-top-left-radius: 0.3125em;
}
.no_bg thead th:last-of-type {
  border-radius: 0 0.3125em 0 0;
}

/* 表格_表身 */
.no_bg tbody {
}
.no_bg td {
  text-align: center;
  vertical-align: middle;
  font-size: 0.9375em;
  line-height: 1.6;
  color: #333;
  /* padding 修改 jung 20241216  */
  padding: 15px 10px;
  box-sizing: border-box;
  border-bottom: 0.0625em solid #cccccc;
  border-right: 0.125em dashed #e6e6e6;
  background: #f5f5f5;
}

/* 歷史榜單的 padding 保留 jung 20241217  */
.history_right .no_bg td {
  padding: 15px 10px;
}

/* 排序清單  */
.sort_table .no_bg td {
  padding: 15px 10px;
}

.no_bg td a {
  color: inherit;
  display: inline-block;
  text-decoration: none;
}
.no_bg td a:hover {
  opacity: 0.5;
}
.no_bg tbody tr td:first-of-type {
  border-left: 0.0625em solid #cccccc;
}
.no_bg tbody tr td:last-of-type {
  border-right: 0.0625em solid #cccccc;
}
.no_bg tbody tr:nth-child(2n + 1) td {
  background: #fff;
}

/* 表格_表尾 */
.no_bg tfoot {
}
.no_bg tfoot td {
}

/* 表格_按鈕 */
.no_bg input[type="button"] {
  background: var(--primary_color);
  color: #ffffff;
  border: 0.0625em solid var(--primary_color);
  height: 40px;
  line-height: 2.5em;
  width: 100px;
  box-sizing: border-box;
  border-radius: 1.875em;
}
.no_bg input:hover {
  opacity: 0.5;
}
.no_bg .cPL_twoBtn {
  /* display: flex;
			justify-content: space-between; */
}
.no_bg .cPL_twoBtn input[type="button"] {
  /* width: 49%; */
  max-width: 100px;
  margin: 5px 2.5px;
}
/* .no_bg .cPL_twoBtn input[type='button']:nth-child(2n+1) {
				background: #c6000b;
				border-color:#c6000b;
			} */
.no_bg .cPL_twoBtn input[type="button"]:nth-child(2n) {
  background: var(--secondary_color);
  border: 0.0625em solid var(--secondary_color);
}
.no_bg .cPL_twoBtn input[type="button"]:nth-child(3n) {
  background: var(--fourth_color);
  border: 0.0625em solid var(--fourth_color);
}

@media (max-width: 768px) {
  /*第一組tr*/
  /* .no_bg tr:first-of-type  */
  .no_bg thead {
    display: none;
  }

  /*第一個td*/
  .no_bg tr td:first-of-type {
    width: auto;
    padding: 10px 14px;
    border-top: solid 0 #adabab;
  }
  .no_bg tr:first-of-type td:first-of-type {
    border-top: solid 0.0625em #adabab;
  }

  /*最後一個td*/
  .no_bg td:last-of-type {
    border-bottom: solid 0.0625em #adabab;
    padding: 5px 14px 10px 14px;
  }

  .no_bg tr:last-of-type td:last-of-type {
    border-bottom: solid 0.0625em #adabab;
  }

  /*第五個td*/
  /* .no_bg td:nth-of-type(5) {
	padding: 5px 14px 10px 14px;
}
	.no_bg td:nth-of-type(5):before {
		display:none;
	} */

  .no_bg table {
    border-radius: 0;
  }
  .no_bg td {
    display: block;
    border: none;
    text-align: left;
    border-left: solid 0.0625em #bebebe;
    border-right: solid 0.0625em #bebebe;
    padding: 5px 14px;
    width: 100%; /*手機滿版 modify by jung 20241203*/
  }

  .no_bg td:before {
    color: #7b7b7b;
    content: attr(data-name);
  }
  /*商品名稱*/
  /* .cPL_product {
			padding:0px 0px 15px 0px;  
		} */

  /* .no_bg table input {
			height:40px;
			line-height:2.5em;
		}
			.no_bg table input[type='button'] {
				width:100%;
				height:2.625em;
			} */

  /*兩個按鍵時*/
  /* .no_bg table .cPL_twoBtn input[type='button'] {
					float:left;
				}
				.no_bg table .cPL_twoBtn input[type='button']:nth-of-type(2) {
					float:right;
				} */

  /* 表格_按鈕 */
  .no_bg input[type="button"] {
    width: 100%;
  }
}

/*已取消*/
.cancel {
  color: #929292;
  display: inline-block;
}

/*未出貨*/
.no_shipping {
  color: #007be4;
  display: inline-block;
}

/*未付款*/
.unpaid {
  color: #c6000b;
  display: inline-block;
}

/*已報名*/
.registered {
  color: #00b5ad;
  display: inline-block;
}
/*剩餘點數*/
.remaining_points {
  text-align: right;
  font-size: 0.9375em;
  padding: 0px 0 25px;
}
.remaining_points strong {
  font-size: 1.25em;
  color: #d03529;
}

/*時間搜尋區*/
/*.rB_time{
	margin-bottom: 20px;
}*/
.timeSearch_area {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 25px;
}
.time_range {
  box-sizing: border-box;
}
.timeSearch_area span {
  font-size: 0.9375em;
  display: inline-block;
  /* padding: 0px 20px 4px 0px; */
  padding: 0 5px;
  vertical-align: middle;
}

.timeSearch_area select {
}

.timeSearch_area label.timeSearch_btn {
  width: 42px;
  height: 38px;
  line-height: 2.375em;
  display: inline-block;
  overflow: hidden;
  border-radius: 0.3125em;
  background: var(--secondary_color);
  text-align: center;
  transition: 0.3s ease all;
  letter-spacing: 0px;
  margin-left: 15px;
}
.timeSearch_area label.timeSearch_btn:hover {
  background: var(--fourth_color);
}
.timeSearch_btn button {
  position: relative;
  color: #fff0;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background-color: #fff0;
  border-color: #fff0;
  cursor: pointer;
}
.timeSearch_btn button:before {
  position: absolute;
  transition: 0.3s ease all;
  font-family: "Bootstrap-icons";
  content: " \F52A";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 1.25em;
}

@media (max-width: 640px) {
  /*時間搜尋區*/
  .timeSearch_area {
    flex-direction: column;
  }
  .time_range {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .timeSearch_area select {
    width: calc((100% - 85px) / 3);
  }
  .timeSearch_area span {
    margin: 5px 0;
  }
  .timeSearch_area label.timeSearch_btn {
    width: 100%;
    margin: 15px 0 0;
  }
}

/* @media (max-width: 780px){
					.timeSearch_area {
						letter-spacing:1px;
					}
						.time_search {
							padding: 0px 10px 0px 0px;
						}
						.time_search_area span {
							padding: 0px 10px 4px 0px;
						}
				}
					@media (max-width: 680px){
						.timeSearch_area {
							text-align:center;
							letter-spacing: 0;
						}
							.time_search {
								padding: 5px 10px 5px 0px;
							}
							.time_search_area span {
								padding: 0px 10px 4px 0px;
							}
							.time_search_area label.timeSearch_btn {
								margin: 3px 0px 0px 0px;
							}
					}
						@media (max-width: 415px){
							.timeSearch_area {
								padding:0px;
								margin:0px;
							}
							.time_search, .time_search_area span {
								display:block;
								padding: 0px 0px 10px 0px;
							}
							.timeSearch_area label.timeSearch_btn {
								width:100%;
								height:42px;
								margin:10px 0px 0px 0px;
							}
							.timeSearch_area span {
								text-align:center;
							}
						}
							@media (max-width: 350px){
								.time_search {
									letter-spacing:0;
									white-space:nowrap;
								}
									.time_search select {
										width:68px;
									}
							} */
              
/*/////////////////////////////////////////////////////////*/
/*-------共用區塊--------*/
/*/////////////////////////////////////////////////////////*/

/*全站共用樣式*/
:root {
  /* --primary: Aquamarine; */
  --foreign_font: "Varela Round", sans-serif; /*全站外文字型*/
  --mandarin_font: "Noto Sans TC", sans-serif;
  --primary_color: #871e1e /*#00B5AD*/; /*全站主色色碼*/
  --secondary_color: #E06C3A; /*全站次要色色碼*/
  --third_color: #4EA32E; /*全站第三色色碼*/
  --fourth_color: #F5AC36; /*全站第四色色碼*/
	--fifth_color: #7890B3;  /*全站第五色碼*/
	--sixth_color:#2C819F;   /*全站第六色碼*/  /*20250410*/
  --seventh_color:#FF6363; /*全站第七色碼*/
  --eighth_color:#CB4D4D; /*全站第八色碼*/




  --focus_color: #7890B3;

  /*--fontSize:1.2307em;*/ /*相當於1em = 16px*/
  --fontSize:0.666em;  /*calc(1em / 1.5)*/  /*相當於1em = 16px*/
  --fontSize:1em;
}


.htmlFontSizeA body{
  /* font-size: 1.1307em; */
  font-size: calc(var(--fontSize) * 0.8);
}

.htmlFontSizeB body ,
body{
  font-size: var(--fontSize);
}


.htmlFontSizeC body{
  /* font-size: 1.3307em; */
  font-size: calc(var(--fontSize) * 1.33);
}




@media screen and (max-width: 1600px) and (min-width: 1281px)  {

  .htmlFontSizeA body {
      font-size: calc(var(--fontSize) * 0.8 * 0.83);
  }
  
  .htmlFontSizeB body ,
  body {
      font-size: calc(var(--fontSize) * 0.83);
  }

  .htmlFontSizeC body {
      font-size: calc(var(--fontSize) * 1.33 * 0.83);
  }

}

@media screen and (max-width: 1280px) and (min-width: 991px) {

  .htmlFontSizeA body {
      font-size: calc(var(--fontSize) * 0.8 * 0.67);
  }

  .htmlFontSizeB body ,
  body {
    font-size: calc(var(--fontSize) * 0.67);
  }

  .htmlFontSizeC body {
      font-size: calc(var(--fontSize) * 1.33 * 0.67);
  }

}





/* 在螢幕放大125%且寬度大於991時，套用這裡的特定樣式 */ 
@media screen and (min-width: 991px) and (min-height: 500px) and
 (max-height: 1000px) and (-webkit-min-device-pixel-ratio: 1.25) and
  (-webkit-max-device-pixel-ratio: 1.49)
, only screen and (min-resolution: 125dpi) and (max-resolution: 149dpi) {

  .htmlFontSizeA body {
    font-size: calc(var(--fontSize) * 0.8 * 0.6);
    font-size: calc(var(--fontSize) * 1 * 0.8);
  }
  
  .htmlFontSizeB body ,
  body {
    font-size: calc(var(--fontSize));
  }
  
  .htmlFontSizeC body {
      /* font-size: calc(var(--fontSize) * 1.33 * 0.6); */
      font-size: calc(var(--fontSize) * 1.5 * 0.65);
  }
  

}



/* 在螢幕放大150%且寬度大於991時，套用這裡的特定樣式 */ 
@media screen and (min-width: 991px) and (min-height: 500px) 
and (max-height: 1000px) and (-webkit-min-device-pixel-ratio: 1.5) and
 (-webkit-max-device-pixel-ratio: 1.74)
, only screen and (min-resolution: 150dpi) and (max-resolution: 174dpi) {


.htmlFontSizeA body {
  /* font-size: calc(var(--fontSize) * 0.8 * 0.6);
  font-size: calc(var(--fontSize) * 1 * 0.8); */

  font-size: calc(var(--fontSize) * 0.64);
}

.htmlFontSizeB body ,
body {
  /* font-size: calc(var(--fontSize)); */
  font-size: calc(var(--fontSize) * 0.8);
}

.htmlFontSizeC body {
    /* font-size: calc(var(--fontSize) * 1.5 * 0.55); */
    font-size: calc(var(--fontSize));
}

}




@media (max-width: 990px) {

  .htmlFontSizeA body {
      font-size: calc(var(--fontSize) * 0.8 * 1);
  }

  body {
    font-size: calc(var(--fontSize) * 1);
  }

  .htmlFontSizeC body {
      font-size: calc(var(--fontSize) * 1.33 * 1);
  }

}




.main {
  position: relative;
  padding-top: 133.8px; /*20250410*/
}




@media screen and (max-width: 1600px) and (min-width: 1281px)  {

  .main {
    padding-top: 113.8px; /*20250410*/
  }

}

@media screen and (max-width: 1280px) and (min-width: 991px) {

  .main {
    padding-top: 95px; /*20250410*/
  }

}


@media (max-width: 990px) {
  .main {
    padding-top: 80.9px; /*20250410*/
  }
}

@media (max-width: 768px) {
  .main {
    padding-top: 75.8px; /*20250410*/
  }
}

@media (max-width: 425px) {

  .main {
    padding-top: 69.8px; /*20250410*/
  }

}

@media (max-width: 350px) {

  .main {
    padding-top: 68.3px; /*20250410*/
  }
  
}



/* 在螢幕放大125%且寬度大於991時，套用這裡的特定樣式 */ 
@media screen and (min-width: 991px) and (min-height: 500px) and 
(max-height: 1000px) and (-webkit-min-device-pixel-ratio: 1.25) and 
(-webkit-max-device-pixel-ratio: 1.49), 
only screen and (min-resolution: 125dpi) and (max-resolution: 149dpi) {


  .main {
    padding-top: 102px; /*20250410*/
  }
  

}



/* 在螢幕放大150%且寬度大於991時，套用這裡的特定樣式 */ 
@media screen and (min-width: 991px) and (min-height: 500px) and
 (max-height: 1000px) and (-webkit-min-device-pixel-ratio: 1.5) and
  (-webkit-max-device-pixel-ratio: 1.74), 
  only screen and (min-resolution: 150dpi) and (max-resolution: 174dpi) {
    .main {
      padding-top: 101px; /*20250410*/
    }
}



















/*/////////////////////////////////////////////////////////*/
/*-------共用區塊--------*/
/*/////////////////////////////////////////////////////////*/

/* 導盲磚_跳到中央內容區塊----------------- */
/* .main > a.maincontent */
a.maincontent {
  position: absolute;
  top: 0;
  font-size: 0.7em;
  line-height: 1;
  color: #fff0;
  z-index: 1;
  padding: 5px;
  display: inline-block;
  text-decoration: none;
  z-index: 5;
  /* top: 150px; */
  /* opacity: 0; */
  z-index: 999;
}
/* .main > a.maincontent.fixed */
a.maincontent.fixed {
}
a.maincontent:focus{
  opacity: 1;
}






/*內頁banner*/
.inbanner {
  background-repeat: no-repeat;
  background-position: center left;
  background-size: cover;
  min-height:  10rem;
  position: relative;
}
.inbanner_text{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  /* z-index: 0; */
  display: flex;
  justify-content: center;
  gap: 10px;
  width: 100%;
  display: none;
}
.inbanner_text .text_item{
  background-color: #fff;
  border-radius: 50%;
  padding: clamp(.375rem, 0.625vw, .75rem); /*14px 12px*/
  
}
.inbanner_text .text_item span{
  font-family: 'SweiGothicLegCJKtc-Regular',serif;
  font-size:  clamp(1.25rem, calc(2.5em* 100 / 120), 2.5em); 
  color: #408D9A;
  font-weight: bold;
}
/* 在螢幕放大150%且寬度大於991時，套用這裡的特定樣式 */ 
@media screen and (min-width: 991px) and (min-height: 500px) and 
(max-height: 1000px) and (-webkit-min-device-pixel-ratio: 1.5) and 
(-webkit-max-device-pixel-ratio: 1.74), only screen and (min-resolution: 150dpi) and 
(max-resolution: 174dpi) { 
/*內頁banner*/
.inbanner {
  
  min-height: 5rem ; 
 
}

}

/*麵包屑*/
.crumb {
  font-size: 0.9375em;
  line-height: 1.2;
  color: #963434;
  padding: 10px 0px;
  font-weight: 500;
  word-wrap: break-word;
  box-shadow: 0px 0px 0.375em rgb(0 0 0 / 0.2);
  background-color: #FFC880;
  
  
  
}
.crumb .wrap{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  
  
}
.crumb .home_img{
  width: 1.25em;
  margin-right: .3125rem ;
  margin-bottom: .0625rem;
}
.crumb .home_img a{
  position: relative;
  display: block;
  padding-top: 100%;

}
.crumb .home_img a img{
  width:100%;
  height:auto;
  transition: all 0.3s ease-out;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  float: none;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  transition: all 0.3s ease-out;
}
.crumb a {
  color: var(--primary_color);
  text-decoration: none;
}


.crumb a:hover {
  opacity: 0.5;
}
@media(max-width:990px){
  .inbanner_text .text_item span{
    
    font-size: 1.125em; 
    
  }
}
/*內頁標題樣式1-----------------------------------------*/
.titStyle1 {
  /* display: flex; */
  /* align-items: center; */
  font-size: 1.1875em;
  /* font-size: 2em; */
  line-height: 1.3;
  color: var(--primary_color);
  font-weight: bolder;
  position: relative;
  margin-bottom: clamp(1.625rem,2.7604vw,2.7604vw);
  /* border-bottom: 0.125em solid var(--primary_color); */
  /* display: grid; */
  /* grid-template-columns: 50px 1.2fr 8.9fr; */
  /* gap: clamp(.625rem,1.0417vw,1.25rem); */
}


.titStyle_in{

display: inline-flex;

align-items: center;

gap: 10px;

background: #ffffff;

padding-right: 15px;
}

.titStyle1::before {
  position: absolute;
  content: "";
  background-image: url(../images/right_title_deco_line.svg);
  background-repeat: repeat-x;
  background-size: 35px;
  background-position: center;
  min-height: 20px;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  z-index: -1;
}
.titStyle1.in::before {
  position: absolute;
  content: "";
  background-image: url(../images/right_title_deco_line.svg);
  background-repeat: repeat-x;
  background-size: 35px;
  background-position: center;
  min-height: 20px;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  z-index: -1;
  display: none;
}









.htmlFontSizeC .titStyle1 {
  
grid-template-columns: 59.6px 1.1fr 8.6fr;
  
gap: clamp(.625rem,1.0417vw,1.25rem);
}
.titStyle1 .right_title_icon{
  width: 2.625em;
  /* padding-right: 20px; */
}
.titStyle1 .right_title_icon span {
  display: block;
  position: relative;
  padding-top: 100%;
}
.titStyle1 .right_title_icon span img{
  width:100%;
  height:auto;
  transition: all 0.3s ease-out;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  float: none;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  transition: all 0.3s ease-out;
}


.titStyle1 strong {
  font-size: 1.9em;
  font-weight: 700;  
}
/* 在螢幕放大150%且寬度大於991時，套用這裡的特定樣式 */ 
@media screen and (min-width: 991px) and (min-height: 500px) and 
(max-height: 1000px) and (-webkit-min-device-pixel-ratio: 1.5) and 
(-webkit-max-device-pixel-ratio: 1.74), only screen and (min-resolution: 150dpi) and 
(max-resolution: 174dpi) { 
  .titStyle1 strong {
    font-size: 1.375em;
      
  }
} 
.htmlFontSizeC .titStyle1 strong {
  font-size: 1.5em;  
}
@media(max-width:990px){
  .titStyle1 .right_title_icon{
    width: 1.575em;
    /* padding-right: 20px; */
  }
}

@media (max-width: 640px) {
  .titStyle1 strong {
    font-size: inherit;
  }
}










/*內頁標題樣式2-----------------------------------------*/
.titStyle2 {
  font-size: 1.1875em;
  line-height: 1.3;
  color: var(--secondary_color);
  font-weight: bolder;
  position: relative;
  padding-bottom: 15px;
  border-bottom: 0.125em solid var(--primary_color);
}
.titStyle2 strong {
  display: inherit;
  font-size: inherit;
  margin-block-start: inherit;
  margin-block-end: inherit;
  margin-inline-start: inherit;
  margin-inline-end: inherit;
  font-weight: inherit;
}
.titStyle2Date {
  padding-bottom: 5px;
  color: var(--primary_color);
  font-size: 1em;
  font-weight: lighter;
  font-family: var(--foreign_font);
  font-weight: 600;
}
.titStyle2:after {
  position: absolute;
  content: "";
  bottom: -1px;
  background: var(--primary_color);
  width: 62px;
  height: 4px;
  left: 0px;
}

/*內頁標題樣式3-----------------------------------------*/
.titStyle3 {
  font-size: 1.1875em;
  line-height: 1.3;
  color: var(--secondary_color);
  font-weight: bolder;
  text-align: center;
  margin-bottom: 15px;
}

.titStyle3 > strong {
  display: inherit;
  font-size: inherit;
  margin-block-start: inherit;
  margin-block-end: inherit;
  margin-inline-start: inherit;
  margin-inline-end: inherit;
  font-weight: inherit;
  margin: 0;
}

/*內頁標題樣式1-----------------------------------------*/
.titStyle1.titHorizontally {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px 10px;
}

.containerIn {
  padding: 30px 0px ;
  padding: 0;
}

/* 高度滿版附加fullHeight-----------------------------------------*/
.fullHeight {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
}

/*左右側--------------------------------------------------------------------*/
.container_bg{
  width: 100%;
  height: auto;
  margin: 0 auto;
  max-width: clamp(53.125rem, 85.9375vw, 103.125rem);
  background-color: #fff;
  border-radius: 1.875rem;
}
.container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  /* justify-content: space-between; */
  padding: clamp(2.5rem,4.1667vw,5rem) 0;
  gap: clamp(2.375rem,3.9583vw,4.75rem);
  /* display: grid;
	grid-template-columns: 275px auto;*/
}
@media(max-width:768px){
  .container_bg{
    border-radius: 15px;
  }
}
/*左側*/
.left {
  /*display:none;*/
  /*float:left;*/

  width: clamp(8.8125rem,14.6875vw,17.625rem);
  min-width: clamp(8.8125rem,14.6875vw,17.625rem);
  box-sizing: border-box;
  /*width:25%;*/
}


.left.leftPc {
  display: block;
}

/*左側表單名稱*/
.leftList_tit {
  background-color: var(--primary_color);
  font-size: 1.3125em;
  line-height: 1.14;
  font-weight: bold;
  word-break: break-word;
  padding: 15px 15px;
  color: #ffffff;
  display: none;
}

/*左側選單列表*/
.leftListArea {
}
.left.coop .leftListArea {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem,5.2083vw,6.25rem);
}
.leftList {
  font-size: 1.125em;
}

.leftList.leftList2 > a {
  position: relative;
}

.leftList > a {
  display: block;
  text-decoration: none;
  color: #AF4545;
  padding: clamp(.625rem,1.0417vw,1.25rem) clamp(.875rem,1.4583vw,1.75rem);
  /* padding-top: 0; */
  position: relative;
  font-size: 1.6em; /* 20250411 */
  font-weight: 700;
  line-height: normal;
  word-break: break-word;
  border-bottom: 0.0625em #4A7F42 dotted;
  cursor: default;
}

/* 20250411 */
.htmlFontSizeC .leftList > a {

  font-size: 1.4em; 
  
}
/* 20250411 */
.leftList:first-of-type > a {
  
  padding-top: 0;
}

.leftList.active > a {
  color: #AF4545;
  background-color: transparent;
}
.leftList > a:focus {
  color: #AF4545 !important;
  background-color: transparent !important;
}


.leftList_title{
  /* position: relative;
  padding-left: 1.875em; */
}

/*當前樣式*/
.leftList.active .leftList_title{
  position: relative;
  /* padding-left: 1.875em; */
}
.leftList.active .leftList_title::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  background-image: url(../images/left_tit.svg);
  background-position: center;
  background-size: 1.5625em;
  background-repeat: no-repeat;
  width: 1.5625em;
  aspect-ratio: 1 / 1;
  transform: translate(0 , -50%);
  display: none;
}
.leftList_top {
  position: relative;
  padding-right: 30px;
}

.leftList_top a {
  display: block;
  text-decoration: none;
  color: #8e8e8e;
  padding: 10px 10px 10px 10px;
  font-size: 1.125em;
  line-height: 1.22;
  word-break: break-word;
}

.leftList.leftList2.active .leftList_top a {
  color: var(--primary_color);
}
.leftList.leftList2.active .leftList_top a:hover {
  color: #8e8e8e;
  opacity: 0.5;
}

.leftList.leftList2 .leftList_Add {
  position: absolute;
  top: 50%;
  right: 0px;
  max-width: 100%;
  max-height: 100%;
  transform: translateX(0%) translateY(-50%);
  -webkit-transform: translateX(0%) translateY(-50%);
  z-index: 2;
}
.leftList_Add:hover {
  cursor: pointer;
  transition: 0.3s ease all;
  opacity: 0.5;
}

.leftList.leftList2.active .leftList_Add:before {
  position: absolute;
  content: "-";
  font-size: 1.1875em;
  font-weight: lighter;
  color: #8e8e8e;
  transition: 0.3s ease all;
  top: 50%;
  transform: translateX(0%) translateY(-50%);
  -webkit-transform: translateX(0%) translateY(-50%);
  width: 30px;
}

.leftList.leftList2 .leftList_Add:before {
  position: absolute;
  text-align: center;
  content: "+";
  transform: translateX(0%) translateY(-50%);
  -webkit-transform: translateX(0%) translateY(-50%);
  font-size: 0.9375em;
  color: #8e8e8e;
  transition: 0.3s ease all;
  top: 50%;
  left: -30px;
  transform: translateX(0%) translateY(-50%);
  -webkit-transform: translateX(0%) translateY(-50%);
  width: 30px;
  font-family: "Kulim Park", sans-serif;
}

/*第二層選單樣式*/
.leftListArea.two > .leftList:hover > a:before,
.leftListArea.two > .leftList.active > a:before {
  content: "";
  position: absolute;

  border-top: solid 0.375em #000;
  border-left: solid 0.25em rgba(255, 255, 255, 0);
  border-right: solid 0.25em rgba(255, 255, 255, 0);

  border-bottom-width: 0;
  top: 24px;
  right: 12px;
}

/*左側選單列表第二層*/
.leftList_open {
  display: none;
}
.leftList_open.active {
  display: block;
}
.leftList_open_list {
}
.leftList_open_list a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap:clamp(.3125rem,0.4688vw,.5625rem);
  transition: 0.3s ease all;
  color: #000;
  padding: clamp(.3125rem,0.5208vw,.625rem) clamp(.9375rem,1.5625vw,1.875rem);
  font-size: 1.275em;
  line-height: 2.1875em;
  font-weight: normal;
  word-break: break-word;
  border-bottom: 0.0625em #4A7F42 dotted;
}
.leftList_open_list:last-of-type a {

  border-bottom: none;
}
.leftList_open_list a .left_icon{
 width: 0.6875em;
}
.leftList_open_list a .left_icon span{
  display: block;
  position: relative;
  padding-top: 100%;
}
.leftList_open_list a .left_icon span img{
  width:100%;
  height:auto;
  transition: all 0.3s ease-out;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  float: none;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  transition: all 0.3s ease-out;
  }
.leftList_open_list.active a {
  color: #000;
  background-color: #FFB7B7;

}
.leftList_open_list a:hover {
  color: var(--primary_color);
  text-decoration: none;
}
/* 在螢幕放大125%且寬度大於991時，套用這裡的特定樣式 */ 
@media screen and (min-width: 991px) and (min-height: 500px) and (max-height: 1000px) and (-webkit-min-device-pixel-ratio: 1.25) and (-webkit-max-device-pixel-ratio: 1.49), only screen and (min-resolution: 125dpi) and (max-resolution: 149dpi) {
  /*左側*/
  .left {
    /*display:none;*/
    /*float:left;*/

    width: 15.5125rem;
    min-width: 15.5125rem;
    box-sizing: border-box;
    /*width:25%;*/
  }
  /*右側*/
.right {
  /*float:right;*/
  box-sizing: border-box;
  /* width:100%;
		padding-left: 6%; */
  
  width: calc(100% - 15.5125rem - 50px); /* 20250414 */
  /* width: 100%; */
}
}
/* 在螢幕放大150%且寬度大於991時，套用這裡的特定樣式 */ 
@media screen and (min-width: 991px) and (min-height: 500px) and 
(max-height: 1000px) and (-webkit-min-device-pixel-ratio: 1.5) and 
(-webkit-max-device-pixel-ratio: 1.74), only screen and (min-resolution: 150dpi) and 
(max-resolution: 174dpi) { 
  /*左側*/
  .left {
    /*display:none;*/
    /*float:left;*/

    width: 16.8125rem;
    min-width: 16.8125rem;
    box-sizing: border-box;
    /*width:25%;*/
  }
}
/*右側*/
.right {
  /*float:right;*/
  box-sizing: border-box;
  /* width:100%;
		padding-left: 6%; */
  
  width: calc(100% - 16.8125rem - 50px); /* 20250414 */
  /* width: 100%; */
}

/*右側_無左選單*/
.right.noleft {
  width: 100%;
  padding-left: 0px;
}

/*右側名稱*/
.right_tit {
  font-size: 1.5em;
  line-height: 1.4;
  padding-bottom: 15px;
  color: #221912;
  font-weight: bold;
  border-bottom: 0.0625em #dbdbdb solid;
}

/*內頁上方選單*/
.rightTopArea {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: flex-start;
  margin: 0px -5px 20px;
}
.rightTopList {
  box-sizing: border-box;
  width: 20%;
  text-align: center;
  margin-bottom: 10px;
  padding: 0px 5px 0px;
}
.rightTopList.active {
}
.rightTopList.active a {
  background-color: #000;
}
.rightTopList a {
  display: block;
  text-decoration: none;
  background-color: var(--primary_color);
  padding: 10px 5px;
  font-size: 0.8125em;
  line-height: 1.15;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.rightTopList a:hover {
  transition: all 0.3s ease-out;
  background-color: #000;
  opacity: 0.5;
}
/* 在螢幕放大150%且寬度大於991時，套用這裡的特定樣式 */ 
@media screen and (min-width: 991px) and (min-height: 500px) and 
(max-height: 1000px) and (-webkit-min-device-pixel-ratio: 1.5) and 
(-webkit-max-device-pixel-ratio: 1.74), only screen and (min-resolution: 150dpi) and 
(max-resolution: 174dpi) { 
  /*右側*/
.right {
  /*float:right;*/
  box-sizing: border-box;
  /* width:100%;
		padding-left: 6%; */
  
  width: calc(100% - 12.8125rem - 75px); /* 20250414 */
  /* width: 100%; */
}
}
/*網編區------------------------------------------*/
.textArea {
  /* margin-top: 15px;
  font-size: 0.875em;
  line-height: 1.5;
  color: #333; */
  word-wrap: break-word;
  word-break: break-all;


  color: #000;
  font-size: 1.375em; /*22px*/
  line-height: 1.45; 
  letter-spacing: 2.2px;

}
.textArea img {
  max-width: 100%;
  height: auto;
}
.textArea iframe {
  max-width: 100%;
}
.textArea a {
  text-decoration: none;
  transition: 0.3s ease all;
}
.textArea a:hover {
  opacity: 0.5;
  transition: 0.3s ease all;
}

.textArea ul {
  padding-left: 20px;
}

/*按鈕*/
.btn_area {
  text-align: center;
  margin: 25px 0px 0px;
  font-weight: 700;
}
.btn_area input,
.btn_area button {
  padding: 0;
  margin: 0;
  border: none;

  margin: 0px 10px;
  background-color: var(--primary_color);
  text-decoration: none;
  color: #fff;
  padding: 0px 5px;
  border-radius: 1.875em;
  max-width: 49%;
  text-align: center;
  font-weight: inherit;
  font-size: 1em;
  transition: 0.3s ease all;
  width: 155px;
  height: 45px;
  line-height: normal;
  cursor: pointer;
}
.btn_area input:nth-child(2n + 1),
.btn_area button:nth-child(2n + 1) {
}
.btn_area input:nth-child(2n),
.btn_area button:nth-child(2n) {
  background-color: var(--secondary_color);
  border-color: var(--secondary_color);
}
.btn_area input:nth-child(2n):hover,
.btn_area button:nth-child(2n):hover {
  background-color: var(--third_color);
  border-color: var(--third_color);
}

/*右側返回按鈕*/
.btn_area.one {
  /* text-align:center; */
  /* 20250414 */
  margin: clamp(2.5rem,4.1667vw,5rem) auto 0px ;
}
.btn_area.one input,
.btn_area.one button {
  margin: 0px auto;
}

.btn_area input:hover,
.btn_area button:hover {
  background-color: var(--third_color);
  border-color: var(--third_color);
  transition: 0.3s ease all;
  opacity: 1;
}

.btn_area button::before {
  content: attr(data-button);
}

/*disAbled按鈕*/
.btn_area.disAbled input,
.btn_area.disAbled button {
  cursor: default;
  background: #c5c5c5;
  color: #e4e4e4;
  border-color: #c5c5c5;
}

/*apply按鍵*/
.btn_area_apply {
  margin-bottom: 15px;
}
.btn_area_apply button.apply {
  position: relative;
}
.btn_area_apply button.apply::before {
  content: attr(data-button);
  display: block;
  position: absolute;
  left: 50%;
  transform: translateY(40px) translateX(-50%);
  color: var(--fourth_color);
  font-family: var(--foreign_font);
  font-size: 0.7em;
  line-height: 1;
  text-align: center;
}

@media (max-width: 1200px) {
  /*內容區背景----------------------------------------------*/
  /*.container {
	padding: 3% 0px;
    max-width: 85%;
}		
	
.container .wrap {
    width: 95%;
}*/

  .container > .wrap {
    width: 80%;
  }

  /*首頁輪播點點*/
  .wrap.pagination_wrap {
    width: 98%;
    padding: 0;
  }

  /*左側*/
  .left {
    width: 200px;
    min-width: 200px;
  }

  /*右側*/
  .right {
    /* width: calc(100% - 200px - 65px); */
  }
}

@media (max-width: 990px) {
  /*麵包屑*/
  .crumb {
    font-size: 0.8125em;
    line-height: 1.69;
  }
  /*左側表單名稱*/
  .leftList_tit {
  display: block;
  }
  .leftList > a {
    padding-top: .625rem;
    font-size: 1.2125em;
  }
  /* 20250411 */
  .leftList:first-of-type > a {
    padding-top: .625rem;
  }
  .leftList_open_list a {
    
    font-size: 1.075em;
    
  }
  .containerIn {
    padding: 10px 0px 0px;
  }

  /* 高度滿版附加fullHeight-----------------------------------------*/
  .fullHeight {
    padding: 10px 0;
  }
    /*內頁標題樣式1-----------------------------------------*/
    .titStyle1 strong{
      font-size: 1.2em;
      
    }
  /*內頁標題樣式3-----------------------------------------*/
  .titStyle3 {
    margin-bottom: 10px;
  }

  /*內頁上方選單*/
  .rightTopArea {
    display: none;
  }

  .container {
    display: block;
    flex-direction: unset;
    flex-wrap: unset;
    justify-content: unset;
    padding-bottom: 25px;
    padding-top: 25px;
  }

  /*左側*/
  .left {
    display: block;
    width: 100%;
    min-width: unset;
    margin-bottom: 2.5rem ;
  }

  /*左側表單名稱*/
  .leftList_tit {
    position: relative;
    cursor: pointer;
    padding: 10px 10px;
  }
  .leftList_tit:after {
    position: absolute;
    content: "";
    top: 22px;
    right: 20px;
    border-top: solid 0.375em #fff;
    border-left: solid 0.25em rgba(255, 255, 255, 0);
    border-right: solid 0.25em rgba(255, 255, 255, 0);
    border-bottom-width: 0em;
  }

  /*左側表單*/
  .leftListArea {
    display: none;
    /*background: #f7f7f7;*/
    margin: 0px 0px 0px;
  }

  .leftListArea.show {
    display: block;
  }






  /*右側*/
  .right {
    width: 100%;
    padding-left: 0px;
  }







/*網編區------------------------------------------*/
.textArea {
  font-size: 1em; /*16px*/
}



}









@media (max-width: 768px) {
  /*內頁banner--------------------------*/
  .inbanner {
    /* min-height: 200px; */
  }

  /*左側*/
  .left {
    /* margin-bottom: 20px; */
  }



  /*內頁標題樣式2-----------------------------------------*/
  .titStyle2 {
    font-size: 1em;
    line-height: 1.3;
  }

  /*內頁標題樣式3-----------------------------------------*/
  .titStyle3 {
    font-size: 1em;
    line-height: 1.3;
  }
}

@media (max-width: 640px) {
  /* 導盲磚_跳到中央內容區塊----------------- */
  .main > a.maincontent {
    top: 95px; /* 移動位置 modify by Judy 20240730 */
  }

  /*內頁banner--------------------------*/
  .inbanner {
    /* min-height: 95px; */
    /*padding-top: 45px;*/
  }

  /*按鈕--------------------------*/
  .btn_area {
    margin: 15px 0px 0px;
  }
  .btn_area input,
  .btn_area button {
    margin: 0px 5px;
    font-size: 0.9375em;
    padding: 0;
  }

  .btn_area.one {
    /* 20250414 */
    /* margin: 15px auto 0px; */
  }
  .btn_area.one input,
  .btn_area.one button {
    margin: 0px auto;
    width: 100%;
    padding: 0;
  }

  /*apply按鍵*/
  /* .btn_area_apply{
		margin-bottom: 15px;
	} */
}

@media (max-width: 425px) {
  /*.main.inmain {
		padding-top:100px;
	}*/

  /*按鈕*/
  .btn_area {
  }

  .btn_area input {
    max-width: unset;
    width: 45%;
    margin: 0px 5px;
  }

  /*.btn_area input:nth-child(2n){
		background-color:#555;
	}*/
}

/*/////////////////////////////////////////////////////////*/
/*內頁最新消息模組*/
/*/////////////////////////////////////////////////////////*/

.NewsArea {
}

@media (max-width: 990px) {
}

/*/////////////////////////////////////////////////////////*/
/*-------聯絡我們--------*/
/*/////////////////////////////////////////////////////////*/

/* .contactArea{
	display: flex;
    flex-wrap: wrap;
    flex-direction: row;
	margin:0 -15px;
}

	.contactL{
		box-sizing:border-box;
		width:50%;
		padding:0 15px
	}
	.contactR{
		box-sizing:border-box;
		width:50%;
		padding:0 15px
	} */

/* @media (max-width: 990px){
	
.contactArea{
	display:block;
    flex-wrap: unset;
    flex-direction: unset;
	margin:0 0px;
}

	.contactL{
		width:100%;
		padding:0 0px
	}
	.contactR{
		width:100%;
		padding:50px 0px 0px
	}	
	
	
} */

/*/////////////////////////////////////////////////////////*/
/*影片模組*/
/*/////////////////////////////////////////////////////////*/

/*燈箱*/
.lightboxArea {
  position: fixed;
  width: 100%;
  z-index: 99999;
  top: 0px;
  left: 0px;
  box-sizing: border-box;
  padding: 124px 0px;
  display: none;
}
/*燈箱黑底*/
.lightboxBG {
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
}

/*燈箱主體*/
.lightboxMain {
  height: 360px;
  width: 80%;
  margin: 0 auto;
  background: #000;
  border-radius: 0.3125em;
  position: relative;
  transition: 0.3s ease all;
  transform: scale(0);
  top: 0px;
  box-sizing: border-box;
  font-size: 0em;
}
/*關閉燈箱按鍵*/
.lightboxCloseBtn {
  font-size: 1.0625em;
  font-weight: bold;
  width: 48px;
  height: 48px;
  line-height: 3em;
  border-radius: 100%;
  color: #fff;
  text-align: center;
  background: var(--primary_color);
  cursor: pointer;
  position: absolute;
  top: -24px;
  right: -24px;
  transition: 0.3s ease all;
  z-index: 2;
}
.lightboxCloseBtn:hover {
  background: #221912;
  color: #fff;
}

/*燈箱資料區*/
.lightboxContentArea {
  height: 100%;
}

.index_video_list {
  position: relative;
  float: left;
  cursor: pointer;
  background: #000;
  margin: 28px 0px 0px 0px;
}
.index_video_list > img {
  opacity: 0.6;
  transition: 0.3s ease all;
  width: 100%;
  height: auto;
}
.vL_text_area {
  position: absolute;
  width: 100%;
  max-width: 80px;
  text-align: center;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  box-sizing: border-box;
  color: #fff;
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.75);
}
.vL_text_area img {
  width: 100%;
  height: auto;
}
/*hover*/
.index_video_list:hover > img {
  opacity: 1;
}

.video_list_area {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  font-size: 0em;
  margin: 0 -12px -30px;
  /*margin: 20px -15px 0px -14px;*/
}
/*firefox hack*/
@-moz-document url-prefix() {
  .video_list_area {
    padding: 8px 0px 0px 0px;
  }
}

.video_list {
  box-sizing: border-box;
  /*display:inline-block;
		vertical-align:top;*/
  padding: 0px 12px 30px;
  /*width:485px;*/
  width: 50%;
}
/*firefox hack*/
@-moz-document url-prefix() {
  .video_list {
    padding: 65px 11px 0px 11px;
  }
}
.video_list .index_video_list {
  float: none;
  margin: 0px;
}
.video_list_remark {
  font-size: 1.125em;
  line-height: 1.33;
  color: #3d3d3d;
  padding: 10px 0px 0px 0px;
  font-weight: bold;
}

/*影音燈箱顯示時才會加*/
.video_use {
  padding: 100px 0px;
}
.video_use .lightboxMain {
  height: 450px;
}

/*影音燈箱*/
.video {
  height: 100%;
}
.video iframe {
  height: 1px;
  height: 100%;
  width: 100%;
}

@media (max-width: 950px) {
  /*---Video---*/
  .video_list_area {
    margin: 0px 0px 0px 0px;
  }
  .video_list {
    /*width: 46%;*/
  }
  /*.video_list:nth-child(2n+1) {
			padding: 35px 25px 30px 0px;
		}
		.video_list:nth-child(2n+0) {
			padding: 35px 0px 30px 25px;
		}*/
}
@media (max-width: 768px) {
  .vL_text_area {
    max-width: 50px;
  }

  /*---Video---*/
  /*.video_list:nth-child(2n+1) {
		padding: 35px 20px 30px 0px;
	}
	.video_list:nth-child(2n+0) {
		padding: 35px 0px 30px 20px;
	}*/
}
@media (max-width: 600px) {
  .video_list_area {
    display: block;
    flex-wrap: unset;
    flex-direction: unset;
  }

  /*---Video---*/
  .video_list {
    width: 100%;
    padding: 0 0 30px;
  }
  /*.video_list:nth-child(2n+1) {
		padding: 35px 0px 30px 0px;
	}
	.video_list:nth-child(2n+0) {
		padding: 35px 0px 30px 0px;
	}*/
}

























/*/////////////////////////////////////////////////////////*/
/*-------頁數列區塊--------*/
.number_pageArea {
  position: relative;
  z-index: 15;
  text-align: center;
  padding-top: 40px;
  /*padding-bottom:40px;*/
}
/*左側區塊*/
.numberPage_leftArea {
  display: inline-block;
  vertical-align: middle;
}
.numberPage_leftList {
  display: inline-block;
  vertical-align: middle;
}
.numberPage_leftList a {
  display: block;
  text-decoration: none;
}

/*modify by pekey 20181114*/
img.hover_after {
  display: none;
  background-color: #ff6721;
  border-radius: 50%;
}
/*modify by pekey 20181114*/
.numberPage_leftList a:hover img.hover_after {
  display: block;
}
/*modify by pekey 20181114*/
.numberPage_leftList a:hover img.hover_before {
  display: none;
}

/*中間區塊*/
.numberPage_middleArea {
  display: inline-block;
  vertical-align: middle;
  padding: 0px 8px;
}
.numberPage_middleList {
  display: inline-block;
  vertical-align: middle;
  padding: 0px 4px;
}
.numberPage_middleList a {
  display: block;
  text-decoration: none;
  width: 31px;

  border-radius: 100%;
  background-color: transparent;
  color: #808080;
  padding: 0;
  font-family: var(--foreign_font);
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1;
}
/*active*/
.numberPage_middleList.active a {
  background-color: var(--primary_color);
  color: #fff;
  
}
/*hover*/
.numberPage_middleList a:hover {
  background-color: var(--primary_color);
  color: #fff;
}

/*右邊區塊*/
.numberPage_rightArea {
  display: inline-block;
  vertical-align: middle;
}
.numberPage_rightList {
  display: inline-block;
  vertical-align: middle;
}
.numberPage_rightList a {
  display: block;
  text-decoration: none;
}

/*modify by pekey 20181114*/
.numberPage_rightList a:hover img.hover_after {
  display: block;
}
/*modify by pekey 20181114*/
.numberPage_rightList a:hover img.hover_before {
  display: none;
}

@media (max-width: 640px) {
  .number_pageArea {
    padding-top: 30px;
  }

  .numberPage_leftList:first-child {
    display: none;
  }

  .numberPage_middleArea {
    padding: 0px;
  }
  .numberPage_middleList {
    padding: 0px;
  }

  .numberPage_rightList:last-child {
    display: none;
  }
}




/*AA檢測備註*/
.detection_aa {
  display: none;
}





a:active,
a:focus {
  text-decoration: none;
  background-color: var(--focus_color) !important;
  color: #fff !important;
}

.footer_nav a:active,
.footer_nav a:focus,
.nav_title a:active,
.nav_title a:focus {
  outline: 0 dashed var(--focus_color) !important;
  background-color: var(--focus_color) !important;
  color: #fff !important;
}

input[type="checkbox"]:active,
input[type="checkbox"]:focus,
input[type="radio"]:active,
input[type="radio"]:focus {
  background-color: var(--focus_color);
  color: #fff !important;
  transition: 0.2s ease all;
}

button:active,
button:focus,
input[type="email"]:active,
input[type="email"]:focus,
input[type="password"]:active,
input[type="password"]:focus,
input[type="tel"]:active,
input[type="tel"]:focus,
input[type="text"]:active,
input[type="text"]:focus,
input[type="url"]:active,
input[type="url"]:focus,
input[type="search"]:active,
input[type="search"]:focus,
input[type="time"]:active,
input[type="time"]:focus,
input[type="number"]:active,
input[type="number"]:focus,
input[type="date"]:active,
input[type="date"]:focus {
  background-color: var(--focus_color) !important;
  color: #fff !important;
  box-sizing: border-box;
}
.inputFile input[type="text"]:active,
.inputFile input[type="text"]:focus {
  background: var(--focus_color);
}

input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
  opacity: 1;
  /* line-height: 2.375em; */
  color: #fff !important;
  background-color: var(--focus_color) !important;
  border-color: var(--focus_color);
  box-sizing: border-box;
}

select:active,
select:focus {
  color: #fff !important;
  background-color: var(--focus_color) !important;
  border-color: var(--focus_color);
}

textarea:active,
textarea:focus {
  color: #fff !important;
  background-color: var(--focus_color) !important;
}


/* =============================== */
/* 無障礙隱藏label */
/* =============================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}












/*平板版*/
/*---------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------*/
@media (min-width: 541px) and (max-width: 950px) {
}

/*手機版*/
/*---------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------*/
@media (max-width: 540px) {

}