@charset "UTF-8";
.about-list li, .i-about .i-about-content ul li {
  display: flex;
  align-items: center;
  margin: 12px 0;
}
.about-list li img, .i-about .i-about-content ul li img {
  margin-right: 20px;
  width: 56px;
  height: 56px;
}

p.p-lg {
  font-size: 18px;
}

h1 {
  font-size: 30px;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
  font-weight: 700;
}

.bg-primary {
  background-color: #c8b264;
}

.bg-lighter {
  background-color: #f5f5f4;
}

.t-primary {
  color: #c8b264;
}

.t-warning {
  color: #ff0000;
}

.align-items-start {
  align-items: start !important;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.img-box {
  width: 100%;
}
.img-box img {
  width: 100%;
}

nav .navbar-container {
  padding: 0 10px;
  margin: auto;
  transition: padding 0.3s ease, width 0.3s ease;
}
@media (min-width: 992px) {
  nav .navbar-container {
    padding: 0 40px 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  nav .navbar-container {
    width: 900px;
  }
}
nav .navbar-container img.logo {
  width: auto;
}
@media (min-width: 992px) {
  nav .navbar-container img.logo {
    width: 165px;
  }
}

footer .logo img {
  width: 120px;
}
footer .footer-contacts {
  margin-top: 10px;
}
footer .footer-contacts .footer-contact {
  padding: 4px 0;
}
footer .footer-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .footer-link {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 206px;
  width: 100%;
  max-width: 300px;
}
@media (min-width: 768px) {
  footer .footer-link {
    max-width: none;
  }
}
footer .footer-link li {
  text-align: center;
  width: 50%;
  margin-bottom: 15px;
  padding-right: 15px;
}
footer .footer-link li a {
  display: inline-block;
  padding-left: 15px;
  position: relative;
}
footer .footer-link li a::before {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  left: 0;
  opacity: 0.4;
  position: absolute;
  top: 0;
  width: 6px;
}
footer .qrcode img {
  width: 100%;
  height: auto;
  max-width: 220px;
}
@media (min-width: 768px) {
  footer .qrcode img {
    width: 180px;
    height: 180px;
  }
}
footer .copyright {
  padding: 10px;
  text-align: center;
}
footer .copyright p {
  margin: 0;
  color: white;
}
footer .fixed-links {
  position: fixed;
  right: 4px;
  bottom: 64px;
  z-index: 50;
}
@media (min-width: 576px) {
  footer .fixed-links {
    right: 20px;
  }
}
footer .fixed-links ul {
  display: grid;
  gap: 4px;
}
footer .fixed-links img {
  width: 48px;
  height: 48px;
}

form {
  text-align: center;
}
form button {
  padding: 8px 12px;
  background-color: #c8b264;
  color: #fff;
  border: none;
  width: 200px;
}
form .form-group {
  display: flex;
  align-items: center;
}
form .form-group label:first-child {
  text-align: start;
  font-size: 16px;
  margin: 0 10px 0;
  min-width: 80px;
}
form .form-group input {
  background-color: #f5f5f4;
  border: none;
  width: 100%;
  padding: 0 16px;
}
form .form-group select {
  border: none;
  height: 50px;
  width: 100%;
  padding: 0 16px;
  padding-right: 24px;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: url(../images/arrow.png) no-repeat scroll right center #f5f5f4;
}
form .form-group textarea {
  background-color: #f5f5f4;
  width: 100%;
  min-height: 220px;
  padding: 16px;
  border: none;
  resize: none;
}
form .radio-group {
  display: flex;
  align-items: center;
  margin-right: 20px;
}
form .radio-group input[type=radio] {
  width: 20px; /* 宽度 */
  height: 20px; /* 高度 */
  margin: 0;
}
form .radio-group label {
  margin: 0;
  padding-left: 8px;
}

.site-heading p {
  margin-top: 20px;
}

.i-question h3 {
  margin-bottom: 40px;
  color: white;
}
.i-question p {
  margin: 15px 0 30px;
}

.i-about {
  position: relative;
  background-image: url("../images/about-banner.png");
  background-position: left;
  height: 720px;
}
.i-about .i-about-content {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  max-width: 510px;
  padding: 20px;
}
@media (min-width: 576px) {
  .i-about .i-about-content {
    left: 8%;
  }
}
@media (min-width: 992px) {
  .i-about .i-about-content {
    left: 15%;
  }
}
.i-about .i-about-content img.title-img {
  width: 200px;
}
@media (min-width: 1200px) {
  .i-about .i-about-content img.title-img {
    width: auto;
  }
}
.i-about .i-about-content p {
  margin: 20px 0;
}
.i-service hr {
  width: 50px;
  border: 1px solid #c8b264;
  margin: 10px 0;
}
.i-service li {
  font-size: 12px;
  color: #808080;
}

.services-inc-area .item .info {
  height: 240px;
}

.i-contact {
  position: relative;
  background-image: url("../images/contact-banner.png");
  background-position: left;
  height: 550px;
}
.i-contact .i-contact-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 320px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  transition: left 0.8s ease, transform 0.8s ease, width 0.8s ease, max-width 0.3s ease;
}
@media (min-width: 768px) {
  .i-contact .i-contact-content {
    max-width: none;
  }
}
@media (min-width: 992px) {
  .i-contact .i-contact-content {
    left: 20%;
    transform: translate(0, -50%);
    width: auto;
    align-items: start;
    text-align: left;
  }
}
.i-contact .i-contact-content p {
  font-size: 20px;
  color: white;
  line-height: 1.4;
}
@media (min-width: 992px) {
  .i-contact .i-contact-content p {
    font-size: 28px;
  }
}
.i-contact .i-contact-content a {
  display: block;
}

.i-form {
  padding: 20px;
}
.i-form .i-form-wrap {
  background-color: white;
  margin: auto;
  padding: 40px 10px;
  width: 100%;
}
@media (min-width: 768px) {
  .i-form .i-form-wrap {
    padding: 40px;
  }
}
@media (min-width: 1200px) {
  .i-form .i-form-wrap {
    width: 60%;
  }
}
.i-form .i-form-wrap .site-heading {
  margin: auto;
  margin-bottom: 20px;
  max-width: 800px;
}
.i-form p:last-child {
  font-size: 14px;
}

.i-tips {
  width: 90%;
  margin: auto;
}
@media (min-width: 1400px) {
  .i-tips {
    width: 80%;
  }
}
.i-tips .tips-item {
  box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
}
.i-tips .tips-item .tips-img-box {
  max-height: 320px;
  overflow: hidden;
}
.i-tips .tips-item .tips-img-box img {
  width: 100%;
  height: auto;
}
.i-tips .tips-item .info {
  display: flex;
  flex-direction: column;
  padding: 20px;
}
@media (min-width: 1200px) and (max-width: 1450px) {
  .i-tips .tips-item .info {
    height: 250px;
  }
}
.i-tips .tips-item .info h6 {
  margin: auto;
  line-height: 1.4;
}
.i-tips .tips-item .info p.small {
  line-height: 1.8;
  margin: 20px 0;
  display: -webkit-box;
  -webkit-line-clamp: 4; /* 設定顯示 3 行 */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 1200px) and (max-width: 1450px) {
  .i-tips .tips-item .info p.small {
    margin: 12px 0;
  }
}
.i-tips .tips-item a {
  color: #c8b264;
}

.about-list {
  margin-top: 40px;
  color: white;
}

.about-remark {
  padding: 20px 40px 0;
}
@media (min-width: 1200px) {
  .about-remark {
    padding: 40px 40px 0;
    width: 60%;
  }
}
.about-remark .contact {
  padding: 4px 0;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (min-width: 768px) {
  .service-item {
    flex-direction: row;
    align-items: start;
  }
}
.service-item .service-item-content li {
  font-size: 16px;
  margin: 8px 0;
}
@media (min-width: 768px) {
  .service-item .service-item-content {
    margin-top: 20px;
    padding-left: 40px;
  }
}

.tips-types {
  margin: 30px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.tips-types button {
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  border: 2px solid #c8b264;
  background-color: white;
  color: #c8b264;
  padding: 8px 12px;
}
.tips-types button:hover {
  background-color: #eee;
}
.tips-types button.active {
  background-color: #c8b264;
  color: #fff;
}

.post-content {
  margin-top: 20px;
}
.post-content h3 {
  color: #c8b264;
}
.post-content img {
  width: 100%;
  max-width: 100%;
  margin: 10px 0;
}/*# sourceMappingURL=custom.css.map */