@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.sticky { position:relative;}
*/


/*上方選單右邊設定 臉書/LINE/電話/信箱
.tp_links a:before {寬高大小設定}
.tp_links a.me_tp_fb {}
.tp_links a.me_tp_fb:before {背景換圖/建議.SVG}
.tp_links a.me_tp_line {}
.tp_links a.me_tp_line:before {背景換圖/建議.SVG}
.tp_links a.me_tp_call {}
.tp_links a.me_tp_call:before {背景換圖/建議.SVG}
.tp_links a.me_tp_mail {}
.tp_links a.me_tp_mail:before {背景換圖/建議.SVG}
*/


/*電腦LOGO
.nav-brand {}
*/

/*手機LOGO
.nav-brand-m {}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#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;
  }
}





@media screen and (max-width: 768px) {

  /* 開啟手機板下方按鈕所需設定 */
  #bottom_menu {
    display: block;
  }

  .footer.with_shopping_mode {
    padding: 30px 0 70px;
  }

  #to_top {
    bottom: 60px;
  }
}

@media screen and (max-width: 600px) {}




/*Header/＝＝＝＝＝*/
.nav-brand {
  display: inline-block;
  width: 260px;
  margin-top: 10px;
}

.main_header_area {
  background: #111;
}

.pageIndex .header_area .main_header_area {
  background: linear-gradient(0deg, #1110, #111);
  transition: all 0.5s 0.4s;
}

.pageIndex .header_area.sticky .main_header_area {
  transition: all 0.5s 0.4s;
}

.pageIndex .header_area .main_header_area:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  left: 0;
  top: 0;
  background: #111;
  opacity: 0;
  transition: all 0.5s;
}

.pageIndex .header_area.sticky .main_header_area:before {
  height: 100%;
  opacity: 1;
}

.header_area .main_header_area .container {
  max-width: 1450px;
  transition: all 0.8s;
}

.header_area.sticky .main_header_area .container,
.main_header_area .container {
  max-width: 95%;
}

.navigation {
  padding: 20px 0 15px 150px;
}

/*第一層*/
.stellarnav>ul>li>a {
  transition: all 0.3s;
  padding: 0 10px;
  height: auto;
  color: #fff;
}

.stellarnav>ul>li:hover>a {
  color: #b7b7b7;
}

.stellarnav>ul>li>a b {
  line-height: 140%;
  height: auto;
}

.stellarnav>ul>li>a b:nth-child(2) {
  font-size: 75%;
  line-height: 180%;
}

.stellarnav>ul>li>a:hover b {
  transform: none;
  -webkit-transform: none;
  -moz-transform: none;
}

.stellarnav li.has-sub>a:after {
  content: none;
}

/*第二層*/
.stellarnav ul ul {
  background: #161616;
  width: 180px;
}

.stellarnav ul ul ul {
  left: 180px;
  max-height: 400px;
  overflow-y: auto;
  overflow-x: hidden;
}

.stellarnav li li {
  border: 1px #000 solid;
  margin-bottom: 0;
}

.stellarnav li li>a,
.stellarnav li li.has-sub>a {
  color: #fff;
  padding: 7px 5px;
  transition: all 0.3s;
  font-size: 15px;
}

.stellarnav li li:hover>a:not(.dd-toggle),
.stellarnav li li.has-sub:hover>a:not(.dd-toggle) {
  color: #b7b7b7;
}

.stellarnav>ul>li>ul {
  left: 50%;
  transform: translateX(-50%);
}

.stellarnav.mobile ul {
  background: #000;

}

.stellarnav.mobile.right>ul,
.stellarnav.mobile.left>ul {
  border-right: 0px #eee solid;
}

.stellarnav.mobile.right .close-menu,
.stellarnav.mobile.left .close-menu {
  background: transparent;
}


/*維修案例下拉 - 二手機專區按鈕隱藏*/
.stellarnav > ul > li:nth-of-type(3) > ul > li:last-of-type {
	display: none;
}







/* 漢堡== */

.stellarnav .menu-toggle:after {
  color: #fff;
}

.stellarnav .menu-toggle span.bars span {
  background: #fff;
}

.stellarnav.mobile li.open {
  background: transparent;
}

.stellarnav.mobile li a {
  border-bottom: 0px solid rgba(255, 255, 255, .15);
}

/*SubMenu*/
.me_tp_features {
  display: none;
}


