@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;600;700&display=swap");
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans TC", "Arial", sans-serif, "微軟正黑體";
  font-size: 16px;
  color: #5A5A5A;
  overflow-x: hidden;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1360px;
  }
}

.w-1920 {
  max-width: 1920px;
  margin: auto;
  width: 100%;
  overflow: hidden;
}

.w-1000 {
  max-width: 1000px;
  margin: auto;
  width: 100%;
  overflow: hidden;
}

.w-800 {
  max-width: 800px;
  margin: auto;
  width: 100%;
  overflow: hidden;
}

img {
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a,
a:hover {
  text-decoration: none;
}

.checkout-btn {
  outline: 1px solid #2a2a2a;
  padding: 6px 10px;
  border-radius: 20px;
  color: #2a2a2a;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all ease-in-out 0.3s;
}
@media (min-width: 992px) {
  .checkout-btn {
    padding: 8px 20px;
  }
}
.checkout-btn::before {
  content: "";
  position: absolute;
  background-color: #247046;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all ease-in-out 0.3s;
}
.checkout-btn:hover {
  outline: none;
  color: #ffffff;
  transition: all ease-in-out 0.3s;
}
.checkout-btn:hover::before {
  width: 100%;
  transition: all ease-in-out 0.3s;
}

.page ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 15px;
}
.page a {
  color: #686868;
  padding: 3px;
  margin: 3px;
}

.mainBtn {
  border-radius: 2rem;
  color: #247046;
  border: 1px solid #247046;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  width: 140px;
  display: block;
  background-color: transparent;
  transition: all ease 0.3s;
}
.mainBtn:hover {
  background-color: #247046;
  color: var(--white);
}

.subtitle {
  margin-bottom: 1rem;
  color: #2a2a2a;
  font-size: 2rem;
  font-weight: 800;
}

.title {
  color: #247046;
  font-weight: 800;
  font-size: 3rem;
}

@media (min-width: 1200px) {
  .subtitle {
    font-size: 40px;
  }
  .title {
    font-size: 70px;
  }
}
.moreBtn {
  color: #247046;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease-in;
  position: relative;
}
.moreBtn::before {
  content: "";
  width: 0.8rem;
  height: 1px;
  background-color: #247046;
  position: absolute;
  right: -2.4rem;
  top: 38%;
  transform: rotate(40deg);
  transition: all 0.3s ease;
}
.moreBtn::after {
  content: "";
  width: 3rem;
  height: 1px;
  background-color: #247046;
  position: absolute;
  right: -2.4rem;
  top: 50%;
  transition: all 0.3s ease;
}
.moreBtn:hover {
  background-color: #247046;
  color: var(--white);
}
.moreBtn:hover::before {
  transform: translateX(10px) rotate(40deg);
}
.moreBtn:hover::after {
  transform: translateX(10px);
}

.searchBtn {
  background-color: #247046;
  color: #5599BE;
  font-size: 14px;
}

.bread_crumbs {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}
.bread_crumbs li {
  font-size: 15px;
  padding-left: 5px;
}
.bread_crumbs li::after {
  content: "/";
  margin-left: 5px;
}
.bread_crumbs li:last-child {
  color: #247046;
}
.bread_crumbs li:last-child::after {
  content: "";
}
.bread_crumbs li a {
  color: #5A5A5A;
}

.text-mark {
  color: red;
  font-size: 85%;
  margin-left: 5px;
}

.submitBtn {
  background: #247046;
  color: var(--white);
  padding: 0.6rem 1.5rem;
}

.submitBtn:hover {
  color: var(--white);
}

@media (min-width: 1200px) {
  .border-lg-right {
    border-right: 1px solid #eaeaea;
  }
  .border-lg-left {
    border-left: 1px solid #eaeaea;
  }
}
.page_head {
  margin-top: 56px;
}
@media (min-width: 1200px) {
  .page_head {
    margin-top: 66px;
  }
}

.page_banner {
  padding-bottom: 40%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  position: relative;
  display: flex;
  justify-content: center;
}
.page_banner .container {
  position: absolute;
  top: 50%;
}
.page_banner .container .title {
  color: var(--white);
  line-height: 1.5;
  font-weight: 600;
  font-size: 2rem;
  font-family: "noto sans tc", "Arial";
  position: relative;
}
.page_banner .container .title::after {
  content: "";
  width: 50px;
  height: 3px;
  background-color: #247046;
  position: absolute;
  left: 0;
  bottom: -0.5rem;
}
@media (min-width: 1200px) {
  .page_banner {
    padding-bottom: 24%;
  }
  .page_banner .container .title {
    font-size: 2.4rem;
  }
}

