@charset "utf-8";
/* CSS Document */

/*-----css基本設定---------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap');

*, body, h1, h2, h3, h4, h5, h6, a, p, select  {
	font-family: "Noto Sans TC", "微軟正黑體", "Microsoft JhengHei", sans-serif, Arial, Helvetica;
}
/*文字反選顏色*/
::selection, ::-moz-selection {
	background: #e78d09;
	color: #ffffff;
}

/*a:focus {
	background-color: #F7AD00 !important;
}*/
a {
	transition: .5s;
}
/*a:hover {
	filter:brightness(110%);
	transition: .5s;
}*/
/*a:focus img {
	-webkit-filter:saturate(0.2);
}*/


html {
	height: 100%;
	margin: 0;
}
body {
	margin: 0;
	min-height: 100%;
}

/*清除格式*/
.CleanFormat { 
	clear: both;
}
article::after, section::after, header::after {
	content: "";
	display: block;
	clear: both;
}

/*分隔線*/
.Dividers {
	margin: 1vw auto;
	width: 100%;
	height: 1px;
	background: #000;
}

/*------------------------WebStart----------------------*/
#wrap {
	display: block;
	position: relative;
}
/*-------------------------Header-----------------------*/
header {
	display: block;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 50;
	font-size: 0;
	background: linear-gradient(to bottom,  rgba(25,38,75,1) 0%,rgba(98,51,142,1) 100%);
}

header > div {
    display: inline-block;
    vertical-align: middle;
}

.Logo {
	width: 26vw;
}

.Logo a {
    /* 基本樣式 */
    display: block; /* 讓 <a> 可以設定寬高和 padding */
    padding: 1vw 5vw 1vw 2vw; /* 上下 左右的內距，可自行調整 */
    background-color: white; /* 梯形的背景色 */
    color: #19264b; /* 文字顏色 */
    font-weight: bolder;
    text-decoration: none; /* 去掉超連結底線 */
    position: relative; /* 確保偽元素定位正確 (如果需要加陰影等效果) */

    /* 關鍵：定義梯形形狀 */
    /* polygon(左上, 右上, 右下, 左下) */
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
    font-size: 2vw;
    line-height: 3.21vw;
    text-align: center;
}

/* (可選) 增加滑鼠移過的效果 */
.Logo a:hover {
    background-color: #FFDD4E; /* 滑鼠移過時變色 */
}

/*---------------------------Menu-----------------------*/
.Menu {
    width: calc(100% - 26vw);
    font-size: 0;
}

nav {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 12.55vw);
}

nav ul {
    display: block;
    font-size: 0;
    text-align: right;
}

nav ul li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 1vw;
}

nav ul li a {
    font-size: 1.2vw;
    font-weight: lighter;
    color: #fff;
	padding: 0.2vw 1vw;
    border-radius: 2vw;
}

nav ul li.active a, nav ul li.active a:hover {
    background: #fff;
	color: #402D6F;
	font-weight: bold;
}

nav ul li a:hover {
    color: #FFDD4E;
}


#Lan {
    display: inline-block;
    vertical-align: middle;
    width: 12.55vw;
}

#Lan a {
    display: block; /* 讓 <a> 可以設定寬高和 padding */
    padding: 1vw 2vw 1vw 4vw; /* 上下 左右的內距，可自行調整 */
    background-color: white; /* 梯形的背景色 */
    color: #19264b; /* 文字顏色 */
    font-weight: bolder;
    text-decoration: none; /* 去掉超連結底線 */
    position: relative; /* 確保偽元素定位正確 (如果需要加陰影等效果) */

    /* 關鍵：定義梯形形狀 */
    /* polygon(左上, 右上, 右下, 左下) */
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
    font-size: 1.5vw;
    line-height: 3.21vw;
    text-align: center;
}

#Lan a:hover {
    background-color: #FFDD4E; /* 滑鼠移過時變色 */
}

/*-----手機版選單------*/
.MenuBtn {
    display: none;
    position: absolute;
    width: 11%;
    top: 2vw;
    right: 2vw;
    text-align: center;
}

.MenuBtn a {
    display: block;
    width: 100%;
}

.MenuBtnLine {
    display: block;
    width: 100%;
    padding-top: 60%;
    position: relative;
	margin-bottom: 1vw;
}

.MenuBtnLine span {
    display: block;
    position: absolute;
    width: 100%;
    height: 1.2vw;
    background: #fff;
    border-radius: 1vw;
    left: 0;
	transition: .5s;
}

.MenuBtnLine span:nth-child(1) {
    top: 0;
}

.MenuBtnLine span:nth-child(2) {
    top: calc(50% - 0.6vw);
	opacity: 1;
}

.MenuBtnLine span:nth-child(3) {
    bottom: 0;
}

header.active .MenuBtnLine span:nth-child(1) {
    transform: rotate(45deg);
    top: calc(50% - 0.6vw);
}

header.active .MenuBtnLine span:nth-child(2) {
    opacity: 0;
}

header.active .MenuBtnLine span:nth-child(3) {
    transform: rotate(-45deg);
    top: calc(50% - 0.6vw);
}


.MenuBtnTxt {
    font-size: 3vw;
    font-weight: bold;
    color: #fff;
}


.MenuBtn.active .MenuBtnTxt {
    color: #ffdd4e;
}

.MenuBtn.active .MenuBtnLine span {
    background: #ffdd4e;
}

.MenuBtn.active .MenuBtnLine span:nth-child(2) {
    opacity: 0;
}

.MenuBtn.active .MenuBtnLine span:nth-child(1) {
    transform: rotate(45deg);
}

