@charset "utf-8";

@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Noto+Serif+TC:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kings&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap');
.path{display:none;}
/* 開場動畫 */
.bannerindex::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;   
    z-index: 1000;
    animation: fadeOut 1s ease-in-out forwards;
    pointer-events: none;
}

.swiper-wrapper {
    transform: scale(0.8); /* 初始縮小 */
    opacity: 0; /* 初始透明度 */
    animation: scaleIn 1s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes scaleIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
/* 商品下拉超過30個變大 */
.stellarnav.desktop li.bigMenu>ul{display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); left: 0; width: 100%; position: fixed; padding: 20px;}
.stellarnav.desktop li.bigMenu ul ul{top: 100%; left: 0; width: 100%; background: #efefef; height: auto; max-height: 300px; overflow: auto;}
.stellarnav.desktop li.bigMenu ul ul li{margin: 0;} 
.stellarnav.hasBigMenu li.bigMenu li.has-sub > a:after{border-left: 6px solid transparent; border-bottom:unset; border-right: 6px solid transparent; border-top: 6px solid #898989; right: 5px;}
/* 商品下拉超過30個--結束 */


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

.header_area {
    position: fixed;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%,rgba(0,0,0,0) 100%);
    opacity: 0;
    transition: all .3s;
  
}

.main_header_area .container {
    max-width: 100%;
}

.navigation {
    grid-template-columns: 130px 1fr;
}

.nav-header {
    width: 130px;
    height: 130px;
    background: #fff;
    border-radius: 50%;
    padding: 5px;
    transform: translateX(-100%) scale(0.5); /* 初始位置在畫面外並縮小 */
    transition: all .3s;
	animation: 
        bounceIn 1s cubic-bezier(0.5, 0.05, 0.5, 1) forwards,
        bounce 1.5s ease-in-out infinite 1s;
}
/* 初始彈入動畫 */
@keyframes bounceIn {
    0% {
        transform: translateX(-100%) scale(0.5);
        opacity: 0;
    }
    70% {
        transform: translateX(0) scale(1.1);
        opacity: 1;
    }
    100% {
        transform: translateX(0) scale(1);
    }
}

/* 持續彈跳動畫 */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(10deg);
    }
    50% {
        transform: translateY(0) rotate(0deg);
    }
    75% {
        transform: translateY(-10px) rotate(-5deg);
    }
}

/* 滑鼠懸停時暫停動畫 */
.nav-header:hover {
    animation-play-state: paused;
}



/* 搜尋欄位 */
input::placeholder {
    color: rgba(51, 51, 51, 0.5);
}


.box_search input[type=text]:focus {
    color: #333;
}

.tp_links {
    display: none;
} /* header聯絡按鈕--隱藏 */

.me_tp_features {
    padding-right: 25px;height: 0px;
}
.stellarnav > ul > li > a {
	font-family: 'Noto Sans TC', sans-serif;
	font-size: 15px;
	color: #fff;
	letter-spacing: 3px;
	line-height: normal;
	margin-top: 0px;
	margin-right: 0;
	margin-bottom: 0px;
	margin-left: 0;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
}

.stellarnav li.has-sub > a:after {
    display: none;
}

.stellarnav ul ul {
    background: rgb(0 0 0 / 30%);
    backdrop-filter: blur(3px);
}

.stellarnav li li {
    border: 0;
}

.stellarnav li li > a, 
.stellarnav li li.has-sub > a {
    padding: 12px 15px 12px 10px;
}

.stellarnav li li a {
    font-size: 15px;
    color: #fff;
    letter-spacing: 1px;
}

/* 下滑設定 */
.header_area.sticky {
    background-color: #27679f;
    opacity: 1;
    transition: all .3s cubic-bezier(0.68, -0.55, 0.27, 1.55); /* 彈性過渡 */
    height: 100px;
}

.header_area.sticky .nav-header {
    transform: translateX(0) scale(1); /* 滑入畫面並恢復原大小 */
    transition: all .3s cubic-bezier(0.68, -0.55, 0.27, 1.55); /* 彈性過渡 */
}

/* 其他頁面的header設定 */
.header_area:not(.pageIndex .header_area) {
    opacity: 1;
   
}

.nav-header:not(.pageIndex .nav-header) {
    transform: translateX(0) scale(1); /* 直接顯示 */
    transition: all .3s cubic-bezier(0.68, -0.55, 0.27, 1.55); /* 彈性過渡 */
}

.header_area.sticky .nav-header:not(.pageIndex .header_area.sticky .nav-header) {
    animation: none;
}

