/*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: 42px;
  line-height: 2.625em;
  width: 100%;
  transition: 0.2s ease all;
  padding: 0px 6px 0px 6px;
  box-sizing: border-box;
}
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: 2.8125em;
  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/select_arrow.png) no-repeat;
  background-size: 13px;
  background-position: right;
  padding-right: 18px !important;
}
select::-ms-expand {
  /*for Internet Explorer*/
  display: none;
}
select:focus {
  border: solid 0.0625em #d5d5d5;
}

label {
  cursor: pointer;
}

/*-------輪播----------------------------------------------------------------------------*/

/*首頁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 {
  /*margin: 14px 0px 10px 0px;*/
  margin: 0px 0px 10px;
}
.tabs_btn_now {
  transition: 0.3s ease all;
  background: #595959;
  color: #fff;
  font-size: 0.8125em;
  line-height: 2.4375em;
  padding: 0px 36px 0px 36px;
  text-align: center;
  display: none;
  position: relative;
}
.tabs_btn_now:hover {
  background: #00a0e9;
}
.tabs_btn_now_arrow {
  position: absolute;
  border-top: solid 0.5em #004998;
  top: 17px;
  right: 20px;
  border-left: solid 0.3125em rgba(255, 255, 255, 0);
  border-right: solid 0.3125em rgba(255, 255, 255, 0);
}

.img-scroll {
  height: 26px;
  position: relative;
  background-color: transparent;

  margin: 0px 0px 10px;
  border-bottom: 0.0625em solid #dcdcdc;
  padding: 0px 0px 10px;
}

.img-list {
  position: relative;
}
ul.tabs {
  margin: 0;
  padding: 0;
  list-style: none;
}
.tabs li {
  line-height: 1.625em;
  float: left;
  position: relative;
  font-size: 0.8125em;
}
.tabs li a:hover {
  opacity: 0.5;
}
.tabs a {
  color: #969696;
  text-decoration: none;
  display: block;
  padding: 0px 15px;
  transition: 0.3s ease all;
  font-weight: bold;
  font-size: 0.9375em;
  border-left: 0.0625em solid #dcdcdc;
}
.tabs li.active {
  /*當前模式*/
}
.tabs li:nth-of-type(1) a {
  border-left: 0px;
}
.tabs li.active a {
  color: var(--primary_color);
  font-size: 1.4375em;
  background-color: transparent;
}
.tabs li.active:after {
}

#tab1 {
}
.tab_content {
}

/*產品內頁頁籤的網編區*/
.p_tab_text_area {
}
@media (max-width: 768px) {
  .tabs a {
    padding: 0px 15px;
  }
}
@media (max-width: 640px) {
  .tabs li {
    width: 25%;
    text-align: center;
  }
  .tabs li.active a {
    font-size: 0.9375em;
  }
}
@media (max-width: 414px) {
  .tabs li a {
    padding: 0px 7px;
  }
}

@media (max-width: 375px) {
  /*頁籤*/
  .tab_area {
    /*position:relative;*/
  }
  .tabs_btn_now {
    /*display:block;
								background-color: #eaeaea;
								color: #004998;
								font-weight: bold;*/
  }

  .img-scroll {
    /*display:none;
								height:auto;
								position: absolute;
								width: 100%;
								z-index: 999;*/
  }
  .tabs li {
    /*float:none;
									text-align:center;*/
  }
  .tabs li.active:after {
    /*content:"";*/
  }

  .tabs li a {
    padding: 0px;
    font-size: 0.875em;
  }

  .tabs li.active a {
    font-size: 0.875em;
  }
}

/*-------驗證碼----------------------------------------------------------------------------*/
.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: 'SweiGothicLegCJKtc-Regular', serif;
  --primary_color: #25837f;         /*全站主色色碼*/
  --secondary_color: #06192a;       /*全站次要色色碼*/
  --third_color: #b7b7b7;           /*全站第三色色碼*/
  --fourth_color: #d35851;          /*全站第四色色碼*/
  --fifth_color:#466F1F;            /*全站第五色碼*/
  
  --focus_color: #55cec8;

  --fontSize:1em; /*相當於1em = 16px*/ /*1.2307em*/
}

/* .htmlFontSizeA ,
.htmlFontSizeB ,
.htmlFontSizeC{
  transition: font-size 0.1s;
} */



.htmlFontSizeA body{
  /* font-size: 1.1307em; */
  font-size: calc(var(--fontSize) * 1);
}


body ,
.htmlFontSizeB body{
  font-size: calc(var(--fontSize) * 1.2307);
  transition: font-size 0.1s;
}


.htmlFontSizeC body{
  font-size: calc(var(--fontSize) * 1.637);/*1.3307*/
}



/* 在螢幕放大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) {

	/*全站共用樣式*/
	:root {
		/*--fontSize: 0.8em;*/ /*calc(16px / 1.25)*/
    --fontSize: 1em; /*calc(16px / 1.25)*/
	}


  .htmlFontSizeA body ,
  .htmlFontSizeA body.zoom-125 {
    /* font-size: 1.1307em; */
    font-size: calc(var(--fontSize) * 0.9);
  }
  
  /* body , */
  body.zoom-125 ,
  .htmlFontSizB body ,
  .htmlFontSizB body.zoom-125{
    font-size: calc(var(--fontSize) * 1.15) ;
  }

  
  .htmlFontSizeeC body ,
  .htmlFontSizeC  body.zoom-125 {
    /* font-size: 1.3307em; */
    font-size: calc(var(--fontSize) * 1.32);
  }

  

}

/* 在螢幕放大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) {

	/*全站共用樣式*/
	:root {
		--fontSize: 1em; 
	}

  .htmlFontSizeA body {
    /* font-size: 1.1307em; */
    font-size: calc(var(--fontSize) * 0.9);
  }
  
  body ,
  .htmlFontSizeB body {
    /* font-size: calc(var(--fontSize) * 1); */
    font-size: calc(var(--fontSize) * 1.15);
  }
  
  .htmlFontSizeC body {
    /* font-size: 1.3307em; */
    /* font-size: calc(var(--fontSize) * 1.15); */
    /* font-size: calc(var(--fontSize) * 1.3); */
    font-size: calc(var(--fontSize) * 1.5);
  }

}


@media (max-width: 990px) {

  /*全站共用樣式*/
  :root {
    --fontSize:1em; /*相當於1em = 16px*/
  }

}




/*/////////////////////////////////////////////////////////*/
/*-------首頁內容--------*/
/*/////////////////////////////////////////////////////////*/

.main {
  position: relative;
}


@media (max-width: 1280px) {
  .main {
    /* margin-top:134px; */
  }
}

@media (max-width: 990px) {
  .main {
    /* margin-top:63px; */
  }
}

@media (max-width: 640px) {
  .main {
    /* margin-top:61px; */
  }
}

/*/////////////////////////////////////////////////////////*/
/*-------首頁_跑馬燈輪播區塊--------*/
/*/////////////////////////////////////////////////////////*/