.MenuBtn.active .MenuBtnLine span:nth-child(3) {
    transform: rotate(-45deg);
}

.MenuBtn.active .MenuBtnLine span:nth-child(1), .MenuBtn.active .MenuBtnLine span:nth-child(3) {
    top: 50%;
}


/*-------------------------BODY-------------------------*/
article {
    padding-top: 5.209vw;
    display: block;
    position: relative;
}

article.Page .bg {
	display: block;
	position: fixed;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
	z-index: -1;
    background: url(../images/bg_page.jpg) center no-repeat;
    background-size: cover !important;
}

section {
    position: relative;
}

/*-------------------------FOOTER-----------------------*/
footer {
    background: #19264B;
    padding: 3vw 0;
    color: #fff;
}

#footer {
    display: flex;
    width: 80%;
    margin: 0 auto;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
}

.footLogo {
    width: 20%;
    display: flex;
    align-items: center;
}

.aboutHH {
    width: 47%;
    border-left: 1px solid #fff;
}

.footerTitle {
    padding: 0.5vw 2vw;
    font-size: 1.2vw;
    font-weight: bold;
    color: #19264B;
    background: #fff;
    border-top-right-radius: 2vw;
    border-bottom-right-radius: 2vw;
    display: inline-block;
    margin-bottom: 1vw;
}

.footerContent {
    padding-left: 1vw;
}

.aboutHH .footerContent {
    font-size: 1vw;
    font-weight: lighter;
    text-align: justify;
    padding-bottom: 1vw;
}

.ebook {
    width: 20%;
    border-left: 1px solid #fff;
}

.ebook .footerContent {
    display: flex;
    justify-content: space-between;
}

.ebook .footerContent > div {
    display: block;
    width: 40%;
    text-align: center;
}

.ebookIcon {
    width: 100%;
    padding-top: 85%;
    background-size: contain !important;
    margin-bottom: 0.5vw;
}

#ebookIcon_01 {
    background: url(../images/icon_ebook_01.png) no-repeat center;
}

.ebook .footerContent a div:last-child {
    font-size: 1.2vw;
    color: #fff;
    font-weight: bold;
}

#ebookIcon_02 {
    background: url(../images/icon_ebook_02.png) no-repeat center;
}

/*----------合作夥伴----------*/
.patnerLogo {
    padding: 4vw 0;
    font-size: 0;
    text-align: center;
    background: #fff;
}

.patnerLogoGroup {
    display: inline-block;
    vertical-align: middle;
    font-size: 0;
    margin-right: 5vw;
}

.patnerLogoTag {
    display: inline-block;
    vertical-align: middle;
    margin-right: 2vw;
    padding: 0 0.2vw;
    font-size: 1.2vw;
    font-weight: bold;
    color: #4d4d4d;
}

.patnerLogoList {
    display: inline-block;
    vertical-align: middle;
    font-size: 0;
}

.patnerLogoList li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 2vw;
}

.patnerLogoGroup:last-child {
    margin-right: 0;
}

.patnerLogoList li:last-child {
    margin-right: 0;
}

.patnerLogoList img {
    display: block;
    width: 100%;
    height: auto;
}

#FootLogo_1 {
    width: 8.438vw;
}

#FootLogo_2 {
    width: 16.667vw;
}

#FootLogo_3 {
    width: 10vw;
}

/*----------頁尾底部----------*/
.coFooter {
    background: #21252a;
    padding: 3vw 0 0;
}

.ComGroup {
    display: block;
    margin-bottom: 3vw;
}

.ComGroup ul {
    display: block;
    font-size: 0;
    text-align: center;
}

.ComGroup li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5vw;
}

.ComGroup a {
    color: #fff;
    font-size: 1vw;
}

.ComGroup li:last-child {
    margin-right: 0;
}

#copyright {
    font-size: 1vw;
    color: #717070;
    padding: 1.5vw 1vw;
    display: block;
    margin: 0 auto;
    text-align: center;
    width: 35vw;
    border-top: 1px solid #717070;
}

/*--------------------------共用項目-------------------------------*/
img {
    display: block;
    width: 100%;
    height: auto;
}


/*-----------麵包屑----------*/
#breadcrumb {
    display: flex;
    width: calc(100% - 2vw);
    margin: 0 auto;
    padding: 0.5vw 1vw;
    background: rgba(0, 0, 0, 0.2);
    align-items: center;
}

#breadcrumb > div {
    font-size: 1vw;
    color: #fff;
    font-weight: bold;
}

#breadcrumb nav {
    display: block;
    color: #fff;
}

#breadcrumb nav ol {
    display: flex;
    align-items: center;
	flex-wrap: wrap;
}

#breadcrumb nav ol li a, #breadcrumb nav ol li {
    font-size: 1vw;
}

#breadcrumb nav ol li::after {
    content: "/";
    padding: 0 0.5vw;
}

#breadcrumb nav ol li a {
    text-decoration: underline;
    color: #FFDD4E;
}

#breadcrumb nav ol li:last-child::after {
    display: none;
}




/*----------章節簡介----------*/
.PageDec {
    font-size: 1.2vw;
    width: 50%;
    color: #fff;
    margin: 0 auto;
    background: rgba(255, 255, 255, .2);
    padding: 1vw;
    border-radius: 1vw;
    margin-bottom: 2vw;
}

/*----------影片背景----------*/
.videoBgBk {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	overflow: hidden;
}

.videoBgBk video {
	/*position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);*/
	width: 100%;
	height: 100%;
	object-fit: cover; /* 讓影片填滿但不變形 */
}

/*----------內頁大標題----------*/
article.Page h1 {
    font-size: 3vw;
    text-align: center;
    color: #fff;
    padding: 3vw 0;
}