.goback ul {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.goback li.active a {
  color: var(--white);
  background-color: #247046;
}
.goback a {
  color: #5A5A5A;
  padding: 5px;
  margin: 5px;
}

.bg-main {
  background-color: #247046;
}

.text-sub {
  color: #5599BE;
}

.text-main {
  color: #247046;
}

.text-lightBlack {
  color: #5A5A5A;
}

.text-darkBlack {
  color: #2a2a2a;
}

.text-white {
  color: #ffffff;
}

.text-nav {
  color: #f6f6f6;
}

.fs-14 {
  font-size: 14px;
}

.fs-15 {
  font-size: 15px;
}

.fs-16 {
  font-size: 16px;
}

.fs-18 {
  font-size: 18px;
}

.fs-20 {
  font-size: 20px;
}

.fs-24 {
  font-size: 24px;
}

.fs-32 {
  font-size: 32px;
}

.fs-48 {
  font-size: 48px;
}

.w-1920 {
  max-width: 1920px;
  margin: 0 auto;
}

.mb-1rem {
  margin-bottom: 1rem;
}

.mb-2rem {
  margin-bottom: 2rem;
}

.mb-3rem {
  margin-bottom: 3rem;
}

.mb-4rem {
  margin-bottom: 4rem;
}

.mainbg {
  background-color: #EAEFF3;
}
@media (min-width: 992px) {
  .mainbg {
    background-color: transparent;
  }
}

.subbg {
  background-color: #D7E2EA;
}

.margin-r-s {
  margin-right: 0;
}
@media (min-width: 992px) {
  .margin-r-s {
    margin-right: -1.5rem;
  }
}

.margin-l-s {
  margin-left: 0;
}
@media (min-width: 992px) {
  .margin-l-s {
    margin-left: -1.5rem;
  }
}

.goTop {
  position: fixed;
  right: 5px;
  bottom: 40px;
  text-align: center;
  display: block;
  cursor: pointer;
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 50px;
  border: 1px solid #247046;
  color: var(--white);
  background-color: #247046;
  transition: all 0.5s;
  animation: 3s arrowTop ease-out infinite;
}

.goTop:hover {
  background-color: #ccc;
  color: var(--white);
}

@keyframes arrowTop {
  0%, 100%, 20%, 50%, 80% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20%);
  }
  60% {
    transform: translateY(-10%);
  }
}
/* 手機漢堡選單 */
.menu-icon__cheeckbox {
  display: none;
}

.menu-icon {
  position: absolute;
  right: 0;
  top: 0;
  width: 56px;
  height: 56px;
  cursor: pointer;
  display: block;
  background-color: #247046;
  margin-bottom: 0;
  z-index: 1001;
}
@media (min-width: 1200px) {
  .menu-icon {
    display: none;
  }
}
.menu-icon div {
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 25px;
  height: 12px;
}

.menu-icon span {
  position: absolute;
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 1px;
  background-color: var(--white);
  transition: all 0.2s cubic-bezier(0.1, 0.82, 0.76, 0.965);
}
.menu-icon span:first-of-type {
  top: 0;
}
.menu-icon span:last-of-type {
  bottom: 0;
}

.menu-icon__cheeckbox:checked ~ .menu-icon div span:first-of-type {
  transform: rotate(45deg);
  top: 4px;
}

.menu-icon__cheeckbox:checked ~ .menu-icon div span:last-of-type {
  transform: rotate(-45deg);
  bottom: 5px;
}

/* 手機漢堡選單end */
/* 主選單開始 */
.navbar {
  width: 100%;
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  padding: 0;
  min-height: 56px;
  transition: all 0.3s ease-in;
}

.navbar.fixed {
  position: fixed;
  background-color: #247046;
}
@media (min-width: 1200px) {
  .navbar.fixed {
    background-color: transparent;
  }
}

