﻿@charset "UTF-8";
.homeContainer {
  min-height: calc(100% - 52px);
}
.homeContainer .home__banner {
  height: 460px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.homeContainer .home__banner .banner--left {
  width: calc(100% - 860px);
  min-width: 502px;
  height: 100%;
  padding: 100px 0 120px 140px;
  background-color: #F5F9FF;
  background-image: url(../Image/watermarkLogo--banner.svg);
  background-repeat: no-repeat;
  background-position: bottom;
}
@media screen and (max-width: 767px) {
  .homeContainer .home__banner .banner--left {
    width: 100%;
    min-width: unset;
    padding: 50px 60px;
  }
}
.homeContainer .home__banner .banner__triangle {
  width: 0;
  height: 0;
  border-top: 460px solid #F5F9FF;
  border-right: 50px solid transparent;
  position: relative;
  float: left;
}
.homeContainer .home__banner .banner--right {
  width: 860px;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .homeContainer .home__banner .banner--right {
    display: none;
  }
}
.homeContainer .home__banner .banner__image {
  width: 100%;
  height: 100%;
  background-image: url(../Image/bannerImage.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.homeContainer .home__banner .banner__title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 9px;
}
.homeContainer .home__banner .banner__description {
  font-size: 20px;
  width: 327px;
  line-height: 36px;
  margin-bottom: 38px;
}
@media screen and (max-width: 375px) {
  .homeContainer .home__banner .banner__description {
    width: 100%;
  }
}
.homeContainer .home__banner .banner__button {
  width: 260px;
  height: 60px;
  font-size: 20px;
  border: 2px solid #0276A4;
  border-radius: 30px;
  background-color: transparent;
  color: #0276A4;
  margin-right: 12px;
  transition: background ease-in 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 375px) {
  .homeContainer .home__banner .banner__button {
    width: 200px;
    margin-right: 0;
  }
}
.homeContainer .home__banner .banner__button:hover {
  border: 2px solid #006891;
  background-color: #006891;
  color: white;
}
.homeContainer .home__banner .banner__button:hover .banner__button--rightArrow {
  background-image: url(../Image/rightArrow--hover.svg);
}
.homeContainer .home__banner .banner__button--text {
  line-height: 100%;
}
.homeContainer .home__banner .banner__button--rightArrow {
  width: 20px;
  height: 100%;
  display: inline-block;
  margin-left: 12px;
  background-image: url(../Image/rightArrow.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.homeContainer .home__block .block__title {
  height: 75px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin: 54px auto 59px auto;
}
.homeContainer .home__block .block__title__decoration {
  width: 52px;
  height: 8px;
}
.homeContainer .home__block .block__title__text {
  font-size: 32px;
  font-weight: bold;
}
.homeContainer .home__block .block__content {
  width: calc(100% - 278px);
  max-width: 1088px;
  min-width: 1000px;
  margin: auto;
  padding-bottom: 20px;
  row-gap: 72px;
  display: grid;
  grid-column-gap: calc(50% - 480px);
  grid-template-columns: 320px 320px 320px;
}
@media screen and (max-width: 1023px) {
  .homeContainer .home__block .block__content {
    width: calc(100% - 40px); /* 使容器在小螢幕時稍微縮小 */
    max-width: 700px;
    min-width: unset;
    grid-column-gap: 20px;
    grid-template-columns: repeat(2, 0fr);
    margin: 0 auto; /* 水平居中容器 */
    justify-content: center;
    row-gap: 36px;
  }
}
@media screen and (max-width: 767px) {
  .homeContainer .home__block .block__content {
    grid-template-columns: repeat(1, 0fr);
    row-gap: 18px;
  }
}
.homeContainer .home__block .block__content__card {
  width: 320px;
  min-height: 320px;
}
@media screen and (max-width: 320px) {
  .homeContainer .home__block .block__content__card {
    width: 280px;
  }
}
.homeContainer .home__block .block__content__card--thumbnails {
  width: 100%;
  height: 200px;
  border-radius: 10px;
}
.homeContainer .home__block .block__content__card--title {
  color: #1C97B4;
  font-size: 24px;
  font-weight: bold;
  margin: 22px 0 14px 0;
  text-align: center;
  line-height: 30px;
}
.homeContainer .home__block .block__content__card--description {
  font-size: 18px;
  text-align: center;
  line-height: 28px;
}

.footerContainer {
  margin-top: 45px;
}
