/*-------GOOGLE FONTS-------*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap");

/*-------VARIABLES CSS-------*/
:root {
	--header-height: 3.5rem;
	/*-------Colors-------*/
	/*Color mode HSL(hue, saturation, lightness)*/
	--black-color: hsl(220, 24%, 12%);
	--black-color-light: hsl(220, 24%, 15%);
	--black-color-lighten: hsl(220, 20%, 18%);
	--white-color: #fff;
	--teal-color: #005757;
	--body-color: rgba(252, 255, 246, 1);
	/*-------Font and typography-------*/
	/*.5rem = 8px | 1rem = 16px ...*/
	--body-font: "Calibri", sans-serif;
	--normal-font-size: .938rem;
	/*-------Font weight-------*/
	--font-regular: 400;
	--font-semi-bold: 600;
	/*-------z index-------*/
	--z-tooltip: 10;
	--z-fixed: 100;
}

/* OnMouseOver 滑鼠移過去時，該列背景會換顏色 */
.gvStyle .row:hover {
	background-color: #C7E8E8;
}

.gvStyle .alt {
	background-color: #FFFFFF;
}
	/* 雙數列的預設初始背景 */
	.gvStyle .alt:hover {
		background-color: #C7E8E8;
	}

/* 超連結預設：自訂樣式 */
a:hover {color: #3399FF;}
a:link {color: #006666;}
a:visited {text-decoration: none;}

.hpLink {	color: #006666;text-decoration: none; }					/* 超連結樣式 */
.accesskeyLink { color: #FFFFFF; }												/* 無障礙空間超連結 */
.txtCenter { text-align: center; }												/* 文字置中樣式 */
.txtRight { text-align: right; }													/* 文字置中樣式 */

.hpGray { color: #666666; }
.hpRed { color: #FF0000; }
.hpBlue { color: #0000CC; }
.hpGreen { color: #006633; }
.hpBold { font-weight: bold; }
.hpUnderLine { BORDER-BOTTOM: #999 1px solid; }				/* 加底線 */
.hpSub { vertical-align:sub;font-size: 9pt; }					/* 下標字 */
.hpSuper { vertical-align:super;font-size: 9pt; }			/* 上標字 */
/* 漸層背景顏色 */
.tblBgGdGravy {	background-image: url(../images/common/tblBgGravy.jpg); }    /* 灰色 */
.tblBgGdBBlue {	background-image: url(../images/common/tblBgBlue.jpg); }    /* 藍色 */
.tblBgGdGreen {	background-image: url(../images/common/tblBgGreen.jpg); }    /* 綠色 */
.tblBgGdSkin {	background-image: url(../images/common/tblBgSkin.jpg); }    /* 膚色 */

/* 按鈕CSS */
.btn {
	border-radius: 8px;
	border: none;
	padding: 10px;		/* 文字與外框距離 */
}

.btn:hover {
	color: #FFF !important;
	cursor:pointer;
}

.btn-primary {
	background: #50B23E;
}

.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover {
	background-color: #489f37 !important;
	color: white !important;
}

.btn-primary:active,
.btn-primary:focus {
	-webkit-box-shadow: 0 0 0 0.2rem rgba(254, 209, 55, 0.5) !important;
	box-shadow: 0 0 0 0.2rem rgba(254, 209, 55, 0.5) !important;
}



/*-------我要投票之作品CSS-------*/
/* 父容器網格布局（排版） */
.VoteWorksRow {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px; /* 項目間距 */
	padding: 20px;
}

/* 單一作品 (包含圖文) */
.gvCard_Container {
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 4px 6px rgba(0,0,0,0.1);
	overflow: hidden;
	transition: transform 0.3s ease;
	max-width: 300px; /* 作品寬度限制最大為300px */
}

/* 圖片區塊高度控制 */
.gvImage_Container {
	height: 250px; /* 固定容器高度 */
	overflow: hidden;
	position: relative;
	border-radius: 6px 6px 0 0;
}
.gvImage_Works {
	width: 100%; /* 填滿容器寬度 */
	height: 100%; /* 填滿容器高度 */
	object-fit: cover; /* 關鍵屬性 */
	transition: transform 0.3s ease;
}
/* 滑鼠懸浮放大 */
.gvImage_Container:hover .gvImage_Works {
	transform: scale(1.05);
}

/* 文字資訊區塊 */
.gvContent_Container {
	flex: 1; /* 填滿剩餘空間 */
	padding: 10px;
	display: flex;
	flex-direction: column;
}

/* 作品文字資訊 */
.gvWorksInfo {
	font-size: 14px;
	margin: 5px;
}

/* 按鈕群組置底 */
.vote-info-group {
	margin-top: auto; /* 自動頂部外距 */
	padding-top: 10px;
	border-top: 1px solid #f0f0f0;
}

/* 按鈕與票數區塊 */
.vote-info-group {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 10px;
}

.btnVoteWorks {
	display: block;
	margin-top: 5px;
	padding: 5px 10px;
	background-color: #007bff;
	color: white;
	border: none;
	cursor: pointer;
	border-radius: 7px;
}
	.btnVoteWorks:hover {
		background-color: #0056b3;
	}

/*-------Responsive typography-------*/
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1.2rem;			/* 整體自行大小調整 */
  }
}

/*=-------BASE(基底HTML共用CSS)-------*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
	font-family: var(--body-font);
	font-size: var(--normal-font-size);
	background-color: var(--body-color);
}

ul {
  list-style: none;
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

a {
  text-decoration: none;
}

/*-------REUSABLE CSS CLASSES-------*/
.container {
  max-width:100%;
  margin-inline: 1.5rem;
}

/*-------HEADER-------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white-color);
  box-shadow: 0 2px 16px hsla(220, 32%, 8%, .3);
  z-index: var(--z-fixed);
}

/*-------NAV(選單css)-------*/
.nav {
  height: var(--header-height);
}

.nav_logo, 
.nav_burger, 
.nav_close {
  color: var(--black-color);
}

.nav_data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav_logo {
    display: inline-flex;
    align-items: center;
	margin: 8%;
    column-gap: .5rem;
    font-weight: var(--font-semi-bold);
    /* Color highlighting when pressed on mobile devices */
    /*-webkit-tap-highlight-color: transparent;*/
}

.nav_logo img{
	width: 70%;
}

.nav_toggle {
  position: relative;
  width: 32px;
  height: 32px;
}

.nav_burger, 
.nav_close {
  position: absolute;
  width: max-content;
  height: max-content;
  inset: 0;
  margin: auto;
  font-size: 1.25rem;
  cursor: pointer;
  transition: opacity .1s, transform .4s;
}

.nav_close {
  opacity: 0;
}

/*------ Form 表單CSS------*/
/* 設定外層容器 */
.form_container {
	position: relative;
	display: inline-block;
	width: 90%;
	max-width: 1200px; /* 螢幕最大寬度 */
	margin: 2% auto;
	background-color: #fff;
	padding: 3%;
	margin-top: 120px; /* 調整此數值，使表單下移 */
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* 設定標題 */
.form_tabletitle {
	padding: 10px;
	background-color: steelblue;
	color: #fff;
	text-align: center;
	font-size: 1.2rem;
	border-radius: 10px;
}

/* 讓表單類似表格 */
.form_col {
	display: grid;
	grid-template-columns: 1fr 2fr;
	align-items: center;
	gap: 10px;
	padding: 10px 0;
	border-bottom: 1px solid #ddd;
}

/* 標籤對齊 */
.from_label {
	font-weight: bold;
	text-align: right;
	padding-right: 10px;
}

/* 讓表單輸入欄位佔滿可用空間 */
.form_value {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}

/* 表單最下方：放按鈕的位置 */
.form_footer {
	text-align: center;
	margin-top: 20px;
}

.form_btn {
	padding: 10px 20px;
	background-color: #6DC8EF;
	color: #fff;
	border: none;
	border-radius: 20px;
	cursor: pointer;
}

	.form_btn:hover {
		background-color: #1A305F;
	}

/* RWD 響應式調整：小螢幕改為直向排列 */
@media screen and (max-width: 768px) {
	.form_col {
		grid-template-columns: 1fr;
	}
	.from_label {
		text-align: left;
		font-weight: bold;
	}

	/* 作品投票CSS */
	.VoteWorksRow {
		grid-template-columns: 1fr;
	}
	.gvImage_Container {
		flex-basis: 180px;
	}

}

/*------ Navigation for mobile devices(手機版css專用) ------ */
@media screen and (max-width: 1118px) {
  .header{
	width: 100vw;
  }	
	
  .container {
  	max-width:80%;
  }
	
  .nav_menu {
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    transition: top .4s, opacity .3s;
  }
  .nav_menu::-webkit-scrollbar {
    width: 0;
  }
  .nav_list {
    background-color: var(--white-color);
    padding-top: 1rem;
  }
  
  /* Logo文字寬度：太寬的話，漢堡選單會被遮住 */	
  .nav_logotxt img,.nav_logotxt_en img{
	width: 95%;
  }
}

.nav_link {
  color: var(--black-color);
  background-color: var(--white-color);
  font-weight: var(--font-semi-bold);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color .3s;
}

.nav_link:hover {
	color:var(--white-color);
    background-color: rgba(0,47,119,1.00);
}

/*---- login 登入作業CSS ---*/
.login_link {
  color: var(--white-color);
  background-color:rgba(159, 196, 62, 1);
  font-weight: var(--font-semi-bold);
  padding: 1rem;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  clip-path: circle(40% at 50% 50%);
  transition: background-color .3s;
  font-size: 0.75rem;
}

.login_link:hover {
	color:rgba(30, 141, 68, 1);
    background-color:#DADADA;
}

.login-container {
	background: #fff;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.login-header {
	font-size: 24px;
	margin-bottom: 20px;
}

.form-group {
	margin-top: 10px;
	text-align: center;
}



/*------ Show menu ------*/
.show-menu {
  opacity: 1;
  top: 3.5rem;
  pointer-events: initial;
}

/*------ Show icon ------*/
.show-icon .nav_burger {
  opacity: 0;
  transform: rotate(90deg);
}
.show-icon .nav_close {
  opacity: 1;
  transform: rotate(90deg);
}

/*------- DROPDOWN -------*/
.dropdown_item {
  cursor: pointer;
}

.dropdown_arrow {
  font-size: 1.25rem;
  font-weight: initial;
  transition: transform .4s;
}

.dropdown_link, 
.dropdown_sublink {
  padding: 1.25rem 1.25rem 1.25rem 2.5rem;
  color: var(--black-color);
  background-color: var(--white-color);
  display: flex;
  align-items: center;
  column-gap: .5rem;
  font-weight: var(--font-semi-bold);
  transition: background-color .3s;
}

.dropdown_link i, 
.dropdown_sublink i {
  font-size: 1.25rem;
  font-weight: initial;
}

.dropdown_link:hover, 
.dropdown_sublink:hover {
  background-color: rgba(236,239,244,1.00);
}

.dropdown_menu, 
.dropdown_submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease-out;
}

/*------ Show dropdown menu & submenu ------*/
.dropdown_item:hover .dropdown_menu, 
.dropdown_subitem:hover > .dropdown_submenu {
  max-height: 1000px;
  transition: max-height .4s ease-in;
}

/*------ Rotate dropdown icon ------*/
.dropdown_item:hover .dropdown_arrow {
  transform: rotate(180deg);
}

/*------DROPDOWN SUBMENU------*/
.dropdown_add {
  margin-left: auto;
}

.dropdown_sublink {
  background-color: var(--white-color);
}

/*------ section ------*/
section{
	position: relative;
	/*overflow:hidden;*/
	justify-content: center;
	text-align: center;
	background: linear-gradient(180deg, #2FA1D2 0%, rgba(255, 255, 255, 0.00) 70.85%);	/* 漸層顏色的背景 */
}

.blockheader{
	font-size: 2.4rem;
	letter-spacing: 1.5px;
    color: #fff;
}

.blocksubheader{
	font-size: 1.8rem;
	letter-spacing: 1.5px;
    color: #fff;
}

/*------ 認證Logo ------*/
.mark_container{
	display: block;
	justify-content:center;
	padding: 1%;
	background: url("../images/mark_bg.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}


.mark_logo{
	position: relative;
	display: flex;
	height: 120px;
	justify-content: center;
	padding:5%; 
	overflow:hidden;
}

.mark_logo img{
	max-width: 55%;		/* 寬度過大會造手機破版 */
	height: auto;
	margin: 0 0.5%;
}

.mark_contact{
	position: relative;
	display: block;
	margin: 0 5%;
}

.mark_contact-list{
	display: flex;
	padding: 0.8%;
    justify-content: flex-start;
    align-items: center;
	color: #fff;
}

.mark_contact-list img{
	width:4%;
	margin: 0 1% 0 0;
}

/*------ Index（左右兩欄位）------*/
.index-container{
	flex-direction: column;
}

.index-container-L{
	width: 100%; 
}

.index-container-R{
	width: 100%; 
}

.ranking-title{
	font-size: 2.4rem;
	font-weight:500;
	letter-spacing: 1.5px;
    color: #000;
}

.ranking-box{
	width: 280px;
	height: 350px;
	margin: 36px auto;
	padding: 5%;
	border: 3px solid rgba(47, 161, 210, 1);
	border-radius: 50px 0 50px 0;
	background: var(--white-color);
}


/*------ News ------*/
.news {
	width: 100%;
	margin: 0;
	padding: 3% 0;
}

.news h2{
	font-weight: 500;
}

.news-box {
	display: inline-block;
	position: relative;
	width: 280px;
	height: 350px;
	border: 3px solid rgba(47, 161, 210, 1);
	border-radius: 50px 0 50px 0;
	background: var(--white-color);
	margin: 36px 20px;
	padding: 0;
	justify-content: center;
	text-align: left;
	overflow: hidden;
}

.news-box:hover /*超連結滑到點擊樣式*/
{
	background:rgba(47, 161, 210, 1);
}

.news-box:active /*超連結點擊樣式*/
{
    background:#E1DEDA;
    color:#262523;
}

.news-img {
	width: 100%;
	height: auto;
	border-radius: 47px 0 0 0;
	overflow: hidden;
}

.news-img img{
	width: 100%;
	transition: .8s ease-in-out;
}

.news-box:hover > .news-img img{
	transform: scale(1.2);
}

.news-box_a
{
	display: inline-block;
	justify-content: space-around;
	color:rgba(46,47,48,1.00);
}

.news-date {
	position: absolute;
	top: 55%;
	left: 1%;
	display: inline-flex;
	padding: 6px 12px;
	justify-content: center;
	align-items: center;
	color: rgba(3, 135, 191, 1);
}

.news-box:hover > .news-date{
	color: #fff;
}

.news-box h3{
	position: absolute;
	top:60%;
	display: inline-flex;
	max-height: 100px;
	margin: 3%;
	padding:.5% 2%;
	color:rgba(24, 24, 24, 1);
	font-size: max(1.2vw, 18px);
	overflow:hidden;
}

.news-box:hover > h2{
	color: var(--white-color);
}

.btn_more {
	position: absolute;
	bottom: 3%;
	left: 3%;
	display: inline-flex;
	padding: 6px 12px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 50px;
	background:rgba(47, 161, 210, 1);
	color: var(--white-color);
	font-size: max(1.2vw, 12px);
}

.btn_more a{
	color: var(--white-color);
}

.news-box:hover > .btn_more{
	background: #fff;
}

.news-box:hover >.btn_more a{
	color: rgba(159, 196, 62, 1);
}

.news-more {
	display: block;
	width: 160px;
	margin: auto;
	padding: 10px 12px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 50px;			/* CSS的圓角屬性：數值越大角度越圓 */
	background: rgba(47, 161, 210, 1);
	border: 1px solid rgba(47, 161, 210, 1);
	cursor: pointer;
}

.news-more a{
	color: var(--white-color);
}

.news-more:hover{
	background: var(--white-color);
	border: 3px solid rgba(47, 161, 210, 1);
}

.news-more:hover > a{
	color: rgba(47, 161, 210, 1);
}

/*------ 線上投票(活動) ------*/
.section_voting{
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
}

.intro_voting{
	width: 72%;
	display: flex;
	flex-wrap: wrap;
	max-width: 1200px;
	background-color: #fff;
	border: 3px solid  rgba(159, 196, 62, 1);
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.voting_img{
	height: 100%;
	background-color:rgba(30, 141, 68, 1);
}

.voting_img img{
	width: 100%;
	max-width: 500px;
	height: auto;
	object-fit: cover;
	/*border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;*/
}

.voting_content{
	padding: 20px;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.voting_tag{
	display: inline-block;
	width: 78px;
	padding: 5px 10px;
	background-color:  rgba(159, 196, 62, 1);
	color: #fff;
	justify-content: center;
	align-items: center;
	border-radius: 20px;
	font-size: 14px;
}

.voting_content h3{
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 15px;
	color: rgba(38, 38, 38, 1);
}

.voting_content p {
	font-size: 16px;
	line-height: 1.5;
	color: rgba(38, 38, 38, 1);;
	margin-bottom: 20px;
  }
  
  .learn_more {
	align-self: flex-end;
	padding: 8px 16px;
	background-color: rgba(159, 196, 62, 1);
	color: white;
	border: none;
	border-radius: 20px;
	cursor: pointer;
	font-size: 16px;
  }
  
  .learn_more:hover {
	color:rgba(159, 196, 62, 1) ;
	background-color: #fff;
	border: solid 2px rgba(159, 196, 62, 1) ;
  }

/*----- 活動花絮&連結 -----*/
.intro_activities {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	padding: 20px;
  }
  
  .activities_content {
	text-align: center;
	padding: 1.8%;
	background-color: #fff;
	border:solid 3px rgba(30, 141, 68, 1);
	border-radius: 24px;
  }
  
  .activities_content h2 {
	font-size: 24px;
	margin-bottom: 20px;
  }
  
  .activity_carousel {
	display: flex;
	gap: 10px;
	overflow-x: auto;
  	scroll-snap-type: x mandatory;
  }
  
  .activity_carousel img {
	width: 250px;
	height: auto;
	border-radius: 10px;
	object-fit: cover;
	scroll-snap-align: start;
  }
  
  .related-links {
	text-align: center;
  }
  
  .related-links h2 {
	font-size: 24px;
	margin-bottom: 20px;
  }
  
  .link-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding: 10px;
	border: 3px solid rgba(30, 141, 68, 1);
	border-radius: 10px;
	margin-bottom: 15px;
	background-color: #fff;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .link-item img {
	width: auto;
	height: 72px;
	object-fit: contain;
  }
  
  .link-item a {
	text-decoration: none;
	color: #333;
	font-size: 18px;
  }
  
  .link-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

/*------ page top banner------*/
.page_banner{
	position: relative;
	height: 50vh;
	overflow: hidden;
	background:linear-gradient(to right,rgba(255,136,70,1.00) 20%,rgba(255,255,255,1.00) 50%,rgba(255,136,70,1.00) 80%);
}

/* 影片隨解析度與裝置進行自動縮放 */
.page_banner img,.page_banner video{
	width: 100%;
}
/*------ about ------*/
.about{ 
	width: 100%;
	margin: 0;
	padding: 5% 0;
	background: linear-gradient(180deg, #0068B6 0%, rgba(217, 217, 217, 0.00) 36%); 
}

.about_container{
	position: relative;
	display: inline-block;
	width: 80%;
	margin: 2% 0 0 0;
	align-items: center;
	justify-content: center;
}

.about-box {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	background: rgba(255,255,255,0.8);
	margin: 20px 0;
	padding: 3%;
	border-radius: 25px;			/* CSS的圓角屬性：數值越大角度越圓 */
	text-align: left;
	justify-content: center;
	overflow: hidden;
}

.about-box video{
	width:100%;
}

.about-title{
	display:block;
	width: 75%;
	padding: 10px 12px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	background: linear-gradient(to right, rgba(0,47,119,1.00) 30%,rgba(236,239,244,0.0) 80%);
	color:rgba(255,255,255,1.00);
}

.flow img{
	width: 95%;
	margin: auto;
  	display: block;
}

.form_01 img{
	width: 100%;
}

.form_02{
	padding: 0%;
}

.form_02 img{
	width: 100%;
}

/*------ contact ------*/
.contact{ 
	width: 100%;
	margin: 0;
	padding: 5% 0;
	background: linear-gradient(180deg, #0068B6 0%, rgba(217, 217, 217, 0.00) 36%);
}

.contact_container{
	position: relative;
	display: inline-block;
	width: 80%;
	margin: 2% 0 0 0;
	align-items: center;
	justify-content: center;
}

.contact-box {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	background: rgba(255,255,255,0.8);
	margin: 20px 0;
	padding: 2%;
	border-radius: 25px;			/* CSS的圓角屬性：數值越大角度越圓 */
	text-align: left;
	justify-content: center;
	overflow: hidden;
}

.contact-title{
	display:block;
	width: 100%;
	padding: 10px 12px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	background: linear-gradient(to right, rgba(0,47,119,1.00) 30%,rgba(236,239,244,0.0) 80%);
	color:rgba(255,255,255,1.00);
}

.contact-list{
	display: flex;
	padding: 0.8%;
    justify-content: flex-start;
    align-items: center;
}

.contact-list img{
	width:5%;
	margin: 0 1% 0 0;
}

/*------ new view：最新消息瀏覽作業CSS------*/
.new_container {
	width: 90%;
	max-width: 1200px;
	margin: 2% auto;
	background-color: #fff;
	padding: 1.8%;
	border-radius: 20px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.new_pagetitle {
	padding: 0.8% 1.5%;
	background-color: #15988B;
	color: #fff;
	border: none;
	border-radius: 20px;
	text-align: center;
}

.new_info, .new_content {
	margin: 1.5% 0;
}

.new_info {
	border-bottom: 0.5px solid hsla(0,0%,10%,0.5);
}

.new_content p {
	padding-bottom: 1.5%;
}

.new_title {
	font-size: 1.5rem;
	font-weight: 600;
	padding: 0% 0% 1.8% 0%;
}

.new_row {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 0.8%;
}

	.new_row:nth-child(3) {
		padding-bottom: 1.8%;
		border-bottom: 0.5px solid hsla(0,0%,10%,0.5);
	}

.new_row_1 {
	display: inline-flex;
	flex-wrap: wrap;
	margin-bottom: 10px;
}

.new_label {
	flex: 1;
	max-width: 80px;
	font-weight: bold;
}

.new_label_1 {
	flex: 1;
	min-width: 80px;
	font-weight: bold;
}

.new_value {
	flex: 2;
	min-width: 200px;
}

.new_footer {
	text-align: center;
	margin-top: 20px;
}

.new_btn {
	padding: 10px 20px;
	background-color: #6DC8EF;
	color: #fff;
	border: none;
	border-radius: 20px;
	cursor: pointer;
}

	.new_btn:hover {
		background-color: #1A305F;
	}

/*------ footer：頁尾 ------*/
.fooer_scroll{
	position: relative;
}

.footer_noscroll{
	position: absolute;
	bottom: 0;
	width: 100%;
}

footer {
	display: block;
	padding: 20px 0px;
	text-align: center;
	color: var(--whit-color);
	background-color: rgba(30, 141, 68, 1);
	color: #FFFFFF;
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .container {
    margin-inline: 1rem;
  }

  .nav_link {
    padding-inline: 1rem;
  }
}

/* for tablets */
@media only screen and (min-width: 768px) {
	/* Product-main */
	.product-list_l {
		width: 50%;
		float: left;
	}

	.product-list_r {
		width: 50%;
		float: right;
	}
}


/* For large devices-desktop 桌機CSS */
@media screen and (min-width: 1118px) {

  .container {
    margin-inline: auto;
  }
	
  .nav_logo img{
	width: 100%;
}

  .nav {
    height: calc(var(--header-height) + 2.5rem);
    display: flex;
    justify-content: space-between;
  }
  .nav_toggle {
    display: none;
  }
	
  .nav_list {
    height: 100%;
    display: flex;
    column-gap: 2rem;
  }
  .nav_link {
    height: 100%;
    padding: 0;
    justify-content: initial;
    column-gap: .25rem;
	/*遮罩(避免影響list layout)*/
	clip-path: polygon(0 36%, 100% 36%, 100% 66%, 1% 66%);
	font-size: 0.95rem;
  }
  .nav_link:hover {
		color: var(--white-color);
		background-color: rgba(0,47,119,1.00);
  }
	
	.header_btn{
		margin:auto;
		display: flex;
	}
	
	.login_link {
  		padding: 1rem;
		white-space: nowrap;
		writing-mode: horizontal-tb;
		}

  .dropdown_item, 
  .dropdown_subitem {
    position: relative;
  }

	.dropdown_menu,
	.dropdown_submenu {
		max-height: initial;
		width: 200px;					/* 下拉選單顯示之寬度 */
		overflow: initial;
		position: absolute;
		left: 0;
		top: 6.5rem;
		opacity: 0;
		pointer-events: none;
		transition: opacity .3s, top .3s;
	}

  .dropdown_link, 
  .dropdown_sublink {
    padding-inline: 1rem 3.5rem;
	font-size: 0.95rem;
  }

  .dropdown_subitem .dropdown_link {
    padding-inline: 1rem;
  }

  .dropdown_submenu {
    position: absolute;
    left: 100%;
    top: .5rem;
  }

  /*------ Show dropdown menu -----*/
  .dropdown_item:hover .dropdown_menu {
    opacity: 1;
    top: 5.5rem;
    pointer-events: initial;
    transition: top .3s;
  }

  /*------ Show dropdown submenu ------*/
  .dropdown_subitem:hover > .dropdown_submenu {
    opacity: 1;
    top: 0;
    pointer-events: initial;
    transition: top .3s;
  }

/*------ 認證Logo ------*/
.mark_container{
	display: flex;
	margin: auto 0%;
}


.mark_logo{
	padding:1%; 
	height:120px;
}

.mark_logo img{
	max-width: 100%;
	height: auto;
	margin: 0 0.5%;
}

.mark_contact{ 
	margin: auto 1%;
}

.mark_contact_en{
	min-width:60%; 
}

.mark_contact-list{
	display: flex;
	padding: 0.3%;
    justify-content: flex-start;
    align-items: center;
	color: #fff;
}

.mark_contact-list img{
	width:5%;
	margin: 0 1% 0 0;
}
	
.mark_contact-list_en img{
	width:2.5%;
}
	
.page_banner{
	/*height: 31.5vw;*/	/* 控制欄高，視瀏覽器寬度影響。上方banner建議高度為：600px */
	height: auto;
	}
	
.page_banner video{
	margin-bottom:50vw;
	transform:translate(0%,-15%);
	}
	
.form_02 img{
	width: 900px;
}
	
.contact-list img{
	width:2%;
}

/*----- 活動花絮&連結 -----*/
.intro_activities{
	flex-direction: row;
    justify-content: center;
    align-items: flex-start;
}

.activities_content{
	flex: 1;
    max-width: 680px;
}

.related-links{
	flex: 1;
    max-width: 360px;
}

.activities_content h2,.related-links h2{
	text-align: left;
}

.activity-carousel{
	justify-content: flex-start;
}

.link-item {
    flex-direction: row;
    justify-content: flex-start;
    gap: 15px;
}

/*----  News ----*/
.news-box{
	width: 320px;
	height: 400px;
}

	/*----  Index（左右兩欄位）----*/
	.index-container{
		display: flex;
		flex-direction: row;
		margin: 0 auto;
	}

	.index-container-L{
		width: 80%; 
	}

	.index-container-R{
		flex:1; 
		padding: 3% 0;
	}

	.ranking-title{
		color: #fff;
	}

	.ranking-box{
		width: 80%;
	}

}