/*-------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;
	--body-color: hsl(220, 100%, 97%);
	/*-------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;
	}

/*-------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: 1120px;*/
  max-width:95%;
  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;
	width: 100%;
    align-items: center;
    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: auto;
}
/* Logo長度 */
.nav_logotxt{
	width: 300px;
	margin: 0 8% 0 0;
}

.nav_logotxt_en{
	width: 72%;			/* 採用百分比，手機版才不會看不到漢堡選單 */
	margin: 0 5% 0 0;
}

.nav_logotxt img,.nav_logotxt_en img{
	width: 100%;
}

.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;
}

/*------ 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);
}

/*---- language：語系文字會呈現直式，因此，將margin移除以及文字縮小 ---*/
.lan_link {
  color: var(--black-color);
  background-color: rgba(236,239,244,1.00);
  font-weight: var(--font-semi-bold);
  padding: 1rem;
  /*margin: 3% 0%;*/
  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;
}

.lan_link:hover {
	color:var(--white-color);
    background-color: rgba(255,136,70,1.00);
}

/*------ 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, #0068B6 0%, rgba(217, 217, 217, 0.00) 36%);		/* 漸層顏色的背景 */
}

.blockheader{
	font-size: 3.2rem;
	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;
}


/*------ News ------*/
.news {
	width: 100%;
	margin: 0;
	padding: 3% 0;
}

.news-box {
	display: inline-block;
	position: relative;
	width: 320px;
	height: 400px;
	border-radius: 25px; /* CSS的圓角屬性：數值越大角度越圓 */
	background: var(--white-color);
	margin: 36px 20px;
	padding: 0;
	justify-content: center;
	text-align: left;
	overflow: hidden;
}

.news-box:hover /*超連結滑到點擊樣式*/
{
	background:rgba(0,47,119,1.00)  ;
}

.news-box:active /*超連結點擊樣式*/
{
    background:#E1DEDA;
    color:#262523;
}

.news-img {
	width: 100%;
	height: auto;
	border-radius: 22.5px 22.5px 0 0;			/* CSS的圓角屬性：數值越大角度越圓 */
	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: 53%;
	left: 3%;
	display: inline-flex;
	padding: 6px 12px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 50px;			/* CSS的圓角屬性：數值越大角度越圓 */
	border: 1px solid rgba(0,47,119,1.00);
}

.news-box:hover > .news-date{
	background: var(--white-color);
}

.news-box h2{
	position: absolute;
	top:60%;
	display: inline-flex;
	max-height: 100px;
	margin: 3%;
	padding:.5% 2%;
	color:rgba(46,47,48,1.00);
	font-size: max(1.2vw, 18px);
	overflow:hidden;
}

.news-box:hover > h2{
	color: var(--white-color);
}

.btn_more {
	position: absolute;
	bottom: 3%;
	right: 3%;
	display: inline-flex;
	padding: 6px 12px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 50px;			/* CSS的圓角屬性：數值越大角度越圓 */
	/* 選單：文字改變、背景改變 */
	border: 1px solid rgba(0,47,119,1.00);
	background: rgba(0,47,119,1.00);
	color: var(--white-color);
}

.btn_more a{
	color: var(--white-color);
}

.news-box:hover > .btn_more{
	background: rgba(225,136,70,1.00);
	color: var(--white-color);
	border: 1px solid rgba(225,136,70,1.00) ;
}

.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(0,47,119,1.00);
	border: 1px solid rgba(0,47,119,1.00);
	cursor: pointer;
}

.news-more a{
	color: var(--white-color);
}

.news-more:hover{
	background: var(--white-color);
	border: 1px solid rgba(0,47,119,1.00);
}

.news-more:hover > a{
	color: rgba(0,47,119,1.00);
}

/*------ intro ------*/
.intro-1, .intro-2{
	display: grid;
	grid-template-columns: 1fr;
    grid-auto-rows: minmax(100px, auto);
	grid-columns-gap: 0px;
	grid-rows-gap: 0px;
	clear: both; /*清除浮動元素*/
	overflow-x: hidden;
}

.intro-1-box1{
	grid-column:1;
	grid-row:2/5;
	padding: 0 8%;
	margin-bottom: 0;
}

.intro-1-box1 img{
	width: 100%;
}

.intro-1-box2{
	grid-column: 1;
	grid-row: 1;
	margin:3% 8%; 
	justify-self: center; /*along the column 水平置中*/
	align-self: center; /*along the row* 垂直置中*/ 
	
	padding:30px;
	background:rgba(255, 255, 255, 1.00);
	color:rgba(0,47,119,1.00) ;
}

.intro-1-box2 h2{
	margin: 0 0 2% 0;
}

.intro-1-box3{
	grid-column: 1;
	grid-row: 1/3;	
	background: linear-gradient(90deg, #0068B6 -4.42%, rgba(159, 187, 208, 0.27) 73.54%, rgba(217, 217, 217, 0.00) 101.77%);
}

.intro-2-box1{
	grid-column:1;
	grid-row:2/5;
	padding: 0 8%;
}

.intro-2-box1 img{
	width: 100%;
}

.intro-2-box2{
	grid-column: 1;
	grid-row: 1;
	margin:3% 8%; 
	justify-self: center; /*along the column 水平置中*/
	align-self: center; /*along the row* 垂直置中*/ 
	
	padding:30px;
	background:rgba(255, 255, 255, 1.00);
	color:rgba(0,47,119,1.00) ;
}

.intro-2-box2 h2{
	margin: 0 0 2% 0;
}

.intro-2-box3{
	grid-column: 1;
	grid-row: 1/3;	
	background: linear-gradient(-90deg, rgba(255,136,70,1.00) 24%, rgba(236,239,244,0.00)  101.77%);
}

/*------ page top banner------*/
.page_banner{
	position: relative;
	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;
}

/*------ product ------*/
.product{ 
	width: 100%;
	margin: 0;
	padding: 5% 0;
	background: linear-gradient(180deg, #0068B6 0%, rgba(217, 217, 217, 0.00) 36%); 
}

.product_container{
	position: relative;
	display: inline-block;
	width: 80%;
	margin: 2% 0 0 0;
	align-items: center;
	justify-content: center;
}

.product-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;
}

.product-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);
}