article.Page h1 span:first-child {
    font-size: 1.2vw;
    display: block;
    width: 30vw;
    margin: 0 auto;
    background: #ffdd4e;
    border-radius: 2vw;
    color: #19264b;
}

article.Page h1 span:last-child {
    font-size: 3vw;
}

/*----------文章內文格式設定----------*/
.Content {
    display: block;
    width: 60%;
    margin: 0 auto 5vw;
    background: rgba(255, 255, 255, .8);
    padding: 2vw;
    border-radius: 1vw;
    font-size: 1vw;
    color: #333;
}

.Content p, .Content a, .Content ul, .Content ol, .Content li, .Content b, .Content i {
    font-size: 1em;
}

.Content p {
    margin-bottom: 1vw;
}

.Content h2 {
    font-size: 1.6em;
    margin-bottom: 1vw;
    color: #19264b;
}

.Content h3 {
    font-size: 1.2em;
    color: #19264b;
}

ul.zhNum {
    padding-left: 2vw;
    list-style: cjk-ideographic;
}

ul.zhNum li {
	margin-bottom: 1vw;
}

figure.PaperImg img {
    display: block;
    width: auto;
    max-width: 80%;
    height: auto;
    margin: 0 auto 0.5vw;
}

figure.PaperImg {
    margin: 2vw auto;
}

figcaption.ImgNote {
    text-align: center;
    font-size: 1vw;
    color: #19264b;
}



/*----------名詞速讀----------*/
.WordInfo {
    display: block;
    width: 75%;
    margin: 2vw auto;
    border: 5px solid #19264b;
    border-top: none;
    padding: 2%;
    position: relative;
    background: rgba(255, 255, 255, .5);
}

.WordInfoTitle {
    display: flex;
    position: absolute;
    left: -5px;
    top: -1vw;
    text-align: center;
    width: calc(100% + 10px);
    color: #19264b;
    font-size: 1vw;
    line-height: 2vw;
    font-weight: bold;
    flex-wrap: nowrap;
    align-items: center;
}

.WordInfoTitle::before, .WordInfoTitle::after {
    content: "";
    display: block;
    height: 5px;
    background: #19264b;
}

.WordInfoTitle::before {
    width: 1vw;
    margin-right: 10px;
}

.WordInfoTitle::after {
    width: calc(90% - 20px - 1vw);
    margin-left: 10px;
}

.WordInfoTitle span {
    display: block;
    font-size: 1em;
    width: 10%;
}

dl.WordInfoBk {
    display: flex;
    align-items: center;
}

dt.WordInfo_word {
    font-size: 1.2vw;
    font-weight: bold;
    color: #19264b;
    width: 20%;
    padding-right: 1vw;
    border-right: 1px solid #19264b;
    margin-right: 1vw;
}

dd.WordInfo_content {
    font-size: 1vw;
    width: calc(80% - 2vw - 1px);
}



/*-----文章表格-----*/
.Content .Table {
    display: block;
    margin: 2vw auto;
    width: 80%;
    font-size: 1em;
}

caption.TableTitle {
    font-size: 1em;
    color: #19264b;
    margin-bottom: 0.5vw;
}

.Content .Table tr {
    font-size: 1em;
    line-height: 2em;
}

thead.TableHead th {
    text-align: center;
    font-size: 1em;
}

thead.TableHead {
    font-size: 1em;
    background: #19264b;
    text-align: center;
    color: #fff;
}

.Table tbody tr:nth-child(odd) {
    background: #c9c4e7;
}

.Table tbody tr:nth-child(even) {
    background: #aaa3d1;
}

thead.TableHead {
    width: 100%;
}

.Table tbody {
    width: 100%;
    font-size: 1em;
}

table.Table th, table.Table td {
    font-size: 1em;
    padding: 0 0.5vw;
}

table.Table td:first-child {
    width: 18%;
    text-align: center;
}


/*----------右側固定按鈕----------*/
#FixedBtn {
}

/*--------------------------內容開始-------------------------------*/
.view_w {display: block;}
.view_m {display: none;}

/*---------------KV---------------*/
#KV {
    display: block;
    position: relative;
    width: 100%;
    height: calc(100vh - 5.209vw);
}

.KVTxt {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}

.KVTxt img {
    display: block;
    position: absolute;
    width: 30%;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}



.ScorlAni {
    display: block;
    position: absolute;
    height: 20vh;
    width: 1px;
    background: #fff;
    bottom: 2vw;
    left: calc(50% - 0.5px);
}

.ScorlAni::before {
    display: block;
    position: absolute;
    content: "";
    width: 1vw;
    height: 1vw;
    background: #fff;
    border-radius: 1vw;
    left: calc(-0.5vw + 0.5px);
	
	/* 1. 設定初始狀態 */
    top: 0; /* 動畫會控制這個值，先給定初始位置 */
    opacity: 0; /* 初始為透明，準備淡入 */

    /* 2. 套用動畫 */
    animation: scroll-indicator 3s ease-in-out infinite;
}


@keyframes scroll-indicator {
    /* 階段一: 在頂部淡入 */
    0% {
        top: 0;
        opacity: 0;
    }
    10% {
        top: 0;
        opacity: 1;
    }

    /* 階段二: 從頂部滑動到底部 */
    80% {
        /*
         * 最終 top 的位置 = 父層高度 - 自身高度
         * 10vw - 1vw = 9vw
         */
        top: 9vw;
        opacity: 1;
    }

    /* 階段三: 在底部淡出 */
    90% {
        top: 9vw;
        opacity: 0;
    }
    100% {
        /* 保持透明狀態直到下個循環開始 */
        top: 9vw;
        opacity: 0;
    }
}



