html, body {
	overflow-x: hidden;
}
body {
	font-family: 'Noto Sans CJK TC', 'PingFang TC', 'Heiti TC', 'Noto Sans TC', source-han-sans-traditional, 'Microsoft JhengHei', sans-serif;
	color: #1a1a1a;
	font-size: 1.125rem;
	background-color: #fafafa;
}
body.loaded {
}
p {
	line-height: 1.5;
}
a {
	text-decoration: none;
	color: inherit;
	-webkit-tap-highlight-color: transparent;
}
a, button, input[type="submit"] {
	cursor: pointer;
}
input, select, textarea {
	font-family: 'Noto Sans CJK TC', 'PingFang TC', 'Heiti TC', 'Noto Sans TC', source-han-sans-traditional, 'Microsoft JhengHei', sans-serif;
	font-size: 1.125rem;
	font-weight: 300;
}
img {
	max-width: 100%;
	width: auto;
	height: auto;
}

/* Preloader */
#preloader {
	position: fixed;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background-color: #074ecb; /* change if the mask should have another color then white */
	z-index:100; /* makes sure it stays on top */
}
#status {
	border: 8px solid rgba(255, 255, 255, 0.35); /* Light grey */
    border-top: 8px solid #ffd300; /* yellow */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* layout */
.container {
	padding: 4em 2em 5em;
	max-width: 1025px;
	width: 100%;
	margin: 0 auto;
}
.container.wide {
	max-width: 1280px;
}
footer .container {
	padding: 2em 2em;
}
.max-w8 {max-width: 800px;}
.max-w7 {max-width: 700px;}
.max-w6 {max-width: 515px;}

.col {
	display: inline-block;
}
.flex {
	display: flex;
}

.mx-auto {
	margin-left: auto!important;
	margin-right: auto!important;
}
.w100 {
	width: 100%;
}
.d-table {
	display: table;
}
.d-row {
	display: table-row;
}
.d-cell {
	/* display: table-cell; */
	display: block;
}
.mt-1 {	margin-top: 0.8em; }
.mt-2 {	margin-top: 1.4em; }
.mb-1 {	margin-bottom: 0.8em; }
.mb-2 {	margin-bottom: 1.4em; }
.mb-3 {	margin-bottom: 2em; }
.mb-s { margin-bottom: 10px; }
.ml-1 { margin-left: 1em; }

.my-1 { margin-top: 0.5em; margin-bottom: 0.5em;}

.pt-1 { padding-top: 0.8em; }
.pt-2 { padding-top: 1.4em; }
.pb-4 { padding-bottom: 4em; }
.pl-1 { padding-left: 0.8em; }