/*跑馬燈輪播*/
.marquee {
  position: relative;
  overflow: hidden; /* 超出範圍的部份要隱藏 */
  height: 50px;
  background: #e6e6e6;
}
.marquee_bg {
  position: absolute;
  width: 84.37%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.marquee_list {
  margin: 0;
  padding: 0;
  list-style: none;

  font-size: 0.8125em;
  height: 50px;
  line-height: 3.125em;
}

.mL_date {
  position: absolute;
  left: 0px;
  color: #000;
  font-size: 1em;
  height: 50px;
  line-height: 3.125em;
  font-family: var(--foreign_font);
}

.mL_tit {
  font-weight: bolder;
  padding-left: 125px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.mL_tit a {
  text-decoration: none;
  color: #000;
  font-size: 1em;
  height: 50px;
  line-height: 3.125em;
}
.mL_tit a:hover {
  opacity: 0.5;
}
.marquee_list.active * {
  color: #f00;
}

.index_Course_News {
}

.index_Course_News > .wrap {
  width: 90%;
}

/*首頁_課程+最新消息區塊*/
.index_CourseNewsBg {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: flex-start;
  margin: 0px -25px 0px;
  padding: 50px 0 50px;
}

/*/////////////////////////////////////////////////////////*/
/*-------首頁_課程報名區塊--------*/
/*/////////////////////////////////////////////////////////*/

/*首頁_課程報名區塊*/
.index_CourseBg {
  width: 50%;
  padding: 0 25px;
  box-sizing: border-box;
  position: relative;
}

.index_CourseBg .index_tit {
  margin-bottom: 0;
  position: absolute;
}

.index_CourseArea {
}

.index_CourseArea .tab_area {
  margin: 0;
}
.index_CourseArea .tabs_btn_now {
}
.index_CourseArea .img-scroll {
  margin: 0px 0px 0px;
  border-bottom: 0 solid #dcdcdc;
  padding: 0px 0px 0px;
}

.index_CourseArea .img-scroll .img-list {
  margin: 13px 0px 0px;
}

.index_CourseArea .img-scroll .img-list .tabs {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-end;
}
.index_CourseArea .img-scroll .img-list .tabs li {
}

.index_CourseArea .p_tab_text_area {
  margin-top: 17px;
}

/*首頁_Course列表 */
.index_CList {
  padding: 17.6px 70px 17.6px 0px;
  border-bottom: 0.0625em var(--third_color) dashed;
  position: relative;
  color: var(--secondary_color);
  font-size: 1.125em;
  line-height: 1.5;
  font-weight: 500;
}

/*首頁_Course日期 */
.index_CListDate {
  line-height: 1.5;
  font-size: 1.25em;
  font-weight: 600;
  color: var(--primary_color);
  position: absolute;
  left: 0;
  font-family: var(--foreign_font);
}

/*首頁_Course標題 */
.index_CListTit {
  text-decoration: none;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  /*overflow: hidden; 
						text-overflow:ellipsis; 
						white-space: nowrap;*/ /*Judy修改20200914*/
  font-weight: inherit;
}
/*.index_CListTit a{
							display:block;
							text-decoration:none;
							color:#313131;
							
							overflow: hidden; 
							text-overflow:ellipsis; 
							white-space: nowrap;
						} */

/*.index_CListTit:hover{
							color:var(--primary_color);
							transition: 0.3s ease all;
						}*/

/*首頁_Course報名 */
.index_CListAdd {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateX(0%) translateY(-50%);
  transform: translateX(0%) translateY(-50%);
}
.index_CListAdd a {
  display: block;
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  line-height: 1.875em;
  padding: 0px 10px;
  border-radius: 0.25em;
  background-color: #7d7d7d;
}
.index_CListAdd a:hover {
  background-color: var(--primary_color);
  transition: 0.3s ease all;
}

/*首頁_Course更多按鍵 */
.index_CourseBtn {
  text-align: right;
  margin: 30px 0px 0px;
}
.index_CourseBtn a {
  display: inline-block;
  background-color: var(--primary_color);
  text-decoration: none;
  color: #fff;
  text-align: center;
  padding: 10px 40px;
  border-radius: 0.25em;
  font-family: var(--foreign_font);
}
.index_CourseBtn a:hover {
  background-color: var(--primary_color);
  transition: 0.3s ease all;
}

/*/////////////////////////////////////////////////////////*/
/*-------首頁_最新消息區塊--------*/
/*/////////////////////////////////////////////////////////*/

/*首頁_最新消息區塊*/
.index_NewsBg {
  /* width:50%; */
  padding: 60px 0 0;
  /* box-sizing:border-box; */
}

/*首頁_公告事項區*/
.index_NewsArea {
}

/* .index_NewsArea:first-child{
			margin-bottom:30px;
		} */

.index_NewsBg .index_tit {
  margin-bottom: 0;
}

.index_NewsListIn {
}

/*首頁_News列表 */
.index_NList {
  padding: 25px 0px 25px 135px;
  border-bottom: 0.0625em var(--third_color) dashed;
  position: relative;
}

/*首頁_News日期 */
.index_NListDate {
  position: absolute;
  top: 26px;
  left: 0;
  line-height: 1.5;
  color: var(--primary_color);
  font-family: var(--foreign_font);
  font-size: 1.25em;
  font-weight: 600;
}

/*首頁_News標題 */
.index_NListTit {
}
.index_NListTit a {
  display: block;
  text-decoration: none;
  color: var(--secondary_color);
  font-size: 1.125em;
  line-height: 1.66;
  font-weight: 500;
}
.index_NListTit a:hover {
  color: var(--primary_color);
  transition: 0.3s ease all;
}

/*首頁_News更多按鍵 */
.index_NewsBtn {
  text-align: center;
  margin: 25px 0px 0px;
  font-size: 1.25em;
  font-weight: 700;
}
.index_NewsBtn a {
  display: inline-block;
  background-color: var(--primary_color);
  text-decoration: none;
  color: #fff;
  text-align: center;
  padding: 15px 60px;
  border-radius: 1.875em;
}
.index_NewsBtn a:hover {
  background-color: var(--third_color);
  transition: 0.3s ease all;
}

@media screen and (min-width: 1351px) and (-webkit-min-device-pixel-ratio: 1.25),
  only screen and (-o-min-device-pixel-ratio: 125/100) {
  /* 在螢幕放大125%且寬度大於1350時，套用這裡的特定樣式 */
  .index_NewsListIn {
    padding-top: 10px;
  }
  /*首頁_News列表 */
  .index_NList {
    padding: 10px 0px 10px 105px;
  }

  /*首頁_News日期 */
  .index_NListDate {
    font-size: 1em;
    top: 11px;
  }
  /*首頁_News標題 */
  .index_NListTit {
  }
  .index_NListTit a {
    font-size: 1em;
  }

  /*首頁_News更多按鍵 */
  .index_NewsBtn {
    margin: 25px 0px 0px;
    font-size: 1em;

    /* margin-top: calc(25px / 1.25);
		font-size: calc(1.25em / 1.25); */
  }
}

@media (max-width: 1350px) {
  /*首頁_Course列表 */
  .index_CList {
    padding: 17.6px 70px 17.6px 0px;
  }

  /*首頁_Course日期 */
  .index_CListDate {
    font-size: 1em;
  }

  /*首頁_News列表 */
  .index_NList {
    padding: 10px 0px 10px 105px;
  }

  /*首頁_News日期 */
  .index_NListDate {
    font-size: 1em;
    top: 12px;
  }
  /*首頁_News標題 */
  .index_NListTit {
  }
  .index_NListTit a {
    font-size: 0.9375em;
  }
}

@media screen and (min-width: 991px) and (-webkit-min-device-pixel-ratio: 1.5),
  only screen and (-o-min-device-pixel-ratio: 150/100) {
  /* 在螢幕放大125%且寬度大於1350時，套用這裡的特定樣式 */

  /*首頁_最新消息區塊*/
  .index_NewsBg {
    padding: 40px 0 0;
  }
  .index_NListDate {
    font-size: calc(1em / 1.25);
    top: 13px;
  }
  .index_NListTit a {
    font-size: calc(0.9375em / 1.15);
  }

  /*首頁_News更多按鍵 */
  .index_NewsBtn {
    margin-top: calc(25px / 1.25);
    font-size: calc(1.25em / 1.25);
  }
  .index_NewsBtn a {
    padding: calc(15px / 1.25) calc(60px / 1.25);
  }
}

@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時，套用這裡的特定樣式 */

  /*首頁_News列表 */
  /* .index_NList{
		padding: 10px 0px 10px 105px;
	} */

  /*首頁_News日期 */
  /* .index_NListDate{		
			font-size: 1em;
			top: 11px;
		} */
  /*首頁_News標題 */
  /* .index_NListTit{
		}  
			.index_NListTit a{
				font-size: 1em;
			} */
}

@media (max-width: 990px) {
  /*首頁_課程+最新消息區塊*/
  .index_CourseNewsBg {
    display: block;
    flex-wrap: unset;
    flex-direction: unset;
    align-items: unset;
    margin: 0px 0px 0px;
    /*padding: 50px 0 50px;*/
  }

  /*首頁_課程報名區塊------------------------------------------*/
  .index_CourseBg {
    width: 100%;
    padding: 0 0px 30px;
  }

  .index_CourseArea .p_tab_text_area {
    margin-top: 17px;
    overflow: hidden;
    /*max-height: 255px;*/
  }

  .index_CourseBg .index_tit {
    top: -11px;
  }
  /*首頁_Course列表 */
  .index_CList {
    /* padding: 10px 70px 10px 190px; */
    padding: 10px 70px 10px 0px; /*Judy修改20211018*/
  }

  .index_CourseArea .p_tab_text_area div .index_CourseA .index_CList {
    display: none;
  }
  .index_CourseArea
    .p_tab_text_area
    div
    .index_CourseA
    .index_CList:first-child,
  .index_CourseArea
    .p_tab_text_area
    div
    .index_CourseA
    .index_CList:nth-child(2),
  .index_CourseArea
    .p_tab_text_area
    div
    .index_CourseA
    .index_CList:nth-child(3),
  .index_CourseArea
    .p_tab_text_area
    div
    .index_CourseA
    .index_CList:nth-child(4),
  .index_CourseArea
    .p_tab_text_area
    div
    .index_CourseA
    .index_CList:nth-child(5) {
    display: block;
  }

  /*首頁_Course更多按鍵 */
  .index_CourseBtn {
    margin: 20px 0px 0px;
  }

  /*首頁_最新消息區塊-------------------------------------------*/
  .index_NewsBg {
    width: 100%;
    padding: 25px 0px 0;
  }
  /*首頁_News更多按鍵 */
  .index_NewsBtn {
    font-size: 1.125em;
  }
}

@media (max-width: 640px) {
  .index_CourseBg .index_tit {
    position: unset;
    top: unset;
    margin-bottom: 14px;
    text-align: initial;
  }

  /*首頁_Course---------------------------- */
  .index_CourseBg {
    padding: 0 0px 50px;
  }
  .index_CourseArea .p_tab_text_area {
    /*max-height: 580px;*/
  }

  /*首頁_Course列表 */
  .index_CList {
    padding: 10px 0px;

    /* display: flex;
		flex-wrap: wrap;
		justify-content: flex-end;	 */
  }

  /*首頁_Course日期 */
  .index_CListDate {
    position: unset;
    left: unset;
    /* width: 100%; */
  }
  /*首頁_Course報名 */
  .index_CListAdd {
    /*Judy修改20211015*/
    position: unset;
    right: unset;
    top: unset;
    -webkit-transform: none;
    transform: none;
    text-align: right;
    margin: 5px 0px 0px 5px;
    /* display: inline-block; */
  }
  .CourseAll .index_CListAdd:nth-child(2n) {
    /*Judy修改20211015*/
    right: unset;
  }
  .index_CListAdd a {
    text-align: center;
    display: inline-block;
  }

  /*首頁_News---------------------------- */
  .index_NewsArea:first-child {
    /* margin-bottom: 50px; */
  }

  /*首頁_News列表*/
  .index_NList {
    padding: 10px 0px;
  }
  /*首頁_News日期 */
  .index_NListDate {
    position: unset;
    left: unset;
  }

  /*首頁_News日期 */
  .index_NListDate {
    position: unset;
    left: unset;
  }

  /*首頁_Course更多按鍵 */ /*首頁_News更多按鍵 */
  .index_CourseBtn,
  .index_NewsBtn {
    margin: 15px 0px 0px;
    text-align: center;
    font-size: 0.9375em;
    font-weight: 700;
  }
  .index_NewsBtn a {
    display: block;
    padding: 15px 5px;
  }
}

/*/////////////////////////////////////////////////////////*/
/*-------共用區塊--------*/
/*/////////////////////////////////////////////////////////*/

.inmain{
  min-height: 686.5px;
}

/* 導盲磚_跳到中央內容區塊----------------- */
.main > 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; /* 移動位置  跳到中央內容區塊目標  modify by Judy 20240730 */
}
.main > a.maincontent.fixed {
}