/*---------- 首頁標題 ----------*/
h2.title {
    display: block;
    position: relative;
    text-align: center;
    padding: 3vw 0;
    font-size: 2.5vw;
}

h2.title.w {
    color: #fff;
}

h2.title.b {
    color: #19264B;
}

h2.title::before, h2.title::after {
    content: "";
    display: block;
    position: absolute;
    width: 30%;
    top: calc(50% - 0.2vw);
    padding: 0.2vw 5vw 0.2vw 2vw;
}

h2.title.w::before, h2.title.w::after {
    background-color: #fff;
}

h2.title.b::before, h2.title.b::after {
    background-color: #19264B;
}

h2.title::before {
    left: 0;
    clip-path: polygon(0 0, 100% 0, 98% 100%, 0 100%);
}

h2.title::after {
    right: 0;
    clip-path: polygon(2% 0%, 100% 0%, 100% 100%, 0% 100%);
}



/*----------願景與展望----------*/
#index_manager {
    background: #19264B;
}





/*-----院長與執行長區塊-----*/
#index_manager > div {
    display: block;
    position: relative;
}

#first_manager {
    background: url(../images/bg_index_01.png) no-repeat bottom left;
    background-size: 65%;
}

.managerPaperTitle {
    width: 45%;
    color: #fff;
}

.managerPaperTitle h3 {
    font-size: 2.6vw;
    display: block;
    margin-bottom: 2vw;
}

.managerPaperDec {
    font-size: 1.2vw;
    font-weight: lighter;
    margin-bottom: 2vw;
}

.ReadMore {
    display: flex;
    align-content: center;
    align-items: center;
}

.ReadMore a {
    font-size: 1.3vw;
    font-weight: bold;
    display: block;
    color: #fff;
    width: 17%;
    text-align: center;
    padding: 0.5vw 1vw;
    border-radius: 1vw;
}

.ReadMore::before {
    content: "";
    display: block;
    width: 80%;
    height: 1px;
    background: #fff;
    margin-right: 3%;
}

.ReadMore a:hover {
    background: #FFDD4E;
    color: #19264b;
}

#first_manager .managerPaperTitle {
    display: block;
    position: absolute;
    left: 48%;
    top: 10%;
}

#first_manager .managerPhoto {
	position: relative;
	width: 30%;padding-left: 9vw;
}

#index_manager > div::after {
    content: "";
    display: block;
    clear: both;
}

.managerPhoto {
    display: block;
    color: #fff;
}

#Manager1 {
    display: block;
    position: absolute;
    top: 30%;
    right: 0%;
}

.managerName {
    font-size: 1.5vw;
    font-weight: bold;
}

.managerTitle {
    font-size: 1.2vw;
}

#second_manager {
    background: url(../images/bg_index_02.png) no-repeat bottom right, #402D6F;
    background-size: 51%;
}

#second_manager .managerPaperTitle {
    display: block;
    margin-left: 7%;
    padding: 4vw 0;
}

#second_manager .managerPhoto {
    width: 30%;
    position: absolute;
    right: 5%;
    bottom: 0;
}

#Manager2 {
    display: block;
    position: absolute;
    top: 40%;
    left: -7%;
}

/*-----諮詢委員-----*/
#ManagerList {
    background: url(../images/bg_index_03.png) no-repeat, #fff;
    background-position: 0 35%;
	background-size: 100% auto;
    padding: 5vw 0;
    text-align: center;
}

#ManagerList > ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: flex-start;
    width: 90%;
    margin: 0 auto;
}

#ManagerList > ul > li {
    width: 18%;
}

#ManagerList a {
    color: #19264B;
}

#ManagerList h3 {
    font-size: 1.4vw;
}

#ManagerList .jobTitle {
    font-size: 1vw;
}

#ManagerList a .indexManagerListPhoto {height: 15vw;overflow: hidden;border-radius: 1vw;position: relative;}

.indexManagerListPhoto img {
    height: calc(100% - 0.5vw);
    padding-top: 0.5vw;
    width: auto;
    margin: 0 auto;
    position: relative;
}

#ManagerList a:hover {
    color: #402d6f;
}

#ManagerList a .indexManagerListPhoto::before {
    content: "";
    display: block;
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    /*background: linear-gradient(to bottom, rgba(25, 38, 75, 1) 0%, rgba(98, 51, 142, 1) 100%);*/
    background: #19264b;
    transition: 0.5s;
}

#ManagerList a:hover .indexManagerListPhoto::before {
    background: #ffdd4e;
    opacity: 1;
}




/*----------技術最前線----------*/
#indexTech {
    padding-bottom: 8vw;
    background: url(../images/bg_index_light.png) no-repeat center;
    background-size: 100%;
}

#indexTechList {
    text-align: center;
}

#indexTechList .slick-slide {
    margin: 0 5vw;
	transform: scale(0.8);
	opacity: 0.8;
	transition: 0.5s;
}

#indexTechList .slick-slide.slick-active {
	transform: scale(1);
	opacity: 1;
}

#indexTech .slick-prev {
    left: 27vw;
}

#indexTech .slick-next {
    right: 27vw;
}

#indexTech .slick-prev, #indexTech .slick-next {
	background: linear-gradient(to bottom, rgba(25, 38, 75, 1) 0%, rgba(98, 51, 142, 1) 100%);
}

.indexTechCover {
    background: linear-gradient(to bottom, rgba(25, 38, 75, 1) 0%, rgba(98, 51, 142, 1) 100%);
    padding: 1vw;
    margin-bottom: 1vw;
}

