/* Font Family */
/* Project Fonts */
/* Breakpoints */
body .bannerBox {
  width: 100%;
  background-image: url(../images/home/banner_bg.jpg);
  background-size: auto 100%;
  background-position: 150% 0;
  background-attachment: fixed;
  background-repeat: no-repeat;
  padding: 15vh 0;
  transition: 1s all;
}
body.show .bannerBox {
  background-position: 100% 0;
}
body .bannerBox .TxtBox {
  writing-mode: vertical-rl;
  font-family: "Noto Serif TC", "PMingLiU", serif;
  /*position: fixed;*/
  top: 20%;
  left: 20%;
  opacity: 0;
  transition: all 1s 1.3s;
}
body.show .bannerBox .TxtBox {
  opacity: 1;
  top: 10%;
}

.bannerBox .TxtBox h3 {
  font-weight: 900;
  font-size: 1.6rem;
  letter-spacing: 6px;
  color: #231815;
  background: none;
  font-family: "Noto Serif TC", "PMingLiU", serif;
  -webkit-text-fill-color: currentColor;
}
.bannerBox .TxtBox p {
  transform: translateY(30%);
  line-height: 2;
}
.bannerBox .TxtBox p span {
  display: block;
}
.bannerBox .ImgBox {
  position: relative;
}
.bannerBox .ImgBox .Txt {
  position: absolute;
  top: 40%;
  z-index: 20;
  left: -16%;
}
.bannerBox .ImgBox .InnerImg {
  top: -100%;
}
.bannerBox .ImgBox .image {
  background-attachment: scroll;
  background-size: cover;
}
.bannerBox .ImgBox .img-logo {
  position: absolute;
  width: 91%;
  aspect-ratio: 557/752;
  bottom: 0;
  top: 29%;
  left: -3%;
  z-index: 9;
}
@media (max-width: 991px) {
  .bannerBox .ImgBox .img-logo {
    width: 50%;
    left: auto;
    right: 0;
  }
}

body .bannerBox .ImgBox .image:after {
  content: "";
  position: absolute;
  right: 0;
  background-color: #eee;
  width: 100%;
  height: 100%;
  transition: all 1s 1.3s;
}

body.show .bannerBox .ImgBox .image:after {
  width: 0;
}

.bannerBox .ImgBox .Txt h2 img {
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 400px;
}
@media (min-width: 992px) {
  .bannerBox .ImgBox .Txt h2 img {
    width: 25vw;
  }
}
@media (max-width: 767px) {
  .bannerBox .ImgBox .Txt h2 img {
    width: 55vw;
  }
}
.bannerBox .ImgBox .Txt h2 span {
  display: block;
}

body .bannerBox .ImgBox .Txt i {
  display: inline-block;
  font-style: normal;
  color: #999;
  font-size: 12px;
  line-height: 1;
  opacity: 0;
  transform: translateY(100%);
  transition: all 1s 1.3s;
}

body.show .bannerBox .ImgBox .Txt i {
  transform: translateY(0%);
  opacity: 1;
}

.bannerBox .ImgBox.img-logo {
  position: absolute;
  bottom: 0;
  right: 0;
}
.bannerBox .ImgBox.img-logo .image {
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 557/752;
}

@media (max-width: 768px) {
  body.show .bannerBox {
    background-position: 220%;
  }
}
@media (max-width: 767px) {
  body .bannerBox {
    background-position: 160%;
  }
  body .bannerBox .TxtBox {
    left: 30%;
    padding-bottom: 25%;
  }
  body .bannerBox .ImgBox {
    padding-left: 10%;
  }
  body .bannerBox .ImgBox .Txt {
    left: 0;
  }
  body .bannerBox .ImgBox .InnerImg {
    padding-top: 100%;
  }
  body .bannerBox .ImgBox .Txt h2 {
    font-size: 3rem;
  }
}
@media (max-width: 500px) {
  body .bannerBox {
    background-image: none;
    padding: 10vh 0;
  }
  body .bannerBox .TxtBox {
    left: 25%;
  }
  body .bannerBox .ImgBox .Txt h2 {
    font-size: 2rem;
  }
  body .bannerBox:after {
    display: none;
  }
}
/*HotCase*/
.HotCase {
  position: fixed;
  right: -40%;
  top: 25%;
  width: 100%;
  padding: 25px;
  max-width: 200px;
  z-index: 99;
  opacity: 0;
  transition: all 2s;
}
.HotCase.active {
  opacity: 1;
  right: 0;
  transition: all 2s;
}
.HotCase .title {
  text-align: right;
  margin-bottom: 1rem;
}
.HotCase .title h3 {
  font-size: 1.2rem;
  letter-spacing: 2px;
  display: inline-block;
  border-bottom: 5px solid #c99a0c;
}
.HotCase .HotCaseList .item .Img {
  width: 100%;
  height: 100%;
}
.HotCase .HotCaseList .item .Img .innerImg {
  width: 100%;
  padding-top: 100%;
}
.HotCase .HotCaseList .item .Img .innerImg .image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-size: cover;
  background-position: center;
}
.HotCase .HotCaseList .item .Txt {
  padding: 10px;
  padding-bottom: 10px;
  background-color: rgba(247, 248, 248, 0.9);
}
.HotCase .HotCaseList .item .Txt .caseName {
  font-size: 1rem;
  margin-bottom: 15px;
}
.HotCase .HotCaseList .item .Txt .caseName span {
  display: block;
  font-size: 10px;
}
.HotCase .HotCaseList .item .Txt ul.caseInfo {
  padding: 0;
  margin: 0;
}
.HotCase .HotCaseList .item .Txt ul.caseInfo li {
  list-style: none;
}
.HotCase .HotCaseList .item .Txt .btn {
  font-size: 10px;
}

