* {
  box-sizing: border-box;
  font-family: sans-serif;
}
html {
  font-size: 16px;
  overflow-x: hidden;
  line-height: 1.3;
}
@media screen and (max-width: 1680px) {
  html {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 14px;
  }
}
body {
  margin: 0;
  overflow-x: hidden;
  height: 100vh;
  overflow-y: auto;
}
body.is-dialog-open {
  overflow: hidden;
}
.container {
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
  max-width: 1426px;
}
.container.max {
  max-width: 1612px;
}
@media screen and (max-width: 1199px) {
  .container {
    max-width: 1200px;
  }
}
@media screen and (max-width: 991px) {
  .container {
    max-width: 900px;
  }
}
@media screen and (max-width: 767px) {
  .container {
    max-width: 675px;
    padding: 0 16px;
  }
}
@media screen and (max-width: 575px) {
  .container {
    max-width: 100%;
  }
}
.pic {
  font-size: 0;
  line-height: 0;
  width: 100%;
}
.pic.ele {
  position: relative;
}
.pic.ele img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  object-fit: cover;
}
.pic.ele::before {
  content: '';
  padding-top: 75%;
  display: block;
}
.pic img {
  width: 100%;
}
.btn {
  border-radius: 10px;
  border: 1px solid #f06423;
  padding: 1rem 1.5rem;
  background-color: #f06423;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  line-height: 1.125;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.btn:hover {
  background-color: #fff;
  color: #f06423;
}
.btn:hover .bi {
  left: 3px;
}
.btn .bi {
  font-size: 1.5rem;
  position: relative;
  left: 0;
  transition: left 0.3s ease-in-out;
}
.more {
  all: unset;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.125rem;
  color: #009043;
  line-height: 1.52;
  position: relative;
}
.more .bi {
  position: relative;
  left: 0;
  transition: left 0.3s ease-in-out;
}
.more:hover .bi {
  left: 3px;
}
.more::after {
  content: '';
  height: 1px;
  background-color: #009043;
  position: absolute;
  bottom: -5px;
  width: 100%;
}
.swper-nav {
  border-radius: 50%;
  border: 1px solid #f06423;
  width: 3.75rem;
  height: 3.75rem;
  background-color: #f06423;
  color: #fff;
  font-size: 1.875rem;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.swper-nav:hover {
  background-color: #fff;
  color: #f06423;
}
.inner-banner {
  background-color: #f3f1ef;
}
.inner-banner .pic {
  border-radius: 20px;
  background-color: #fff;
}
.inner-banner .pic::before {
  padding-top: 30%;
}
.module {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}
.module h2 {
  margin: 0 0 1.75rem;
  font-size: 2.5rem;
  color: #009043;
  font-weight: 600;
  line-height: 1.225;
}
.module h2.has-line {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.module h2 span {
  color: #f06423;
}
.module h2 .line {
  width: 3.625rem;
  height: 2px;
  background-color: #ea6227;
  position: relative;
}
.module h2 .line::after {
  content: '';
  width: 50%;
  height: 2px;
  background-color: #009043;
  position: absolute;
  top: 0;
  left: 0;
}