#indexTechList h4 {
    font-size: 1.7vw;
    color: #19264B;
}

.indexTechTag {
    color: #fff;
    background: #402D6F;
    font-size: 1.2vw;
    padding: 0.5vw 1vw;
    display: inline-block;
    border-radius: 5vw;
    margin-bottom: 1vw;
}



#indexTechList .slick-dots {
	bottom: -4vw;
}

#indexTechList .slick-dots li {
    width: 1.2vw;
    height: 1.2vw;
    margin: 0 1%;
}

#indexTechList .slick-dots li button:before {
    background: #E3E3E3;
}

#indexTechList .slick-dots li.slick-active button:before {
    opacity: 1;
    background: #402D6F;
}


/*----------夥伴觀點----------*/
#indexWorldLink {
    background: linear-gradient(to bottom, rgba(25, 38, 75, 1) 0%, rgba(65, 45, 111, 1) 100%);
    padding-bottom: 7vw;
}

#indexWorldLinkList {
    display: block;
    width: 70%;
    margin: 0 auto;
}

.indexWorldLinkCover {
    border: 1vw solid #fff;
    width: 35%;
    margin-right: 5%;
}

.indexWorldLinkCover div {
	display: block;
	width: 100%;
	padding-top: 56.25%;
	background-size: cover !important;
	background-position: center !important;
}

.indexWorldLinkBk {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

.indexWorldLinkText {
    width: 60%;
    color: #fff;
}

.indexWorldLinkText h4 {
    font-size: 2vw;
    margin-bottom: 1vw;
}

.indexWorldLinkDec {
    font-size: 1.2vw;
    font-weight: lighter;
    text-align: justify;
    margin-bottom: 1vw;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* 限制為 3 行 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.indexWorldLinkRead {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.indexWorldLinkRead::before {
    content: "";
    display: block;
    width: 78%;
    margin-right: 2%;
    height: 1px;
    background: #fff;
}

.indexWorldLinkRead a {
    display: block;
    background: #fff;
    color: #19264B;
    font-size: 1.2vw;
    padding: 0.5vw 0;
    border-radius: 2vw;
    width: 20%;
    text-align: center;
}

.indexWorldLinkRead a:hover {
    background: #FFDD4E;
}



#indexWorldLinkList .slick-dots {
	bottom: -4vw;
}

#indexWorldLinkList .slick-dots li {
    width: 1.2vw;
    height: 1.2vw;
    margin: 0 1%;
}

#indexWorldLinkList .slick-dots li button:before {
    background: #8B8B8B;
}

#indexWorldLinkList .slick-dots li.slick-active button:before {
    opacity: 1;
    background: #fff;
}


/*----------願景與展望----------*/
#FutureList {
    display: block;
    width: 65%;
    margin: 0 auto;
	padding-top: 5vw;
}

#FutureList li {
    border-bottom: 1px solid #fff;
    margin-bottom: 4vw;
    display: flex;
    align-items: flex-end;
}

.ManagerPhoto {
    width: 25%;
    margin-right: 5%;
}

.ManagerPhoto img {
	margin: 0 auto;
}

/*#Future_3 .ManagerPhoto img {
    width: 85%;
}

#Future_7 .ManagerPhoto img {
    width: 78%;
}*/

#Future_5 .ManagerPhoto img {
    width: 90%;
}



.ManagerTitle {
    font-size: 1vw;
    font-weight: bold;
}

.FutureBk {
    color: #fff;
    width: 70%;
}

.FutureBk h2 {
    font-size: 2vw;
    margin-bottom: 0.5vw;
    color: #FFDD4E;
}

.ManagerDec {
    font-size: 1.2vw;
    margin-bottom: 1vw;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 3;
	text-align: justify;
}


.FuturReadMoreLink a {
    display: block;
    padding: 0.5vw 1vw 0.5vw 2vw;
    background-color: white;
    color: #19264b;
    font-weight: bolder;
    text-decoration: none;
    position: relative;
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
    font-size: 1vw;
    line-height: 1vw;
    text-align: center;
}

.FuturReadMoreLink a:hover {
	background-color: #FFDD4E;
}

.FuturReadMoreLink {
    width: 20%;
    float: right;
}

.FutureBk::after {
    content: "";
    display: block;
    clear: both;
}






/*----------共創瞬間----------*/
#EventHighlights h2 {
    text-align: center;
    font-size: 2vw;
    color: #ffdd4e;
    margin-bottom: 3vw;
}

ul#EventList {
    display: block;
    position: relative;
    width: calc(50% - 2vw);
    margin: 0 auto;
    border-left: 0.2vw solid #ffdd4e;
    padding-left: 2vw;
    margin-bottom: 5vw;
}

ul#EventList > li::before {
    content: "";
    display: block;
    position: absolute;
    top: 1.5vw;
    left: calc(-3vw - 1px);
    width: 0;
    height: 0;
    border-left: 1vw solid transparent;
    border-right: 1vw solid transparent;
    border-top: 1vw solid #ffdd4e;
}

ul#EventList > li {
    position: relative;
    display: block;
    margin-bottom: 2vw;
    top: -1.5vw;
}

.EventDate {
    font-size: 2vw;
    font-weight: bold;
    color: #ffdd4e;
}

.EventContent {
    font-size: 1.2vw;
    color: #fff;
    text-align: justify;
    margin-bottom: 1vw;
}

.EventImg {
    display: block;
    width: 100%;
}