.navbar-header {
  width: 100%;
  display: flex;
  justify-content: center;
}
.navbar-header .navbar-collapse {
  display: flex;
  height: 100vh;
  width: 100%;
  flex-direction: column;
  flex-wrap: wrap;
  position: absolute;
  top: -100%;
  left: 0;
  background-color: #eaeaea;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 1200px) {
  .navbar-header .navbar-collapse {
    flex-direction: row;
    justify-content: center;
    background-color: var(--white);
    height: auto;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 30px 30px;
    top: 0;
    width: 860px;
    max-width: 860px;
    margin: auto;
    opacity: 1;
    visibility: visible;
    position: relative;
  }
}
.navbar-header .navbar-collapse .head-cont {
  text-align: center;
  margin-top: 1.5rem;
}
@media (min-width: 992px) {
  .navbar-header .navbar-collapse .head-cont {
    text-align: left;
    margin-top: 0;
    width: 400px;
    display: flex;
    flex-wrap: wrap;
  }
}
.navbar-header .navbar-collapse .head-cont h3 {
  width: 100%;
  font-size: 1.4rem;
  color: #5A5A5A;
}
.navbar-header .navbar-collapse .head-cont .item a {
  color: #f6f6f6;
  font-size: 14px;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .navbar-header .navbar-collapse .head-cont .item a {
    margin-right: 10px;
    margin-bottom: 0;
  }
}

#menu-link:checked ~ .navbar-collapse {
  opacity: 1;
  top: 56px;
  visibility: visible;
}

.nav li {
  flex: 0 0 100%;
}
@media (min-width: 992px) {
  .nav li {
    flex: 0 0 auto;
  }
}
.nav li a {
  color: #247046;
  padding: 0.8rem 1rem;
  font-size: 1.125rem;
  position: relative;
  font-weight: 400;
  display: block;
  text-align: center;
  transition: all 0.3s ease-in;
  position: relative;
}
@media (min-width: 992px) {
  .nav li a {
    padding: 1.3rem 1rem;
    color: #5A5A5A;
  }
}
@media (min-width: 1200px) {
  .nav li a {
    padding: 1.2rem 1.5rem;
  }
  .nav li a::before {
    content: "";
    width: 1px;
    height: 50%;
    background-color: #cccccc;
    position: absolute;
    right: 0;
    top: 25%;
  }
}
.nav li a::after {
  content: "";
  height: 4px;
  background-color: #247046;
  width: 0;
  transition: all ease 0.2s;
  position: absolute;
  bottom: -1px;
  left: 0;
}
.nav li:last-child a::before {
  display: none;
}
.nav li a:hover, .nav li a.active {
  color: #247046;
}
.nav li a:hover::after, .nav li a.active::after {
  width: 100%;
}
.nav li.active a {
  color: #247046;
}
.nav li.active a::after {
  content: "";
  height: 4px;
  background-color: #247046;
  width: 80%;
  position: absolute;
  bottom: -1px;
  left: 10%;
}

.logo {
  width: 180px;
  padding: 5px;
}
@media (min-width: 1200px) {
  .logo {
    width: 240px;
  }
}
.logo a {
  width: 100%;
  display: block;
  padding-bottom: 22%;
  background-repeat: no-repeat;
  background-size: contain;
}

footer {
  padding: 3rem 0 1.5rem;
  background: url(/frontEndPackage/images/footBg.jpg);
}
@media (min-width: 1200px) {
  footer {
    padding: 2rem 0 1rem;
  }
}
footer .copy {
  color: var(--white);
}
footer .copy span {
  display: block;
}
@media (min-width: 1200px) {
  footer .copy span {
    display: inline;
  }
}
footer .copy a {
  color: var(--white);
  margin-bottom: 5px;
  display: block;
}
footer .photonic {
  color: var(--white);
  font-size: 0.8rem;
  align-items: center;
  font-weight: 300;
  opacity: 0.3;
}
footer .photonic a {
  margin-bottom: 0;
  color: var(--white);
}
footer .photonic a::before {
  content: "/";
  padding: 5px;
}
footer .photonic a:not(:first-child)::before {
  content: "";
}

.cont {
  background-color: #f6f6f6;
}

.contact-form .form-group {
  display: flex;
}
.contact-form .form-group .name {
  width: 90px;
  text-align: right;
}
.contact-form .form-group .form-input {
  width: calc(100% - 90px);
}
.contact-form .cerify-code-panel {
  display: flex;
  flex-wrap: wrap;
}
.contact-form .cerify-code-panel .verify-code {
  flex: 0 0 45% !important;
  width: 45% !important;
  order: 1;
}
.contact-form .cerify-code-panel .verify-code-area {
  float: left;
  width: 55% !important;
  padding-right: 10px;
}
.contact-form .cerify-code-panel .verify-change-code {
  color: #5A5A5A;
}
@media (min-width: 1200px) {
  .contact-form {
    margin-top: -4rem;
  }
}

.map {
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  position: relative;
}
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.conta_cont a {
  color: #5A5A5A;
}/*# sourceMappingURL=all.css.map */