/*內頁banner*/
.inbanner {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height:  clamp(12.1875rem, 19.5313vw, 23.4375rem); 
  position: relative;
}
.inbanner_text{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  /* z-index: 0; */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: 100%;
}
.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: 13rem ; 
  }

}

/*麵包屑*/
.crumb {
  font-size: 0.9375em;
  line-height: 1.2;
  color: #969696;
  padding: 10px 0px;
  font-weight: 500;
  word-wrap: break-word;
  box-shadow: 0px 0px 0.375em rgb(0 0 0 / 0.2);
  display: none;
}
.crumb a {
  color: var(--primary_color);
  text-decoration: none;
}
.crumb a:hover {
  opacity: 0.5;
}











/*內頁標題樣式1-----------------------------------------*/
.titStyle1 {
  font-size: 1.1875em;
  /* font-size: 2em; */
  line-height: 1.3;
  color: var(--secondary_color);
  font-weight: bolder;
  position: relative;
  padding-bottom: 15px;
  border-bottom: 0.125em solid var(--primary_color);
}

  .titStyle1 strong {
    display: inherit;
    /* font-size: inherit; */
    font-size: 1.5em;
    margin-block-start: inherit;
    margin-block-end: inherit;
    margin-inline-start: inherit;
    margin-inline-end: inherit;
    font-weight: inherit;
  }
  .titStyle1:after {
    position: absolute;
    content: "";
    bottom: -1px;
    background: var(--primary_color);
    width: 62px;
    height: 4px;
    left: 0px;
  }

/*內頁標題樣式2-----------------------------------------*/
.titStyle2 {
  /* font-size: 1.1875em; */
  font-size: 1.25em;
  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-bottom: 40px;
  padding-top: 40px; */
  padding: clamp(1.2904rem, 2.0833vw, 2.5000rem) 0; /*最小值 20.65px、大小約 2.0833vw、最大值 40px */
  display: block;
}


/*左側*/
.left {
  /*display:none;*/
  /*float:left;*/

  width: 275px;
  min-width: 275px;
  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;
}

/*左側選單列表*/
.leftListArea {
}
.leftList {
  font-size: 1.125em;
}

.leftList.leftList2 > a {
  position: relative;
}

.leftList > a {
  display: block;
  text-decoration: none;
  color: #313131;
  padding: 15px 30px 15px 10px;
  position: relative;
  font-size: 1em;
  line-height: 1.375;
  word-break: break-word;
  border-bottom: 0.0625em #d4d4d4 solid;
}

.leftList.active > a {
  color: #000;
  background-color: #ececec;
}
.leftList:hover > a {
  color: #000;
  background-color: #ececec;
}

.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: block;
  transition: 0.3s ease all;
  color: #838383;
  padding: 10px 30px 10px 27px;
  font-size: 1em;
  line-height: 1.25;
  font-weight: normal;
  word-break: break-word;
}
.leftList_open_list.active a {
  color: var(--primary_color);
}
.leftList_open_list a:hover {
  color: var(--primary_color);
  text-decoration: none;
}

/*右側*/
.right {
  /*float:right;*/
  box-sizing: border-box;
  /* width:100%;
		padding-left: 6%; */

  width: calc(100% - 275px - 65px);
  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;
}

/*網編區------------------------------------------*/
.textArea {
  margin-top: 15px;
  /* font-size: 0.875em; */
  font-size: 1em;
  line-height: 1.5;
  color: #333;
  word-wrap: break-word;
  word-break: break-all;
}
.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;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.btn_area input,
.btn_area button {
  padding: 0;
  margin: 0;
  border: none;
  background-color: var(--secondary_color);
  border-color: var(--secondary_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;
  font-size: 1.25em; /*20px*/
  font-family: var(--mandarin_font);
}
.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; */
  margin: 25px 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);
}

.btn_area button.back ,
.btn_area input.back{
  background-color: var(--primary_color);
  border-color: var(--primary_color);
}

/*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;
}


.btn_area .clearfloat{
    display: none;
}

@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) {

  .inbanner_text .text_item span{    
    font-size: 1.125em;     
  }

  /*麵包屑*/
  .crumb {
    font-size: 0.8125em;
    line-height: 1.69;
  }

  .containerIn {
    padding: 10px 0px 0px;
  }

  /* 高度滿版附加fullHeight-----------------------------------------*/
  .fullHeight {
    padding: 10px 0;
  }

  /*內頁標題樣式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: 50px;
  }

  /*左側表單名稱*/
  .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;
  }
}