.EventImg a {
    display: block;
    width: 100%;
    padding-top: 56.25%;
	border-radius: 1vw;
    background-size: cover !important;
    background-position: center !important;
    filter: drop-shadow(0 0 5px #fff);
}

.EventImg.Img_m ul, .EventImg.Img_l ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.EventImg.Img_m ul li {
    width: calc(100% / 2 - 1vw);
    padding: 0.5vw;
}

.EventImg.Img_l ul li {
    width: calc(100% / 3 - 1vw);
    padding: 0.5vw;
}




/*----------願景與展望----------*/
.ManagerBk {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    font-size: inherit;
    align-items: center;
    margin-bottom: -2vw;
}

.ManagerJobTitle {
    font-size: 1em;
	font-weight: bold;
}

.ManagerTitleBk {
    font-size: inherit;
}

.ManagerTitleName {
    text-align: right;
    font-size: 1.5em;
    font-weight: bold;
    color: #19264b;
}

.ManagerPagePhoto {
    width: 35%;
}






/*----------技術最前線----------*/
#TechList {
    display: flex;
    width: 65%;
    margin: 0 auto;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

#TechList li {
    width: 30%;
    margin-bottom: 5%;
}

#TechList li a {
    display: block;
    padding: 1vw;
    background: rgba(255, 255, 255, .8);
    border-radius: 1vw;
}

#TechList li a:hover {
    background: rgba(255, 255, 255, 1);
}

#TechList a .PageCover {
    width: 100%;
    padding-top: 100%;
    border-radius: 1vw;
    filter: saturate(0.8);
    margin-bottom: 0.5vw;
	transition: .5s;
	background-size: auto 100% !important;
    background-position: center !important;
}

#TechList a:hover .PageCover {
    filter: saturate(1);
	background-size: auto 110% !important;
}

.SoTitle {
    text-align: center;
    font-size: 1vw;
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 0.5vw;
    background: #18264b;
    border-radius: 2vw;
}

#TechList h2 {
    font-size: 1.4vw;
    color: #18264b;
}







/*----------夥伴觀點----------*/
ul#InsightsList {
    display: block;
    width: 60%;
    margin: 5vw auto;
}

ul#InsightsList li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

ul#InsightsList li:nth-child(odd) a {
    flex-direction: row;
}

ul#InsightsList li:nth-child(even) a {
    flex-direction: row-reverse;
}

#InsightsList a .PageCover {
    width: 40%;
    padding-top: 25%;
    margin-bottom: 0;
	border-radius: 1vw;
	transition: .5s;
	background-size: 130% auto !important;
    background-position: center !important;
	filter: drop-shadow(0 0 0.5vw #fff);
}

#InsightsList a:hover .PageCover {
	background-size: 140% auto !important;
	filter: drop-shadow(0 0 0.5vw #FFDD4E);
}

#InsightsList li:nth-child(odd) a .PageCover {
    margin-bottom: 0;
    margin-right: 2vw;
}

#InsightsList li:nth-child(even) a .PageCover {
    margin-bottom: 0;
    margin-left: 2vw;
}

.InsCoList {
    display: flex;
    align-items: center;
}

.InsCoList span {
    font-size: 1vw;
}

.InsCoList span::after {
    content: "×";
    padding: 0.5vw;
}

.InsCoList span:last-child::after {
    display: none;
}

.InsDecBk h2 {
    font-size: 1.5vw;
    color: #FFDD4E;
}

.InsDecTxt {
    font-size: 1vw;
    margin-bottom: 1vw;
	overflow: hidden;
  	text-overflow: ellipsis;
  
	/* 關鍵屬性 */
	display: -webkit-box;
	-webkit-line-clamp: 3;  /* 1. 您想顯示的行數 */
	-webkit-box-orient: vertical;
}

.InsDecBk {
    width: calc(60% - 2vw);
}

.InsRead {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

a .InsRead span {
    display: block;
    font-size: 1vw;
    padding: 0.2vw 1vw;
    background: #fff;
    color: #19264b;
    font-weight: bold;
    border-radius: 5vw;
    width: 15%;
    text-align: center;
    transition: .5s;
}

a .InsRead::before {
    content: "";
    display: block;
    height: 1px;
    width: calc(80% - 2vw);
    background: #fff;
}

ul#InsightsList li {
    margin-bottom: 3vw;
}

a:hover .InsRead span {
    background: #ffdd4e;
}







/*---------------------------自適應內容----------------------------*/
/*--高--*/
@media only screen and (max-height: 820px) {

}
@media only screen and (max-height: 600px) {

}



/*--寬--*/

@media only screen and (max-width: 1280px) {

	
}

@media only screen and (max-width: 820px) {

}


@media only screen and (max-width: 720px) {
.view_w {display: none;}
.view_m {display: block;}
	
article {
    padding-top: 14vw;
}	
	
.Logo {
    width: 72%;
}

.Logo a {
    font-size: 6vw;
    line-height: 12vw;
}

.MenuBtn {
    display: block;
}

.Menu {
    display: none; 
    position: absolute;
    top: 14vw;
    left: 0;
    width: 100%;
    height: calc(100vh - 14vw);
    background: #61328d;
}

.Menu nav {
    display: block;
    padding: 5vw 0;
    text-align: center;
    width: 100%;
    margin-bottom: 10vw;
}

.Menu nav ul li {
    display: block;
    width: 80%;
    margin: 0 auto;
    text-align: center;
    border-bottom: 1px solid #fff;
    padding: 5vw 0;
}

.Menu nav ul li a {
	font-size: 5vw;
	padding: 1vw 10vw;
	border-radius: 6vw;
}

nav ul li.active a, nav ul li.active a:hover {
    background: #ffdd4e;
}	
	
#Lan {
    display: block;
    width: 50%;
    margin: 0 auto;
}