.me_tp_features a { color: #fff;}

/* hover */
.stellarnav * {
    transition: all .3s;
}
.stellarnav > ul > li > a:hover,
.stellarnav > ul > li:hover > a {
    color: rgb(253 231 58 / 100%);
} /* 主選單一般變色 */
.stellarnav > ul > li.has-sub > a:hover:after,
.stellarnav > ul > li.has-sub:hover > a:after{
    border-top: 6px solid #;
} /* 主選單三角形 */
.stellarnav li li:hover > a, 
.stellarnav li li > a:hover, 
.stellarnav.desktop li.has-sub li a:hover, 
.stellarnav.desktop li.has-sub li:hover > a   {
    color: ;
    background: rgb(255 255 255 / 30%);
} /* 次分類一般變色 */
.stellarnav li li.has-sub > a:hover:after,
.stellarnav li li.has-sub:hover > a:after{
    border-left: 6px solid #;
} /* 次分類三角形 */


@media screen and (max-width: 1024px) {
    .nav-header {
        width: 80px;
        height: 80px;
        padding: 2px;
    }
    .stellarnav > ul > li > a {
        padding: 0 14px;
    }
    .stellarnav > ul > li.has-sub > a {
        padding-right: 0;
    }
	 .nav-header {
        position: absolute;}
	.stellarnav {
    padding-top: 35px;
    }
}



@media screen and (max-width: 768px) {
    .header_area {
        opacity: 1;
    }
    .navigation {
        flex-direction: row;
    }
    .nav-header {
        -webkit-animation: bounce-in-top 1.1s both;
	    animation: bounce-in-top 1.1s both;
    }
    .header_area.sticky .nav-header {
        animation: none;
    }


    /* 漢堡鈕設定--開始 */
    .stellarnav.mobile {
        left: unset;
        right: 0;
    }
    .stellarnav .menu-toggle span.bars span {
        background: #fff;
    }
    .stellarnav .menu-toggle span.bars span:nth-child(1) {
        background: ;
    }
    .stellarnav .menu-toggle span.bars span:nth-child(2) {
        margin: 0 auto 4px 0;
    }
    .stellarnav .menu-toggle span.bars span:nth-child(3) {
        margin: 0 auto 4px 0;
    }
    .stellarnav .menu-toggle:after {
        color: #fff;
    }
    .stellarnav.mobile.left > ul {
        right: 0;
        left: unset;
    }
    .stellarnav.mobile.right .close-menu, 
    .stellarnav.mobile.left .close-menu {
        color: transparent;
        background: transparent;
        padding-top: 20px;
        padding-left: 15px;
    }
    .stellarnav .icon-close {
        display: block;
    }
    .stellarnav .icon-close:before, 
    .stellarnav .icon-close::after {
        width: 25px;
        border-bottom: ;
    }/* 漢堡鈕設定--結束 */


    /* 選單設定--開始 */
    .stellarnav a.dd-toggle .icon-plus:before, 
    .stellarnav a.dd-toggle .icon-plus:after {
        border-bottom: solid 1px ;
    }
    .stellarnav.mobile > ul > li > a {
        color: var(--color1);
    }
    .stellarnav.mobile li li.has-sub a {
        padding: 10px 43px 10px 40px;
    }
    .stellarnav.mobile li li > a {
        color: var(--color1);
        padding: 10px 10px 10px 40px;
    }
    .stellarnav.mobile li.open {
        background: transparent;
        padding: 0;
    }
    .stellarnav.mobile ul ul {
        background: transparent;
    }
    .stellarnav.mobile li.open li.open {
        background: transparent;
        padding: 0;
    }
    .stellarnav.mobile li.open li.open > a {
        background: #D6EBE9;
    }
    .stellarnav.mobile li.open li.open > a.dd-toggle {
        background: transparent;
    }
    .stellarnav.mobile ul ul ul {
        background: transparent;
    }
    /* 選單設定--結束 */

    /* hover--開始 */
    .stellarnav.mobile a.dd-toggle:hover .icon-plus:before, 
    .stellarnav.mobile a.dd-toggle:hover .icon-plus:after {
        color: ;
    }
    .stellarnav li li:hover > a, 
    .stellarnav li li > a:hover, 
    .stellarnav.desktop li.has-sub li a:hover, 
    .stellarnav.desktop li.has-sub li:hover > a {
        color: ;
        background: transparent;
    } /* 次分類一般變色 */ /* hover--結束 */
	.stellarnav {
    padding-top: 0px;
    }
	.header_area.sticky {
     height: 65px;
	 }
	 .nav-header {
        width: 70px;
        height: 70px;
     }
      .header_area {
    padding: 5px;}
}

@media screen and (max-width: 570px) {
    .stellarnav .menu-toggle {
        padding: 10px;
    }
}

@media screen and (max-width: 480px) {
	.box_search {display:none;}
  
}




/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*footer*/
.footer_info {        grid-template-columns: 1fr; padding: 0 30px;}
.footer .center { max-width: 1500px;}
.footer_info ul {    grid-template-columns: 1fr 1fr;}
.box_link {        padding-left: 35px;        max-width: 900px;    }
.footer_info li:nth-child(2) {    padding-bottom: 20px;}
.footer {
    background: 
        /* 半透明斜紋 */
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon fill="%231d5380" opacity="0.15" points="0,100 100,0 100,100"/><polygon fill="%231a4a75" opacity="0.55" points="0,0 0,100 100,0"/></svg>'),
        /* 主漸變 */
        linear-gradient(to bottom, #1d5380, #123456);
    
    background-size: 40px 40px, cover; /* 斜紋尺寸 40x40 */
    padding-top: 70px;
    color: #FFF;
    position: relative;
    overflow: hidden;
}



/* 添加顶部光晕增强层次 */
.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.03), transparent);
    pointer-events: none;
}
.footer_logo {padding-right: 0;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    padding-right: 20px;
	max-width: 210px;
}