@media(max-width:768px){
  .container_bg{
    border-radius: 15px;
  }

  /*內頁banner--------------------------*/
  .inbanner {
    /* min-height: 200px; */
  }

  /*左側*/
  .left {
    margin-bottom: 20px;
  }

  /*內頁標題樣式1-----------------------------------------*/
  .titStyle1 {
    font-size: 1em;
    line-height: 1.3;
  }

  /*內頁標題樣式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 {
  }
    .inbanner_text{
      gap: 5px;
    }
      .inbanner_text .text_item span {
          font-size: 1em; /*16*/
      }


  .titStyle1 strong {
    font-size: inherit;
  }

  


  /*按鈕--------------------------*/
  .btn_area {
    margin: 15px 0px 0px;
  }
    .btn_area input,
    .btn_area button {
      /* margin: 0px 5px; */
      font-size: 0.9375em;
      padding: 0;
    }

  .btn_area.one {
    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;
	}*/
}

/*/////////////////////////////////////////////////////////*/
/*-------常見問題區--------*/
/*/////////////////////////////////////////////////////////*/

/* 常見問題-列表區塊 */
.qa_list_area {
}
.qa_list {
  border-bottom: solid 0.0625em #e3e3e3;
}
.qaL_tit {
}
.qaL_tit a {
  font-size: 0.9375em;
  line-height: 1.46;
  color: #333;
  position: relative;
  padding: 15px 35px 15px 55px;
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.qaL_tit a:before {
  content: "Q：";
  position: absolute;
  font-size: 1.125em;
  color: #000000;
  top: 15px;
  left: 15px;
  transform-origin: center center;
  font-family: var(--foreign_font);
}

/*hover*/
.qa_list:hover .qaL_tit a:before {
  color: #ffffff;
}

/*當前模式*/
.qa_list.active .qaL_tit a:before {
  color: #ffffff;
}

.qaL_tit a:after {
  content: "+";
  position: absolute;
  font-size: 1.25em;
  color: #ccc;
  top: 15px;
  right: 15px;
  transform-origin: center center;
}

/*當前模式*/
.qa_list.active .qaL_tit a:after {
  color: #fff;
  top: 15px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.qaL_text {
  position: relative;
  font-size: 0.9375em;
  line-height: 1.5;
  color: #464545;
  padding: 15px 0px 15px 55px;
  display: none;
}
.qaL_text:before {
  content: "A：";
  position: absolute;
  font-size: 1.125em;
  color: #000000;
  top: 15px;
  left: 15px;
  transform-origin: center center;
  font-family: var(--foreign_font);
}

/*hover*/
.qaL_tit a:hover {
  background: var(--primary_color);
  color: #fff;
}

/*當前模式*/
.qa_list.active .qaL_tit a {
  background: var(--primary_color);
  color: #fff;
}

/* 常見問題search-------------- */
.search-container-qa {
  text-align: center;
  position: relative;
  max-width: 215px;
  width: 100%;
  border-radius: 1.5625em; /*25px*/
  overflow: hidden;
  border: var(--primary_color) 0.125em solid;
  padding: 0 45px 0 10px;
}

.search-box {
}
.search-container-qa input {
  background: transparent;
  line-height: normal; /*25px*/
  /* padding: 5px 0; */
  padding: 7px 0 3px;
  height: auto;
  width: 100%;
  font-size: inherit;
  border: none;
  font-size: 1em; /*16px*/
}
.search-container-qa input:focus {
  border: none;
}

/*搜尋icon*/
.search-button {
  transition: 0.3s ease all;
  padding: 0px 0px;
  height: 100%;
  width: 40px;
  font-size: 1em; /*16px*/
  background-color: var(--primary_color);
  color: #fff;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-button label {
  position: relative;
  display: block;
}
.search-button label div {
  position: relative;
  display: block;
}
.search-button label div svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: #fff;
}

/*hover*/
.search-button:hover label {
  opacity: 0.5;
  transition: 0.3s ease all;
}

@media (max-width: 640px) {
  /* 常見問題search-------------- */
  .search-container-qa {
    order: -1;
    max-width: 100%;
  }
}

/*/////////////////////////////////////////////////////////*/
/*-------課程報名列表--------*/
/*/////////////////////////////////////////////////////////*/

/*課程內頁上方選單*/
.course_rightTopArea {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: flex-start;
  margin: 0px -5px 10px;
}
.course_rightTopL {
  box-sizing: border-box;
  text-align: center;
  margin-bottom: 10px;
  padding: 0px 5px 0px;
}
.course_rightTopL.active {
}
.course_rightTopL.active a {
  background-color: var(--primary_color);
}
.course_rightTopL a {
  display: block;
  text-decoration: none;
  background-color: #aeaeae;
  padding: 10px 5px;
  font-size: 0.8125em;
  line-height: 1.15;
  color: #fff;
  border-radius: 0.3125em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.course_rightTopL a:hover {
  transition: all 0.3s ease-out;
  background-color: var(--primary_color);
  opacity: 0.5;
}

.CourseAll {
  margin: -15px 0;
}

.CourseAll .index_CList {
  padding: 15px 115px 15px 0px;
}

.CourseAll .index_CListDate {
  position: unset;
  left: unset;
}

.CourseAll .index_CListAdd {
}
.CourseAll .index_CListAdd:nth-child(2n) {
  right: 75px;
}
.CourseAll .index_CListAdd a {
  text-align: center;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background-color: var(--primary_color);
  border-radius: 6.25em;
  padding: 5px 20px;
  font-size: inherit;
  font-weight: 700;
}

/*額滿*/
.CListAddNone {
}
.CListAddNone a {
  cursor: default;
  color: #909090;
  background-color: #ececec;
}
.index_CListAdd a:hover {
  background-color: #ececec;
}

/*課程搜尋--------------------------------------------------*/
/* .warrantySearch {
	margin: 15px 0;
	text-align: right;
}
	.warrantySearchBg {
		border: solid 0.125em var(--primary_color);
		border-radius:1.875em;
		position:relative;
		width: 200px;
		box-sizing:border-box;
		padding-right: 30px;
		display: inline-block;
	}
		.warrantySearchBg input[type='text'] {
			border:none;
			background:none;
			height: 30px;
			color: #aeaeae;
		} */

/*webkit瀏覽器專用*/
.warrantySearchBg ::-webkit-input-placeholder {
  color: #aeaeae;
}
/*Firefox 4-18瀏覽器專用*/
.warrantySearchBg input::-moz-placeholder {
  color: #aeaeae;
}
/*Firefox 19+瀏覽器專用*/
.warrantySearchBg input::-moz-placeholder {
  color: #aeaeae;
}
/*IE10瀏覽器專用*/
.warrantySearchBg:-ms-input-placeholder {
  color: #aeaeae;
}

@media (max-width: 1350px) {
  .CourseAll .index_CList {
    font-size: 0.9375em;
  }
}

@media (max-width: 990px) {
  .CourseAll .index_CList {
    padding: 10px 170px 10px 0px;
  }
}

@media (max-width: 640px) {
  .CourseAll .index_CList {
    padding: 15px 0px 15px 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .CourseAll .index_CListDate {
    width: 100%;
  }
  .CourseAll .index_CListTit {
    width: 100%;
  }

  .CourseAll .index_CListAdd {
    text-align: center;

    margin: 15px auto 0;

    display: block;

    width: 100%;
  }
  .CourseAll .index_CListAdd a {
    display: block;
    padding: 10px 5px;
  }
  .warrantySearch {
    margin: 10px 0;
  }
  .warrantySearchBg {
    width: 100%;
  }
}

/*/////////////////////////////////////////////////////////*/
/*-------註銷公告--------*/
/*/////////////////////////////////////////////////////////*/

.cancellation_bg {
}

.cancellation_bg tbody {
}

.cancellation_bg tbody tr {
}
.cancellation_bg tbody tr td:last-of-type {
  text-align: left;
}

/*/////////////////////////////////////////////////////////*/
/*-------特殊表單寬度框架--------*/
/*/////////////////////////////////////////////////////////*/

.contact_area {
}
.contact_area2 {
  margin: 0 auto;
  /* max-width: 600px; */
  max-width: 705px;
  width: 100%;
}

/*/////////////////////////////////////////////////////////*/
/*-------證書驗證結果--------*/
/*/////////////////////////////////////////////////////////*/

/* 證書驗證結果 */
.certificate_box {
  /* box-shadow: 0 1px 6px 0 #20212447; */
  box-shadow: 0.0625em 0.0625em 0.9375em #00000038;
  border-radius: 0.625em;
  max-width: 400px;
  min-height: 400px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
  margin-bottom: 30px;
}

/* 您上傳的證書無問題！！ */
.certificate_box.success {
}

/* 您上傳的證書非本網站發放，如有問題請聯繫相關人員！！ */
.certificate_box.failure {
}

.certificate_box span {
  margin-bottom: 40px;
}

.certificate_box span i {
  color: var(--primary_color);
  font-size: 3.125em;
}
.certificate_box.failure span i {
  color: var(--fourth_color);
}

.certificate_box strong {
  font-weight: 400;
  font-size: 1.125em;
  line-height: 1.5;
  text-align: center;
}
.certificate_box.failure strong {
  color: var(--fourth_color);
}

@media (max-width: 990px) {
  /* 證書驗證結果 */
  .certificate_box {
    margin-bottom: 5px;
  }
}

@media (max-width: 640px) {
  /* 證書驗證結果 */
  .certificate_box {
    max-width: unset;
    min-height: unset;
    width: 99%;
    padding: 25px 15px;
    margin: 15px auto;
  }
  .certificate_box span {
    margin-bottom: 20px;
  }
  .certificate_box span i {
    font-size: 2.5em;
  }
  .certificate_box strong {
    font-size: 1em;
  }
}

/*/////////////////////////////////////////////////////////*/
/*-------活動花絮--------*/
/*/////////////////////////////////////////////////////////*/

.photo_area {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  /* margin: 0 -6px; */
  /*padding-bottom: 40px;*/
}

.photo_List {
  width: 25%;
  box-sizing: border-box;
  /*float: left;*/
  position: relative;
  background-color: rgba(0, 0, 0, 0);

  overflow: hidden;
}

.photo_List:hover {
  background-color: rgba(0, 0, 0, 1);
}

.photo_IMG {
  /*overflow:hidden;*/

  /* background-color: #000; */
}
.photo_IMG a {
  display: block;
  padding-top: 100%;
  background-color: #000;
}
.photo_IMG img {
  /*opacity:1;*/
  opacity: 0.5;
  transition: all 0.3s ease-out;

  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  float: none;
  /* border-radius: 50%; */
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.photo_List:hover .photo_IMG a img {
  opacity: 0.9;
  transform: scale(1.2);
  transition: all 0.3s ease-out;
}

.photo_title {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 90%;
  max-height: 100%;
  width: 100%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.photo_title a {
  font-size: 1.5625em;
  line-height: 1.2;
  color: #ffffff;
  font-weight: bolder;
  display: block;
  text-decoration: none;
  text-shadow: #000000 4px 3px 4px;
}

.photo_title span:first-of-type {
  display: block;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  font-size: 0.9375em;
  line-height: normal;
  margin-bottom: 5px;

  display: block;
  -webkit-box-orient: unset;
  -webkit-line-clamp: unset;
  overflow: unset;
}
.photo_title span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.photo_List:hover .photo_title a {
  color: #ffffff;
  text-shadow: #000000 0px 0px 10px;
}

/*-------活動花絮內頁列表-------------------------------------------------------*/

.gallery_area {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  vertical-align: top;
  margin: 0px -15px -30px;
}

.gallery_List {
  width: 25%;
  box-sizing: border-box;
  padding: 0px 15px 30px;
  overflow: hidden;
}
.gallery_IMG {
  overflow: hidden;
}
.gallery_IMG a {
  display: block;
}
.gallery_IMG img {
  width: 100%;
  height: auto;
  transition: all 0.3s ease-out;
}
.gallery_List:hover .gallery_IMG img {
  opacity: 0.5;
  transform: scale(1.2);
  transition: all 0.3s ease-out;
}
.photo_brief {
  display: none;
  padding: 15px 0px 0px;
  font-size: 0.9375em;
  line-height: 1.33;
  color: #8b989e;
}

@media (max-width: 990px) {
  .photo_List {
    width: 33.3%;
  }
}

@media (max-width: 768px) {
  .photo_List {
    width: 50%;
  }
  .photo_title span {
    font-size: 1.25em;
  }

  .gallery_List {
    width: 50%;
  }
}

@media (max-width: 510px) {
  .photo_List {
    width: 100%;
  }

  .gallery_area {
    display: block;
    flex-direction: unset;
    margin: 0px 0px -20px;
  }

  .gallery_List {
    width: 100%;
    padding: 0px 0px 20px;
  }
}

/*--------------------------------燈箱效果--------------------------------*/
/*
    Colorbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox,
#cboxOverlay,
#cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: hidden;
}
#cboxWrapper {
  max-width: none;
}
#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
}
#cboxMiddleLeft,
#cboxBottomLeft {
  clear: left;
}
#cboxContent {
  position: relative;
}
#cboxLoadedContent {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#cboxTitle {
  margin: 0;
}
#cboxLoadingOverlay,
#cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#cboxPrevious,
#cboxNext,
#cboxClose,
#cboxSlideshow {
  cursor: pointer;
}
.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: none;
  -ms-interpolation-mode: bicubic;
}
.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
}
#colorbox,
#cboxContent,
#cboxLoadedContent {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
}

/* 
    User Style:
    Change the following styles to modify the appearance of Colorbox.  They are

    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay {
  background: #000;
  opacity: 0.9;
  filter: alpha(opacity = 90);
}
#colorbox {
  outline: 0;
}
#cboxContent {
  margin-top: 20px;
  background: #000;
}
.cboxIframe {
  background: #fff;
}
#cboxError {
  padding: 50px;
  border: 0.0625em solid #ccc;
}
#cboxLoadedContent {
  border: 0.3125em solid #000;
  background: #000;
}
#cboxTitle {
  position: absolute;
  top: -20px;
  left: 0;
  color: #ccc;
}
#cboxCurrent {
  position: absolute;
  top: -20px;
  right: 0px;
  color: #ccc;
  font-family: "BenchNine", sans-serif;
} /*頁數樣式*/
#cboxLoadingGraphic {
  background: url(images/loading.gif) no-repeat center center;
}

/* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
#cboxPrevious,
#cboxNext,
#cboxSlideshow,
#cboxClose {
  border: 0;
  padding: 0;
  margin: 0;
  overflow: visible;
  width: auto;
  background: none;
}

/* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
#cboxPrevious:active,
#cboxNext:active,
#cboxSlideshow:active,
#cboxClose:active {
  outline: 0;
}

#cboxSlideshow {
  position: absolute;
  top: -20px;
  right: 90px;
  color: #fff;
}
#cboxPrevious {
  position: absolute;
  top: 50%;
  left: 5px;
  margin-top: -32px;
  background: url(images/controls.png) no-repeat top left;
  width: 28px;
  height: 65px;
  text-indent: -9999px;
}
#cboxPrevious:hover {
  background-position: bottom left;
}
#cboxNext {
  position: absolute;
  top: 50%;
  right: 5px;
  margin-top: -32px;
  background: url(images/controls.png) no-repeat top right;
  width: 28px;
  height: 65px;
  text-indent: -9999px;
}
#cboxNext:hover {
  background-position: bottom right;
}
#cboxClose {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  background: url(images/controls.png) no-repeat top center;
  width: 38px;
  height: 19px;
  text-indent: -9999px;
}
#cboxClose:hover {
  background-position: bottom center;
}

/*/////////////////////////////////////////////////////////*/
/*-------報名紀錄查詢--------*/
/*/////////////////////////////////////////////////////////*/

/* 表單padding設定 by jung 20241218 start */
.order_bg {
  /* padding: 15px 10px; */
}

/* 表單padding設定 by jung 20241218 end */

.order_bg table {
}

.order_bg table td {
  /* width: auto; */
}
.order_bg table td.exam_title {
  /* width: 33%; */
}
.order_bg table td.exam_btn {
  /* width: 25%; */
}

/* 申請退款--------------------- */
.request_refund_button {
  background: var(--fourth_color);
  color: #ffffff;
  border: 0.0625em solid var(--fourth_color);
  /* height: 40px;
		line-height: 2.5em;
		width: 100px; */
  box-sizing: border-box;
  border-radius: 1.875em;
  display: block;
  margin: 5px auto 0;
  cursor: pointer;

  height: auto;
  line-height: 2em;
  width: 85px;
}
.request_refund_button:hover {
  opacity: 0.5;
}
.request_refund_button:disabled {
  cursor: default;
  background: #c5c5c5;
  color: #e4e4e4;
  border-color: #c5c5c5;
}
.request_refund_button:disabled:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .order_bg table td.exam_btn {
    /* text-align: center; */
    display: flex;
    justify-content: center;
  }
  .order_bg .cPL_twoBtn input[type="button"] {
    max-width: unset;
  }

  /* 申請退款--------------------- */
  .request_refund_button {
    display: inline-block;
    margin: 0;
    margin-left: 5px;
    vertical-align: 10%;
  }
}



/*/////////////////////////////////////////////////////////*/
/*-------薦送人員清單--------*/
/*/////////////////////////////////////////////////////////*/

.refimport_order_bg {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 5px;

  overflow-y: auto; /* modify by Judy 20240425 */
}
.refimport_order_bg table {
  /* modify by Judy 20240425 */
  /* min-width: 1700px => 1380px by Jung 20241217 */
  min-width: 1380px;
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
  word-wrap: break-word;
  word-break: break-all;
}
.refimport_order_bg::-webkit-scrollbar {
  /*滾動條整體樣式*/
  width: 1px; /*高寬分別對應橫豎滾動條的尺寸*/
  height: 5px;
}
.refimport_order_bg::-webkit-scrollbar-thumb {
  /*滾動條裡面小方塊*/
  border-radius: 0.3125em;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);

  background: var(--primary_color);
}
.refimport_order_bg::-webkit-scrollbar-track {
  /*滾動條裡面軌道*/
  /* -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2); */
  border-radius: 0.3125em;
  background: #f3f3f3;
}

/* 把 block 去除把空間拿掉 by Jung 20241216 start */
.refimport_order_bg thead {
  /* modify by Judy 20240425 */
  /* display: block; */
  display: inline-block;
  width: 100%;
  min-width: 1700px;
  position: sticky;
  top: 0px;
}
.refimport_order_bg thead tr {
  min-width: inherit;
}
.refimport_order_bg table tbody {
  /* modify by Judy 20240425 */
  display: block;
  overflow-y: auto;
  min-width: 1700px;
  width: 100%;
  max-height: 315px;
  /* padding-right: 5px; */
}
/* 把 block 去除把空間拿掉 by Jung 20241216 end */

.refimport_order_bg table tr {
  min-width: inherit;
}

.refimport_order_bg table th {
  width: calc((1700px - 140px) / 15);
}

/* 機關全銜調整padding modify by peggy 20241226 */
.refimport_order_bg table tr td.number {
  padding: 0 7px;
}

/* 排序新增padding by jung 20241218 start */
.refimport_order_bg table td {
  width: calc((1700px - 140px) / 15);
  padding: 0 10px;
}
/* 排序新增padding by jung 20241218 end */

.refimport_order_bg table th:last-of-type {
  width: 140px;
}
.refimport_order_bg table td.exam_btn {
  width: 140px;
}

.refimport_order_bg table tbody::-webkit-scrollbar {
  /*滾動條整體樣式*/
  width: 5px; /*高寬分別對應橫豎滾動條的尺寸*/
  height: 5px;
}
.refimport_order_bg table tbody::-webkit-scrollbar-thumb {
  /*滾動條裡面小方塊*/
  border-radius: 0.3125em;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);

  background: var(--primary_color);
}
.refimport_order_bg table tbody::-webkit-scrollbar-track {
  /*滾動條裡面軌道*/
  /* -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2); */
  border-radius: 0.3125em;
  background: #f3f3f3;
}

/* 課程狀態 */
ul.courseStatus {
  padding: 0;
  margin: 0;
  display: block;
  list-style-type: none;
  text-align: left;

  margin: -2.5px 0;

  /* display: -webkit-box; */
  /* -webkit-box-orient: vertical;	 */
  /*-webkit-line-clamp: 4; */
  /* overflow: hidden; */
  /* overflow-y: auto; */
  max-height: 100px; /* modify by Judy 20240425 */
  overflow-x: hidden;
  overflow-y: auto;
}

ul.courseStatus::-webkit-scrollbar {
  /*滾動條整體樣式*/
  width: 5px; /*高寬分別對應橫豎滾動條的尺寸*/
  height: 5px;
}
ul.courseStatus::-webkit-scrollbar-thumb {
  /*滾動條裡面小方塊*/
  border-radius: 5px;
  /* -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2); */
  background: var(--primary_color);
  /*background: #fff0; */
  /* background-image: linear-gradient(to top, #afafaf 0%, #e5e5e5 100%);		 */
}
ul.courseStatus::-webkit-scrollbar-track {
  /*滾動條裡面軌道*/
  /* -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2); */
  border-radius: 5px;
  background: #fff0;
  /* background: #EDEDED; */
}

ul.courseStatus li {
  padding: 0;
  margin: 0;
  display: block;
  list-style-type: none;

  padding: 2.5px 0;
  /* display: inline;	 */
  /* display: inline-flex;
			flex-wrap: wrap;
			align-items: center; */
}
ul.courseStatus li div {
  display: inline;
}

@media (max-width: 768px) {
  /*-------薦送人員清單--------*/

  .refimport_order_bg {
    width: 100%;
    overflow-x: unset;
    overflow-y: unset;
    padding-bottom: 0px;
  }
  .refimport_order_bg table {
    min-width: unset;
    /* width: 100%;
		table-layout: fixed;
		border-collapse: collapse;
		border-spacing: 0;
		word-wrap: break-word;
		word-break: break-all; */
  }

  .refimport_order_bg thead {
    /* modify by Judy 20240425 */
    display: none;
  }
  .refimport_order_bg table tbody {
    /* modify by Judy 20240425 */
    display: block;
    overflow-y: unset;
    min-width: unset;
    max-height: unset;
  }
  .refimport_order_bg table tbody tr {
    /* modify by Judy 20240425 */
    display: block;
    width: 100%;
  }
  .refimport_order_bg table td {
    /* modify by Judy 20240425 */
    display: block;
    width: 100%;
  }

  .refimport_order_bg table th:last-of-type,
  .refimport_order_bg table td.exam_btn {
    width: 100%;
  }
}

/*/////////////////////////////////////////////////////////*/
/*-------薦送人員清單_上方審核狀態--------*/
/*/////////////////////////////////////////////////////////*/

.reviewStatus {
  font-size: 1em;
  margin-bottom: 10px;

  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.reviewStatus button {
  font-size: inherit;
  border-radius: 0.3125em;
  /* width: 80px; */
  height: auto;
  line-height: 2.1875em;
  padding: 0;
  margin: 0 5px;
  border-color: transparent;
  cursor: pointer;
  font-size: inherit;
  color: #fff;
  padding: 0 5px;
  background: var(--fourth_color);
  border: 0.0625em solid var(--fourth_color);
}

@media (max-width: 990px) {
  /*-------薦送人員清單_上方審核狀態--------*/
  .reviewStatus {
    font-size: 0.9em;
    /* margin-bottom: 10px; */
  }
}

/*/////////////////////////////////////////////////////////*/
/*-------薦送人員清單_表格上方操作按鈕--------*/
/*/////////////////////////////////////////////////////////*/

.actionButtons,
.sortButtons {
  margin: 0 -5px;
  margin-bottom: 25px;
  display: flex;
  justify-content: flex-end;
  border-radius: 0.125em;
  font-size: 1em;
}
.actionButtons select,
.actionButtons input,
.sortButtons button,
.sortButtons input {
  border-radius: 0.3125em;
  width: 80px;
  height: auto;
  line-height: 2.1875em;
  padding: 0;
  margin: 0 5px;
  border-color: transparent;
  cursor: pointer;
  font-size: inherit;
}
.actionButtons select {
  padding-left: 10px;
  border: var(--secondary_color) 0.0625em solid;
  color: var(--secondary_color);
}
.actionButtons input {
  color: #ffffff;
  background: var(--secondary_color);
  border: 0.0625em solid var(--secondary_color);
}
.actionButtons input:nth-child(2n) {
  background: var(--primary_color);
  border: 0.0625em solid var(--primary_color);
}

.sortButtons button {
  background: var(--third_color);
  border: 0.0625em solid var(--third_color);
  color: var(--secondary_color);
  font-size: inherit;
}

.sortButtons button i,
.sortButtons button span {
  color: inherit;
  font-size: inherit;
}
.sortButtons input {
  color: #ffffff;
  background: var(--primary_color);
  border: 0.0625em solid var(--primary_color);
}

@media (max-width: 990px) {
  /*-------表格上方操作按鈕--------*/
  .actionButtons,
  .sortButtons {
    justify-content: unset;
    margin: 0 -2px 10px;
  }
  .actionButtons select,
  .actionButtons input,
  .sortButtons button,
  .sortButtons input {
    width: auto;
    min-width: 70px;
    line-height: 2.1875em;
    font-size: 0.9em;
    margin: 0 2px;
  }
}

@media (max-width: 375px) {
  .actionButtons,
  .sortButtons {
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 0px 10px;
  }
  .actionButtons select,
  .actionButtons input,
  .sortButtons button,
  .sortButtons input {
    width: 31%;
    min-width: unset;
    margin: 0 0;
  }

  .actionButtons select {
    width: 100%;
    margin-bottom: 10px;
  }
}

/*//////////////////////////////////////////////////////*/
/*------- 個人專區 --------*/
/*//////////////////////////////////////////////////////*/

/* 登入_密碼 */
.form_list.password {
}
.form_list.password .fL_info {
  position: relative;
}
.form_list.password input {
  padding-right: 45px;
}
/* .form_list.password .eye{
		position: absolute;
		top: 50%;
		right: 0;
		-webkit-transform: translate(0, -50%);
		transform: translate(0, -50%);
		width: 40px;
		height: 39px;
		cursor: pointer;
		transition: 0.3s ease all;
	}
	.form_list.password .eye:hover{
		opacity: 0.5;
		transition: 0.3s ease all;
	} */
/*閉眼*/
.form_list.password i#check_eye,
.form_list.password i#check_eye2 {
  position: absolute;
  color: #333;
  font-size: 1.25em;
  top: 50%;
  right: 10px;
  -webkit-transform: translate(0, calc(-50% - 20px));
  transform: translate(0, calc(-50% + -9px));
  transition: 0.3s ease all;
  cursor: pointer;
}

.fL_info .yoko {
  position: relative;
  width: 100%;
  text-align: left;
  z-index: -1;
}
.fL_info .yoko:before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 38px;
  background: #d03529;
  /* -webkit-transform: perspective(1000px) rotate3d(1, 0, 0, 90deg); */
  transform: perspective(1000px) rotate3d(1, 0, 0, 90deg);
  /* -webkit-transform-origin: 50% 100%; */
  transform-origin: 50% 100%;
  /* -webkit-transition: -webkit-transform 0.3s; */
  transition: transform 0.3s;
}
.fL_info input:focus + .yoko:before {
  /* -webkit-transform: perspective(1000px) rotate3d(1, 0, 0, 0deg); */
  transform: perspective(1000px) rotate3d(1, 0, 0, 0deg);
}