.product-list_l,.product-list_r{
	padding: 2%;
}

.product-list{
	display: flex;
	padding: 0.8%;
    justify-content: flex-start;
    align-items: center;
}

.product-list img{
	width:6%;
	margin: 0 1% 0 0;
}

.product-sub-list{
	display: flex;
	padding: 0.8% 0.8% 0.8% 8%;
    justify-content: flex-start;
    align-items: flex-start;
}

.product-sub-list img{
	width:3%;
	margin: 1% 1% 0 0;
}

.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;
}

/*------ factory ------*/
.factory{ 
	width: 100%;
	margin: 0;
	padding: 5% 0;
	background: linear-gradient(180deg, #0068B6 0%, rgba(217, 217, 217, 0.00) 36%); 
}

.factory_container{
	position: relative;
	display: inline-block;
	width: 80%;
	margin: 2% 0 0 0;
	align-items: center;
	justify-content: center;
}

.factory-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;
}

.factory-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);
}


/*------ footer ------*/

footer{
	position: relative;
	display: block;
	padding:20px 0px;
	text-align:center;	
	color: rgba(0,47,119,1.00);
	background-color: var(--whit-color);
}

/*=============== 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) {
	/* intro */
	.intro-1 {
		display: grid;
		grid-template-columns: repeat(6, 1fr);
		grid-auto-rows: minmax(100px, auto);
		grid-column-gap: 20px;
		grid-row-gap: 20px;
		position: relative;
		padding: 1% 12%;
	}

	.intro-1-box1 {
		grid-column: 3/7;
		grid-row: 1/5;
		border-radius: 24px;			/* CSS的圓角屬性：數值越大角度越圓 */
	}

		.intro-1-box1 img {
			width: 100%;
			border-radius: 24px;		/* CSS的圓角屬性：數值越大角度越圓 */
		}

	.intro-1-box2 {
		grid-column: 1/4;
		grid-row: 2/4;
		/*margin:auto;*/
		justify-self: center; /*along the column 水平置中*/
		align-self: center; /*along the row* 垂直置中*/
		/*justify+align>在這邊可以用margin auto 處理*/
		/*可以透過檢視確認格線對齊方式*/
		padding: 30px;
		background: rgba(255, 255, 255, 1.00);
		color: rgba(0,47,119,1.00);
		border-radius: 24px;			/* CSS的圓角屬性：數值越大角度越圓 */
	}

	.intro-1-box3 {
		grid-column: 2/5;
		grid-row: 3/5;
		background: linear-gradient(90deg, #0068B6 -4.42%, rgba(159, 187, 208, 0.27) 73.54%, rgba(217, 217, 217, 0.00) 101.77%);
		border-radius: 24px;			/* CSS的圓角屬性：數值越大角度越圓 */
	}

	.intro-2 {
		display: grid;
		grid-template-columns: repeat(5, 1fr);
		grid-auto-rows: minmax(100px, auto);
		grid-column-gap: 20px;
		grid-row-gap: 20px;
		position: relative;
		padding: 1% 15%;
	}

	.intro-2-box1 {
		grid-column: 1/4;
		grid-row: 1/6;
		border-radius: 24px;			/* CSS的圓角屬性：數值越大角度越圓 */
	}

		.intro-2-box1 img {
			width: 100%;
			border-radius: 24px;			/* CSS的圓角屬性：數值越大角度越圓 */
		}

	.intro-2-box2 {
		grid-column: 3/6;
		grid-row: 3/5;
		/*margin:auto;*/
		justify-self: center; /*along the column 水平置中*/
		align-self: center; /*along the row* 垂直置中*/
		/*justify+align>在這邊可以用margin auto 處理*/
		/*可以透過檢視確認格線對齊方式*/
		padding: 30px;
		background: rgba(255, 255, 255, 1.00);
		color: rgba(0,47,119,1.00);
		border-radius: 24px;			/* CSS的圓角屬性：數值越大角度越圓 */
	}

	.intro-2-box3 {
		grid-column: 2/7;
		grid-row: 2/6;
		background: linear-gradient(-90deg, rgba(255,136,70,1.00) 24%, rgba(236,239,244,0.00) 101.77%);
		border-radius: 24px;			/* CSS的圓角屬性：數值越大角度越圓 */
	}

	/* 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_logotxt_en img{
	width: 75%;
  }

  .nav {
    height: calc(var(--header-height) + 2.5rem);
    display: flex;
	/*選單改為置中排列，原space-between*/
    justify-content: center;
  }
  .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);
  }
	
	.lan_btn{
		margin:auto;
		display: flex;
	}
	
	.lan_link {
		/* 功能選單：右邊：中文、英文，寬度太小，就會變2列 */
  		padding: 1rem;
		white-space: nowrap;
		writing-mode: horizontal-tb;
		/* .lan_btn:nth-child(2) .lan_link { margin: 3% 5%; } */
		}

  .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 */
	}
	
.page_banner video{
	margin-bottom:50vw;
	transform:translate(0%,-15%);
	}
	
.form_02 img{
	width: 900px;
}
	
.contact-list img{
	width:2%;
}
}