.footer_info {
    display: grid;
    grid-template-columns: 370px 1fr 370px;
    gap: 20px 35px;
    padding: 0;
    max-width: 1500px;
    margin: auto;
    padding-bottom: 45px;
}

.footer_info ul {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 30px;
    align-items: baseline;
    width: 100%;
    max-width: 900px;
    margin: 0 0 0 auto;
    padding-top: 20px;
}

.footer_info li p, .footer_info li p a {    color: var(--SubColor02);}
.footer_info li {    padding: 0;}

.footer_info li:nth-child(1) {    padding-left: 20px;}

.footer_info li:nth-child(2) {
    border-right: solid 1px #f0f0f038;
    padding-right: 25px;
    padding-bottom: 12px;
}
.footer_info li:nth-child(2) {    order: -1;}

.footer_menu a,
.footer_info li:nth-child(1)>p,
.footer_info li:nth-child(1) a {
    transition: all 0.3s;
    font-weight: 400;
    font-style: normal;
    text-transform: none;
    font-size: 13px;
    line-height: 26px;
    letter-spacing: 0;
    color: var(--SubColor02);
    padding: 0;
    letter-spacing: 0.1em;
    font-family: var(--SFont);

}

.footer_menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.footer_menu a {
    margin: 0;
    text-align: left;
    padding: 5px;
    border: none;
    background: transparent;
    width: fit-content;
    transition: all 0.3s;
    color: var(--SubColor02);
}

.footer_menu a:hover {
    background: transparent;
    color: var(--SubColor);
}

.footer_info li:before, .box_link:before {
    display: block;
    margin-bottom: 10px;
    width: 100%;
    text-align: left;
    font-weight: 500;
    font-style: normal;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 1px;
    color: var(--SubColor02);
    font-family: var(--SFontEN);
}

.box_link:before {    content: "CONTACT";}
.footer_info li:nth-child(1):before {    content: "INFORMATION";}
.footer_info li:nth-child(2):before {    content: "RELATED LINK";}

.box_link {
    display: flex;
    flex-direction: row;
    max-width: 280px;
    width: 100%;
    justify-content: flex-start;
    padding: 0;
    margin: 0 auto;
    position: relative;
    order: 3;
    padding-top: 20px;
    align-items: flex-start;
    align-content: flex-start;
}

.box_link a {
    border: none;
    width: 45px;
    height: 45px;
    color: var(--SubColor02);
    padding: 11px;
    font-size: 18px;
    position: relative;
    background: transparent;
    transition: all 0.3s;
    overflow: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px 0px 5px 0;
    border-radius: 50%;
    border: 1px var(--SubColor02) solid;
}
.box_link a:hover {
    background: var(--SubColor);
    color: #fff;
    border-color: var(--SubColor);
}

.copy {
    padding: 15px 0;
    color: #ffffff45;
    margin: 0;
    border: none;
}
.copy a {    color: #ffffff45;}






/*大圖/＝＝＝＝＝*/
/*預設解除背景輪播*/
#content_main { margin:0;}
.bannerindex { position:static; height:auto;}
.swiper-banner { position:static; margin:0; height:auto;}
.swiper-slide img { height:auto;}
@media screen and (max-width: 768px) {
.bannerindex { padding:0; margin:0;}
}
/* = = = 球飛 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
.pageIndex .swiper-slide:before {
    content: "";
    background: url(https://pic03.eapple.com.tw/0921894547/football.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    width: 10vw; /* 寬度改為 10vw */
    height: 10vw; /* 高度改為 10vw */
    top: 38%;
    left: -100%;
    z-index: 999;
    pointer-events: none;
    aspect-ratio: 353 / 381;
    animation: bounceAndSpin 3s infinite ease-in-out;
}

/* 殘影效果 */
.pageIndex .swiper-slide:before::after,
.pageIndex .swiper-slide:before::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0;
    filter: blur(100px); /* 加強模糊效果 */
    animation: shadowTrail 3s infinite ease-in-out;
}