/*//////////////////////////////////////////////////////*/
/*------- 會員登入區 --------*/
/*//////////////////////////////////////////////////////*/

.login_page {
}

.login_page .in_titStyle1 {
  text-align: center;
  border-bottom: 0 solid #cacaca;
  padding-bottom: 0px;
}
.login_page .in_titStyle1:after {
  display: none;
}
.login_page .in_titStyle1 h2 {
  /* padding: 0;
			margin: 0;
			font-weight: inherit;
			font-size: inherit;
			line-height: inherit;
			display: block; */
}

.loginArea {
  max-width: 400px;
  /* min-height: 400px; */
  width: 100%;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/*表單區*/
.loginArea .form_area {
  flex-grow: 1; /*可佔滿垂直剩餘的空間*/
}

.loginArea .form_list {
  padding-bottom: 20px;
}

/* 登入按鍵區 */
.loginArea .btn_area {
  margin: 0px 0px 0px;
  position: relative;
  width: 100%;
  display: flex;
}

.loginArea .btn_area.one input {
  width: 100%;
  max-width: 100%;
}
.loginArea .btn_area input {
  width: 49%;
  padding: 0px 5px;
}

/* .loginArea .btn_area button {
				width: 100%;
				background: #464646;
				color: #fff;
				border-color: #fff0;
				position: relative;
				padding: 0 30px;
			}
			.loginArea .btn_area:before {
				position: absolute;
				transition: 0.3s ease all;
				font-family: 'Bootstrap-icons';
				content: '\F285';
				top: 50%;
				right: 10px;
				transform: translateY(-50%);
				z-index: 3;
				color: #fff;
				transform-origin: center;
				transition: all 0.3s ease-out;
				opacity: 0;
			}
			.loginArea .btn_area:hover:before{
				right: 5px;
			} */

/* 是否還未加入會員？ */
.whether_register {
  display: flex;
  justify-content: center;
  margin: 20px 0;
  text-align: center;
}
.whether_register h3 {
  padding: 0;
  margin: 0;
  font-weight: normal;
  font-size: inherit;
  line-height: inherit;
  padding-right: 10px;
  box-sizing: border-box;
}
.whether_register a {
  color: #d03529;
  display: inline-block;
  text-decoration: none;
  box-sizing: border-box;
}

.loginArea .or {
  display: flex;
  justify-content: center;
  position: relative;
  color: #cacaca;
}
.loginArea .or span {
  background-color: #fff;
  padding: 10px;
}
.loginArea .or:after {
  position: absolute;
  content: "";
  background-color: #cacaca;
  width: 100%;
  height: 1px;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}

/* 其他登入方式 */
.login_order {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: -5px;
}
.login_order .btn {
  box-sizing: border-box;
  padding: 5px;
}
.login_order .btn button {
  border-radius: 50%;
  border: 0.0625em #fff0 solid;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  cursor: pointer;
}
.login_order .btn button img {
  width: 19px;
  height: auto;
}

.login_order .btn.line button {
  background-color: #00c300;
}
.login_order .btn.fb button {
  background-color: #3b5998;
}
.login_order .btn.google button {
  background-color: #f70f4d;
}

/* 忘記密碼 */
.forgot_password {
  margin-top: 25px;
  position: relative;
}
.forgot_password .fL_tit {
  background-color: #fff;
  display: inline-block;
  position: absolute;
  top: -12px;
  left: 11px;
  padding: 1px 8px;
  z-index: 2;
  color: #6b6b6b;
}
.forgot_password .fL_info {
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;
}
.forgot_password .fL_info input {
  border: 0.0625em var(--third_color) solid;
  border-radius: 0.1875em;
  padding-right: 120px;
  padding-left: 20px;
}
.forgot_password button {
  position: absolute;
  top: 0;
  right: 0;
  height: 41px;
  background: var(--third_color);
  color: #fff;
  border: var(--third_color) 0.0625em solid;
  border-radius: 0 0.1875em 0.1875em 0;
  padding: 0 15px 0 10px;
  cursor: pointer;
}

@media (max-width: 640px) {
  .loginArea {
    max-width: unset;
    min-height: 275px;
    width: 99%;
    padding: 25px 15px;

    /* display: flex;
		justify-content: center;
		align-items: center; */
  }

  /* 登入按鍵區 */
  .loginArea .btn_area {
    width: 100%;
  }
}

/*---------------------------------------------------------------------------------------------------------*/
/*會員登入區*/
.member_login_area {
  position: fixed;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: 1000;
  /*z-index:999;*/
  transition: 0.3s ease all;
  opacity: 0;
  pointer-events: none;
  opacity: 1\9; /*ie9*/
  display: none \9; /*ie9*/
}
.member_login_area.show {
  opacity: 1;
  pointer-events: auto;
  display: block \9; /*ie9*/
}
/* IE10、11、edge模式 */
@media all and (-ms-high-contrast: none) {
  .member_login_area {
    opacity: 1;
    display: none;
  }
  *::-ms-backdrop,
  .member_login_area {
    opacity: 1;
    display: none;
  }
  .member_login_area.show {
    display: block;
  }
  *::-ms-backdrop,
  .member_login_area.show {
    display: block;
  }
}
.mL_info {
  position: absolute;
  background: #fff;
  border-radius: 0.1875em;
  padding: 15px;
  left: 50%;
  top: 50%;
  margin: -235px 0px 0px -176px;
}
.mL_close {
  position: absolute;
  font-size: 0.9375em;
  font-weight: bold;
  letter-spacing: 0px;
  text-align: center;
  width: 34px;
  line-height: 2.125em;
  border-radius: 100%;
  color: #333;
  background: #f4f4f4;
  top: -17px;
  right: -17px;
  border: solid #a4a4a4 0.0625em;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1) inset;
  cursor: pointer;
  transition: 0.3s ease all;
}
.mL_close:hover {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4) inset;
}

