html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  line-height: 1.5;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}

q:before,
q:after,
blockquote:before,
blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
  border: none;
}


.project {
  background: #14360a;
  overflow-x: hidden;
  font-family: "Noto Sans TC", sans-serif;
  line-height: 1.5;
}

.menu_btn {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 1000;
  width: 50px;
  height: 50px;
  cursor: pointer;
  border-radius: 50%;
  display: none;
  justify-content: center;
  align-items: center;
}
.menu_btn span {
  position: relative;
  display: block;
  width: 60%;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: background-color 0.2s ease;
}
.menu_btn span::before, .menu_btn span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}
.menu_btn span::before {
  top: -9px;
}
.menu_btn span::after {
  top: 9px;
}
.menu_btn.active span {
  background-color: transparent;
}
.menu_btn.active span::before {
  transform: translateY(9px) rotate(45deg);
}
.menu_btn.active span::after {
  transform: translateY(-9px) rotate(-45deg);
}
@media (max-width: 980px) {
  .menu_btn {
    display: flex;
  }
}

.header {
  display: flex;
  justify-content: space-between;
  padding: 12px 20px;
  background: linear-gradient(45deg, #819568 0%, #e1e6e5 50%, #e0cd95 100%);
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
@media (max-width: 980px) {
  .header {
    background: linear-gradient(50deg, #819568 0%, #d7e0de 50%, #e0cd95 100%);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 50px;
    position: fixed;
    top: -100vh;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 70px 20px 20px;
    transition: all 0.4s ease-in-out;
    opacity: 0;
    z-index: -10;
    overflow-y: auto;
  }
  .header.show {
    z-index: 999;
    top: 0;
    opacity: 1;
  }
}
.header figure {
  display: inline-block;
  width: 100%;
}
@media (max-width: 980px) {
  .header figure {
    filter: drop-shadow(3px 3px 8px rgba(0, 0, 0, 0.155));
  }
}
.header figure img {
  width: 100%;
}
.header .logo {
  display: flex;
  align-items: center;
}
.header .logo1 {
  max-width: 150px;
  margin-right: 17px;
}
@media (max-width: 1200px) {
  .header .logo1 {
    max-width: 120px;
  }
}
@media (max-width: 980px) {
  .header .logo1 {
    max-width: 115px;
  }
}
.header .logo2 {
  max-width: 103px;
}
@media (max-width: 1200px) {
  .header .logo2 {
    max-width: 95px;
  }
}
@media (max-width: 980px) {
  .header .logo2 {
    max-width: 95px;
  }
}
.header ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 980px) {
  .header ul {
    flex-direction: column;
    gap: 30px;
  }
}
.header ul li {
  margin: 0 10px;
}
.header ul li a {
  color: #fff;
  font-size: 18px;
  padding: 0 20px;
  text-decoration: none;
  color: #14360a;
  position: relative;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1200px) {
  .header ul li a {
    padding: 0 10px;
  }
}
@media (max-width: 980px) {
  .header ul li a {
    font-weight: 500;
  }
}
.header ul li a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -28px;
  width: 100%;
  height: 6px;
  background: transparent;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 980px) {
  .header ul li a:after {
    display: none;
  }
}
.header ul li a:hover {
  color: #836e2a;
}
.header ul li a:hover:after {
  background-color: #bca557;
}

.footer .footer_upper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  background: #454d44;
  padding: 20px;
}
@media (max-width: 980px) {
  .footer .footer_upper {
    flex-direction: column;
    gap: 20px;
    align-items: start;
  }
}
.footer .footer_group {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .footer_group figure img {
  width: 100%;
}
.footer .footer_group .footer_logo1 {
  margin-right: 25px;
}
@media (max-width: 980px) {
  .footer .footer_group .footer_logo1 {
    margin-right: 15px;
    min-width: 100px;
  }
}
.footer .footer_group .footer_logo1,
.footer .footer_group .footer_logo3 {
  max-width: 142px;
}
@media (max-width: 980px) {
  .footer .footer_group .footer_logo1,
  .footer .footer_group .footer_logo3 {
    max-width: 120px;
  }
}
.footer .footer_group .footer_logo2 {
  max-width: 161px;
}
@media (max-width: 980px) {
  .footer .footer_group .footer_logo2 {
    max-width: 140px;
  }
}
.footer .footer_group p {
  color: #fff;
  font-size: 16px;
  margin-right: 20px;
  word-break: keep-all;
}
@media (max-width: 980px) {
  .footer .footer_group p {
    margin-right: 15px;
  }
}
.footer .footer_lower {
  border-top: 1px solid #fff;
  display: flex;
  justify-content: space-between;
  background: black;
  color: #fff;
  padding: 20px 35px;
}
@media (max-width: 980px) {
  .footer .footer_lower {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
  }
}
.footer .footer_lower p {
  font-family: "Noto Sans TC", sans-serif;
}
.footer .footer_lower p br {
  display: none;
}
@media (max-width: 1440px) {
  .footer .footer_lower p br {
    display: block;
  }
}
.footer .footer_lower .footer_link {
  display: flex;
  gap: 50px;
  align-items: center;
}
@media (max-width: 1440px) {
  .footer .footer_lower .footer_link {
    gap: 30px;
  }
}
@media (max-width: 980px) {
  .footer .footer_lower .footer_link {
    margin-top: 20px;
    justify-content: center;
  }
}
.footer .footer_lower .footer_link a {
  word-break: keep-all;
}
.footer .footer_lower a {
  color: #fff;
  text-decoration: none;
}

.title {
  text-align: center;
  margin-bottom: 35px;
  font-family: "Noto Serif TC", serif;
}
.title .title_zh {
  padding-bottom: 15px;
  margin-bottom: 10px;
  font-weight: 500;
  display: block;
  font-size: 36px;
  position: relative;
}
@media (max-width: 980px) {
  .title .title_zh {
    font-size: 30px;
  }
}
.title .title_zh:after {
  content: "";
  position: absolute;
  width: 90px;
  height: 5px;
  background: #8aa52d;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.title span {
  display: block;
  font-size: 24px;
  font-weight: 400;
}
@media (max-width: 980px) {
  .title span {
    font-size: 20px;
  }
}

.sec {
  position: relative;
}
.sec:before {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
}
.sec:after {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
}
.sec .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 55px 0 120px;
  color: white;
  position: relative;
  z-index: 1;
}
@media (max-width: 1440px) {
  .sec .container {
    width: 85%;
  }
}
@media (max-width: 1024px) {
  .sec .container {
    width: 95%;
  }
}
@media (max-width: 980px) {
  .sec .container {
    width: 100%;
    padding: 40px 20px 60px;
  }
}
.sec .container:before, .sec .container:after {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
}

.banner figure {
  background-size: cover;
  background-position: center;
  max-width: 94.7916666667%;
  padding-bottom: 21.978021978%;
  margin-left: auto;
}
@media (max-width: 768px) {
  .banner figure {
    max-width: 100%;
    background-position: bottom right;
    width: 100%;
    padding-bottom: 50%;
    margin: unset;
  }
}