#Lan a {
    padding: 4vw 0;
    clip-path: none;
    font-size: 5vw;
    border-radius: 10vw;
}
	
	

	
	
/*-----麵包屑-----*/
#breadcrumb {
    padding: 2vw;
    width: calc(100% - 4vw);
}

#breadcrumb > div {
    font-size: 3vw;
    width: 20%;
    text-align: right;
}

#breadcrumb nav {
    width: 80%;
}

#breadcrumb nav ol li a, #breadcrumb nav ol li {
    font-size: 3vw;
}
	
	
	
/*-----頁面基本設定-----*/
article.Page h1 {
	font-size: 8vw;
	width: 95%;
	margin: 0 auto;
	padding: 8vw 0;
}
	
figure.PaperImg {
    margin: 7vw auto;
}
	
	
figure.PaperImg img {
    max-width: 100%;
    margin-bottom: 1vw;
}

figcaption.ImgNote {
    font-size: 3.5vw;
    text-align: justify;
}
	
/*----------首頁----------*/
#index section {
    padding: 10vw 0 0;
}	
	
.KVTxt img {
    width: 100%;
}
	
.ScorlAni::before {
    width: 3vw;
    height: 3vw;
    left: calc(-1.5vw + 0.5px);
    border-radius: 1.5vw;
}

h2.title {
    font-size: 8vw;
}
	
h2.title::before, h2.title::after {
    width: 15%;
    padding: 0.5vw 5vw 0.5vw 2vw;
}	
	



#first_manager .managerPaperTitle {
    position: relative;
    left: 5%;
}

#first_manager .managerPhoto {
    width: 50%;
    margin-top: -12vw;
    margin-left: 50%;
    padding-left: 0;
}

#Manager1 {
    top: 70%;
    right: auto;
    left: -45%;
}

.managerName {
    font-size: 5vw;
}

.managerTitle {
    font-size: 3vw;
}

.managerPaperTitle {
    width: 90%;
}	
	
.managerPaperTitle h3 {
    font-size: 6vw;
}

.managerPaperDec {
    font-size: 4vw;
}

.ReadMore a {
    font-size: 4vw;
    width: 23%;
}

#first_manager {
    background-size: 120%;
    background-position: bottom 25% left;
    padding-top: 10%;
}

#second_manager {
    padding-top: 10%;
    background-size: 120%;
    background-position: bottom 15% right;
}

#second_manager .managerPaperTitle {
    margin-left: 5%;
}

#second_manager .managerPhoto {
    position: relative;
    width: 50%;
    right: 0;
    left: 50%;
    margin-top: -17%;
}

#Manager2 {
    top: 70%;
    left: -53%;
}
	
.ReadMore::before {
    width: 30%;
}	
	
	
	
	
	
#ManagerList > ul {
    display: block;
    font-size: 0;
}

#ManagerList > ul > li {
    display: inline-block;
    width: 47.5%;
    margin-right: 5%;
    margin-bottom: 5vw;
    vertical-align: top;
}

#ManagerList > ul > li:nth-child(even), #ManagerList > ul > li:last-child {
    margin-right: 0;
}

#ManagerList a .indexManagerListPhoto {
    height: 40vw;
}

#ManagerList h3 {
    font-size: 5vw;
}

#ManagerList .jobTitle {
    font-size: 4vw;
}
	

section#indexTech {
    padding-bottom: 10vw;
}	
	
.indexTechTag {
    font-size: 4vw;
    padding: 1vw 5vw;
}

#indexTechList h4 {
    font-size: 6vw;
}

.indexTechCover {
    padding: 3vw;
}	

.slick-dots li button:before {
    width: 15px !important;
    height: 15px !important;
}

#indexTech .slick-next {
    right: 1vw;
}

#indexTech .slick-prev {
    left: 1vw;
}

#indexTech .slick-prev, #indexTech .slick-next {
    top: 30vw;
}
	
.indexWorldLinkBk {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

.indexWorldLinkCover {
    border: 2vw solid #fff;
    width: calc(100% - 4vw);
    margin-bottom: 2vw;
	margin-right: 0;
}

.indexWorldLinkText {
    width: 100%;
}

.indexWorldLinkText h4 {
    font-size: 6vw;
}

.indexWorldLinkDec {
    font-size: 4vw;
    margin-bottom: 2vw;
}

.indexWorldLinkRead::before {
    width: 68%;
}

#indexWorldLinkList {
    width: 90%;
}

.indexWorldLinkRead a {
    font-size: 5vw;
    width: 30%;
}

#indexWorldLinkList .slick-dots {
    bottom: -15px;
}

#index section#indexWorldLink {
    padding-bottom: calc(15vw + 15px);
}
	
	
	
#footer {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
}

footer {
    padding: 5vw 0;
}

.footLogo {
    width: 68%;
    margin: 0 auto 5vw;
}

.aboutHH {
    width: 100%;
    border-left: none;
    margin-bottom: 5vw;
}

.footerTitle {
    border-radius: 5vw;
    font-size: 4vw;
    display: block;
    width: 35vw;
    text-align: center;
    margin: 0 auto 2vw;
}

.aboutHH .footerContent {
    font-size: 4vw;
    padding: 0;
}

.ebook {
    width: 100%;
    border-left: 0;
}

.footerContent {
    padding-left: 0;
	justify-content: center !important;
}

.ebook .footerContent a div:last-child {
    font-size: 4vw;
}

.ebookIcon {
    margin-bottom: 1vw;
}	
	
	
	
/*----------願景展望----------*/
#FutureList {
    width: 90%;
    padding-top: 0;
    margin-bottom: 15vw;
}

#FutureList li {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
}