.mLI_logo {
  padding: 0px 0px 10px;
  width: 293px;
  text-align: center;
}
.mLI_logo img {
  width: 100%;
  height: auto;
}

.mLI_input {
  padding: 10px 0px;
  font-size: 0.9375em;
}
.mLI_btn {
  padding: 10px 0px;
}
.mLI_btn_fb {
  padding: 10px 0px;
}

.mLI_btn input {
  width: 48%;
  float: left;
  box-sizing: border-box;
  background: #fff;
  color: var(--primary_color);
  border: 0.0625em solid var(--primary_color);
}
.mLI_btn input:nth-of-type(2) {
  float: right;
  background: var(--primary_color);
  color: #fff;
  border: 0.0625em solid var(--primary_color);
}
.mLI_btn_fb > input {
  width: 100%;
  float: left;
  background: #3b5999;
}

.mLI_btn_2 input {
  background: #f4f4f4;
  border: solid #a4a4a4 0.0625em;
  color: #333;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1) inset;
  width: 100%;
  float: none;
}

.mLI_tit {
  padding: 10px 0px 0px;
  font-size: 0.875em;
  line-height: 1.57;
  color: #333;
}
@media (max-width: 400px) {
  .mL_info {
    left: auto;
    top: auto;
    margin: 25px auto 0px;
    width: 80%;
    position: relative;
  }
  .mLI_logo {
    width: 100%;
  }
}
@media (max-height: 485px) {
  .mL_close {
    display: none;
  }
  .mL_info {
    top: auto;
    left: auto;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    margin: 3% auto 0px;
    max-width: 323px;
    height: 90%;
    overflow-y: scroll;
  }
}

