/* 設定CSS變數 */
:root{    
    --pri01:#FF7800; /*主色1橘*/
	--pri02:#F48F05; /*主色2淺橘*/
    --pri03:#D62B22; /*主色3紅*/
    --pri04:#578E23; /*主色4綠*/
    --pri05:#BBC534; /*主色5淺綠*/
	--gray01:#747474; /*常用灰01*/
	--gray02:#9b9b9b; /*常用灰02*/
	--gray03:#DEDEDE; /*常用灰03*/
	--gray04:#F5F5F5; /*常用灰04*/

	--pd:3rem;     /* 通用距離 */
	--pdh:1.5rem;    /* 通用距離x.5 */
	--pd2:6rem;    /* 通用距離x2 */
	
	--fsXS:1.5rem;    /* 字體大小XS */
	--fsS:1.8rem;   /* 字體大小S */
	--fsP:2rem;   /* 字體大小P */
	--fsM:2.6rem;     /* 字體大小M */
	--fsL:3.2rem;   /* 字體大小L */
	--fsXL:4.8rem;  /* 字體大小XL */
	--fsXL2:6.2rem; /* 字體大小XXL */
	
	--maxW:1440px;  /* 最大內容寬度 */
	
    --gradient01: linear-gradient(0deg, var(--pri01) 0%, var(--pri02) 50%, var(--pri03) 100%); /* 漸層 */
    
}
/* =================== 專案CSS =================== */
html, body{ font-size: 10px;} /* 1rem */
body *, body *::before, body *::after{ background-position: center; background-repeat: no-repeat;}
.pc, .pc640{ display: inline-block;}
.mobile, .mobile640{ display: none!important;}
.container{ display: block; width: 100%; max-width: var(--maxW); margin: 0 auto; padding: 0 3rem;}
.block{ display: block; width: 100%; margin: 0 auto; padding:3rem 2rem; position: relative;}
 
h1,h2,h3,h4,h5,h6{ line-height: 1.2; font-weight: 500;}
h1{font-size: var(--fsXL2); font-weight: 700;}
h2{font-size: var(--fsXL2); font-weight: 700;}
h3{font-size: var(--fsXL); font-weight: 700;}
h4{font-size: var(--fsL); letter-spacing: 3px;}
h5{font-size: var(--fsM);}
h6{font-size: var(--fsP);}
p {font-size: var(--fsS); font-weight: 300; line-height: 1.5;}

h3.title,h3.title b,h4.title, h6.sub{ text-align: center; margin-bottom: 3rem; font-weight: 500; }
h4.title b{font-weight: 500;text-align: center;}
h3.title + h6.sub{ margin-top: -2rem;}

.rwdScroll{display: inline-block; width: 100%; overflow: auto;}