.ManagerPhoto {
    width: 55%;
    margin-right: 0;
    margin-bottom: 2vw;
}

.FutureBk {
    width: 100%;
}

.ManagerTitle {
    text-align: center;
    font-size: 4vw;
    margin-bottom: 2vw;
}

.FutureBk h2 {
    font-size: 4.7vw;
    text-align: center;
}

.ManagerDec {
    font-size: 4vw;
    margin-bottom: 2vw;
}

.FuturReadMoreLink a {
    font-size: 4vw;
    line-height: 4vw;
    text-align: center;
    padding: 2vw 2vw 2vw 7vw;
}

.FuturReadMoreLink {
    width: 30vw;
}
	
	
/*-----願景與展望內頁-----*/
article.Page h1 span:first-child {
    font-size: 4vw;
    width: 95%;
    border-radius: 10vw;
    margin-bottom: 2vw;
}

article.Page h1 span:last-child {
    font-size: 7vw;
}

.Content {
    width: 80%;
    padding: 5vw;
    border-radius: 5vw;
    font-size: 4vw;
    margin-bottom: 15vw;
}

ul.zhNum {
    padding-left: 8vw;
}

.Content p, ul.zhNum li {
    margin-bottom: 2vw;
}

.ManagerTitleBk {
    width: 44%;
	text-align: right;
}	
	
.ManagerPagePhoto {
    width: 56%;
}

.ManagerBk {
    margin-bottom: -5vw;
}
	
	
	
/*-----科技最前線-----*/
.PageDec {
    width: 80%;
    padding: 3vw;
    font-size: 4vw;
    margin-bottom: 5vw;
}

#TechList {
    width: 90%;
    margin-bottom: 15vw;
}

#TechList li {
    width: 48%;
}

#TechList li a {
    padding: 2vw;
}

#TechList a .PageCover {
    margin-bottom: 3vw;
}

.SoTitle {
    margin-bottom: 1vw;
    font-size: 4vw;
}

#TechList h2 {
    font-size: 5vw;
}
	
	

	
.WordInfo {
    width: calc(100% - 6vw);
    padding: 4vw 2vw 2vw;
    margin: 10vw 0;
}

.WordInfoTitle {
    font-size: 5vw;
}



.WordInfoTitle span {
    width: 40%;
}

.WordInfoTitle::before, .WordInfoTitle::after {
	width: 30%;
}

dt.WordInfo_word {
	text-align: center;
    font-size: 5vw;
    border-right: none;
    border-bottom: 1px solid #19264b;
    padding-right: 0;
    margin-right: 0;
    padding-bottom: 1vw;
    margin-bottom: 1vw;
    width: 100%;
}

dl.WordInfoBk {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

dd.WordInfo_content {
    font-size: 3.5vw;
    width: 100%;
    text-align: justify;
}	
	
	
.Content .Table {
    width: 100%;
}

table.Table td:first-child {
    width: 30%;
}	
	
	
	
	
/*----------共創瞬間----------*/
#EventHighlights h2 {
    font-size: 6vw;
    margin-bottom: 6vw;
}

ul#EventList {
    width: 83%;
    padding-left: 5vw;
    margin-bottom: 15vw;
}

ul#EventList > li::before {
    top: 3vw;
    left: -7.5vw;
    border-left: 2.5vw solid transparent;
    border-right: 2.5vw solid transparent;
    border-top: 4vw solid #ffdd4e;
}

.EventDate {
    font-size: 5vw;
}

.EventContent {
    font-size: 4vw;
}

ul#EventList > li {
    margin-bottom: 5vw;
    top: -3vw;
}

.EventImg a {
    filter: drop-shadow(0 0 2px #fff);
}

.EventImg.Img_m ul li {
    width: calc(100% / 2 - 2vw);
    padding: 1vw;
}

.EventImg.Img_l ul li {
    width: calc(100% / 2 - 2vw);
    padding: 1vw;
}
	
	
	
/*------------夥伴觀點----------*/
ul#InsightsList {
    width: 90%;
    margin: 10vw auto 15vw;
}

.InsCoList span {
    font-size: 4vw;
}

ul#InsightsList li a {
    display: flex;
    flex-direction: column !important;
}

#InsightsList a .PageCover {
    margin: 0 0 2vw !important;
    width: 80%;
    padding-top: 50%;
}

ul#InsightsList li {
    margin-bottom: 10vw;
}

.InsDecBk {
    width: 100%;
}

.InsCoList {
    justify-content: center;
    margin-bottom: 1vw;
}

.InsDecBk h2 {
    font-size: 5vw;
    text-align: center;
    margin-bottom: 2vw;
}

.InsDecTxt {
    font-size: 4vw;
    margin-bottom: 2vw;
}

a .InsRead span {
    font-size: 4vw;
    width: 25%;
}

a .InsRead::before {
    width: 70%;
    margin-right: 5%;
}
	
	
	
}
/*-----首頁kv下方圓球動態-----*/
@keyframes scroll-indicator {
    /* 階段一: 在頂部淡入 */
    0% {
        top: 0;
        opacity: 0;
    }
    10% {
        top: 0;
        opacity: 1;
    }

    /* 階段二: 從頂部滑動到底部 */
    80% {
        /*
         * 最終 top 的位置 = 父層高度 - 自身高度
         * 10vw - 1vw = 9vw
         */
        top: calc(100% - 3vw);
        opacity: 1;
    }

    /* 階段三: 在底部淡出 */
    90% {
        top: calc(100% - 3vw);
        opacity: 0;
    }
    100% {
        /* 保持透明狀態直到下個循環開始 */
        top: calc(100% - 3vw);
        opacity: 0;
    }
}