/*員工專區登入口--------------------------------------*/

.loginEmployee .mLI_btn input {
  width: 100%;
  float: none;
  background-color: var(--primary_color);
  color: #fff;
}

.loginEmployee .mLI_btn.mLI_btn_2 input {
  background: rgb(244, 244, 244);
  color: rgb(51, 51, 51);
}

/*/////////////////////////////////////////////////////////*/
/*-------excel範例下載範本--------*/
/*/////////////////////////////////////////////////////////*/

/* 下載範本------------------------------ */
ul.sampleDLarea {
  padding: 0;
  margin: 0;
  display: block;
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0px -5px 17px;
}

ul.sampleDLarea li {
  padding: 0;
  margin: 0;
  display: block;
  list-style-type: none;
  max-width: 100%;
  padding: 0 5px;
}
ul.sampleDLarea li a {
  display: block;
  text-decoration: none;
  /* background-color: #016e38;
			background-color: var(--third_color); */
  background-color: var(--secondary_color);
  text-decoration: none;
  color: #fff;
  padding: 1px 0px;
  padding-left: 45px;
  padding-right: 40px;
  border-radius: 1.875em;
  text-align: center;
  font-weight: inherit;
  font-size: 1em;
  line-height: 2.81;
  position: relative;
}

ul.sampleDLarea li span {
  position: absolute;
  background-color: #fff;
  padding: 8px;
  border-radius: 100%;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
}
ul.sampleDLarea li img {
  /* width: 40px; */
  width: 22px;
  height: auto;
  /* border-radius: 50%; */
  /* padding: 5px; */
  /* background: #fff; */
}
ul.sampleDLarea li strong {
  margin-left: 15px;
  font-weight: 500;
}