/* position */
.ab-center {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}
.fixed-right {
	position: fixed;
	right: 5%;
	bottom: 50px;
	z-index: 90;
}
.flex-middle {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}
.flex-space {
	display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

/* color */
.bg-no {
	background: transparent;
}
.bg-white {
	background-color: rgba(255, 255, 255, 1);
}
.bg-gray {
	background-color: #fafafa;
}
.bg-black {
	background-color: #1a1a1a;
}
.bg-blue {
	background-color: #00758f;
}

.bg-transblue {
	background: rgba(34, 26, 104, 0.85);
}
.bg-linear {
	background-image:  linear-gradient(to right,#000 0%, #172523 27%, #13434c 50%, rgba(14,110,135,1) 100%);
	background-repeat: no-repeat;
}
.mainbg, .subbg {
	background-image:  linear-gradient(to right,#000 0%, #172523 37%, #13434c 50%, rgba(14,110,135,0) 100%), url('../img/main_bg.jpg');
	background-repeat: no-repeat;
	background-size: auto 100%;
	background-position: center right;
	position: relative;
}
.subbg {
	background-image: url('../img/sub_bg.jpg');
}
.black {
	color: #1a1a1a;
}
.white {
	color: #fff;
}
.blue {
	color: #00758f;
}
.sub-blue {
	color: #5cc7c4;
}
.yellow {
	color: #ffe522;
}
.red {
	color: #bf272d;
}
.gray {
	color: #808080;
}
.notice {
	background: #bf272d;
	color: #fff;
	padding: 5px 10px;
	display: inline-block;
}
.list {
	text-indent: -1.1em;
	padding-left: 1.1em;
}
/* text */
.t-xlarge {
	font-size: 2.8em; /* 30px */
}
.t-large {
	font-size: 1.7em; /* 26px */
}
.t-midlarge {
	font-size: 1.225em; /* 22px */
}
.t-mid {
	font-size: 1em; /* 18px */
}
.t-small {
	font-size: 0.89em; /* 16px */
}
.t-xsmall {
	font-size: 0.72em; /* 14px */
}
.text-center {
	text-align: center;
}
.text-left {
	text-align: left;
}
.text-right {
	text-align: right;
}
.bold {
	font-weight: 700;
}
.font-w4 {
	font-weight: 400;
}
.lh-mid {
	line-height: 1.3;
}
.lh-15 {
	line-height: 1.5;
}
.lh-large {
	line-height: 2;
}
.show-sm, .show-mid {
	display: none;
}

hr {
	border: 0;
	border-bottom: 1px solid #ccc;
}

/* button */
.main-btn {
	background-color: #00758f;
    color: #fff;
    text-align: center;
    border: 2px solid #00758f;
    display: inline-block;
    font-size: 20px;
    padding: 10px 20px 10px 20px;
    letter-spacing: 1px;
    transition: all 0.4s ease;
}
.main-btn.trans {
	background-color: transparent;
	color: #00758f;
}
.main-btn.white {
	background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}
.main-btn.lock {
	cursor: not-allowed;
	background: #999;
	border-color: #ccc;
}
.main-btn.lock:hover {
	background: #999;
	border-color: #ccc;
	color: #fff;
}
.main-btn.arr.down.lock:hover::after {
	background: url('../img/icon_arr_right_w.svg') no-repeat;
	transform: rotate(90deg);
}
.main-btn.arr::after {
	content: '';
	display: inline-block;
	width: 1.2em;
	height: 1.2em;
	background: url('../img/icon_arr_right_w.svg') no-repeat;
	margin-left: 10px;
	margin-top: -1px;
	vertical-align: top;
	transition: all 0.4s ease;
}
.main-btn.arr.trans::after {
	background: url('../img/icon_arr_right.svg') no-repeat;
}
.main-btn.down::after {
	transform: rotate(90deg);
}
.main-btn.arr.lh-15::after {
	margin-top: 3px;
}
.main-btn:hover {
	background-color: transparent;
	color: #00758f;
}
.main-btn.white:hover {
	background-color: #fff;
}
.main-btn.arr:hover::after {
	background: url('../img/icon_arr_right.svg') no-repeat;
	transform: translateX(5px);
}
.main-btn.arr.down:hover::after {
	transform: rotate(90deg) translateX(3px);
}
.trans-btn {
	border: 1px solid #fff;
	color: #fff;
	border-radius: 18px;
	height: 36px;
	width: 120px;
	line-height: 36px;
	display: block;
	text-align: center;
}
.round-btn {
	width: 50px;
	height: 50px;
	display: inline-block;
	border-radius: 50%;
	background: #f29111;
	transition: all 0.2s ease;
}
.round-btn img {
	top: -3px;
    width: 30px;
}
.round-btn:hover {
	background-color: #ffb011;
}

/* header */
header {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	background: #fff;
	z-index: 99;
    transition: all 0.4s ease;
    max-height: 74px;
}
.navtop.container {
	padding: 0em 3em 0em 2em;
	height: 100%;
}
.navbar {
	margin-right: -20px;
}
.navbar li {
	display: inline-block;
}
.navbar li + li {
	margin-left: 1em;
}
.navbar a {
	height: 50px;
	line-height: 50px;
	padding: 0px 20px;
	color: #b1b1b1;
	transition: color 0.12s ease;
	display: block;
}
.navbar a:hover, .navbar a.active {
	color: #00758f;
}
.navbar a.active {
	pointer-events: none;
}
.navbar .en {
    display: block;
    text-align: center;
    font-size: 12px;
    transform: scale(0.9);
    margin-top: 3px;
}
.nav-logo {
	height: 50px;
	line-height: 50px;
	float: left;
	padding: 5px 0px;
}

header.detachedHide {
	transform: translateY(-100%);
}
header.detached {
}
header.detached.show {
	transform: translateY(0);
}
header.detached .navtop.container {
}
header.detached .logo {
}
header.detached .navbar {
}

/* navbar toggle */
.hbg-btn {
	border: 1px solid rgba(255, 255, 255, 0.6);
	border: 0;
	height: 50px;
	width: 50px;
	border-radius: 5px;
	vertical-align: top;
	margin-top: 2px;
	display: none;
	transition: margin 0.2s ease;
	margin-right: -15px;
	position: absolute;
	top: 0px;
	right: 2em;
}
header.detached .hbg-btn {
	margin-top: 0;
}
.icon-hbg,
.icon-hbg::before,
.icon-hbg::after {
	content: "";
	display: block;
	margin: 0 auto;
	width: 30px;
	height: 4px;
	background-color: #00758f;
	border-radius: 2px;
	position: relative;
}
.icon-hbg::before {
	position: absolute;
	top: -10px;
}
.icon-hbg::after {
	position: absolute;
	bottom: -10px;
}

/* section */
.topsec h1 img {
	width: 65%;
    margin-left: -4%;
}
.topsec {
	margin-top: 50px;
    padding: 3em 2em 4em;
}
.topsec p {
	margin-top: -1em;
	margin-bottom: 2em;
}
.title {
	display: inline-block;
	padding-bottom: 10px;
	border-bottom: 3px solid #f29111;
}
#news-sec .container {
	padding-top: 5em;
	position: relative;
}

/* slick */
.slick-arrow {
	position: absolute;
	width: 33px;
	height: 18px;
	display: inline-block;
	border: 0;
	background: transparent;
    overflow: hidden;
    text-indent: -200px;
    z-index: 2;
    margin: 0;
    background: url('../img/icon-arrow.svg') no-repeat;
    top: 0;
}
.slick-arrow.slick-prev {
	left: 40%;
}
.slick-arrow.slick-next {
	transform: rotate(180deg);
	right: 40%;
}

.slick-dots {
    margin: auto;
    text-align: center;
}
.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 2px;
    padding: 0;
    cursor: pointer;
}
.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:before {
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    content: '';
    text-align: center;
    background-color: #b1b1b1;
    right: 0;
    margin: auto;
    bottom: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
    background-color: #00758f;
}

/* form */
.form-item + .form-item label:first-of-type {
	padding-top: 1.4em;
}
.form-item label:first-of-type {
	padding-bottom: 0.4em;
}
.form-item + .form-item label.radio-label {
	padding-top: 0;
    padding-bottom: 0.6em;
}
.form-item .d-cell {
	min-width: 120px;
}
.form-item .d-cell:nth-child(2) {
	width: 100%;
}
.form-item input,
.form-item .select,
.form-item textarea {
	width: 100%;
	padding: 7px 12px 5px;
	border: 1px solid #aaa;
	box-sizing: border-box;
	opacity: 1;
}
.form-item input:focus,
.form-item .select:focus,
.form-item textarea:focus,
.form-item input:hover,
.form-item .select:hover,
.form-item textarea:hover {
	opacity: 1;
}
.form-item .select {
	padding: 0 11px;
	position: relative;
    background: #fff;
}
.select select {
    background: none;
    width: 100%;
    border: none;
    height: 41px;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-indent: 0.01px;
    text-overflow: ”;
    outline: none;
    box-sizing: border-box;
}
.select::after {
	content: "";
	border: 8px solid transparent;
	border-top: 10px solid #666;
	border-bottom: 0;
	position: absolute;
	right: 15px;
	top: 20px;
}

label.required::after {
	content: "*";
	color: #d7261d;
	padding-left: 3px;
}

.form-item input[type=radio],
.form-item input[type=checkbox] {
	display: inline;
	width: auto;
	position: absolute;
    opacity: 0;
}
.form-item .radio-label {
	margin-right: 1.2em;
	padding-top: 0.5em;
}

.radio-label {
	display: inline-block;
}
.radio-label span {
	display: inline-block;
	position: relative;	
	border: 1px solid #AAAAAA;
	border-radius: 100%;
	height: 23px;
	width: 23px;
	transition: border .25s linear;
	-webkit-transition: border .25s linear;
	margin-bottom: -4px;
    margin-right: 7px;
    background: #fff;
}
.radio-label.checkbox span {
	border-radius: 0px;
}

input[type=radio]:hover + .radio-label span,
input[type=checkbox]:hover + .radio-label span {
  border: 1px solid #aaa;
}

.radio-label span::before {
	display: block;
	position: absolute;
	content: '';
	border-radius: 100%;
	height: 15px;
	width: 15px;
	top: 3px;
	left: 3px;
	margin: auto;
	transition: background 0.25s linear;
	-webkit-transition: background 0.25s linear;
}
.radio-label.checkbox span::before {
	border-radius: 0px;
}

input[type=radio]:checked + .radio-label span,
input[type=checkbox]:checked + .radio-label span {
  border: 1px solid #666;
}

input[type=radio]:checked + .radio-label span::before,
input[type=checkbox]:checked + .radio-label span::before{
  background: #666;
}

.linkafter + .form-item {
	display: none;
}
.linkafter.showafter + .form-item {
	display: table-row;
}

/* news card */
.news-card {
	width: 280px;
	height: 280px;
	display: inline-block;
	background: #00758f;
	color: #fff;
	position: relative;
	overflow: hidden;
	margin-left: auto;
	margin-right: auto;
	margin: 0 20px;
}
.news-card img {
	height: 100%;
	width: auto;
	position: absolute;
	z-index: 0;
	top: 0;
	max-width: none;
	left: -9999px;
	right: -9999px;
	margin: auto;
}
.news-card h5,
.news-card p {
	line-height: 1.5;
	z-index: 2;
	transition: all 0.6s ease;
	padding: 0 20px;
	display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
}
.news-card h5 {

}
.news-card p {
	opacity: 0;
	bottom: -30px;
	padding: 0 20px;
	max-width: 280px;
	left: 0;
	right: 0;
	margin: 0 auto;
	text-align: justify;
	transform: translateY(20px);
}
.news-card::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #003b4d;
	opacity: 0;
	z-index: 1;
	transition: opacity 0.6s ease;
}
.news-card::after {
	content: "";
	width: 94%;
	height: 94%;
	position: absolute;
	top: 3%;
	left: 3%;
	z-index: 2;
	border: 1px solid #fff;
	transition: transform 0.6s ease;
}
.news-card:hover::before {
	opacity: 0.7;
}
.news-card:hover::after {
	transform: scale(1.1)
}
.news-card:hover h5 {
	opacity: 0;
	transform: translateY(-70px);
}
.news-card:hover p {
	opacity: 1;
	transform: translateY(0px);
}