@media (max-width: 767px) {
  .HotCase {
    max-width: 100%;
    padding-top: 150px;
    position: relative;
  }
  .HotCase .HotCaseList .item {
    padding: 2%;
  }
  .HotCase .HotCaseList .item .Txt {
    padding: 20px;
    padding-bottom: 20px;
    background-color: #f7f8f8;
  }
  .HotCaseList .slick-slide {
    opacity: 0.5;
  }
  .HotCaseList .slick-slide.slick-active {
    opacity: 1;
  }
}
/*newsArea*/
.newsArea {
  width: 100%;
  background-image: url(../images/home/news_bg.jpg);
  background-size: auto 100%;
  background-position: left;
  background-repeat: no-repeat;
  padding: 10% 0;
  background-color: #fafafa;
}
.newsArea:after {
  content: "";
  width: 80px;
  height: 80px;
  position: absolute;
  right: 0;
  top: 70%;
  background: linear-gradient(97deg, #8CC5B4 0%, #47A5C2 47.63%, #276AA4 100%);
  clip-path: polygon(100% 0, 100% 100%, 0 50%);
}
.newsArea .titleBox {
  z-index: 10;
  padding-left: 5vw;
}
.newsArea .titleBox:after {
  content: "";
  width: 0;
  max-width: 448.9px;
  height: 150%;
  background: linear-gradient(313deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
  position: absolute;
  top: 60%;
  left: 10%;
  z-index: -1;
  transform: translateY(-50%);
  transition: all 1s;
}
.newsArea .titleBox h3 {
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
  transform: translateX(-50%);
  opacity: 0;
  transition: all 1s;
  position: relative;
  display: inline-block;
}
@media (min-width: 992px) {
  .newsArea .titleBox h3 {
    font-size: clamp(49.6px, 5vw, 96px);
  }
}
.newsArea .titleBox .subTitle {
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: 1.4rem;
  position: absolute;
  background: linear-gradient(97deg, #8CC5B4 0%, #47A5C2 47.63%, #276AA4 100%);
  padding: 8px 16px;
  letter-spacing: -1px;
  top: 90%;
  right: 0;
  transition: all 1s;
  color: #fff;
}
.newsArea .titleBox i {
  opacity: 0;
  transform: translateY(-100%);
  transition: all 1s;
  left: auto;
}
.newsArea ol.NewsList {
  list-style: none;
  opacity: 0;
  transform: translateY(100%);
  transition: all 1s;
}
.newsArea ol.NewsList li {
  counter-increment: questionNumber;
  padding-bottom: 10%;
}
.newsArea ol.NewsList li.fadeInUp {
  opacity: 0 !important;
  transform: translateX(-40px);
  transition: all 0.6s ease-out;
}
.newsArea ol.NewsList li.fadeInUp.visible {
  opacity: 1 !important;
  transform: none;
}
.newsArea ol.NewsList li:last-child {
  padding-bottom: 0;
}
.newsArea ol.NewsList li:before {
  content: counters(questionNumber, ".", decimal-leading-zero) " ";
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #dedede;
  display: block;
  float: left;
  line-height: 22px;
  margin-left: -30px;
  text-align: center;
  height: 22px;
  width: 10%;
  font-size: 4rem;
  transition: all 1s;
}
.newsArea ol.NewsList li:hover:before {
  color: #47A5C2;
}
.newsArea ol.NewsList li a {
  display: block;
  padding-left: 3rem;
}
.newsArea ol.NewsList li.Item .title {
  border-bottom: 1px solid #eee;
}
.newsArea ol.NewsList li.Item .title:after {
  content: "";
  width: 0%;
  height: 1px;
  background-color: #eee;
  display: block;
  transition: all 1s;
}
.newsArea ol.NewsList li.Item .title b {
  display: block;
  white-space: nowrap;
  width: 80%;
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-family: "Noto Serif TC", "PMingLiU", serif;
  letter-spacing: 0;
  transition: all 0.5s;
}
.newsArea ol.NewsList li.Item .title i.date {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 0.9rem;
  width: 100%;
  text-align: right;
  color: #999;
  line-height: 1;
  font-style: normal;
  opacity: 1;
  transition: all 0.5s;
}
.newsArea ol.NewsList li.Item:hover .title:after {
  background: linear-gradient(97deg, #8CC5B4 0%, #47A5C2 47.63%, #276AA4 100%);
  width: 100%;
}
.newsArea ol.NewsList li.Item:hover .title b {
  letter-spacing: 3px;
  width: 95%;
}
.newsArea ol.NewsList li.Item:hover .title i.date {
  opacity: 0;
  right: -1%;
}
.newsArea ol.NewsList li.Item p {
  overflow: hidden;
  width: 80%;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  font-weight: 300;
  color: #999;
}
.newsArea.active .titleBox:after {
  width: 90%;
}
.newsArea.active .titleBox h3 {
  opacity: 1;
  transform: translateX(0%);
}
.newsArea.active .titleBox h3:after {
  padding: 10px;
  letter-spacing: 2px;
}
.newsArea.active .titleBox i {
  opacity: 1;
  transform: translateY(0%);
}
.newsArea.active ol.NewsList {
  opacity: 1;
  transform: translateY(0%);
}

.fadeInUp:nth-child(2) {
  margin-top: 50px;
}

.fadeInUp:nth-child(3) {
  margin-top: 100px;
}

.fadeInUp:nth-child(4) {
  margin-top: 150px;
}

.fadeInUp:nth-child(5) {
  margin-top: 200px;
}

@media (max-width: 991px) {
  .newsArea {
    background-image: none;
    background: linear-gradient(to bottom, #dbdcdc 0%, #ffffff 50%, #ffffff 100%);
  }
  .newsArea .titleBox {
    left: 10%;
    width: 65%;
    margin: 0;
    margin-bottom: 12%;
  }
  .newsArea .titleBox h3:after {
    width: 70%;
    text-align: center;
  }
  .newsArea .titleBox:after {
    height: 100px;
  }
  .newsArea .titleBox i {
    position: relative;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .newsArea .titleBox i {
    color: #858585;
  }
}
@media (max-width: 991px) {
  .newsArea ol.NewsList {
    padding: 0 15%;
  }
}
@media (max-width: 500px) {
  .newsArea .titleBox {
    width: 75%;
  }
  .newsArea .titleBox h3:after {
    width: 60%;
  }
  .newsArea ol.NewsList {
    padding: 0 30px;
  }
  .newsArea ol.NewsList li:before {
    font-size: 2.6rem;
  }
  .newsArea ol.NewsList li a {
    padding-left: 1.8rem;
    top: -20px;
  }
  .newsArea ol.NewsList li.Item .title b {
    width: 100%;
  }
  .newsArea ol.NewsList li.Item .title i.date {
    position: relative;
  }
}
/*CaseArea*/
.CaseArea {
  padding: 10% 0 5%;
  background-color: #fafafa;
}
.CaseArea * {
  transition: all 1s;
}
.CaseArea:before {
  content: "";
  position: absolute;
  top: 18%;
  left: 50%;
  width: 45%;
  height: 0;
  background-color: #e0e5e5;
  opacity: 0;
  transform: translateX(-50%);
  transition: all 5s 0.3s;
}
.CaseArea.active:before {
  height: 85%;
  opacity: 1;
  transition: all 2s;
}
.CaseArea.active .titleBox {
  opacity: 1;
  transform: translateY(0%);
}
.CaseArea.active .CaseList .item {
  opacity: 1;
  transform: translateX(0);
}
.CaseArea .titleBox {
  display: inline-block;
  margin-bottom: 5rem;
  opacity: 0;
  transform: translateY(-50%);
}
.CaseArea .titleBox i {
  text-align: left;
}
.CaseArea .CaseList .item {
  padding: 5%;
  opacity: 0;
  transform: translateX(-30%);
}
.CaseArea .CaseList .item a {
  background-color: #fff;
  display: block;
  text-align: right;
  padding-bottom: 1rem;
  padding-inline: 5%;
}
.CaseArea .CaseList .item a:after {
  content: "MORE";
  display: inline-block;
  text-align: center;
  background-color: #3e3a39;
  color: #fff;
  padding: 5px 10%;
  font-size: 10px;
}
.CaseArea .CaseList .item .Txt {
  padding-top: 5%;
  text-align: left;
  padding-bottom: 0;
}
.CaseArea .CaseList .item .Txt .CaseName {
  border-bottom: 1px solid #999;
  padding-bottom: 10px;
  margin-bottom: 0;
}
.CaseArea .CaseList .item .Txt .CaseInfo {
  font-weight: 200;
}
.CaseArea .CaseList .item .Txt .CaseInfo span {
  display: inline-block;
  padding-right: 20px;
}
.CaseArea .CaseList .item .ImgBox .InnerImg {
  width: 100%;
  padding-top: 100%;
}
.CaseArea .CaseList .item .ImgBox .InnerImg .image {
  background-size: auto 100%;
  background-position: center center;
  transition: all 1s;
  border: 5px solid rgba(255, 255, 255, 0.4);
}
.CaseArea .CaseList .item:hover .ImgBox .InnerImg .image {
  background-size: auto 110%;
  transition: all 1s;
  border: 10px solid rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
  .CaseArea:before {
    top: 0;
    height: 100%;
  }
}/*# sourceMappingURL=home.css.map */