ul.sampleDLarea li a:hover {
  background-color: var(--third_color);
  border-color: var(--third_color);
  transition: 0.3s ease all;
  /* opacity: 1; */
}

/* 上傳錯誤區------------------------------ */
.uploadError {
  color: var(--fourth_color);
  font-weight: 400;
  font-size: 0.875em;
  line-height: 1.5;
  border-radius: 0.625em;
  box-shadow: 0.0625em 0.0625em 0.9375em #00000038;
  padding: 20px 20px;
  margin-top: 15px;
}

@media (max-width: 640px) {
  /* 下載範本------------------------------ */
  ul.sampleDLarea {
    display: block;
    justify-content: unset;
    align-items: unset;
    margin: -5px 0;
    padding-bottom: 15px;
  }
  ul.sampleDLarea li {
    width: 100%;
    padding: 5px 0;
  }

  /* 上傳錯誤區------------------------------ */
  .uploadError {
    padding: 15px 15px;
  }
}




















/*/////////////////////////////////////////////////////////*/
/*-------頁數列區塊--------*/
.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;
  }
}

/* 新增 本機關含所屬人員歷史榜單查詢 modify by jung 20241203 start */

/*/////////////////////////////////////////////////////////*/
/*-------本機關含所屬人員歷史榜單--------*/
/*/////////////////////////////////////////////////////////*/

.actionInput {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 10px;
  align-items: center;
  margin: 0 0 25px;
}
.actionInput input {
  /* margin: 10px 5px; */
  width: 75px;
}
/* 測試區域 */
.actionInput input:nth-of-type(3) {
  width: 120px;
}
.actionInput .selectBox {
  margin: auto 0 auto 10px;
}

.actionInput .searchBtn {
  padding: 0 10px;
  outline: none;
  vertical-align: middle;
  line-height: 2.1875em;
  aspect-ratio: 1 / 1;
  transition: 0.2s ease all;
  box-sizing: border-box;
  background-color: #06192a;
  border-radius: 0.3125em;
  border: none;
  cursor: pointer;
}
.actionInput .searchBtn i {
  color: #ffffff;
  font-size: 1.3em;
}

.actionInput .addButton {
  border-radius: 0.3125em;
  width: 80px;
  height: auto;
  line-height: 2.1875em;
  padding: 0;
  margin: 0 0px;
  border-color: transparent;
  cursor: pointer;
  font-size: inherit;
  /* background: var(--primary_color); */
  background-color: #06192a;
  color: #fff;
  font-size: 1em;
}

.actionInput input:nth-of-type(3) {
  width: 30%;
}

@media (max-width: 510px) {
  .actionInput {
    gap: 10px 0;
    justify-content: space-between;
    margin-bottom: 10px;
  }
  .actionInput input,
  .actionInput input:nth-of-type(3) {
    width: 49%;
  }
}

/* 新增 本機關含所屬人員歷史榜單查詢 modify by jung 20241203 end */
/* 內頁wrap */
.in_wrap{
  width: 100%;
  margin: 0 auto;
  padding: 56px 62px;
  display: block;


}
@media(max-width:768px){
  .in_wrap{
    padding: 46px 20px;
    

  }
}
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;
}

/*AA檢測備註*/
.detection {
  display: none;
}

/*平板版*/
/*---------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------*/
@media (min-width: 541px) and (max-width: 950px) {
}

/*手機版*/
/*---------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------*/
@media (max-width: 540px) {

}