/* 第二層殘影 */
.pageIndex .swiper-slide:before::before {
    animation-delay: 0.2s; /* 延遲出現，讓殘影更明顯 */
}

@keyframes bounceAndSpin {
    0% {
        left: -100%;
        top: 38%;
        transform: rotate(0deg) scale(1); /* 初始大小 */
    }
    25% {
        top: 10%;
        transform: rotate(90deg) scale(0.8); /* 稍微縮小 */
    }
    50% {
        left: 60%; /* 停頓點往右移動 */
        top: 55%;
        transform: rotate(180deg) scale(0.5); /* 縮小到 50% */
    }
    60% {
        left: 60%; /* 停在停頓點 */
        top: 55%;
        transform: rotate(540deg) scale(1.2); /* 旋轉一圈並變大 */
    }
    75% {
        top: 10%;
        transform: rotate(720deg) scale(0.8); /* 稍微縮小 */
    }
    100% {
        left: 100%;
        top: 38%;
        transform: rotate(720deg) scale(0.5); /* 縮小到 50% 並飛出畫面 */
    }
}

@keyframes shadowTrail {
    0%, 100% {
        opacity: 0;
        transform: translate(0, 0) scale(1);
    }
    25%, 50%, 60%, 75% {
        opacity: 0.8; /* 殘影透明度更高 */
        transform: translate(-55%, 55%) scale(0.8); /* 殘影偏移和縮放 */
    }
}




