@charset "utf-8";

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

.header_area {
	position: fixed;
    padding: 10px 10px 5px;
	background: #0000003d;
    box-shadow: 0 5px 50px #000000e3;
	transition: all 1s ease-out;
}
.header_area.sticky, .pageIndex .header_area {
    background: #fffffff2;
    box-shadow: 0 0 30px #000000a6;
}
.navigation { grid-template-columns: 380px 1fr;}
.tp_links { padding: 0 10px; display: none;}


/*電腦LOGO*/
.nav-header, .nav-brand { width: 100%; max-width: unset;}
.nav-brand { text-align: center; padding: 0 35px; max-width: 380px;}
.nav-brand img { filter: brightness(1.25);}
.header_area.sticky .nav-brand img, .pageIndex .nav-brand img { filter: brightness(1);}

/*手機LOGO
.nav-brand-m {}
*/

@media screen and (max-width: 1024px) {
.pageIndex .header_area { position: sticky;}
.header_area { padding: 10px 10px 0;}
}
@media screen and (max-width: 768px) {
.header_area { padding: 0;}
.nav-brand { padding: 8px 0 2px; max-width: 280px;}
}
@media only screen and (max-width: 400px) {
.nav-brand { padding: 8px 0 2px 40px; max-width: unset; width: 85%;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*按鈕字體設定*/
.stellarnav ul { margin-top: 5px;}
.stellarnav li { padding: 0 .5vw;}
.stellarnav > ul > li > a {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: .03em;
    line-height: 35px;
    height: 30px;
	color: #fff;
}
.header_area.sticky .stellarnav > ul > li > a, 
.pageIndex .stellarnav > ul > li > a, 
.stellarnav.mobile > ul > li > a {
    color: #111;
}
.stellarnav > ul > li > a:hover {
    transform: translateY(-1px) scale(1.1);
    color: #39b5ff;
    font-weight: 600;
    margin: 13px 5px 0;
    line-height: 25px;
    border-bottom: 2px solid #aedfe7;
}
.header_area.sticky .stellarnav > ul > li > a:hover, 
.pageIndex .stellarnav > ul > li > a:hover {
    color: #2A6FA9;
}
.stellarnav li.has-sub > a:after { top: 60%;}

.stellarnav ul ul { margin: 0;}
.stellarnav.desktop li.has-sub li a, 
.stellarnav li li a {
    color: #111;
	font-size: 14px;
    line-height: 34px;
    margin: 0;
	height: auto;
    line-height: 20px;
    padding: 6px 10px;
}
.tp_links { display: none;}

@media screen and (max-width: 1024px) {
.stellarnav ul { margin: 0; height: 41px;}
.stellarnav > ul > li > a:hover { margin: 6px 5px -6px; line-height: 25px;}
}
@media screen and (max-width: 768px) {
.stellarnav.mobile.left > ul { height: auto;}
.stellarnav.mobile > ul > li > a { padding: 10px 43px 10px 15px;}
.stellarnav > ul > li > a:hover { 
	transform: translateX(9px) translateY(0) scale(1.1); 
	margin: 0 5px; border-bottom-color: #fff0; line-height: 21.5px;}
}
@media only screen and (max-width: 570px) {
.stellarnav .menu-toggle { padding: 10px;}
}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*footer設定*/
.footer {
    padding: 50px 0 0;
    background: #1b4569;
}
.footer .center {
    max-width: 1200px;
}
.footer_info {
    grid-template-columns: 450px 1fr;
	grid-gap: 0;
	padding-right: 50px;
}
.footer_logo {
    margin: 0 40px;
    max-width: 300px;
    filter: brightness(10);
}
.footer_logo a:hover img {
    filter: brightness(.13);
}
.footer_info li {
    padding: 0;
}
.footer_info li p, .footer_info li p a {
    letter-spacing: 2px;
    color: #fff;
}
.footer_info li p a:hover {
    color: #7dcddb;
}

/*聯絡資訊重新排序*/
.footer_info li:nth-child(1) {
    display: flex;
    flex-direction: column;
    padding: 12px 0 18px 10px;
}
p.tel { order: -2;}
p.tel2 { order: -1;}

/*footer聯絡資訊隱藏*/
p.phone, .box_link { display: none;}

/*footer按鈕設定*/
.footer_info li:nth-child(2) {
    padding-left: 0;
}
.footer_menu a {
	color: #4eb7ca;
    background: #fff0;
    border: 1px #fff0 solid;
    border-radius: 0;
    padding: 7px 10px;
	margin: 0 4px 2px 0;
}
.footer_menu a:hover { 	
	color: #fff;
	background: #fff0;
}

/*版權欄位設定*/
.copy { background: #222;}
.copy a { color: #999;}
.copy a:hover { color: #3f9aab;}


/* 跨欄位+置中 11版必放 */
.footer_info div:nth-of-type(3) { grid-column: 1 / 3; text-align: center; margin-top: 10px;}

@media screen and (max-width: 1200px) {
.footer_info { grid-template-columns: 400px 1fr;}
}
@media screen and (max-width: 768px) {
.footer_logo { max-width: 280px;}
.footer_info { grid-template-columns: 1fr; padding-right: 10px;}
.footer_info div:nth-of-type(3) { grid-column: unset;}
.footer_info ul { padding-left: 30px;}
.footer_info li+li { margin-top: 0;}
.footer_info li:nth-child(2) { padding-right: 40px;}

/* 開啟手機板下方按鈕所需設定 */
.footer.with_shopping_mode { padding: 30px 0 55px;}
#to_top { bottom: 65px;}
}
@media screen and (max-width: 600px) { 
.copy { padding-top: 8px;}
}
@media screen and (max-width: 400px) { 
.footer_logo { margin: 0 10px; width: 90%;}
.footer_info ul { letter-spacing: 0; padding-left: 0;}
.footer_info li p, .footer_info li p a { letter-spacing: .3vw;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*聯絡我們 聯絡資訊*/
.blank_letter { font-family: Noto Sans TC; font-size: 22px; font-weight: 500; color: #222; letter-spacing: 1px;}
.list_before { margin: 20px 0;}
.list_before.info li { padding-left: 35px; letter-spacing: .05vw;}
.contact_le_nomap { height: 300px;}

/*聯絡資訊 表單寬度 100%呈現
.contact_content .information_left, 
.contact_content .information_right { width: 100%; padding: 10px;}
.contact_form { margin-top: 20px;}
*/
.contact_form li.last { margin-top: 60px;}
.contact_form li.last blockquote, .contact_form li.last cite { border: 1px #2A6FA9 solid;}
.contact_form li.last blockquote { color: #2A6FA9;}
.contact_form li.last cite { background: #2a6fa9c7;}

@media screen and (max-width: 768px) {
.contact_le_nomap { height: 50vw;}
}
@media screen and (max-width: 600px) {
.contact_form li { grid-template-columns: 1fr;}
.contact_form li .form__label { background: none; padding: 3px 0 0; margin: 0 0 -5px;}
}
@media screen and (max-width: 320px) {
.list_before.info li { padding: 20px 0 0;}
.info_TEL:before, .info_TEL2:before, .info_PHONE:before, .info_LINE:before, .info_FAX:before, .info_TAXID:before, .info_MAIL:before, .info_ADD:before, .info_ADD2:before { margin-top: -20px;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#content_main { margin:0;}
.bannerindex { position:relative; height:auto;}
.swiper-banner { position:static; margin:0; height:auto;} 
/* .swiper-slide img { height:auto;} */


/*指定大圖放大 RWD設定*/
.swiper-banner .swiper-slide img { max-width: unset;}


/*大圖文字配圖動畫*/
.bannerindex .swiper-slide.swiper-slide-active:nth-child(1):before, 
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2):before, 
.bannerindex .swiper-slide.swiper-slide-active:nth-child(1):after, 
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2):after {
    content: ""; position: absolute; width: 100%; height: 100%; z-index: 1;
}
.bannerindex .swiper-slide.swiper-slide-active:nth-child(1):before {
    background: url(https://pic03.eapple.com.tw/julinai/ban-w01.png) no-repeat center / 45vw;
    top: -16%; right: -23%;
}
.bannerindex .swiper-slide.swiper-slide-active:nth-child(1):after {
    background: url(https://pic03.eapple.com.tw/julinai/ban-logo-w.png) no-repeat center / 27vw;
    bottom: -35%; right: -29%;
}
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2):before {
    background: url(https://pic03.eapple.com.tw/julinai/ban-w02.png) no-repeat center / 13vw;
    top: -4%; right: 31%;
}
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2):after {
    background: url(https://pic03.eapple.com.tw/julinai/ban-w03.png) no-repeat center / 16vw;
    bottom: -37%; left: -36%;
}


/*大圖進場動畫設定*/
.bannerindex .swiper-slide.swiper-slide-active:nth-child(1):before { animation: fade-in-left 2s 1s both;} 
.bannerindex .swiper-slide.swiper-slide-active:nth-child(1):after { animation: fade-in-bottom 1s .5s both;}
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2):before { animation: fade-in-right 1.5s .2s both;} 
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2):after { animation: fade-in-top 2s .7s both;}

@keyframes fade-in-left {
    0% {
      -webkit-transform: scale(1.2) translate(-12%,-1%);
              transform: scale(1.2) translate(-12%,-1%);
              opacity:0;
    }
    100% {
      -webkit-transform: scale(1) translate(0,0);
              transform: scale(1) translate(0,0);
              opacity:1;
    }
}

@keyframes fade-in-bottom {
    0% {
      -webkit-transform: translate(0%,3%) scale(1.1);
              transform: translate(0%,3%) scale(1.1);
              opacity:0;
    }
    100% {
      -webkit-transform: translate(0,0) scale(1);
              transform: translate(0,0) scale(1);
              opacity:1;
    }
  }

@keyframes fade-in-right {
    0% {
      -webkit-transform: scale(1.2) translate(3%,-1%);
              transform: scale(1.2) translate(3%,-1%);
              opacity:0;
    }
    100% {
      -webkit-transform: scale(1) translate(0,0);
              transform: scale(1) translate(0,0);
              opacity:1;
    }
}

@keyframes fade-in-top {
    0% {
      -webkit-transform: translate(1%,-10%) scale(1.1);
              transform: translate(1%,-10%) scale(1.1);
              opacity:0;
    }
    100% {
      -webkit-transform: translate(0,0) scale(1);
              transform: translate(0,0) scale(1);
              opacity:1;
    }
  }

@media screen and (max-width: 1400px) {
.swiper-banner .swiper-slide:nth-child(n) img { width: 115vw; max-width: 115vw;}
.swiper-banner .swiper-slide:nth-child(2) img { margin-left: -6vw;}
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2):before { 
	background-size: 15vw; top: -1%; right: 33%;}
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2):after {
    background-size: 16vw; bottom: -35%; left: -36%;}
}
@media screen and (max-width: 1024px) {
.swiper-banner .swiper-slide:nth-child(n) img { width: 100vw; max-width: 100vw; margin-left: 0vw;}
.bannerindex .swiper-slide.swiper-slide-active:nth-child(1):before {
	background-size: 52vw; top: -23%; right: -20%;}
.bannerindex .swiper-slide.swiper-slide-active:nth-child(1):after {
    background-size: 34vw; right: -28%;}
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2):before { 
	background-size: 19vw; top: -7%; right: 32%;}
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2):after {
    background-size: 18vw; bottom: -34%; left: -36%;}
}
@media screen and (max-width: 768px) {
.bannerindex { padding:0; margin:0;}
}
@media screen and (max-width: 600px) {
.swiper-banner .swiper-slide:nth-child(n) img { width: 130vw; max-width: 130vw; margin-left: -14vw;}
.swiper-banner .swiper-slide:nth-child(2) img { margin-left: -9vw;}
.bannerindex .swiper-slide.swiper-slide-active:nth-child(1):before {
	background-size: 70vw; top: -23%; right: -12%;}
.bannerindex .swiper-slide.swiper-slide-active:nth-child(1):after {
    background-size: 40vw; bottom: -37%; right: -27%;}
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2):before { 
	background-size: 23vw; top: -10%; right: 33%;}
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2):after {
    background-size: 23vw; bottom: -28%; left: -35%;}
}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*內頁BANNER 設定*/
.banner {
	background: no-repeat center / cover;
    padding: 360px 0 75px;
}
.banner h5 {
    font-family: "Noto Sans TC", sans-serif;
    letter-spacing: 4px;
	text-shadow: 1px 2px 20px #000, 2px 3px 50px #000;
	color: #fff;
	z-index: 1;
}
.banner.banA, .banner.banB, .banner.banC, .banner.banD, .banner.banE, .banner.banF, 
.banner.banblog { background-image: url(https://pic03.eapple.com.tw/julinai/ban01.jpg);}

.banner:after {
    content: "";
    position: absolute;
    font-size: 260px;
    font-weight: 100;
    letter-spacing: -.6vw;
    color: #08273da3;
    text-shadow: 0 0 25px #bce7eaba;
    top: 200px;
    right: 1%;
}
.services_page .banner:after { content: "SERICE";}
.blog_page .banner:after, .blog_in_page .banner:after { content: "JULIN AI";}
.other_page .banner:after { content: "RECRUIT";}
.contact_page .banner:after { content: "CONTACT";}

@media screen and (max-width: 1200px) {
.banner { padding-top: 31vw;}
.banner:after { font-size: 21vw;}
}
@media screen and (max-width: 1024px) {
.banner { padding-top: 40vw;}
.banner:after { top: 29vw;}
}
@media screen and (max-width: 880px) {
.banner:after { top: 31vw;}
}
@media screen and (max-width: 768px) {
.banner { padding-top: 260px;}
.banner:after { top: 210px; right: 3%;}
}
@media screen and (max-width: 450px) {
.banner { padding: 200px 0 50px; font-size: 32px;}
.banner h5 { letter-spacing: 2px;}
.banner:after { top: 180px;}
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本分類全版面 ( 限制最寬2000px
.work_page .main_part { max-width:2000px;}
.work_page .show_content { padding:0; width:100%;}
.work_page .show-list .item { width:33%; display:inline-block; float:none; margin:0; padding:0;}
@media screen and (max-width: 768px) {
.work_page .show-list .item { width:49%;}
}
@media screen and (max-width: 570px) {
.work_page .show-list .item { width:100%;}
}
.work_page .show-list .item a { max-width:100%;}
.work_page .show-list .show_pic { height:auto; line-height:0;}
.work_page .show-list .show_pic img { max-width:100%; max-height:100%;}
.work_page .show-list .show_name { position:absolute; top:50%; right:10%; width:80%; height:auto; line-height:160%; font-size: 20px; color: #FFFFFF !important; border: solid 1px #fff; text-align: center; margin: -20px 0 0 -120px; padding:5px 20px; transition:all ease-in .3s; opacity:0;}
.work_page .show-list .item:hover .show_name {opacity:1;}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本列表
.work_info_page .main_part { max-width:2000px;}
.work_info_page .show_content { padding:0; width:100%;}
.work_info_page .subalbum-menu { text-align:center;}
.work_info_page .subalbum-menu h2 { float:none;}
.work_info_page .pic-list .item { margin:0; padding:10px; width:49%; float:none; display:inline-block;}
@media screen and (max-width: 768px) {
.work_info_page .pic-list .item { width:100%;}
}
.work_info_page .pic-list .show_pic { height:auto; line-height:0;}
.work_info_page .pic-list .show_pic img { max-width:100%; max-height:100%;}
.work_info_page .pic-list .item a { max-width:100%; pointer-events: none; cursor: default; } 取消連結被點擊效果
*/




/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 商品下拉超過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個但次分類直接顯示 
.stellarnav.desktop li.bigMenu>ul{grid-gap: 10px;}
.stellarnav.desktop li.bigMenu li{border: 0;}
.stellarnav.desktop li.bigMenu>ul>li>a{border: 1px solid #ddd;}
.stellarnav.desktop li.bigMenu ul ul{display: block !important; position: relative; top: 0; background: unset; border: 0;}
.stellarnav.desktop li.bigMenu ul ul li{border: 0;}
 主分類超過30個但次分類直接顯示-結束 */

/* 商品下拉超過30個--結束 */

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 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 ul { position:static; margin-top:5px; /*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:#ad925e;}
.product-layer-two > li { width:100%; max-width:100%; padding:0; text-align:left; border-bottom:1px dotted #ccc; padding-bottom: 5px;}
.product-layer-two > li ul > li + 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:hover{ margin-left: 15px;}
.product-layer-two li li > a:before { content: ""; position: absolute; width: 12px; height: 8px; background: transparent; left: 0; margin-left: -20px; top: 50%; margin-top: -4px; clip-path: polygon(0 0, 100% 50% , 0 100%);}
.product-layer-two li li:hover > a:before { background:#ad925e;}

.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;}
@media screen and (max-width: 1200px) {
}
@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;}

.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) {
}