/*選單漸變效果＝＝*/
/*首頁固定選單*/
.pageIndex .header_area {
  position: fixed;
  width: 100%;
}

/*大圖/＝＝＝＝＝*/
/*預設解除背景輪播*/
#content_main {
  margin: 0;
}

.bannerindex {
  position: relative;
  height: auto;
}

.swiper-banner {
  position: static;
  margin: 0;
  height: auto;
  max-height: 1000px;
}

.swiper-slide img {
  width: 100%;
  display: block;
  max-width: 100%;
  min-width: 100%;
  height: 100vh;
  max-height: 1000px;
  object-position: center;
  object-fit: cover;
  -moz-object-fit: cover;
  -ms-object-fit: cover;
  -o-object-fit: cover;
  -webkit-object-fit: cover;
  margin: 0;
  transition: all 0.3s;
}

.swiper-slide:nth-child(1):before {
  padding: 0 76px;
  line-height: 160%;
  font-weight: 600;
  content: "現場快速維修 免費檢測";
  position: absolute;
  z-index: 1;
  color: #fff;
  font-size: 55px;
  left: 3%;
  letter-spacing: 2px;
  max-width: 522px;
  bottom: 50%;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}


.swiper-slide:nth-child(1):after {
  content: "";
  background-image: url(https://pic03.eapple.com.tw/delaisu/pic01.png);
  position: absolute;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  top: 0%;
  max-width: 955px;
  width: 100%;
  height: 100%;
  left: 0%;
  background-repeat: no-repeat;
  background-position: center;
}



.swiper-slide:nth-child(2):before {
  padding: 0 200px;
  line-height: 160%;
  text-align: center;
  font-weight: 600;

  content: "現場快速維修 免費檢測";
  position: absolute;
  z-index: 1;
  color: #fff;
  font-size: 55px;
  right: 0%;
  letter-spacing: 2px;
  max-width: 800px;
  bottom: 50%;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.swiper-slide:nth-child(2):after {
  content: "";
  background-image: url(https://pic03.eapple.com.tw/delaisu/pic02.png);
  position: absolute;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  top: 0%;
  max-width: 800px;
  width: 100%;
  height: 100%;
  right: 0%;
  background-repeat: no-repeat;
  background-position: center;
}



.swiper-slide.swiper-slide-active:nth-child(1):before {
  animation: ani_TtoB 1.5s 0.5s both;
}

.swiper-slide.swiper-slide-active:nth-child(1):after {
  animation: ani_BtoT 1.5s 1s both;
}

.swiper-slide.swiper-slide-active:nth-child(2):before {
  animation: ani_TtoB 1.5s 0.5s both;
}

.swiper-slide.swiper-slide-active:nth-child(2):after {
  animation: ani_BtoT 1.5s 1.5s both;
}

@keyframes ani_TtoB {
  0% {
    transform: translateY(-5vw);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes ani_BtoT {
  0% {
    transform: translateY(5vw);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@media screen and (max-width: 1400px) {
  .swiper-slide:nth-child(1):before {
    left: 4%;
  }
}

@media only screen and (max-width: 1024px) {
  .navigation {
    padding: 10px;
  }
}

@media screen and (max-width: 940px) {
  .swiper-slide:nth-child(1):before {
    left: 3%;
  }
}

@media screen and (max-width: 910px) {
  .swiper-slide:nth-child(1):before {
    left: 0%;
  }
}

@media screen and (max-width: 820px) {
  .swiper-slide:nth-child(1):before {
    left: -4%;
  }
}



@media screen and (max-width: 768px) {
  .bannerindex {
    padding: 0;
    margin: 0;
  }

  .bannerindex {
    height: 80vh;
    min-height: 80vw;
  }

  .swiper-slide img {
    height: 80vh;

  }

  .swiper-slide:nth-child(1):after {
    content: "";
    background-image: url(https://pic03.eapple.com.tw/delaisu/01768.png);
    position: absolute;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    top: 0%;
    max-width: 736px;
    width: 100%;
    height: 100%;
    left: 0%;
    background-repeat: no-repeat;
    background-position: center;
  }


  .swiper-slide:nth-child(1) img {
    object-position: 40%;
  }

  .swiper-slide:nth-child(2) img {
    object-position: 25%;
  }

  .swiper-slide:nth-child(1):before {
    padding: 0 180px;
    bottom: 55%;
    line-height: 160%;
    text-align: center;
    font-weight: 600;
    content: "現場快速維修 免費檢測";
    position: absolute;
    z-index: 1;
    color: #fff;
    font-size: 55px;
    right: 0%;
    left: 0%;
    letter-spacing: 2px;
    max-width: 800px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  }

  .swiper-slide:nth-child(2):before {
    padding: 0 180px;
    bottom: 55%;
  }


  .swiper-slide:nth-child(2):after {
    content: "";
    background-image: url(https://pic03.eapple.com.tw/delaisu/768.png);
    position: absolute;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    top: 0%;
    max-width: 736px;
    width: 100%;
    height: 100%;
    right: 0%;
    background-repeat: no-repeat;
    background-position: center;
  }

}

@media screen and (max-width: 710px) {
  .swiper-slide:nth-child(1):before {
    padding: 0 142px;
  }

  .swiper-slide:nth-child(2):before {
    padding: 0 142px;
  }
}


@media screen and (max-width: 600px) {
  .swiper-slide:nth-child(1):before {
    padding: 0 88px;
  }

  .swiper-slide:nth-child(2):before {
    padding: 0 88px;
  }
}

@media screen and (max-width: 530px) {
  .swiper-slide:nth-child(1):before {
    padding: 0 92px;
    font-size: 45px;
  }

  .swiper-slide:nth-child(2):before {
    padding: 0 92px;
    font-size: 45px;
  }
}

@media screen and (max-width: 450px) {
  .swiper-slide:nth-child(1):before {
    padding: 0 50px;
  }

  .swiper-slide:nth-child(2):before {
    padding: 0 50px;
  }
}

@media screen and (max-width: 420px) {
  .nav-brand {
    width: 200px;
  }

  .swiper-slide:nth-child(1):before {
    padding: 0 35px;
  }

  .swiper-slide:nth-child(2):before {
    padding: 0 35px;
  }
}

@media screen and (max-width: 350px) {

  .swiper-slide:nth-child(1):before {
    padding: 0 19px;
  }

  .swiper-slide:nth-child(2):before {
    padding: 0 19px;
  }
}

.swiper-pagination-bullet {
  background: transparent;
}

#content_main {
  min-height: auto;
}




/* footer=== */
.footer_info li p.add2:before {
  content: '營業時間：';
}
.footer {
  background: #141414;
}

.footer_info ul {
  margin: 10px 0px;
}


.footer_logo img {
  width: 0;
  height: 70px;
}

.footer_logo {
  background: url(https://pic03.eapple.com.tw/delaisu/footerlogo.svg) no-repeat center;
  height: 125px;
  max-width: 250px;
  width: 100%;
  position: relative;
  background-size: contain;
}


.footer_info li p {
  color: #fff;
}

.footer_info li a {
  color: #fff;
}

.footer_menu a {
  background: transparent;
}

.footer_menu a:hover {
  border: 1px solid #595757;
  background: #595757;
}



.copy {
  text-align: center;
  padding: 10px 0;
  font-size: 13px;
  color: #999;
  border-top: 0px #ddd solid;
  margin-top: 35px;
  background: #595757;
}

.copy a:hover {
  color: #000;
}

.copy a {
  color: #999;
}


.edit_part {
  max-width: 2000px;
  margin: auto;
  padding: 0px 0px;
}


#content {
  background: #333333;
}

.path p a:hover {
  color: #fff;
}

.path p,
.path p a {
  color: #b7b7b7;
}


/* banner=== */

.banner {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  padding: 125px 0;
  background-image: url(https://pic03.eapple.com.tw/delaisu/banner.jpg);
}



.banner h5 {
  letter-spacing: 1px;
  color: #fff;
  font-size: 35px;
  position: absolute;
  right: 25%;
  text-align: right;
  top: 37%;
}

.banner h5:before {
  content: "DELAISU";
  display: block;
  font-size: 15px;
  color: #ffffff;
  margin-bottom: 0px;
}



.show-list .show_name {
  color: #fff;
}


.show-list .item:hover .show_name {
  color: #fff;
}

.show-list .item:hover .show_name:before {
  content: "";
  display: inline-block;
  background-color: #fff;
  padding-left: 55px;
  padding-top: 1px;
  margin: 0 5px 5px 0;
  transition: all .4s;

}

.album_fixed_title {
  color: #b7b7b7;
  background: transparent;
}

.pic-list .item h6 {
  color: #fff;}

.other_album_choice li {
  background: #141414;
}