/* news slick */
.news-slick , .speaker-slick {
	padding-top: 1em;
	position: relative;
}
.news-slick .slick-arrow {
	top: 3em;
	border-color: #83b94f;
}
.slider-news .slick-dots {
	top: 20px;
}

/* fadein */
.fadein {
	opacity: 0;
	transform: translateY(-6px);
	transition: opacity 1s ease, transform 1s ease;
}
.fadein.show {
	opacity: 1;
	transform: translateY(0);
}
.fadein.nav-scrollspy {
	transition-delay: 0.4s;
}


/* popup */
.popup-container {
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.75);
	z-index: 999;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
	padding: 30px 0;
}
.popup-block {
	width: 85%;
    max-width: 1020px;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
	position: relative;
	opacity: 0;
	transform: translateY(30px);
	transition: transform 0.5s ease, opacity 0.2s ease;
	transition-delay: 0.3s;
	display: none;
	background: #fafafa;
}
.popup-container.active {
	opacity: 1;
	pointer-events: auto;
	overflow: auto;
}
.popup-block.active {
	display: block;
	transform: translateY(0px);
	opacity: 1;
}
.popup-block.active .popup-body {
	padding: 50px 80px;
}
.popup-img {
	width: 100%;
	padding-top: 50%;
	overflow: hidden;
	position: relative;
}
.popup-img img {
	position: absolute;
	top: -10%;
	z-index: -1;
}
.popup-img p {
	color: #fff;
	z-index: 1;
    position: absolute;
    bottom: 10px;
    right: 20px;
    opacity: 0.75;
}
.shadow-b::before {
	content: '';
	position: absolute;
	bottom: 0;
	z-index: 0;
	height: 50%;
	width: 100%;
	background: linear-gradient(rgba(0, 0, 0, .0) 0%, rgba(0, 0, 0, .1) 20%, rgba(0, 0, 0, .8) 100%);
}
.popup-img h4 {
	z-index: 1;
	position: absolute;
	bottom: 30px;
	text-align: center;
	left: 0;
	right: 0;
	margin: auto;
}
.popup-close {
	width: 40px;
	height: 40px;
	border: 0px solid #fff;
    position: fixed;
    top: 30px;
    right: 50px;
    background-color: #fff;
    color: #666;
    line-height: 30px;
	font-size: 24px;
	border-radius: 50%;
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.16);
}

.popup-block p {
	text-align: justify;
}

.popup-block .textblock {
	max-height: 80vh;
    overflow-y: auto;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
}
html.onpopup {
	overflow: hidden;
}
/* download.html */
#download-sec {
	min-height: 100vh;
	padding-top: 50px;
}
#esg-sec {
	min-height: 100vh;
}
.left-sec {
	padding-left: 5%;
	position: relative;
}
.right-sec {
	width: 100%;
}
.t-lighter {
	text-shadow: 0 0 13px rgba(148, 250, 255, 0.75);
}
.icon {
	width: 1.2em;
	height: 1.2em;
	vertical-align: sub;
}
.t-footer {
	position: absolute;
	bottom: 70px;
	opacity: 0.5;
}