* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Noto Sans TC", Sans-serif;
  scroll-behavior: smooth;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

.d-flex {
  display: flex;
}

.TGblue {
  color: #2481CC;
}

.Lgreen {
  color: #64C0AB;
}

.blue {
  color: #00A0F3;
}

.red {
  color: #EA535D;
}

.orange {
  color: #FF9C2D;
}

.container {
  width: 100%;
  margin: auto;
}

img {
  width: 100%;
}

.w240 {
  width: 240px;
}

.mb30 {
  margin-bottom: 30px;
}

.mr30 {
  margin-right: 30px;
}

@media screen and (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media screen and (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media screen and (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media screen and (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media screen and (min-width: 1400px) {
  .container {
    max-width: 1200px;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Noto Sans TC", Sans-serif;
  scroll-behavior: smooth;
}

.rotate {
  transform: rotate(45deg);
  transition: 0.5s;
}

header {
  border-top: 20px solid #64C0AB;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background: #fff;
  width: 100%;
}
header .webList {
  display: flex;
  justify-content: space-evenly;
}
header .webList a {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 30px 20px 25px 20px;
  color: #3E3A39;
  border-bottom: 3px solid transparent;
}
header .webList a:hover {
  border-bottom: 3px solid #F2D03B;
  color: #F2D03B;
  transition: 0.5s;
}
header .webList a:nth-child(2) {
  margin-right: 200px;
}
header .webList .logoImg {
  position: absolute;
  top: 10px;
  width: 175px;
}
header .mobile {
  display: none;
}
header .mobile .mobileLogo {
  width: 180px;
  padding-left: 30px;
  margin-bottom: 10px;
}
header .mobile .showList {
  padding: 0 15px;
  height: 40px;
  border: none;
  border-radius: 3px;
  background: #F2F2F2;
  cursor: pointer;
  margin-right: 30px;
}
header .mobile .showList span {
  display: block;
  width: 25px;
  height: 3px;
  background: #3d3d3d;
  margin-bottom: 5px;
}
header .mobile .showList span:last-child {
  margin-bottom: 0;
}
header .mobile .showList.greenBG {
  background: #64C0AB;
  transition: 0.2s;
}
header .mobile .showList.changeIcon span {
  background: #FFF;
}
header .mobile .showList.changeIcon span:nth-child(1) {
  position: absolute;
  transform: rotate(45deg);
  transition: 0.5s;
}
header .mobile .showList.changeIcon span:nth-child(2) {
  display: none;
}
header .mobile .showList.changeIcon span:nth-child(3) {
  transform: rotate(-45deg);
  transition: 0.5s;
}
header .mobile .mobileList {
  display: none;
}
header .mobile .mobileList.active {
  display: block;
}
header .mobile .mobileList ul li {
  padding: 20px 0;
  border-bottom: 1px solid #f1f1f1;
  text-align: center;
}
header .mobile .mobileList ul li:hover {
  background: #F2CF3B;
  color: #fff;
  transition: 0.3s;
}
header .mobile .mobileList ul a {
  color: #3E3A39;
  font-weight: 600;
  letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
  header {
    border-top: none;
    padding: 30px 0px 0px 0px;
  }
  header .webList {
    display: none;
  }
  header .mobile {
    display: block;
  }
}

#homeBanner {
  margin-top: 100px;
  padding: 0 50px;
}
@media screen and (max-width: 768px) {
  #homeBanner {
    margin-top: 88px;
    padding: 0;
  }
}

#product {
  margin-top: 70px;
  background: #fff;
  padding: 30px 30px 80px 30px;
  padding-bottom: 80px;
}
#product .changeList {
  display: flex;
  justify-content: center;
}
#product .changeList ul {
  display: flex;
  align-items: center;
}
#product .changeList ul li {
  border: 2px solid #64C0AB;
  padding: 11px 70px;
  color: #64C0AB;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  font-size: 18px;
  position: relative;
}
#product .changeList ul li img {
  vertical-align: middle;
  margin-right: 10px;
}
#product .changeList ul .active {
  background: #64C0AB;
  color: #fff;
}
#product .changeList ul .active::after {
  content: "";
  position: absolute;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #64C0AB transparent transparent transparent;
}
#product .productContent {
  display: none;
}
#product .productContent.active {
  display: block;
}
#product .productContent h2 {
  margin-top: 50px;
  margin-bottom: 10px;
  text-align: center;
  font-size: 43px;
  color: #3E3A39;
  font-weight: 600;
  letter-spacing: 2.5px;
}
#product .productContent h4 {
  text-align: center;
  font-size: 18px;
  color: #F2CF3B;
  font-weight: 400;
  letter-spacing: 2.5px;
  position: relative;
}
#product .productContent h4::after {
  content: "";
  width: 25px;
  height: 2px;
  background: #F2CF3B;
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
}
#product .productContent .tabList, #product .productContent .tabList02 {
  margin: 80px 0 80px 0;
}
#product .productContent .tabList ul, #product .productContent .tabList02 ul {
  display: flex;
  justify-content: space-around;
}
#product .productContent .tabList ul li, #product .productContent .tabList02 ul li {
  color: #CDCDCD;
  letter-spacing: 1.5px;
  font-weight: 600;
  cursor: pointer;
  font-size: 18px;
  width: 240px;
  text-align: center;
  border-right: 1px solid #64C0AB;
}
#product .productContent .tabList ul li:last-child, #product .productContent .tabList02 ul li:last-child {
  border-right: none;
}
#product .productContent .tabList ul .active, #product .productContent .tabList02 ul .active {
  color: #64C0AB;
  position: relative;
}
#product .productContent .tabList ul .active::after, #product .productContent .tabList02 ul .active::after {
  content: "";
  position: absolute;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #F2CF3B transparent transparent transparent;
}
#product .productContent .tabContent .image, #product .productContent .tabContent02 .image {
  display: none;
}
#product .productContent .tabContent .image.active, #product .productContent .tabContent02 .image.active {
  display: block;
}
#product .productContent .collapseAll {
  display: none;
}
#product .productContent .collapseAll .collapse {
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 0px rgba(209, 177, 0, 0.25);
  margin-bottom: 25px;
}
#product .productContent .collapseAll .collapse .title-box {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
#product .productContent .collapseAll .collapse .title-box .title, #product .productContent .collapseAll .collapse .title-box .arrowIcon {
  font-size: 20px;
  letter-spacing: 1px;
  color: #64C0AB;
  font-weight: 600;
}
#product .productContent .collapseAll .collapse .contents-box {
  margin-top: 25px;
  display: none;
}
#product .productContent .collapseAll .collapse .contents-box.show {
  display: block;
}
@media screen and (max-width: 768px) {
  #product .productContent .collapseAll {
    display: block;
  }
  #product .changeList ul li {
    padding: 11px 30px;
  }
  #product .productContent h4 {
    margin-bottom: 50px;
  }
  #product .productContent .tabList, #product .productContent .tabList02, #product .productContent .tabContent, #product .productContent .tabContent02 {
    display: none;
  }
}
@media screen and (max-width: 540px) {
  #product .changeList ul li {
    padding: 11px 10px;
  }
  #product .productContent h2 {
    font-size: 35px;
  }
}