/* 共用元件 */
a.btn{ position: relative; padding: 3px 5px;}
a.btn::after{ content: ''; width: 0; height: 0; border-bottom: 3px solid var(--pri01); position: absolute; bottom: -5px; left: 50%; transform: translateX(-50%); transition: .3s;}
a.btn:hover{ color: #000;}
a.btn:hover::after,
a.btn.focus::after{ width: 100%;}

/* button */
.switch2{ position: absolute; top: 50%; transform: translateY(-50%); left: 0; right: 0; z-index: 3;}/*  top: 50%; transform: translateY(-50%); */
.switch2 a{ position: absolute; top: 50%; transform: translateY(-50%); font-size: var(--fsL); width: 50px; height: 50px; border-radius: 50%; margin: 0 5px; transition: .3s; background: #ffffff4d; backdrop-filter: blur(6.5px);box-shadow: 0 2px 9px #00000040; display: flex; align-items: center;justify-content: center;}/*  top: 0; transform: translateY(-50%) */ 
.switch2 a.UI.prev{ left: -2rem;}
.switch2 a.UI.next{ right: -2rem;}

.index .switch2 a.UI.prev{ left: 1rem;}
.index .switch2 a.UI.next{ right: 1rem; }

.albums{ display: block;position: relative;}
.albums h3{ text-align: center; position: relative; min-height: 60px; margin-bottom: 3rem!important;}
.albums .switch{ display: inline-block; position: absolute; top: 50%; right: 0; transform: translateY(-50%); font-size: 0; z-index: 1;}
.albums .switch a{ width: 40px; height: 40px; margin: 0 5px; background-image: url(../Images/ui/top01.png); background-size: contain; transition: .3s;}
.albums .switch a.prev{ transform: rotate(-90deg);}
.albums .switch a.next{ transform: rotate(90deg);}
.albums .switch a:hover{background-image: url(../Images/ui/top_over01.png);}
.albums a.link-more{ font-size: var(--fsXS); font-weight: 400; color: var(--gray01); transition: .3s; display: block; float: right; margin-top: 1rem;}
.albums a.link-more:hover{ color: #000;}
.albums .list{ width: 100%; padding: 1rem 0; white-space: nowrap; font-size: 0; overflow: hidden; display: inline-block; }/* padding: 1rem 0;  */
.albums .item{ margin: 0 1.5rem; width: calc(100%/8.5 - 1.6rem); display: inline-block; vertical-align: top; position: relative;}/* width: calc(100%/3 - 3rem); */
.albums b.photo,
.albums b.mov{ display: inline-block; border-radius: 20px; overflow: hidden; position: relative;}
.albums b.photo{ width: 100%; padding-top: 100%; background-size: cover;}
.albums b.mov,
.albums b.photo img,
.albums b.mov video{ width: 100%;}
.albums b.mov::before{ content: ''; width: 100%; height: 100%; position: absolute; background-image: url(../Images/ui/play.png); pointer-events: none; opacity: 1; transition: .3s;}
.albums .item:hover b.mov::before{ opacity: 0;}
/*.albums .item:hover i.name{ color: var(--pri01);}*/
.albums i{ font-style: normal; font-size: var(--fsS); font-weight: 500;}
.albums i.name{ display: block; white-space: normal; padding: 1rem; transition: .3s;}
.albums i.time{ display: block; font-size: var(--fsXS); font-weight: 400; padding: 0 1.5rem; transition: .3s; color: var(--gray01);}

.back{ text-align: center; padding-top: 3rem;}
.back a{ font-size: var(--fsXS);font-weight: 300; color: var(--gray01);  transition: .3s; position: relative;  display: inline-block;}
.back a:hover{ color: #000;}
.back a::after{content: '';width: 0%; height: 0; border-bottom: 3px solid var(--pri01); position: absolute; bottom: -5px; left: 50%; transform: translateX(-50%); transition: .3s ;}
.back a:hover::after{width: 100%;}

/* 全站共用 */
h6.table-title{font-size:var(--fsS); font-weight:500; text-align:center; margin:30px auto 0px auto; padding:10px 0; background-color:#000; color:#FFF; letter-spacing:4px; border-radius:0; position:relative;}
h6 .table-title{font-weight: 600; }



.pager{display:flex; width: 100%; text-align: center; padding: 3rem 0 0; align-items: center; justify-content:center; font-family: "Be Vietnam Pro", sans-serif; font-weight: 500;line-height: 1.5;}
.pager a{display:inline-block; margin:0  1.2rem; color:var(--gray02); font-size:var(--fsS);}
.pager a:hover, 
.bodybox .pager a.focus{color:var(--pri01);}

.popupBox.investor{padding: 2rem;}
.popupBox .form .tablebox.i2{ margin: 0px;}
.popupBox .form .tablebox.i2 li{font-size: 16px;padding: 0.9rem 2rem;}
.popupBox .form .tablebox.i2 li:nth-of-type(2) {width: 70%;text-align: left;}
.popupBox .tablebox.i2 ul.head li { border-bottom: solid 0px ; }
.popupBox .form p { font-size: 16px; margin-bottom: 0; padding: 0 2rem 0.9rem 2rem; border-bottom: solid 1px var(--gray03); }
.popupBox .note{ font-size: 16px;padding:0.9rem 2rem 0;font-weight: 300;}
.popupBox .note:nth-child(1){ padding:0 2rem 1rem ;}

.store-list .item { vertical-align: top; display: inline-block; padding: 3rem; width: calc(100%/6); text-align:center;}
.store-list b.photo{display: inline-block; width: 100%; padding-top: 100%; background-size: contain; margin-bottom: 3rem ;transition: .3s; }
.store-list b.photo:hover { transform: scale(1.2);}
.store-list i.name {font-size: var(--fsXS); font-style: normal; letter-spacing: 2px;}
.store-list i.name span {display: block; font-size: var(--fsS); padding-top: 1rem; letter-spacing: 0; }

lightbox{ display: none; position: fixed; width: 100%; height: 100vh; top: 0; left:0; z-index: -1; justify-content: center; align-items: center;}
lightbox b.lightbox-bg{ display: block; position: absolute; width: 100%; height: 100%; top: 0; left: 0; z-index: 0; background-color: rgba(0,0,0,.5); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);}
lightbox .lightbox-window{ display: inline-block; position: relative; width: 90%; min-width: 500px; max-width: var(--maxW); max-height: 90vh; padding: 20px; text-align: center; z-index: 1; pointer-events: none; background-color: #FFF; border-radius: 25px;}
lightbox .lightbox-window .container{ padding: 0; border-radius: 20px; overflow: hidden;}
lightbox a.close{ width: 40px; height: 40px; font-size: 25px; line-height: 40px; border-radius: 50%; color: #333; background-color: #FFF; position: absolute; top: -15px; right: -15px; font-weight: 300; z-index: 10; cursor: pointer; pointer-events: auto; transition: .3s; pointer-events: auto;}
lightbox a.close:hover{ background-color: var(--pri01); color: #FFF;}
lightbox.show{ z-index: 999; display: flex; }

lightbox .lightbox-window .movie{ width: 100%; z-index: 9; pointer-events: auto; position: relative;}
lightbox .lightbox-window .movie::after{ content: ''; display: block; padding-top: 56.25%;}
lightbox .lightbox-window .movie iframe{ position: absolute; width: 100%; height: 100%; top: 0; left: 0;}

lightbox .lightbox-window.vertical-movie{ width: auto;}
lightbox .lightbox-window.vertical-movie .movie{ width: 40%; min-width: 500px;}
lightbox .lightbox-window.vertical-movie .movie::after{padding-top: 177.778%;}


/* header */
header{ display: block; height: calc(56px + 3rem); padding: 1.5rem; position: relative; z-index: 9; margin-bottom: 10rem; font-size: 0; border-bottom:1px solid #CCC;background-color: #fff;} /* -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); */
/*header::after{ content: ''; width: 100%; height: 1px; background-color: #CCC; margin: 2rem 0 1rem; position: absolute; bottom: -1rem; left: 50%; z-index: -1; transform: translateX(-50%);}*/
.index header{margin-bottom: 0; height: auto;}
/*.index header::after{display: none;}*/
header .UI span{ display: inline-block; vertical-align: middle;}
header .UI::before{ margin-right: 5px;}
header .group{ display: inline-block; position: absolute; top:0; left: 0; padding: 1.5rem 1.5rem 1.5rem 3rem; z-index: 5;}
.index header .group{ display: block; width: 100%; text-align: center; padding: 0 0 3rem; background-image: url(../Images/index/header_bg_index.svg); background-position: center -40px; background-size: 1400px auto; position: relative;}
header a.logo{ width: 122px; height: 56px; background-image: url(../Images/ui/logo_eng.png); background-size: contain; background-position: center; display: inline-block; vertical-align: middle;}
.index header a.logo{ width: 179px; height: 69px; transform: none;}
.MobileMenuOn header{-webkit-backdrop-filter: none; backdrop-filter: none;}

header nav{ display: inline-block; font-size: var(--fsP); font-weight: 500; padding: 14px 0; width: 100%; text-align: center; position: relative;}
header nav .container{display: inline-flex; vertical-align: middle; justify-content: space-between; max-width: 1000px; width: 70%; position: relative; padding: 0;}
header nav .extra{ display: inline-block; position: absolute; right: 0; top: 50%; transform: translateY(-50%);}
header nav .extra a{ padding: 0 5px; line-height: 1.3;}
/*.index header nav{ position: relative; margin: 0 auto; padding: 1.5rem 3rem; }*/
.index header nav .container{ justify-content: space-evenly; transform: none;}

/*
header .group .extra{ font-size: var(--fsS); white-space: nowrap; display: inline-block; position: absolute; right: 3rem; top: 50%; transform: translateY(-50%);}
header .group .extra::before{font-size: var(--fsP);}
header .group .extra a{font-size: var(--fsS); font-weight: 400; display: none; vertical-align: middle; padding: 3px 5px;}
header .group .extra .line{display: none;}
header .group .extra a.en,
.index header .group .extra a.ch,
.index header .group .extra .line{ display: inline-block;}

*/
header nav dd{ display: none; width: max-content; position: absolute; left: 50%; transform: translate(-50%, 10px); background-color: rgba(0,0,0,.85); /*-webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);*/ font-size: 0; padding: 1.5rem; border-radius: 10px;}
header nav dd:empty{ display: none!important;}
header nav dd::before{ content: ''; width: 100%; height: 10px; position: absolute; top: -10px; left: 0;}
header nav dd a{ font-size: var(--fsS); font-weight: 400; color: #FFF; display: block; padding: 3px; text-align: center; transition: .3s; position: relative;}
header nav dd a::after{ content: ''; font-size: 0; width: 100%; height: 2px; background-image: url(../Images/ui/gd-line.svg); background-size: 100% auto;}
header nav dd a:last-child::after{ display: none;}
header nav dd a:hover{ display: block; color: var(--pri01);}
header nav dl{ position: relative;text-align: center;}
header nav dl:hover dd{ display: inline-block;}
header nav dt a{ color: #000;}
header nav dt{ position: relative;}
header nav dt::after{ content: ''; width: 0%; height: 0; border-bottom: 3px solid var(--pri01); position: absolute; bottom: -5px; left: 50%; transform: translateX(-50%); transition: .3s;}

/* 多項目次選單 */
/* header nav dd.multi{ width: 640px; text-align: left;}
header nav .i5 dd.multi{  transform: translate(2rem, 10px); right: 0; left: auto;}
header nav dd.multi a{ display: inline-block; width: calc(100% / 3); text-align: left;}
header nav dd.multi a:nth-of-type(3n+1)::after{ content: ''; font-size: 0; width: 300%; height: 2px; background-image: url(../Images/ui/gd-line.svg); background-size: 100% auto;}
header nav dd.multi a:last-child::after{ display: inline-block;} */

header nav dl:hover dt::after,
.bodybox.index header nav .i0 dt::after,
.bodybox.news header nav .i1 dt::after,
.bodybox.investor header nav .i2 dt::after,
.bodybox.licensing header nav .i3 dt::after,
.bodybox.exhibition header nav .i4 dt::after,
.bodybox.agency header nav .i5 dt::after,
.bodybox.brand header nav .i6 dt::after,
.bodybox.sales header nav .extra a.UI.locate.btn::after {width: 100%; max-width: 230px;}

.bodybox.scroll{ padding-top:calc(56px + 3rem + 5rem);}
.bodybox.scroll header{ position: fixed; top: 0; left: 0; width: 100%; background-color: #fff; /*-webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);*/}
.bodybox.scroll header .group{ background-image: none; width: auto; position: absolute; padding: 1.5rem 1.5rem 1.5rem 3rem; }
.bodybox.scroll header .group .extra{ display: none;}
.bodybox.scroll header a.logo{ width: 122px; height: 56px; }
.bodybox.scroll header nav{text-align: right; }
.bodybox.scroll header nav .container{ margin-right: 250px;}
.bodybox.index.scroll header nav .container{margin-right: 190px;}
/*.bodybox.index.scroll header nav{width: calc(100% - 300px);}*/

.index .bodybox header{ margin-bottom: 0;}

/* footer */
.index footer{ padding: 10rem 0 4rem;}
footer{position: relative; padding: 8rem 0 4rem;}
footer .container{position: relative;padding:0 15rem 0 15rem;}
footer::after{ content: ''; width: 100%; height: 100%; background-color: #FFF; border-top: 1px solid #CCC; position: absolute; top: 0; left: 0; z-index: -1;}
.index footer::after{transform: skewY(-5deg); height: 150%; background-color:var(--gray04); border-top: 0px;}
footer .container nav{ display: flex; justify-content:space-between;align-items: stretch;} 
footer .container nav .group { display: flex; flex-direction: column;justify-content: space-between;}
footer .container nav .group dl{ margin-bottom: 0;}
footer .container nav dl { font-size: var(--fsXS);}
footer .container nav dl a{ display: block; color: #000000; font-weight: 300; padding: 5px; margin-bottom: 8px; transition: .3s; }
footer .container nav dt a{ font-size: var(--fsS); color: #000; font-weight: 500; margin-bottom: 20px; }
footer .container nav dl a:hover{ color: #000;}
footer .container nav dd span {cursor: auto; color: #000000; }

footer .social {display: flex;justify-content: space-between;}
footer .social a{ width: 30px; height: 30px; background-size: contain;  margin: 0 8px; display: inline-block;}
footer .social a.fb{ background-image: url(../Images/social/fb01.png);}
footer .social a.ig{ background-image: url(../Images/social/ig01.png);}
footer .social a.yt{ background-image: url(../Images/social/yt01.png);}
footer .social a.tw{ background-image: url(../Images/social/tw01.png);}
/* footer .social a.fb:hover{ background-image: url(../Images/social/fb_over.png);}
footer .social a.ig:hover{ background-image: url(../Images/social/ig_over.png);}
footer .social a.yt:hover{ background-image: url(../Images/social/yt_over.png);}
footer .social a.tw:hover{ background-image: url(../Images/social/tw_over.png);} 
footer .social a.ln:hover{ background-image: url(../Images/social/ln_over.png);} */
footer .bottominfo{ display:flex;justify-content:space-between; margin-top: 50px; padding-top: 50px; align-items: center; border-top: 1px solid #CCC;list-style: none; }
footer .bottom{ font-size: var(--fsXS); font-weight: 500; text-align: left; color: #999; position: relative;}
/* footer .bottom::before{ content: ''; width: 100%; height: 1px; background: linear-gradient(90deg, rgba(200,200,200,0) 0%, rgba(200,200,200,1) 30%, rgba(200,200,200,1) 70%, rgba(200,200,200,0) 100%); margin: 2rem 0 1rem;} */

/* footer a.gotop{ opacity: 0; pointer-events: none; position: fixed; z-index: 8; right: 5rem; bottom: 10vh; width: 43px; height: 43px; background-image: url(../Images/ui/top01.png); background-size: contain; transition: .3s; border-radius: 25%; } 
footer a.gotop:hover{background-image: url(../Images/ui/top_over01.png); background-color: rgba(255,255,255,.8);}
.bodybox.scroll footer a.gotop{ opacity: 1; pointer-events: auto; } */

/* loadingbox */
loadingbox{display: flex; align-items: center; justify-content: center; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; z-index: 1000; background-color: #FFF; }
loadingbox .logo{ width: 8vw; min-width: 150px; height: 200px; background: url(../Images/ui/loading_logo_org.png) no-repeat center; background-size: contain; animation: loadingAni 3s linear 0s infinite normal;}
@keyframes loadingAni{
	0% { transform: scale(1);}
	50% { transform: scale(1.05);}
	100% { transform: scale(1);}
}

/* lightbox */
.lightbox {display: none;position: fixed;top: 0;left: 0;width: 100%;height: 100%;z-index: 1000;}
.lightbox.show {display:block;}
.lightbox-window {position: relative;width: 100%;height: 100%;background:rgba(0, 0, 0, 0.8);display: flex;align-items: center;justify-content: center;}
.lightbox-window .container {position: relative;width: 100%;height: 100%;display: flex;align-items: center;justify-content: center;}
.lightbox .iframe-slider {position: relative;width: 100%;height: 70%;overflow: hidden;display: flex;align-items: center;justify-content: center;}
.lightbox .iframe-item {position: absolute;width: 100%;height: 100%;top: 0;left: 0;transition: transform 0.5s ease;display: flex;align-items: center;justify-content: center;}
.lightbox .lightbox-window .iframe-item.vertical-movie iframe {width: 70vw;height: 39.375vw; /* 16:9 比例 */border-radius: 20px;max-width: 1200px;max-height: 675px; /* 1200 * 0.5625 */}
.lightbox .lightbox-window .iframe-item iframe {height: 56.25vw; /* 直式youtube short 的比例 */max-height:100%;width: 26.5%;background-color:white;border-radius: 20px;}
.lightbox .iframe-item.next {transform: translateX(100%);}
.lightbox .iframe-item.prev {transform: translateX(-100%);}
.lightbox .iframe-item.current {transform: translateX(0);}
.lightbox .UI.close {position: fixed;right: 20px;top: 20px;background: none;border: none;color: #fff;font-size: 30px;cursor: pointer;z-index: 1001;}
.lightbox .UI.prev, .lightbox .UI.next {position: fixed;top: 50%;transform: translateY(-50%);background: rgba(0, 0, 0, 0.3);border: none;color: #000000;font-size: 24px;padding: 15px;cursor: pointer;z-index: 1001;transition: background 0.3s;border-radius: 50%; width: 50px; height: 50px;display: flex; align-items: center;justify-content: center;background:#fff;}
.lightbox .UI.prev {left: 20px;}
.lightbox .UI.next {right: 20px;}


/* 首頁/index */
.index .logo-box .title,
.index h4.title b{ font-size: var(--fsM); font-weight: 700; font-family: "Be Vietnam Pro", sans-serif; }
.index h4.title p{ display: block; font-size: var(--fsP); color: var(--gray01); font-weight: 400; padding: 5px 0;}

.index .block.kv{ padding: 0;}
.index .kv .list{ white-space: nowrap; font-size: 0; position: relative; z-index: 3;}
.index .kv .item{ display: inline-block; width: 100%; position: relative; padding-top: 35.5%;}
.index .kv .item iframe,
.index .kv .item video,
.index .kv .item img{ position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: center;}
.index .kv a.UI,
.index .kv .pager{ position: absolute; z-index: 5;}
.index .kv a.UI{ font-size: var(--fsL); line-height: 1; color: #FFF; top: 50%; transform: translateY(-50%); transition: .3s;}
.index .kv a.UI.prev{ left: 3rem;}
.index .kv a.UI.next{ right: 3rem;}
.index .kv a.UI:hover{ color: var(--pri01);}
.index .kv .pager{ bottom: 3rem; width: 100%; text-align: center; z-index: 4;}
.index .kv .pager a{background-color: #EFEFEF; box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.3); display: inline-block; vertical-align: middle; width: 13px; height: 13px; border-radius: 50%;  margin: 0 5px; transition: .3s;}/* border: 1px solid #999; */
.index .kv .pager a.focus{border-radius: 10px;width: 40px;}
.index .kv .pager a:hover{transform: scale(1.3); border-radius: 10px;}

.index .albums .list{ top:1rem;}

/* 左右白色漸層 */
.movie-box .list,
.news-box,
.brand-box {position: relative;overflow-x: auto;}
.movie-box .list::before,
.news-box .albums .list:before,
.brand-box .albums .list::before{content: "";position: absolute; top: 0; left:0; width: 1.2rem;height: 100%;background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 30%,rgba(255, 255, 255, 0.2) 75%,rgba(255, 255, 255, 0) 100%); z-index: 2;}
.movie-box .list::after,
.news-box .albums .list:after,
.brand-box .albums .list::after{ content: "";position: absolute; top: 0; right:0;width: 1.2rem;height: 100%;background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 30%,rgba(255, 255, 255, 0.2) 75%, rgba(255, 255, 255, 0) 100%);z-index: 2;}

/* top logo */
.index .block.logo-box{ padding: 0; font-size: 0; text-align: center;} 
/* .index .logo-box .title{ width: 200px; padding: var(--pd) 0; font-size: var(--fsL); font-weight: 600; display: inline-block; vertical-align: middle;} */
.index .logo-box .logos{ width: 95%;padding: var(--pd) 0rem ; display: inline-flex; align-items: center; height: 100%; right: 0; }/* width: calc(100% - 200px); padding: var(--pd) 3rem var(--pd) 100px; position: absolute; */
.index .logo-box .logos::after{ content: ''; width: 200%; height: 100%; position: absolute; top: 0; left: 0;background-size: auto 100%; background-position: left center; z-index: 0;} /* background-image: url(../Images/index/logobox_bg.svg);  */
.index .logo-box a.UI{ font-size: var(--fsL); z-index: 5; transition: .3s;}
.index .logo-box a.UI.prev{ left: calc(50px + 3rem);}
.index .logo-box a.UI.next{ right: 3rem;}
.index .logo-box a.UI:hover{ color: var(--pri01);}
.index .logo-box .list{ width: 100%; position: relative; z-index: 3; white-space: nowrap; overflow: hidden;}
.index .logo-box .item{ display: inline-block; vertical-align: middle; width: calc(100% / 14); padding: 0 2.5rem; }
.index .logo-box .item b.photo{ position: relative;display: flex; width: 100%;  height: 60px;align-items: center; justify-content: center; margin: 2rem 0; background-size:contain; }
.index .logo-box .item b.photo span{position: absolute; top: 0; left: 0; opacity: 0; width: 100%; height: 100%; transition: .5s;  background-size: contain;}
.index .logo-box .logos .item:hover b.photo span{opacity: 1;}
/* .index .logo-box .item a img { filter: grayscale(1); transition: .5s; max-height: 60px; max-width: 100%;} 
.index .logo-box .item a:hover img{ filter: grayscale(0);} */
/* .index .logo-box .item b.photo {transition: .5s; max-height: 60px; max-width: 100%;}  */

/* movie-box */
.index .block.movie-box{ padding-top: 0;}
.index .movie-box .albums .item{ margin: 0 .8rem; width: calc(100%/5.5 - 1.6rem); }
.index .movie-box .albums .item:hover b.mov{box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.3);}


.index .block.news-box{ z-index: 3;}
.index .news-box .albums .item{ margin: 0 .8rem; width: calc(100%/8.5 - 1.6rem); box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.1); border-radius: 20px; overflow: hidden; transition: .3s; background-color: #FFF;}
/* .index .news-box .albums .item:hover{box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.3);} */
.index .news-box .albums b.photo{ border-radius: 0; margin-bottom: 1.5rem;}
.index .news-box .albums i.name{ font-size: var(--fsS); font-weight: 500; line-height: 1.5; height: calc(var(--fsS)*5*1.5); display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp:5;  overflow: hidden; text-overflow: ellipsis; padding: 0 1.5rem; position: absolute;}
.index .news-box .albums i.time{ text-align: right; font-size: var(--fsXS); padding: calc(var(--fsS)*5*1.5) 1.5rem 1.5rem; }

/* ----- 反轉效果 ----- */
.index .block.brand-box h4.title { margin-bottom: 0rem; }
.index .brand-box .albums .list{ overflow: auto; }
.index .brand-box .albums a.item{ padding:3rem 0; margin:3rem 0;margin: 0 .8rem; width: calc(100%/8.5rem - 1.6rem); display: inline-block;}
div.ou {width: 100%; aspect-ratio: 285 / 440; -webkit-perspective: 1000px;perspective: 1000px; z-index:9; position:relative; } /*  width:285px;height:440px; */
.ou > .touch2{ width:100%; height:100%; -webkit-transition:0.6s;transition: 0.6s; transform-style: preserve-3d; -webkit-transform-style:preserve-3d;  position: relative; border-radius: 20px; box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2); }
/* .ou > .touch2:hover{ transform: rotateY(180deg); -webkit-transform: rotateY(180deg); } */
.brand-box .albums .list a.item:hover .ou > .touch2{ transform: rotateY(180deg); -webkit-transform: rotateY(180deg); }
.touch2 .positive{ z-index: 2; background-size: contain; width:100%; height:100%; backface-visibility: hidden; -webkit-backface-visibility: hidden;background-repeat:no-repeat; background-position:center center; position:absolute;}
.touch2 .negative{ z-index: 1; background-size: contain; width:100%; height:100%; backface-visibility: hidden; -webkit-backface-visibility: hidden;background-repeat:no-repeat; background-position:center center; position:absolute; filter: blur(20px) brightness(1.4); opacity: 0.10; border-radius: 20px;} 
.brand-box .albums .list a.item:hover .ou > .touch2 .negative { transform: rotateY(180deg); filter: blur(0px) brightness(1); opacity: 1; }

/* .index .block.brand-box::before{ content: ''; width: 100%; height:100rem; background-color:var(--gray04);  position: absolute; top: -3px; left: 0; transform: skewY(5deg); z-index: -1;}
.index .block.brand-box::after{ content: ''; width: 100%; height: 100%; background-color: #FFF; position: absolute; bottom: -90%; left: 0; z-index: -1;} */
/* .index .brand-box .albums .item{ margin: 0 .8rem; width: calc(100%/8.5rem - 1.6rem);}
.index .brand-box .albums b.photo{ padding-top: 166.04%; transition: .5s;background-size:contain;box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.3); }
.index .brand-box .albums b.photo span{position: absolute; top: 0; left: 0; opacity: 0; width: 100%; height: 100%; transition: .5s;background-size:contain;z-index: 10;}
.index .brand-box .albums .item:hover b.photo{box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.3);}
.index .brand-box .albums .item:hover b.photo span{opacity: 1;}
.index .brand-box .albums i.name{ font-size: var(--fsP); text-align: center; font-weight: 600; color: var(--gray01);} */


/* 品牌故事 */
.index .logoTitle {margin-bottom: 5rem;}
.index .logoTitle h4.title {margin-bottom:0;}
.index .about-box img{display: block; width: 100%; max-width: 500px; margin:0 auto; border-radius: 20px;}
.index .about-box .txt-img{width: 100%;display: flex; align-items: center; justify-content: space-evenly; font-size: 0;margin-bottom: 5rem; }
.index .about-box .txt-img ul {width: 100%; padding: 0 5rem ; letter-spacing: 1px; line-height: 1.5;}
.index .about-box .txt-img li { font-size: var(--fsS);}
.index .about-box .container{padding: 0 15rem;}
.index .about-box ul li span.nowrap{ white-space: nowrap;}


/* 企業簡介 */
.index .enterprise{display: flex;flex-wrap: wrap; justify-content: center;}
.index .enterprise ul{ display: inline-block; width: calc(100%/5 - 20px - 20px); padding: 5px; margin:0 20px 50px; vertical-align: top;}
.index .enterprise li{ width: 100%; font-size: var(--fsS); line-height: 1.5; letter-spacing: 1px;text-align: center;}
.index .enterprise li.e1{ padding-bottom: 2rem;}
.index .enterprise li.e2{ font-size: var(--fsP);padding-bottom: 1rem;}
.index .enterprise li.e3{ font-weight: 400;}

.index .enterprise ul:nth-child(1) .e2 {color: #1AC6FF;}
.index .enterprise ul:nth-child(2) .e2 {color: #48CA9F;}
.index .enterprise ul:nth-child(3) .e2 {color: #A8DD38;}
.index .enterprise ul:nth-child(4) .e2 {color: var(--pri01);}
.index .enterprise ul:nth-child(5) .e2 {color: #E66963;}

.enterprise ul {opacity: 0;transform: translateY(30px); transition: opacity 2s ease, transform 2s ease;}
.enterprise ul.show { opacity: 1;transform: translateY(0);}

.enterprise ul:nth-of-type(1) {transition-delay: 0s;}
.enterprise ul:nth-of-type(2) {transition-delay: 0.1s;}
.enterprise ul:nth-of-type(3) {transition-delay: 0.2s;}
.enterprise ul:nth-of-type(4) {transition-delay: 0.3s;}
.enterprise ul:nth-of-type(5) {transition-delay: 0.4s;}

.index .enterprise br.w640{display: none;}

/* 發展歷程 */
.index .block.milestone-box .container{padding : 0 15rem 5rem ;}
.index .block.milestone-box{}
:root{
	--mlineH:100px; /*預設高度由js更新*/
}
.index .mile-list{ display: table; width: 100%; position: relative;}
.index .mile-list > ul{display: table-row;}
.index .mile-list > ul > li{display: table-cell;}
.index .mile-list > ul > li:nth-of-type(1){text-align: right; white-space: nowrap;vertical-align: top;padding: 2rem 0;}
/* .index .mile-list h3{ margin-bottom: 4rem;}
.index .mile-list h3 b{ margin-right: 7rem;} */
.index .mile-list > ul > li:nth-of-type(1) span{ line-height: 1.6; width:calc(100% - 10px); text-align: left; display: inline-block; vertical-align: middle; font-size: var(--fsM); font-weight: 400; padding: 0 3rem 0 3rem;} 
.index .mile-list b.star{ display: inline-block; width: 10px; height: 10px; border-radius: 3px; vertical-align: middle; background-image: url(../Images/index/star.png); }
.index .mile-list ul:nth-of-type(2) b.star::after{content: ''; width: 1px; height: 100% ; /* height: calc(100% - var(--mlineH) - var(--fsXL)); */ position: absolute; border-right: 1px solid #D9D9D9; transform: translateX(-5px); z-index: -1;}
.index .mile-list > ul > li:nth-of-type(2) {padding: 2rem 0;}
.index .mile-list a{ display: block; transition: .3s;}

.index .mile-list a:hover,
.index .mile-list a p:focus,
.index .mile-list > ul > li:nth-of-type(1) span:focus{color:var(--pri01);}

/* .index .mile-list a.item{padding: 1rem 0;} */
.index .mile-list a.item::before{content: ''; display: inline-block; }
.index .mile-list a p{ line-height: 2; display: inline-block; vertical-align: middle; width: calc(100% - 4px - 1.5rem); font-size: var(--fsP); font-weight: 400; font-family: "Be Vietnam Pro", Roboto, Arial, Helvetica, 'Noto Sans TC', 'LiHei Pro', "微軟正黑體", 'Microsoft JhengHei', "新細明體", sans-serif;}

.index .mile-list li img{display: none; height: 190px; border-radius: 20px; margin-top: 1.5rem; margin-right: 1.5rem;}
.index .mile-list li img:last-child{ margin-right: 0;}
.index .mile-list li.on img{display: inline-block;}



/* --------------- 旗下品牌 Brand & 代理品牌 Agency 共用 ---------------*/
.bodybox.brand header,
.bodybox.agency header {margin-bottom: 0;}

.txt-banner{width: 100%; display: flex; align-items: center; justify-content: space-evenly; font-size: 0; margin-bottom: 10rem;}
.txt-banner h5{margin-bottom: 2rem; font-weight: 700;}
.txt-banner ul {width: 50%; font-size: var(--fsS); padding: 0 8rem 0 4rem ; letter-spacing: 1.5px; line-height: 1.5;}
.txt-banner ul b {font-weight: 500; margin-bottom: 1rem; display: inline-block;}

.txt-banner li {margin-bottom: 1rem; font-size: var(--fsXS);}
.txt-banner ul img{display: block; margin: 0 auto 2rem; max-width: 100%;height: auto;}

.txt-banner .mask {margin: 0 auto; overflow:hidden;}
.txt-banner .list {white-space:nowrap;  width: 100%; }
.txt-banner .list img,
.txt-banner .list .item { width: 100%;  height: auto; padding-top: 100%; background-size: contain; display: inline-block; }

.carousel {position: relative; width: 100%; max-width: 700px;}
.carousel .slider a{width: 43px; height: 43px; background-image: url(../Images/ui/top01.png); background-size: contain; transition: .3s; position:absolute;  transform: translateY(-50%); font-size: 0; }
.carousel .slider a.prev{transform: rotate(-90deg); left: 3rem; top: calc(50% - 2rem);}
.carousel .slider a.next{transform: rotate(90deg);  right: 3rem; top: calc(50% - 2rem);}
.carousel .slider a:hover{background-image: url(../Images/ui/top_over01.png);}

.carousel .pager{position: absolute; left: 0 ;bottom: 3rem; width: 100%; text-align: center; }
.carousel .pager a{background-color: #EFEFEF; box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.3); display: inline-block; vertical-align: middle; width: 12px; height: 12px; border-radius: 50%; margin: 0.5rem; transition: .3s;}
.carousel .pager a.focus{ border-radius: 10px; width: 40px;}
.carousel .pager a:hover{transform: scale(1.3); }


.footer-banner { width: 100%; height: 280px; position:relative;  background-image:url(../Images/brand/banner01_pc.jpg);  background-position: right center; background-repeat:no-repeat; background-size:auto 100%;}
.footer-banner a.banner{ width: 100%; height: 280px; background-position: center;} 



/* --------------- 旗下品牌 /Brand series --------------- */
/* .bodybox.brand.default header {margin-bottom: 8rem;} */
.bodybox.brand.default .brand-list h4{padding: 0rem 0 4rem ;}

.brand-list {margin-bottom: 12rem; font-size: 0;}
/* .brand-list::before{ content: '';width: 100%; height: 1px; background: linear-gradient(90deg, rgba(200,200,200,0) 0%, rgba(200,200,200,1) 30%, rgba(200,200,200,1) 70%, rgba(200,200,200,0) 100%);} */
.brand-list h4{text-align: center; padding: 0rem 0 3rem ;}



/* --------------- 代理品牌 /Agency sales --------------- */
/* .bodybox.agency.default header {margin-bottom: 8rem;} */
.bodybox.agency header {margin-bottom: 0;}


/* .agency .txt-banner.detail ul img{width: 230px; } */
.agency .txt-banner h5{padding-bottom: 0;}


.agency-list {margin-bottom: 12rem; font-size: 0;}
/* .agency-list::before{ content: '';width: 100%; height: 1px; background: linear-gradient(90deg, rgba(200,200,200,0) 0%, rgba(200,200,200,1) 30%, rgba(200,200,200,1) 70%, rgba(200,200,200,0) 100%);} */
.agency-list h4{text-align: center; padding: 0rem 0 3rem ;}



/* --------------- 授權經營 /Licensing Agents --------------- */

.bodybox.licensing header {margin-bottom: 0;}
.licensing .txt-banner.detail ul img{width: 230px; }
.licensing .txt-banner h5{padding-bottom: 0;}

.licensing .block{padding: var(--pd1) 0;}
.licensing .news-box .albums{ display: block;margin-bottom: 10rem;}
.licensing .news-box .albums h4 {text-align: center; margin-bottom: 3rem; font-family: "Be Vietnam Pro", sans-serif;}
.licensing .news-box .albums .item{ margin: 0 .8rem 6rem; width: calc(100%/6 - 1.6rem); box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.1); border-radius: 20px; overflow: hidden; transition: .3s; background-color: #FFF;}
.licensing .news-box .albums b.photo{ border-radius: 0; margin-bottom: 1.5rem;}
.licensing .news-box .albums i.name{ font-size: var(--fsS); font-weight: 500; line-height: 1.5; height: calc(var(--fsS)*5*1.5); display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp:5;  overflow: hidden; text-overflow: ellipsis; padding: 0 1.5rem; position: absolute;}
.licensing .news-box .albums i.time{ text-align: right; font-size: var(--fsXS); padding: calc(var(--fsS)*5*1.5) 1.5rem 1.5rem; }

.licensing-list {margin-bottom: 12rem; font-size: 0;}
.licensing-list h4{text-align: center; padding: 0rem 0 3rem ;}



/* --------------- 最新消息 /News & 展覽活動 /Exhibition 共用 - 内頁 deatil --------------- */
.news .mainContent .container{ margin-bottom: 6rem;}

.exhibition .mainContent{ padding: 0 0 13rem;}

.txt-title h4 {text-align: center;  line-height: 1.5; margin-bottom: 3rem; padding: 0 3rem; }
.txt-title p { text-align: center; line-height: 2; margin-bottom: 4rem; padding: 0 3rem;}

.txt-date { font-size: var(--fsS); font-weight: 300; letter-spacing: 1.5px; display: flex;justify-content: space-between; align-items: center; padding-bottom: 4rem; margin-bottom: 3rem; position: relative; }
.txt-date img { padding-right: 1.5rem;}
.txt-content p { font-size: var(--fsS); margin-bottom: 4rem; letter-spacing: 1.5px; line-height: 2.5; }
.txt-date::after {position: absolute; bottom: 0; content: '';width: 100%; height: 1px; border-bottom: 1px solid #CCC;}
.txt-content p::first-letter{font-size: var(--fsL); padding-right: 0.5rem; line-height: 1;}

.detail-banner {position: relative; display:block; width:calc(100% - 6rem); margin:0 auto 4rem; border-top: 1px solid #CCC; padding-top: 6rem;}
.detail-banner .mask { overflow:hidden;border-radius: 20px; background-color: #000;}
.detail-banner .list{ white-space: nowrap; z-index: 3;}
.detail-banner a.photo{ width: 100%; padding-top: 56.25%; background-size:contain; display: block; position: relative; overflow: hidden;cursor: auto;}
.detail-banner a.photo iframe{ position: absolute; width: 100%; height: 100%; top: 0; left: 0;}
.detail-banner2 {margin-bottom: 4rem;}

.detail-banner a.UI{ position: absolute;font-size: var(--fsXL); color: #ffffff; top: 50%;  transform: translateY(-50%); transition: .3s; z-index: 5;}
.detail-banner a.UI.prev{ left: 3rem;}
.detail-banner a.UI.next{ right: 3rem;}
.detail-banner a.UI:hover{ color: var(--pri01);}

.detail-banner img{ width: 100%;margin-bottom: 4rem;} 


/* --------------- 最新消息 /News - 列表 default --------------- */
.news .albums {position: relative;padding: 0 3rem; margin-bottom: 4rem;}
.news .albums h4.title{margin-bottom: 10rem; font-size: var(--fsM); padding: 0 3rem; display: flex;} 
.news .albums h4.title b{text-align: center; margin: 0 auto;font-size: var(--fsL);font-weight: 500;}
.news select{color:var(--pri01);}

.news .rightMenu { position: absolute;right: 0; top: 0; display: flex; align-items: center;padding-right: 4rem;}
.news .rightMenu .searchBox{display: inline-flex; align-items: center; vertical-align: middle; padding-right: 1rem; position: relative;}
.news .rightMenu .searchBox input{ padding-left: 1.5rem; width: 150px; }
.news .rightMenu .searchBox .UI.search{font-size: 25px; position: absolute; color:var(--gray02); transform: translateX(-50%); right: 15px;line-height: 1.3;}

.news .block{padding: var(--pd1) 0;}
.news .albums .list{ width: 100%; white-space: normal; font-size: 0; padding: 0;}

.news .news-box .albums .item{ margin: 0 .8rem 6rem; width: calc(100%/6 - 1.6rem); box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.1); border-radius: 20px; overflow: hidden; transition: .3s; background-color: #FFF;}
.news .news-box .albums b.photo{ border-radius: 0; margin-bottom: 1.5rem;}
.news .news-box .albums i.name{ font-size: var(--fsS); font-weight: 500; line-height: 1.5; height: calc(var(--fsS)*5*1.5); display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp:5;  overflow: hidden; text-overflow: ellipsis; padding: 0 1.5rem; position: absolute;}
.news .news-box .albums i.time{ text-align: right; font-size: var(--fsXS); padding: calc(var(--fsS)*5*1.5) 1.5rem 1.5rem; }



/* --------------- 展覽活動 /Exhibition 列表 default --------------- */
.bodybox.exhibition header {margin-bottom: 0;}
.bodybox.exhibition.detail header {margin-bottom: 5rem; text-align: left; }

.exhibition h4.title {padding-bottom: 3rem;}/* padding-bottom: rem; margin-bottom: 10rem; border-bottom: 1px solid #CCC; */
/* .exhibition h4.title b {margin-bottom: 2rem; display: block; } */
.exhibition h4.title p {}

.exhibition .txt-banner .item { border-bottom: 0px; padding-bottom: 0rem; margin-bottom: 0rem;}
.exhibition .item { display: flex; justify-content: space-between; font-size: 0; padding-bottom: 10rem; margin-bottom: 10rem; border-bottom: 1px solid #CCC; }
.exhibition .item h4 { font-weight: 500; line-height: 1.3; position: relative;}
.exhibition .item.pin h4::before{content: ''; position: absolute; width: var(--fsL); height: calc(var(--fsL)*1.3); background-image: url(../Images/ui/pin.svg); top:0; left: calc(0px - var(--fsL)); background-size: 80%;}

.exhibition .item ul { width: calc(100% - 500px); display: flex; flex-direction: column;justify-content: space-around; font-size: var(--fsS); padding: 2rem 20rem 2rem 4rem ; letter-spacing: 1px; line-height: 1.5;}
.exhibition .item li { font-size: var(--fsS);}
.exhibition .item li span { font-size: var(--fsP); font-family: "Be Vietnam Pro", sans-serif; font-weight: 700; display: block; margin-bottom: 2rem;}

.exhibition .item .photo { width:500px; background-size: cover; display: block; border-radius: 20px;}
.exhibition .item .photo::after{ content:""; display: block; padding-top:75%;}



/*---------------- 幫助 /Help - Qa & 客戶服務 /Service 共用 ----------------*/
/* 共用按鈕 */
a.basis{padding:10px 25px;display:inline-block;background-color:var(--gray04);transition:background-color .5s,color .5s;}
a.basis:hover{background-color:var(--pri01);color:#FFF;}
a.basis.B{font-size: var(--fsL); margin: 0 0.5rem;}
a.basis.M{ font-size: var(--fsP); margin: 0 0.5rem;}
a.basis.S{ font-size: var(--fsS); margin: 0 0.5rem;}

/* 共用左選單 */
.menuL{width:20%; display:inline-block;}
.menuL li{ padding:2.5rem; border-bottom:1px dashed #adadad; font-size: var(--fsP); position:relative;}
.menuL li.focus::after,.menuL li:hover::after{right:-5px;color:var(--pri01);}
.menuL li a{transition:color .3s; }
.menuL li a:hover,
.menuL li.focus a{color:var(--pri01);}
.menuL li a::after{content:"keyboard_arrow_right"; position:absolute;right:0px; font-size: var(--fsM);top: calc(2.5rem + 2px);}
.menuL li a b{ line-height: 1.2; display: inline-block;vertical-align: middle; font-size: var(--fsM); margin-right:0.5rem;}
.menuL li a span { line-height: 1; vertical-align:middle;}

.mainContent.m1 ul.menuL li.l1 a,
.mainContent.m2 ul.menuL li.l2 a,
.mainContent.m3 ul.menuL li.l3 a,
.mainContent.m4 ul.menuL li.l4 a,
.mainContent.m5 ul.menuL li.l5 a,
.mainContent.m6 ul.menuL li.l6 a,
.mainContent.m7 ul.menuL li.l7 a {color:var(--pri01);} 

/* 共用項目 */
.member h6 { margin-bottom:2rem;}
.member .data{width:70%; display:inline-block; text-align:left;} 
.member .flex-content{display:flex; justify-content: space-between;}
/* .member > .input{width:100%;} */

/* 步驟標籤 */
.member .form2 .data ul.tag{width: 100%; display:inline-flex; margin:1rem 0 3rem 0;border-bottom:1px #000 dashed; padding-bottom:3rem; text-align:center; position:relative;}
.member .form2 .data ul.tag li{ width: 100%;display:inline-block;text-align:left;color:var(--gray02); } 
.member .form2 .data ul.tag li b::after{ content:"keyboard_arrow_right"; display: inline-block; font-size:var(--fsL); position:absolute; top:0; transform: translateY(50%); padding-left: 2rem;}
.member .form2 .data ul.tag li:last-child b::after{display:none;} 
.member .form2 .data ul.tag li b{width: 100%;display:inline-block; font-size: var(--fsL); padding:1rem 0; vertical-align: middle;}
.member .form2 .data ul.tag li span{width: 100%; font-size: var(--fsP); font-weight:300;}
.member .form2 .data ul.tag li.focus{color:#000;}

/* 共用table */
.data{}
.data .mainContent{ padding:2.5rem;border:solid 1px #EFEFEF; }
.data .mainContent .detailform{}
.data .mainContent .detailform h6{ margin-bottom: 2rem;}
.data .mainContent .detailform span{color:var(--gray02); display:block;text-align:center; font-size: var(--fsS);font-weight: 300;margin: 0 3px ;}
.data .mainContent .detailform .tablebox{display:table;width:100%;margin-bottom:2rem;}
.data .mainContent .detailform .tablebox ul{display:table-row;}
.data .mainContent .detailform .tablebox ul li{display:table-cell;padding:8px;font-size: var(--fsS); transition:.3s;}
.data .mainContent .detailform .tablebox ul li:nth-of-type(2n+1){width:20%;min-width:180px;}
.data .mainContent .detailform .tablebox ul li p{font-size: var(--fsXS);font-weight: 300; color:var(--gray02);display:inline-block;}
.data .mainContent .detailform .tablebox ul li span{color:#000; display:inline-block;font-weight: 500;}
.data .mainContent .detailform .tablebox ul li:nth-of-type(4){width:30%;}
.data .mainContent .detailform .tablebox ul li input,
.data .mainContent .detailform .tablebox ul li textarea{width:100%; margin: 0.5rem 0;text-align: center;}
.data .mainContent .detailform .tablebox ul li.nes{text-align:center;background-color:var(--gray04);color:#000000;font-size: var(--fsS); font-weight: 300; vertical-align: middle;}
.data .mainContent .detailform .tablebox ul li.nes::before{ content:"*";margin-right: 0.5rem;}
.data .mainContent .detailform .tablebox ul li.guid{text-align:center;}
.data .mainContent .detailform .tablebox ul b.photo{width: 50%; padding-top: 15%; background-size: contain;display:block;}
.data .mainContent .detailform b{font-size: var(--fsP);font-weight: 300;margin: 0.5rem 0;}
.data .mainContent .detailform p{margin: 1rem 0;}



/* --------------- 幫助 /Help - Qa --------------- */
.help .mainContent { width: 100%; max-width:1000px; margin:0 auto;padding-bottom: 5rem;}
.help h4.title { font-size: var(--fsL); margin-bottom: 10rem;}
.contactQue{ text-align:left;width:100%;margin:0 auto;}
.contactQue dt{border-radius: 10px;width:100%;display:block;margin-bottom:1.5rem;padding:9px 15px;font-weight:bold; color:#333;background-color: var(--gray04);border:1px #d8d8d8 solid;position:relative;font-size: var(--fsP);font-weight:400;transition:background-color .5s, color .5s; line-height: 1.5;}
.contactQue dt.selected,
.contactQue dt:hover{color:var(--pri01);}
.contactQue dt b{display:inline-block;color: var(--gray02);transform: rotate(0deg);transition:transform .5s;} 
.contactQue dt b.UI.add{ line-height: 1; position: absolute;right: 15px; top: 50%;transform: translateY(-50%) rotate(0deg);font-size: 0; font-size: var(--fsP);}
.contactQue dd{display:none;}

.contactQue dt.selected b.UI.add {transform: translateY(-50%) rotate(45deg);}
.contactQue dt:hover b,
.contactQue dt.selected b{color:var(--pri01);}

/* 幫助-回答 */
.contactQue dd .cq01 { font-size: var(--fsP);font-weight: 500;color:#000000;margin-bottom:1rem; padding:0 2rem; letter-spacing:0.5px;}
.contactQue dd .cq01 span { font-size: var(--fsS);}
.contactQue dd .cq02 { font-size: var(--fsP);font-weight: 300; line-height: 1.5; color: var(--gray01); margin-bottom:2rem; padding:0 2rem; letter-spacing:0.5px;}

.qa a {  color:#a7a7a7; border-bottom: 1px solid var(--gray03);transition: .3s; } 
.qa a:hover {color: var(--pri01);border-bottom: 1px solid var(--pri01);  } 

/* --------------- 客戶服務 /Service --------------- */
/* 登入會員 Signin*/
.member .mainContent {width: 100%; max-width:1000px; margin:0 auto;}
/* .member h4.title { margin-bottom: 5rem;} */

.member .form1{}
.member .UI.create::before{ margin-right: 5px;}
.member .form1 .UI.mail::before{ margin: 0 5px 4px 0;}
.member .form1 .data .enterBox{padding:3rem; margin-bottom: 3rem; background-color:#fff; border:solid 1px #f0f0f0;display: flex;align-items: center; }
.member .form1 .data .enterBox ul.dataBox{width:70%; display:inline-block; vertical-align:top;}
.member .form1 .data .enterBox ul.dataBox li{font-size: var(--fsP);display: inline-block;}
.member .form1 .data .enterBox ul.dataBox li p{display:inline-block; font-size: var(--fsP);font-weight: 500;vertical-align: middle;}
.member .form1 .data .enterBox ul.dataBox li span{display:block; font-size: var(--fsXS);font-weight: 300; color:var(--gray02);}
.member .form1 .data .enterBox ul.dataBox li input{margin: 1rem ; text-align: center;}
.member .form1 .data .enterBox ul.dataBox.dat li input{width:100%; margin-left:0; margin:1rem 0;}
.member .form1 .data .enterBox ul.btnBox{width:30%;display:inline-block; text-align:center; }
.member .form1 .data .enterBox ul.btnBox li{display:inline-block; font-size: var(--fsXS);}
.member .form1 .data .enterBox ul.btnBox li:nth-child(2),
.member .form1 .data .enterBox ul.btnBox li:nth-child(3){margin-top: 1rem;}
.member .form1 .data .enterBox ul.btnBox li:first-child{display:block;} /* margin-bottom:1rem; */
.member .form1 .data .enterBox ul.btnBox li:first-child a{padding:0.8rem 2.5rem; font-size: var(--fsP); background-color:var(--gray04); transition:color .5s, background-color .5s;}
.member .form1 .data .enterBox ul.btnBox li:first-child a:hover{ color:var(--pri01);}
.member .form1 .data .enterBox ul.btnBox li a{transition:color .5s; font-size: var(--fsXS); }
.member .form1 .data .enterBox ul.btnBox li a:hover{color:var(--pri01);}

.member .form1 .data .notes .word{padding:30px;line-height:30px;font-size: var(--fsXS); font-weight: 300; background-color:var(--gray04); margin-bottom: 5rem;}
.member .form1 .data .enterBox ul.dataBox li span.pwd{ margin-bottom: 2rem;}

/* 加入會員 Join*/
.member .form2{}
.member .form2 .data{margin-bottom: 5rem;}
.member .topBox .data .terms{margin:50px 0 20px 0;padding:20px;border:1px #f0f0f0 solid;height:500px;overflow-y:scroll; font-size: var(--fsXS); font-weight: 300;}
.member .topBox .data .btnBasis{text-align:center;margin-top:4rem;}

.member .form2 .data ul.reply{text-align:center;}
.member .form2 .data ul.reply li{display:inline-block;font-size: var(--fsP); text-align:left;vertical-align:middle;}
.member .form2 .data ul.reply li:first-child{} 
.member .form2 .data ul.reply li:last-child{ color: var(--gray01);text-align: center; display: block;}
.member .form2 .data ul.reply li.mail::before,
.member .form2 .data ul.reply li.smartphone::before{ font-size:150px; color: var(--gray01); margin-bottom: 2rem;}

.member .form2 .data ul.reply li span{ display:block; margin-bottom: 1rem;padding-top: 1rem;}
.member .form2 .data ul.reply li b{display:block;font-size: var(--fsL); margin-bottom: 1rem;color: #000;}
.member .form2 .data ul.reply li input{ text-align: center; margin:1rem 0;border: 1px solid var(--gray02); }

/* 申報維修 Report */
.report h3 span{}
/* .report h4.title {margin-bottom: 10rem;} */
.report .mainContent {width: 100%; max-width:1000px; margin:0 auto;}
.report .topBox {margin-bottom: 3rem;}
.report .data{width:100%;margin:0 auto;text-align:left;}
.report .btnBasis{margin-top:30px;width:100%;text-align:center;}
.report .data .mainContent .detailform .tablebox ul li.guid{text-align:left;}

/* 聯絡我們 Contact */
.bodybox.contact header{ margin-bottom: 0;}
.contact .mainContent {width: 100%; max-width:1000px; margin:0 auto; display: flex; justify-content: center; align-items: center;padding: 15rem 0;}

.contact .connect{ display: block;text-align: center;}
.contact .connect a{font-size: var(--fsS);width: 55%; padding:10px 30px;color:#000000;background-color: #fff; border: solid 1px #CCCDCE; border-radius:10px;margin-bottom: 4rem;}
.contact .connect a.UI.mail::before{font-size: var(--fsP);margin-right: 3rem;transition: .3s;}
.contact a span {vertical-align: middle;transition: .3s;}
.contact p{font-size: var(--fsP);color:var(--pri01); font-weight: 500;text-align: center; letter-spacing:1px;} 

.contact .mainContent::after{content: ""; width: 100%; height: 280px; position:absolute; background-image:url(../Images/sales/map.png);  top: 30px; background-position: right center; background-repeat:no-repeat; background-size:auto 100%; z-index: -1;}
 
.contact a.UI.mail:hover,
.contact a span:hover{color:var(--pri01);} 

/* 聯絡我們 Contact EN */
.contact .connecten .title span{font-size: var(--fsL); font-weight: 500;vertical-align: middle;margin-left: 2rem; letter-spacing: 1px;}

.contact .connecten{ display: block;text-align: center;}
.contact .connecten a{font-size: var(--fsS);width: 55%; padding:10px 30px;color:#000000;background-color: #fff; border: solid 1px #CCCDCE; border-radius:10px;margin-bottom: 4rem;}
.contact .connecten a.UI.mail::before{font-size: var(--fsP);margin-right: 3rem;transition: .3s;}

.contact p.en{letter-spacing:0px;} 
.contact .logoTitle h4.title span {font-size: var(--fsL);font-weight: 400;}



/* --------------- 銷售地圖 /Sales --------------- */
/* 共用 */
.pagebox{ padding-bottom: 10rem; }
.bodybox.sales header{ margin-bottom: 10rem;}

.logoTitle{ display: block;text-align: center;margin-bottom: 10rem;}
.logoTitle h4.title { margin-bottom: 2rem;}
.logoTitle h4.title span{ position: relative;font-size: var(--fsM);font-weight: 700;vertical-align: middle;letter-spacing: 3px;}
.logoTitle b.bklogo{ width:42px; height:45px; height: calc(var(--fsL)*1.3); background-image:url(../Images/sales/bklogo.png);display: inline-block; background-size:contain; vertical-align: middle;position: absolute; left: calc(0px - var(--fsXL2)); }
.logoTitle p{font-weight: 500;}

.investor .logoTitle h4.title span{ font-size: var(--fsL); font-weight: 400;}
.investor .albums h4 { margin-bottom: 3rem; font-size: var(--fsL); font-weight: 400;letter-spacing: 3px;}

.sales .mainContent::after,
.investor .mainContent::after{content: ""; width: 100%; height: 280px; position:absolute; background-image:url(../Images/sales/map.png); right: 0; top: 30px; background-position: right center; background-repeat:no-repeat; background-size:auto 100%; z-index: -1;}

/* 英文 */
.sales.en .logoTitle .title span{ letter-spacing: 0px;}
.sales.en .salesHome .tag .container{display: flex;justify-content: space-around;}
.sales.en .area .item ul { letter-spacing: 0px; width: calc(100% - 500px);display: flex; flex-direction: column; justify-content: space-between;font-size: var(--fsS); padding: 2rem 20rem 2rem 0;}

/* salesHome */
.salesHome .container{max-width: 1280px;}
.sales .logoTitle h4.title span{font-size: var(--fsL); font-weight: 400;}

/* 頁籤 */
.salesHome .tag{text-align:center; border-bottom: 1px solid #CCC; padding:0; display: block; margin-bottom: 6rem;}
.salesHome .tag .container{ display: flex; justify-content: space-between; }
.salesHome .tag a{font-size:var(--fsP); color:#000;transition:.3s;position:relative; line-height: 2.5;}
.salesHome .tag a { position: relative; display: inline-block; padding: 0.5rem;}
.salesHome .tag a:hover {color: var(--pri01);}
.salesHome .tag a::after { content: "";position: absolute; bottom: -1px;left: 50%; width: 0; height: 1px; background-color: var(--pri01); transition: 0.3s ; transform: translateX(-50%);}
.salesHome .tag a:hover::after,
.salesHome .tag a.focus::after { width: 100%;}

/*切換*/
.salesHome .pagebox{ display: none;}
.salesHome.t1 .p1,
.salesHome.t2 .p2,
.salesHome.t3 .p3,
.salesHome.t4 .p4,
.salesHome.t5 .p5,
.salesHome.t6 .p6{ display:block;}
.salesHome.t1 .tag .tag1,
.salesHome.t2 .tag .tag2,
.salesHome.t3 .tag .tag3,
.salesHome.t4 .tag .tag4,
.salesHome.t5 .tag .tag5,
.salesHome.t6 .tag .tag6,
.salesHome .pagebox.m1 .subtag .map1,
.salesHome .pagebox.m2 .subtag .map2,
.salesHome .pagebox.m3 .subtag .map3{ color: var(--pri01);}
.salesHome.t1 .tag .tag1::after,
.salesHome.t2 .tag .tag2::after,
.salesHome.t3 .tag .tag3::after,
.salesHome.t4 .tag .tag4::after,
.salesHome.t5 .tag .tag5::after,
.salesHome.t6 .tag .tag6::after {width: 100%;}


/* 北部 中部 南部 */
.salesHome .subtag{display:block;text-align:center;margin-bottom: 6rem;}
.salesHome .subtag a{padding:0 5rem; font-size:var(--fsP);transition:color .3s;}

.salesHome .subtag a:hover,
.salesHome .subtag a.focus{color:var(--pri01);}

/* 01 直營門市 */
.salesHome .area .item { display: flex; justify-content: space-between; font-size: 0; padding-bottom: 10rem; margin-bottom: 10rem; border-bottom: 1px solid #CCC;}

.salesHome .area ul .title a{font-size: var(--fsL);}
.salesHome .area ul .title a:hover {color: var(--pri01);transition: .3s;}
.salesHome .area .item ul { display: flex; flex-direction: column;justify-content: space-between; font-size: var(--fsS);letter-spacing: 1px; line-height: 1.5;}/* padding: 2rem 20rem 2rem 0; max-width: calc(100% - 500px - 2rem); */
.salesHome .area .item li { font-size: var(--fsP);}

.salesHome .area .item .photo { width:500px; background-size: cover; display: block; border-radius: 20px;}
.salesHome .area .item .photo::after{ content:""; display: block; padding-top:75%;}


/* 02 銷售零售 */
.salesHome .container .text-2cols  {padding: 0 10rem;}
.salesHome .text-2cols .group {display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-between;}
.salesHome .text-2cols {display:block;}
.salesHome .text-2cols ul{width:calc(50% - 1rem); margin:10px 0;}
.salesHome .text-2cols li{ font-size:var(--fsS); padding:5px 0; text-align:left;}

.salesHome .text-2cols ul { margin-bottom: 8rem ; }
.salesHome .text-2cols ul:nth-child(1n) { padding: 0 5rem 0 0;}
.salesHome .text-2cols ul:nth-child(2n) { padding: 0 0 0 5rem;}
.salesHome .text-2cols { display: block; width: 100%; margin-bottom: 10rem;}
.salesHome .text-2cols li span{font-size: var(--fsP);font-weight: 500;}
.salesHome .text-2cols li span:hover{color: var(--pri01);transition: .3s;}

.pagebox .subtag a{color: var(--gray02);}
.pagebox .subtag a:hover{color:var(--pri01);}


/* 03 合作夥伴 */
.partners-list { font-size: 0;}
.partners-list .item {margin-bottom: 0rem; border-bottom: 0px; vertical-align: top; display: inline-block; padding: 3rem; width: calc(100% / 5); text-align: center;}
.salesHome .partners-list a img{ display: inline-block; width: 100%; background-size: cover;cursor: auto;}


/* 04 海外零售 *//* 05 海外經銷 */
.salesHome .tablebox {width: 100%;}
.salesHome .tablebox > ul > li { width: 33.33%; padding: 0 3rem;}
.p4 .tablebox li,
.p5 .tablebox li{ position: relative;}
.p4 .tablebox .sitem,
.p5 .tablebox .sitem{ position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: auto; display: none;}

/* 06 線上通路 */
.salesHome .pagebox.p6 .tablebox > ul > li { width: 20%; padding: 0 3rem;vertical-align: middle;}
.salesHome .pagebox.p6 .tablebox > ul > li:nth-child(1) { width: 40%;}
.salesHome .pagebox.p6 .tablebox > ul > li:nth-child(2) { width: 33.5%;}

.salesHome .pagebox.p6 .tablebox ul li:nth-child(1) { padding: 0 5rem 0 13rem ;}
.salesHome .pagebox.p6 .tablebox ul li.carousel { padding: 0 13rem 0 5rem;width: 29%;}
.salesHome .pagebox.p6 .carousel .pager{ padding:  0 13rem 0 5rem ;}

.salesHome .pagebox.p6 .tablebox .item a { transition: .3s; display: inline-block; vertical-align: top; text-align: center; font-size: var(--fsP); color: #1C2B33;width: calc((100% - 1rem * 2) / 3); margin: 0 2rem 6rem ;}
.salesHome .pagebox.p6 .tablebox .item a:nth-of-type(1n){ margin: 0 1rem 0rem 0;}
.salesHome .pagebox.p6 .tablebox .item a:nth-of-type(3n){ margin: 0 0 0 0;}
/* .salesHome .pagebox.p6 .tablebox .item a:last-child { margin-bottom: 0;} */
.salesHome .pagebox.p6 .tablebox .item a:hover { color:var(--pri01); }
.salesHome .logos .item {padding: 0 2.5rem;font-size: 0;}
.salesHome .pagebox.p6 .tablebox .item.big a { width: calc((100% - 1rem) / 1);}
.salesHome .logos .item.big { padding-bottom: 5rem; margin-bottom: 5rem;border-bottom: 1px solid var(--gray03);color: #000;}
.salesHome .logos .item.big a img { width: 95px; border-radius: 20px; display: block; margin: 0 auto 1.5rem;}
.salesHome .logos .item a img { width: 70px; border-radius: 20px; display: block; margin: 0 auto 2rem;}
.salesHome .logos .item.big a span {font-size: var(--fsP);}
.salesHome .logos .item a span {font-size: var(--fsS);}


/* 切換 */
.pagebox.s1 .sitem.s1,
.pagebox.s2 .sitem.s2,
.pagebox.s3 .sitem.s3,
.pagebox.s4 .sitem.s4,
.pagebox.s5 .sitem.s5,
.pagebox.s6 .sitem.s6{ display: block;}

/* 左選單 */
.salesHome .pagebox .state{ overflow:hidden;text-align: left; vertical-align:top;}
.salesHome .pagebox .state a{font-size:var(--fsP); border-bottom:1px solid #bebebe; display:block; position:relative;transition: .3s; padding: 3rem 0 3rem 3rem;}
.salesHome .pagebox .state a:first-child{ padding-top: 1rem;}
.salesHome .pagebox .state a b{font-size:var(--fsM); font-family: "Be Vietnam Pro", sans-serif;font-weight: 500;}
.salesHome b.UI.add{font-size: 0!important; line-height: 1; position: absolute;right: 15px;top: 50%; transform: translateY(-50%); }
.salesHome b.UI.add::before{font-size: var(--fsP);}
.salesHome .pagebox .state a:hover,
.salesHome .pagebox .state a.focus{color:var(--pri01);}
.salesHome .pagebox .state a:first-child b.UI.add{ top: 2.5rem;}

.salesHome .state a::after { content: "";position: absolute; bottom: 0px;left: 50%; width: 0; height: 0.5px; background-color: var(--pri01); transition: 0.3s ; transform: translateX(-50%);}
.salesHome .state a:hover::after,
.salesHome .state a.focus::after { width: 100%;}

/*切換*/
.salesHome .s1 .state1,
.salesHome .s2 .state2, 
.salesHome .s3 .state3, 
.salesHome .s4 .state4, 
.salesHome .s5 .state5,
.salesHome .s6 .state6{color: var(--pri01);}
.salesHome .s1 .state1 b.UI.add::before,
.salesHome .s2 .state2 b.UI.add::before, 
.salesHome .s3 .state3 b.UI.add::before, 
.salesHome .s4 .state4 b.UI.add::before, 
.salesHome .s5 .state5 b.UI.add::before,
.salesHome .s6 .state6 b.UI.add::before{content: "remove";}
.salesHome .s1 .state1::after,
.salesHome .s2 .state2::after,
.salesHome .s3 .state3::after,
.salesHome .s4 .state4::after,
.salesHome .s5 .state5::after,
.salesHome .s6 .state6::after{width: 100%;}

/* 右選單 */
.salesHome .pagebox .store{overflow-y:scroll; overflow:hidden;}
.salesHome .pagebox .store dl{font-size:var(--fsM); text-align: left;padding:1rem; }
.salesHome .pagebox .store dt{color: #1C2B33; margin-bottom: 2rem; cursor: pointer; transition: .3s;}
.salesHome .pagebox .store .open dt{color: #CCC;}
.salesHome .pagebox .store dt:hover{color:var(--pri01);}
.salesHome .pagebox .store dt.on{color: var(--pri01);}

.salesHome .pagebox .store dd{font-size:var(--fsS); padding-left:2rem; padding-bottom: 2rem; width: 80%;}
.salesHome .pagebox .store dd a{display:block;font-size:var(--fsP);color:#1C2B33; transition: .3s; padding:.8rem 0; display: flex; justify-content: space-between; }
.salesHome .pagebox .store dd a:hover{color:var(--pri01);}

/*切換*/
.salesHome .sitem dl dd{ display: none;}
.salesHome .sitem dl dt.on+dd{ display: block;}

/* 圖片 */
.salesHome .carousel .mask {margin: 0 auto; overflow:hidden; border-radius: 20px;}
.salesHome .carousel .list {white-space:nowrap; width: 100%; }
.salesHome .carousel .list img,
.salesHome .carousel .list .item { width: 100%; height: auto; padding-top:141.43%; background-size: cover; display: inline-block; }

.salesHome .carousel .pager{position: absolute; left: 0 ;bottom: 3rem; width: 100%; text-align: center; }


/*  --------------- 投資人專區 /Investor ---------------  */
/* 共用 */
.investor .mainContent{display: block; width: 100%; max-width:1000px; margin:0 auto;}

.investor .mainContent{ padding: 0 0 5rem 0;}
.investor.default .mainContent,
.investor.w1 .mainContent,
.investor.w2 .mainContent,
.investor.w3 .mainContent,
.investor.w4 .mainContent{ max-width:none;font-size: 0;}

.investor.default .mainContent a{color: #000;}
.investor .mainContent li a.UI{color: var(--gray02);transition: .3s;}
.investor .mainContent li a.UI:hover,
.investor .mainContent li b.UI:hover{ color: var(--pri01);}
.investor .mainContent .albums a.item:hover{ color: #000;}
.investor .mainContent .back a:hover{ color: #000;}


.investor .tablebox a.UI::before,
.investor .tablebox b.UI::before{ font-size: var(--fsM);}
.investor .tablebox a.UI.outward::before{ font-size: var(--fsP);}

.investor .tablebox b.UI.add::before,
.investor .tablebox b.UI.remove::before{ font-size: var(--fsS);}


/* 共用標題 */
.bodybox.investor header{ margin-bottom: 10rem;}

/* investorMenuL */
.information{font-size: 0; display: inline-block;width: calc(100% - 300px);vertical-align: top;}
.investorMenuL {width: 300px; padding-right: 8rem; display: inline-block;vertical-align:top;}

.investorMenuL li { position: relative;}
.investorMenuL a {font-size: var(--fsS); padding: 2rem 0.5rem 2rem 1rem;display: flex; justify-content: space-between;align-items: center;border-bottom: 1px solid var(--gray03);color: #000;transition: .3s;}
.investorMenuL a.back{font-size: var(--fsXS);text-align: center;display: block;padding: 2rem 0.5rem 2rem 0.5rem;border-bottom: 0px solid var(--gray03);margin-top: 1rem;}
.investorMenuL a.back:hover::after,
.investorMenuL a.back.focus::after{ width: 0%;} 

.investorMenuL a::after { content: "";position: absolute; bottom: 0px;left: 50%; width: 0; height: 1px; background-color: var(--pri01); transition: 0.3s ; transform: translateX(-50%);}
.investorMenuL a:hover::after,
.investorMenuL a.focus::after { width: 100%;} 


/* investorMenuL 公司治理 & 利害關係人溝通 */
.investorMenuL .company b{font-weight: 500;}
.investorMenuL a{color:#000;transition: .3s; }
.investorMenuL a:focus,
.investorMenuL a:hover{color: var(--pri01);}

.investorMenuL a{position: relative;}
.investorMenuL a::after { content: "";position: absolute; bottom: 0px;left: 50%; width: 0; height: 0.5px; background-color: var(--pri01); transition: 0.3s ; transform: translateX(-50%);}
.investorMenuL a:hover::after,
.investorMenuL a:focus::after { width: 100%;}

/* 公司治理 */
.investorMenuL.c1 a.c1,
.investorMenuL.c2 a.c2,
.investorMenuL.c3 a.c3,
.investorMenuL.c4 a.c4{color:var(--pri01);}
.investorMenuL.c1 a.c1::after,
.investorMenuL.c2 a.c2::after,
.investorMenuL.c3 a.c3::after,
.investorMenuL.c4 a.c4::after{width: 100%;}
/* .investorMenuL.c1 a.c1 .UI::before,
.investorMenuL.c2 a.c2 .UI::before,
.investorMenuL.c3 a.c3 .UI::before,
.investorMenuL.c4 a.c4 .UI::before {content: "remove";} */

.tablebox.i4 b.UI.remove::before {content: "remove";}

/* 利害關係人溝通 */
/* .investorMenuL a.c5,
.investorMenuL a.c6,
.investorMenuL a.c7 {color:var(--pri01);}
.investorMenuL a.c5 .UI.add::before,
.investorMenuL a.c6 .UI.add::before,
.investorMenuL a.c7 .UI.add::before {content: "remove";}
.investorMenuL a.c5::after,
.investorMenuL a.c6::after,
.investorMenuL a.c7::after {width: 100%;} */


  
/* ------ 投資人專區 / default ------ */
.investor.default .tablebox ul li { width:25%; padding: 0 3rem;vertical-align: middle;}
.investor.default .tablebox.kv{ padding-bottom:6rem;}

.tablebox .company a b{font-size:var(--fsP); font-weight: 500;}
.tablebox .company li{ position: relative;}
.tablebox .company a{ padding: 3rem 0.5rem 3rem 1.4rem;position:relative; display: flex; justify-content: space-between;align-items: center; border-bottom: 1px solid var(--gray03);font-size: var(--fsP);color: #000;transition: .3s;}
.tablebox .company a:hover{ color:var(--pri01);}

.investor.default .company a::after { content: "";position: absolute; bottom: 0px;left: 50%; width: 0; height: 0.5px; background-color: var(--pri01); transition: 0.3s ; transform: translateX(-50%);}
.investor.default .company a:hover::after,
.investor.default .company a.focus::after { width: 100%;}
.investor.default .company a:nth-child(1){ padding-top: 0;}

/* 影片 */
.ytmovie {position: relative;display: inline-block;width: 100%;padding-bottom: 56.25%; overflow: hidden;border-radius: 20px;}
.ytmovie iframe {position: absolute;top: 0;left: 0;width: 100%;height: 100%;}
.investor.default .tablebox.kv li:nth-child(3){ width: 45%; padding: 0 3rem; vertical-align: middle;}

/* 企業新聞 */
.investor .news-box .albums {position: relative;}
.investor .news-box .albums .item{ position: relative; margin: 0 .8rem; width: calc(100%/6.5 - 1.6rem); box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.1); border-radius: 20px; overflow: hidden; transition: .3s; background-color: #FFF;}
.investor .news-box .albums b.photo{ border-radius: 0; margin-bottom: 1.5rem;}
.investor .news-box .albums i.name{ font-size: var(--fsS); font-weight: 500; line-height: 1.5; height: calc(var(--fsS)*5*1.5); display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp:5;  overflow: hidden; text-overflow: ellipsis; padding: 0 1.5rem; position: absolute;}
.investor .news-box .albums i.time{ text-align: right; font-size: var(--fsXS); padding: calc(var(--fsS)*5*1.5) 1.5rem 1.5rem; }



/* ----- 公司資料 company 更新 -----*/ /* ----- 利害關係人溝通 shareholder 更新 ----- */
.investor .tablebox ul li { padding: 2rem; font-size:var(--fsS);}
.investor .tablebox.i2 { font-size:var(--fsS); margin-bottom: 5rem;}
.investor .tablebox.i2 li:nth-child(1){ width:auto;vertical-align: middle; }
.investor .tablebox.i2 li:nth-child(2){ width:65%;font-weight: 300;}

.investor .company-word.i1 {margin: 2rem 0;text-align: center;}
.investor .company-word.i1 h6 {margin-bottom: 0; font-weight: 500;}
.investor .company-word.i1 img{ width: 100%;}

.investor .tablebox.i2 { position: relative; }
.investor .tablebox.i2 a.anchor { position: absolute; transform: translateY(-85px);}
.investor .tablebox.i2 a{color: #000;}
.investor .tablebox.i2 a:hover{color: var(--pri01);}


/* ----- 公司治理 董事會成員 更新 -----  */
.investor .tablebox.i4 {margin-bottom: 2rem; display: block;}
.investor .tablebox.i4 ul{ display: block; width: 100%; font-size: 0;}
.investor .tablebox.i4 ul li{ display: inline-block; vertical-align: top;}
.investor .tablebox.i4 ul.head li{font-weight: 500;}
.investor .tablebox.i4 li{font-size: var(--fsS);font-weight: 300; vertical-align: top;}
.investor .tablebox.i4 li:nth-child(1){width: 200px;}
.investor .tablebox.i4 li:nth-child(2){width: 150px;}
.investor .tablebox.i4 li:nth-child(3){width: calc(100% - 200px - 150px - 150px);}
.investor .tablebox.i4 li:nth-child(4){width: 150px; vertical-align: baseline;}
.investor .tablebox.i4 li span{ display: inline-block;}
.investor .tablebox.i4 li span:nth-child(1)::before{ display:none;}
.investor .tablebox.i4 dl.intro{ display: none;}
.investor.w5 .information .tablebox.i2.last { margin-bottom: 2rem;}

/* 查看更多+ 更新 */
.investor .information .title::before { content: ""; display: none;color: var(--pri01); }
.investor .information .title:hover { color: var(--pri01); }

.investor .information .title{ width:100%; margin-bottom:0rem; font-size:var(--fsM); text-align:left; cursor: pointer;vertical-align: middle;}
.investor .information .title:first-child{  padding: 0 0 2rem 0; }

.investor li.title i{ font-style: normal;vertical-align: middle;}
.investor li.title span{ letter-spacing: 0; }

.investor dl.intro{ z-index: 2; color: #000; padding: 1.5rem 2rem 1.5rem 375px ; border-bottom:solid 1px var(--gray03); background-color: white; width: 100%;} 
.investor dl.intro dt::before { content: "•"; margin-right: 1rem;}
.tablebox dl.intro dt {font-size: var(--fsXS);font-weight: 300;padding: 0.5rem 0; }


/* ----- 公司治理 董事會及各委員會 更新 ----- */
.investor .tablebox.i2 .group {border-bottom: solid 0px; }
.investor .tablebox.i2 .group ul.detail li{border-bottom: solid 1px var(--gray03); }
.investor .tablebox.i2 .group ul.detail li a{ word-break: break-word; overflow-wrap: break-word;}


/* ----- 公司治理 重要内規 更新 ----- */
/* .investor .tablebox.i2a { margin-bottom: 3rem;}
.investor .tablebox.i2a li:nth-child(1){width: 95%;font-weight: 300;}
.investor .tablebox.i2a li:nth-child(2){width: auto;vertical-align: middle;} */


/* ----- 公司治理 董事會決議 更新 ----- */
.investor .tablebox.i1 .group li{ border-bottom:solid 0px; }
.investor .tablebox.i1 .group .detail{ font-size:var(--fsS); font-weight: 300; border-bottom:solid 1px var(--gray03);padding-bottom: 3rem; margin-bottom: 3rem;}
.investor .tablebox.i1 .group .head li{ padding: 2rem;}
.investor .tablebox.i1 .group .detail li{ padding: 0 2rem 2rem; line-height: 1.5;}

.investor .tablebox.i2 .group .head li{ padding: 2rem; border-bottom:solid 0px; font-weight: 500;}
.investor .tablebox.i2 .group .detail{ font-size:var(--fsS); font-weight: 300; }
.investor .tablebox.i2 .group .detail li{ padding: 0 2rem 2rem; line-height: 1.5;}


/* ----- 財務報表 stock 更新 ----- */  /* ----- 公司年報 annual 更新 ----- */ /* ----- 公司治理 重要内規 更新 ----- */
.investor .tablebox { width:100%;} 
.investor .tablebox ul li{ border-bottom:solid 1px var(--gray03); vertical-align: middle;}
.investor.default .tablebox ul li{ border-bottom: none ;}

.investor .tablebox.i3 { margin-bottom: 3rem;}
.investor .tablebox.i3 li:nth-of-type(1){ width: 13%;}
.investor .tablebox.i3 li:nth-of-type(2){ width: 75%;font-weight: 300;}
.investor .tablebox.i3 li:nth-of-type(3){ text-align: center; width: auto;}


/* ----- 重大訊息 major 更新 ----- */
.investor .word p { margin-bottom: 5rem; }
.investor .word p a { font-size: var(--fsS); color: var(--gray01); }
.investor .word p a:hover { color: var(--pri01); }

.investor a.btn::after{ content: ''; width: 0; height: 0; border-bottom: 3px solid var(--pri01); position: absolute; bottom: -5px; left: 50%; transform: translateX(-50%); transition: .3s;}
.investor a.btn.focus::after{ width: 0%;}


/* ----- 永續發展專區 sustainability 更新 ----- */
.investor h6 {text-align: center;font-weight: 300;margin-bottom: 5rem;}



/* ERROR - 錯誤頁 */
.mainContent.errorBox{display:block;position:relative;height:100vh;background-image:url(../Images/error.jpg);background-position:center;background-repeat:no-repeat;background-size:cover;top:30%;}
.mainContent.errorBox .error{position:absolute;width:420px;left:50%;margin-left:-210px;text-align:center;color:#FFF;font-size:25px;top:8%;}
.mainContent.errorBox .error b,
.mainContent.errorBox .error span,
.mainContent.errorBox .error a{display:block;}
.mainContent.errorBox .error .point{font-size:var(--fsXL2);position:absolute;top:120px;width:50px;left:50%;margin-left:-30px;}
.mainContent.errorBox .error b{font-size:120px;font-weight:100;color:#FFF;letter-spacing:10px;font-family:'Roboto', sans-serif;}
.mainContent.errorBox .error span{font-weight:100;letter-spacing:16px;margin-top:15px;}
.mainContent.errorBox .error a{font-weight:300;color:#FFF;border-radius:99px;border:1px #FFF solid;padding:8px 0;letter-spacing:7px;margin-top:23px;background-color:rgba(255,255,255,0);transition:background-color .5s, color .5s,border .5s;}
.mainContent.errorBox .error a:hover{color:var(--pri01);background-color:#fff;}