/*內頁BANNER 設定*/
.banner h5 {width: 90%;margin: 0 auto;font-size: 1.5vw;color: #fff;text-shadow: 0 0 10px rgba(0, 0, 0, .2);
position: absolute;top: 50%;left: 50%;transform: translate(-50%,-50%);letter-spacing: 3px;}
.banner h5:after {content: "SOAR"; font-size:16px;color:#f3f1ef; }
.banner { background-image: url(https://pic03.eapple.com.tw/0921894547/banner.jpg); background-position: center; width: 100%; background-size: cover;height: 350px;
 background-position: center;
    background-size: cover;
    overflow: hidden;
    background-image: none;
    position: relative;
    z-index: 1;animation: borderGlow 3s ease-out infinite;
	
   }
.banner::before {
    content: "";
    background-image: linear-gradient(180deg, #00000000 40%, rgb(180 180 180 / 31%) 65%), url(https://pic03.eapple.com.tw/0921894547/banner.jpg);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    animation-duration: 5s;
    background-size: cover;
    background-position: center;
    animation: bgScroll 20s linear infinite;
    width: 110%;
    height: 350px;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
	
}
.banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, white 2px, transparent 2px),
        radial-gradient(circle at 80% 70%, white 1px, transparent 1px);
    background-size: 200px 200px;
    animation: sparkle 3s linear infinite;
    opacity: 0.3;
}

@keyframes sparkle {
    0% { background-position: 0 0, 100px 100px; }
    100% { background-position: 200px 200px, 300px 300px; }
}



@keyframes bgScroll {
    0% {        -webkit-transform: translateX(0);        transform: translateX(0);    }
    50% {        -webkit-transform: translateX(-5%);        transform: translateX(-5%);    }
    100% {        -webkit-transform: translateX(0);        transform: translateX(0);    }
}


@media screen and (max-width: 580px) {
.banner h5 {    font-size: 6.5vw;}}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*文章設定*/

/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/

.module_i_news {
	padding-top: 0px;
	padding-right: 20px;
	padding-bottom: 50px;
	padding-left: 20px;
}
.module_i_news section {max-width: 1400px;}
.blog_back a.article_main_header_area_back {    background: #02642F;}
.share_page .edit {    text-align: justify;    line-height: 180%;}
.subbox_item a:before , .subbox_item a:after {    transition: 0.3s;}

.blog_box_edit {    line-height: 180%;    text-align: justify;}
h4.blog_category_title {
    text-align: justify;
    color: #3c4e69;
}
.link a {    width: 100%;    display: block;    padding: 15px 10px;}
.accordion li .link {    padding: 0;}
.blog_page .main_part {
    width: 100%;
    max-width: 60%;
    margin: auto;
    padding: 0px;
}
.clearfix:before, .clearfix:after {
    display: none;
}
.blog_box {
    display: flex;
    flex-wrap: wrap;    padding-top: 60px;
}
.blog_back {
    width: 100%;
}
.blog_le {
    width: 15%;
    padding: 0;
    margin-right: 1%;
}





h5.blog_le_t {
    display: none;
    font-size: 24px;
    font-weight: 500;
    color: #474747;
    font-family: serif;
    letter-spacing: 2px;
    margin-bottom: 80px;
    width: auto;
    font-family: 'Noto Serif TC', 'Zen Maru Gothic', sans-serif, arial;
}
.blog_search {
    width: 100%;
    position: relative;
    margin-bottom: 10px;
    display: flex;
    justify-content: flex-end;
}
.blog_search form{
    width: 100%;
    position: relative;
}
.blog_le .accordion {
    list-style-type: none;
    margin: auto;
    border-radius: 0;
    border: none;
    overflow: visible;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    margin: 0px 0 16px 0;;
    border: 1px #231f2031 solid;
}
.blog_le .accordion li{
    width: 100%;
}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {
    background: #2667A4 !important;
}
.submenu li.on_this_category a, .submenu a:hover {
    background: #3838389c;
    color: #FFF;
}


.accordion li .link a {
    font-size: 16px;
    color: #231f20;
    font-weight: 400;
    padding: 15px 20px;
    transition: all 0.3s;
}
.blog_le .accordion > li:hover .link a, .blog_le .accordion > li.on_this_category .link a {
    color: #fff !important;
    transition: all 0.3s;
}
.accordion li::before{
}
.accordion li:hover:before,.blog_le .accordion > li.on_this_category::before {
    width: 95%;
    transition: all 0.5s;
}
.blog_search input[type=search] {
    outline: none;
    box-sizing: border-box;
    width: 100%;
    font-size: 14px;
    color: #999;
    border: 0;
    border-radius: 0;
    border-bottom: 1px #565656 solid;
    padding: 10px 35px 10px 10px;
    background: transparent;
}
.blog_search input[type=submit] {
    outline: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 999;
    width: 38px;
    height: 38px;
    background: url(../images/search-icon.png) no-repeat 9px center transparent;
    border: none;
    transform: scaleX(-1);
}
.blog_search input[type="submit"]:hover {
    background: url(../images/search-icon.png) no-repeat 9px center transparent;
    border: none;
    color: #fff;
    transition: all 0.3s;
}
.blog_search input[type=search]:focus {
    color: #ccc;
}


/*文章分享變1排3個*/
.blog_page .main_part {max-width: 90%;padding:0px ;}
.blog_list_le , .blog_list_ri {    width: 100%;}
.blog_subbox {display: flex;flex-wrap: wrap;justify-content: flex-start;grid-gap: 0;}
.subbox_item {}
@media screen and (max-width: 1024px) {.subbox_item {    width: 50%;}}
@media screen and (max-width: 600px) {
	.subbox_item {    width: 100%;}
	.blog_box { padding-top: 25px;}

}


/* 內容 */
.blog_ri {
  width: 84%;
}
.subbox_item {
  position: relative;
  border-bottom: 0.3px #231f2031 solid;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: calc(99% / 3);
  padding: 0.2%;
  margin: 0.1%;

}

.subbox_item::before {
  content: "";
  display: inline-block;
  width: 0%;
  background-color: #474747;
  height: 2px;
  vertical-align: middle;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 1;
  transition: all 0.3s;
}
.subbox_item:hover:before {
    width: 100%;
    transition: all 0.3s;
}

.subbox_item a:before {
  right: auto;
    opacity: 1;
  font-size: 152x;
}
.subbox_item a:after {
  content: '';
  display: none;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  background: #00000028;
  opacity: 0;
  border: 1px #ddd solid;
  transition: all .5s;
}
.subbox_item a {
  display: flex;
  flex-direction: column;
  min-height: 630px;
}

.blog_list_ri h5 {
  font-weight: 500;
  font-size: 20px;
  color: #474747;
  font-family: 'Noto Serif SC', 'Noto Serif TC';
}
.blog_list_ri em {
    color: #1a1a1a;
}
.blog_list_ri p {
    color: #1a1a1a;  -webkit-line-clamp: 2;
}

.subbox_item a:before {
    color: #1a1a1a;
}
.blog_back a.article_btn_back {
    background:#2667A4;
}
.blog_back a.article_btn_next,.blog_back a.article_btn_prev {
    background: #cbc9b7;
}

.blog_list_le img:hover {
    border-radius: 55px;
}

.blog_category_title,
.blog_list_ri h5
 {
    font-weight: 500;
    color: #958A7A;
    display: -webkit-box;
    -webkit-line-clamp: inherit;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    font-family: 'Noto Serif TC', serif;
    font-size: 18px;
    color: #4f858f;
    letter-spacing: 1px;
    margin-top: 15px;
    line-height: 1.5;
    vertical-align: bottom;
    -webkit-line-clamp: 1;

}
h4.blog_category_title,
.news_related h6 span:before {
    font-weight: 600;
    line-height: 1.8;
    color: #4a6764;
    font-size: 22px;
    letter-spacing: 0.1em;
    padding-bottom: 20px;
    font-family: var(--fm);
    display: block;
    padding: 0;
    margin: 0;
	 font-family: 'Noto Serif TC', serif;
}


.blog_box_edit * {
    color: #958A7A;
    display: -webkit-box;
    -webkit-line-clamp: inherit;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    font-family: 'Noto Serif TC', serif;
    font-size: 16px;
    color: #444;
    letter-spacing: 1px;
    line-height: 2;
    vertical-align: bottom;
    font-size: var(--f15);
}

.blog_box_edit h3 {
    font-weight: 600;
    color: #958A7A;
}

.blog_box_edit a {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.blog_list_ri h5 {
    margin-top: 0;
}

@media screen and (max-width: 1440px) {
    .subbox_item a {
        min-height: 415px;
    }
}





@media screen and (max-width: 768px) {
	  .subbox_item a {
        min-height: 485px;
    }
  .blog_search form{
    width: 100%;
    position: relative;
}
  .subbox_item {
   width: calc(99% /2);
}

.blog_le {
  width: 90%;
        margin: 0 auto;}
.blog_ri {width: 90%;}
}



@media screen and (max-width: 500px) {
  .products-list .item {
    width: calc(100% / 1);
  }
  .main_part {
    max-width: 90%;   padding: 15px 10px 50px;
}
.products-list .item a {
  padding: 10%;
}
 .subbox_item {
   width: calc(100% /1);
}
  .subbox_item a {
        min-height: 485px;
    }
}

@media screen and (max-width:375px) {
	  .subbox_item a {
        min-height:455px;
    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */





@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
.footer.with_shopping_mode { padding:30px 0 30px; }
#to_top { bottom:60px;}
}

@media screen and (max-width: 600px) { 
}

.linksBtn {background-color: #2E76BC;}

.linksBtn a {background-color: #6ccfda;}
.contact_page .main_part {
    width: 100%;
    max-width: 100%;
    margin: auto;
    padding: 0;
}

.blank_letter {
    font-family: "Noto Sans";
    font-weight: 500;
    padding-top: 0;
    font-size: 24px;
    padding: 30px 0;
    color: #474747;
    background-position: left bottom;
    background-repeat: no-repeat;
    border-bottom: 1px #474747 solid;
}
.list_before.info li {
    padding-left: 32px;
    color: #474747;
}
.contact_form li .form__label {
    color: #474747;
    width: 130px;
    margin-left: -140px;
}
.contact_le_map a {
    background: #474747;
    color: #fff;
}
.contact_form li.last cite {
    background: #474747;
    color: #fff;
    width: 220px;
}
.contact_form li.last input[type="submit"] {
    color: #fff;
}

.contact_content .information_left {
    width: 100%;
    margin-bottom: 50px;
}
.contact_content .information_right {
    width: 100%;
    padding-left: 0px;
}

.contact_le_nomap {
    transition: all .5s;
}
.contact_le_nomap:hover {
    filter: grayscale(0);
    transition: all .5s;
}


.contact_form li input.noborder {
    border: none;
    background: #0000000a;
    color: #474747;
    transition: all 0.3s;
}
.contact_form li {
    margin-bottom: 0px;
    border-bottom: 1px solid #4747473d;
    padding: 10px 0;
    padding-left: 130px;
}
/* .contact_form li:nth-child(9) .form__label{
    width: 130px;
    margin-left: -100px;
}
.contact_form li:nth-child(9){
} */
.contact_form li textarea.noborder {
    background: transparent;
    border: 1px #474747 solid;
    color: #474747;
    transition: all 0.3s;
}
.contact_content form {
    display: flex;
    flex-direction: column-reverse;
    flex-wrap: nowrap;
}

.form__insert input{
    margin: 0 10px;
    color: #474747;
}
.contact_form li.last blockquote {
    display: inline-block;
    vertical-align: top;
    font-style: normal;
    padding: 7px;
    text-align: center;
    border: 1px #474747 solid;
    width: 150px;
}

.contact_content {
    margin: auto;
    padding: 0px 10px;
    max-width: 1200px;
}

.contact_editbox {
    padding: 0;
}

@media screen and (max-width:1024px) {
	 .contact_content {
      padding: 7%;
}
}

@media screen and (max-width: 768px) {
    .contact_form li.last cite {
        width: 160px;
    }
  
}
@media screen and (max-width: 600px) {
.contact_form li .form__label {
     margin-left:0px;width: 100%;
}
.contact_form li {
     padding-left: 0px;
}
.form__insert input {
    margin: 0px;
}
}

.show-list {
   width: 100%;
   margin: 0px auto;
   column-count:3;
   /*欄數*/
   display: block;
   column-gap: 10px;
   /*每欄間隔*/
}

.show-list .item {
     padding: 5px;
        box-sizing: border-box;
        margin: 0 auto 5px;
        break-inside: avoid;
        /*定義頁面、列或是區域發生中斷時的元素表現方式。 auto->元素中斷、acoid->元素不中斷*/
   }
   
.show-list .show_pic  {
        width: 100%;
        object-fit: cover;
        object-position: 50% 50%;
		aspect-ratio: auto;
  }



@media (max-width:1024px) {
/*footer*/
.footer_info {        grid-template-columns: 1fr; padding: 0 30px;}
.footer_logo {
    padding-right: 0;
    text-align: center;
}
.footer_info ul {    grid-template-columns: 1fr 1fr;}
.box_link {        padding-left: 35px;        max-width: 900px;    }
.footer_info li:nth-child(2) {    padding-bottom: 20px;}
}


@media screen and (max-width: 768px) {
 
/* 開啟手機板下方按鈕所需設定 */
#bottom_menu {            /* display: block; */        }
.footer.with_shopping_mode {            padding: 30px 0 70px;        }
#to_top {            bottom: 60px;        }
#bottom_menu li:first-child:nth-last-child(2), #bottom_menu li:first-child:nth-last-child(2) ~ li {width: 33.33%;            display: block;            float: left;        }
.box_link {            padding-left: 0;        }
.footer_logo {            max-width: 140px;            padding-top: 30px;        }
.show-list {column-count:2;  /*欄數*/}

}

@media (max-width:600px) {

.footer_info ul {   grid-template-columns: 1fr;        gap: 5px;    }
.footer_logo {  max-width: 110px;   }
.footer_info li:nth-child(1) {            padding-left: 0;        }
.footer_info li:nth-child(2) {        order: 2;        padding-bottom: 0;        border-right: none;    }
.footer_menu {        grid-template-columns: 1fr 1fr 1fr;    }
.box_link {        padding-top: 0;    }
.show-list {column-count:1;  /*欄數*/}
}



/*購物車首頁*/

/*首頁只顯示8則*/
.prod_part .products-list .item:nth-of-type(n+9) {
	display:none;
}

.module_i_news .title_i_box h4 {
    font-size: 15px;
    font-weight: bold;
    color: #205B91;
    font-family: "微軟正黑體C", sans-serif;
	 font-family: "Archivo Black", serif;
}
.module_i_news .title_i_box h6 { color: #205B91;font-size: 45px;}



/*購物車列表*/
.products-list {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.products-list .item a {
    padding-bottom: 50px;
}
.products-list .price {
    display: none;
}
.products-list .more {
    
    background: #2E76BC;
	color: #FFF;
}

.products-list .item a:hover .more {

    background:  #791e13;
}

.products-list .pic img, .related_list li figure img {
    transition: .5s;
    transform: scale(1);
}

.products-list a:hover .pic img, .related_list li:hover figure img {
    transform: scale(1.05);
}

.products-list .pic::before, .related_list li figure::before {
    content: "+";
    font-size: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35px;
    height: 35px;
    z-index: 999;
    text-align: center;
    line-height: 1.2;
	letter-spacing: 0px;
    border-radius: 50%;
    color: #FFFFFF;
    border: 2px #FFFFFF solid;
    opacity: 0;
    transition: .5s;
}

.products-list .pic::after, .related_list li figure::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: .5s;
}

.products-list a:hover .pic::before, .products-list a:hover .pic::after, .related_list li:hover figure::before, .related_list li:hover figure::after  {
    opacity: 1;
}








/*購物車詳細*/

.sidebarBtn {
    border: unset;
}

.inquiry_a1, .inquiry_a2, .inquiry_a3, .lastPage {
    background: #791e13;
	transition: all .5s;
}

.inquiry_a1:hover, .inquiry_a2:hover, .inquiry_a3:hover, .lastPage:hover {
    background: #465169;
}





.prod_related {
    background: unset;
}

.related_list li figure {
    position: relative;
}

.related_list li a p {
    margin-top: 15px;
	text-align: left;
}







/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2023.1.5  */
.product_page .main_part { max-width:1500px;}
/* .product_info_page .main_part { max-width:1200px;} */

.product_page .show_content,
.product_info_page .show_content { width: 100%; display: flex; justify-content: space-between; flex-wrap: wrap; align-items: flex-start; align-content: flex-start;}
.product_page .product_menu_list { position: relative; width: 220px; letter-spacing: 1px; /*border-right: 1px solid #ccc;*/min-height: 30vw;}
.product_page .products-list,
.product-wrapper { width: calc(100% - 270px);}
ul.page { width: 100%;}


.product-layer-two li a {
    line-height: 200%;
	background: unset;
	color: #222;
	border: unset;
	transition:.5s;
}

.product-layer-two li i {
    top: 5px;
	color: #222;
	transition:.5s;
}
.product-layer-two li > a, .product-layer-two li.active > a {
	border: unset;
}
.product-layer-two li:hover > a, .product-layer-two li.active > a {
    color: #FFF;
    background:#2E76BC;
    padding-left: 25px;
}

.product-layer-two li:hover i, .product-layer-two li.active i {
	color: #FFF;
}


.product-layer-two li ul { position:static; /*display:block !important;*/ width:100%; margin-left:0;}
.product-layer-two li:hover ul { border: none !important; /*display:block !important;*/}
.product-layer-two li li { display: block; padding:0; transition:all ease .3s;}
.product-layer-two li li a{ padding:5px 10px;}
.product-layer-two li li:hover > a { background:#fff; color:#1e8a46;}
.product-layer-two > li { width:100%; max-width:100%; padding:0; text-align:left; border-bottom:1px dotted #ccc; }
.product-layer-two > li ul > li { margin-top:5px;}

.product_info_page .product-layer-two { display: none;}
.product_info_page .products-list,
.product-wrapper { width: 100%;}

.product-layer-two li li > a:before { content: ""; position: absolute; width: 8px; height: 8px; background: transparent; left: 10px; margin-left: 0px; top: 50%; margin-top: -4px; clip-path: polygon(0 0, 100% 50% , 0 100%);transition:.5s;}
.product-layer-two li li:hover > a:before { background:#1e8a46;}

.product_info_page .half_box { width: 100%; float: none; padding-right: 0;}
.product_info_page .half_box li.btn_blankTop { margin-top: 50px; justify-content: space-between; display: flex;}
.product_info_page .half_box li.btn_blankTop input { width: calc(50% - 10px); background-image: none; padding: 0; text-align: center;}


.product_info_page .edit {
    margin: auto;
    padding: 20px 0;
    font-size: 16px;
    line-height: 33px;
}
@media screen and (max-width: 1200px) {
	.related_list {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        grid-gap: 10px;
    }
}
@media screen and (max-width: 980px) {
}
@media screen and (max-width: 768px) {
.product_menu_list,
.products-list,
.product-wrapper { width: 100%;}
.product-layer-two { margin-right: 0; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); /*grid-gap: 5px;*/}
.product_page .product-layer-two,
.product_page .products-list { width: 100%; border-right: none;}
.product_page .product_menu_list>h5{display: block;font-size: 20px;}

.product_page .show_content > a { order: 1;}
.product_page ul.products-list { order: 2;}
.product_page ul.page { order: 3;}
.product_page .product_menu_list {width: 100%; order: 0; min-height: unset;}
}
@media screen and (max-width: 600px) {
	/*手機版購物車-首頁、列表頁、相關產品排列統一*/
	.pageIndex .products-list, .products-list, .related_list {
		grid-template-columns: 1fr;
		grid-gap: 20px;
		max-width: 500px;
		margin: auto;
	}
            
}


.info_fix_links {
    display: flex !important;}
.info_fix>span {display:none;}

.car_page .information_left {
    display: block;
}
.animated-arrow {
    background: #22547e;}
	
	
.info_fix_links {
    display: flex !important;
    width: 70px;
    z-index: 999;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: flex-start;
    padding-bottom: 20px;
}

.info_fix_links a {
    display: flex;
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 50px;
    transition: all .3s ease;
    background: rgb(53 120 185);
    margin-bottom: 5px;
    color: #FFFFFF;
    font-size: 1.6em;
    justify-content: center;
    align-items: center;
    align-content: center;
    line-height: 1;
    position: relative;
}

/* 足球主題滑過效果 */
.info_fix_links a:hover {
    background: rgba(0, 100, 0, 0.7);
    transform: translateY(-5px) translateX(5px); /* 同時向上和向右 */
    box-shadow: 0 5px 15px rgba(0, 80, 0, 0.4);
    animation: swing 0.5s ease-in-out infinite alternate; /* 添加搖擺動畫 */
}

@keyframes swing {
    0% { transform: translateY(-5px) translateX(-5px); }
    100% { transform: translateY(-5px) translateX(5px); }
}

/* 可選：添加足球圖案或圖標效果 */
.info_fix_links a:hover::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="white" d="M512 256c0 141.4-114.6 256-256 256S0 397.4 0 256S114.6 0 256 0S512 114.6 512 256zM243.4 95.9c-3.6 9.7-12.1 16.3-22.4 16.3H192v32h32c17.7 0 32 14.3 32 32v16c0 8.8-7.2 16-16 16H144c-8.8 0-16-7.2-16-16V176c0-61.9 50.1-112 112-112h32c8.8 0 16 7.2 16 16v15.9zM368 176v16c0 8.8-7.2 16-16 16H304c-8.8 0-16-7.2-16-16V176c0-17.7 14.3-32 32-32h32V112H291c-10.3 0-18.8-6.6-22.4-16.3V80c0-8.8 7.2-16 16-16h32c61.9 0 112 50.1 112 112v16z"/></svg>');
    background-size: contain;
    opacity: 0.8;
    bottom: -5px;
    right: -5px;
}

.info_fix_links a:nth-child(5){ display:none; } 
.shop_search_btn {background: #3578b9;}