#advantage {
  padding: 100px 30px;
  background-color: #F7F7F7;
  background-image: url(/img/section03/BG.png);
  background-size: cover;
  background-repeat: no-repeat;
}
#advantage .row {
  display: flex;
}
#advantage .row .col-6 {
  padding: 0 50px;
  width: 50%;
  display: flex;
  align-items: center;
}
#advantage .row .col-6 h3 {
  color: #F2CF3B;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
#advantage .row .col-6 p {
  color: #5B5752;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}
@media screen and (max-width: 768px) {
  #advantage .row {
    display: block;
  }
  #advantage .row .col-6 {
    width: 100%;
    padding: 0;
    margin-bottom: 80px;
  }
  #advantage .row .col-6:last-child {
    margin-bottom: 0;
  }
}

.usBG {
  background-image: url(/img/section05/final_bg-min.png);
  padding-bottom: 200px;
  background-size: cover;
  background-repeat: no-repeat;
}
.usBG #aboutUs {
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
}
.usBG #aboutUs h2 {
  color: #F2CF3B;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 2px;
  margin: 50px 0 60px 0;
  position: relative;
}
.usBG #aboutUs h2::after {
  content: "";
  width: 45px;
  height: 2px;
  background: #F2CF3B;
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
}
.usBG #aboutUs p {
  text-align: center;
  color: #5B5752;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 30px;
}
.usBG #contactUs {
  padding: 90px 30px 30px 30px;
}
.usBG #contactUs .contactUsBlock {
  padding: 40px 80px;
  background: #fff;
  border-radius: 20px;
  border: 2px solid #F2CF3B;
  position: relative;
}
.usBG #contactUs .contactUsBlock h2 {
  text-align: center;
  color: #F2CF3B;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 2px;
  position: relative;
}
.usBG #contactUs .contactUsBlock h2::after {
  content: "";
  width: 45px;
  height: 2px;
  background: #F2CF3B;
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
}
.usBG #contactUs .contactUsBlock .row {
  display: flex;
  margin-top: 80px;
}
.usBG #contactUs .contactUsBlock .row .col-4 {
  width: 30%;
}
.usBG #contactUs .contactUsBlock .row .col-4 .titleImg {
  margin-right: 15px;
}
.usBG #contactUs .contactUsBlock h5 {
  text-align: center;
  color: #5B5752;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5em;
}
.usBG #contactUs .contactUsBlock h5 span {
  font-weight: 600;
}
.usBG #contactUs .contactUsBlock .rocketImg {
  position: absolute;
  left: -2px;
  top: -62px;
  z-index: 99;
}
.usBG #contactUs .contactUsBlock .contactStarImg {
  position: absolute;
  right: -40px;
  bottom: 35px;
  z-index: 99;
}
@media screen and (max-width: 768px) {
  .usBG {
    padding-bottom: 80px;
  }
  .usBG #aboutUs .aboutUsImg {
    width: 220px;
  }
  .usBG #aboutUs p {
    text-align: start;
  }
  .usBG #contactUs .contactUsBlock {
    padding: 50px;
  }
  .usBG #contactUs .contactUsBlock .row {
    display: block;
  }
  .usBG #contactUs .contactUsBlock .row .col-4 {
    width: 100%;
  }
  .usBG #contactUs .contactUsBlock .contactStarImg {
    right: -10px;
    bottom: -27px;
  }
}
@media screen and (max-width: 540px) {
  .usBG #aboutUs p {
    padding: 0 20px;
  }
  .usBG #contactUs .contactUsBlock {
    padding: 60px 30px 40px 30px;
  }
  .usBG #contactUs .contactUsBlock .contactStarImg {
    right: -10px;
    bottom: -42px;
  }
}

.scrollTop {
  display: none;
}
.scrollTop span {
  font-size: 18px;
  position: fixed;
  right: 55px;
  bottom: 40px;
  padding: 10px 14px;
  border-radius: 50%;
  background: #fff;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid #5B5752;
}
.scrollTop span:hover {
  background: #3d3d3d;
  color: #fff;
}
.scrollTop.active {
  display: block;
}

footer {
  padding: 25px;
  background: #F2CF3B;
  text-align: center;
}
footer h5 {
  color: #fff;
  font-weight: 400;
  letter-spacing: 2.5px;
  font-size: 14px;
}

@media screen and (max-width: 540px) {
  .scrollTop span {
    right: 20px;
    bottom: 20px;
  }
  footer {
    padding: 25px 60px;
  }
}

/*# sourceMappingURL=style.css.map */
