@font-face {
  font-family: 'DIN-Medium';
  src: url('../fonts/DIN-Medium.otf');
}
@font-face {
  font-family: 'Montserrat-SemiBold';
  src: url('../fonts/Montserrat-SemiBold.otf');
}
:root {
  --Noto-Sans-SC: 'Noto Sans SC', sans-serif;
  --Noto-Serif-SC: 'Noto Serif SC', sans-serif;
  --Song-Myung: 'Song Myung', sans-serif;
  --Roboto: 'Roboto', sans-serif;
  --Abel: 'Abel', sans-serif;
  --Barlow-Condensed: 'Barlow Condensed', sans-serif;
  --Din: 'DIN-Medium', sans-serif;
  --Montserrat-SemiBold: 'Montserrat-SemiBold', 'sans-serif';
  --Montserrat: 'Montserrat', 'sans-serif';
  --Poppins: 'Poppins', 'sans-serif';
  --Lato: 'Lato', 'sans-serif';
}
h1,
h2,
h3,
h4,
h5,
p {
  transition: all 0.5s;
}
body {
  overflow: visible;
}
body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  background-color: #fff;
}
body::-webkit-scrollbar {
  width: 5px;
  background-color: #fff;
}
body::-webkit-scrollbar-thumb {
  border-radius: 2px;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
  background-color: #666;
}
body:hover::-webkit-scrollbar-thumb {
  background-color: #ccc;
}
.out-header {
  height: 218px;
  width: 100%;
}
.mycontainer {
  max-width: 1200px;
  width: 85%;
  margin: 0 auto;
}
.blank {
  margin: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  min-height: 0 !important;
  border: 0 !important;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 1px 4px rgba(0, 6, 26, 0.19);
  z-index: 99;
  transition: all 0.5s;
  background-color: #fff;
}
header .header-top {
  background-color: #a98040;
}
header .header-top .mycontainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 42px;
  font-size: 13px;
  color: #fff;
}
header .header-top .mycontainer a {
  color: inherit;
}
header .header-top .mycontainer a:hover {
  text-decoration: underline !important;
}
header .header-mid .mycontainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 120px;
}
header .header-mid .logo {
  width: 62.75%;
}
header .header-mid .logo img {
  transition: all 0.5s;
}
header .header-mid .info {
  display: flex;
  align-items: center;
}
header .header-mid .info img {
  margin-right: 14px;
}
header .header-mid .info span {
  font-size: 16px;
  color: #000;
}
header .header-mid .info h4 {
  font-size: clamp(20px, 1.5625vw, 30px);
  color: #ff9f00;
  line-height: 1.7;
  font-family: Impact, sans-serif;
}
header .lv1 {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  font-size: clamp(16px, 1.0416667vw, 20px);
}
header .lv1 > li {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}
header .lv1 > li a {
  display: block;
  color: #333;
  transition: all 0.5s;
  text-transform: uppercase;
  line-height: 55px;
  padding: 0 1em;
  text-align: center;
  width: 100%;
}
header .lv1 > li::after {
  position: absolute;
  display: block;
  content: "";
  width: 0;
  height: 5px;
  background-color: #a98040;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0%);
  transition: all 0.5s;
}
header .lv1 > li::before {
  position: absolute;
  display: block;
  content: "";
  width: 1px;
  height: 1em;
  background-color: #b3b4b6;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
}
header .lv1 > li:last-child::before {
  display: none;
}
header .lv1 > li:hover::after {
  width: 100%;
}
header .lv1 > li:hover .lv2 {
  opacity: 1;
  transform: translate(-50%, 0);
  visibility: visible;
}
header .lv1 .lang {
  color: #fff;
  margin-right: 5%;
}
header .lv1 .lang img {
  margin-right: 9px;
}
header .lv1 .lang a {
  padding: 0;
  background-color: transparent !important;
}
header .lv1 .lang a:hover {
  text-decoration: underline !important;
}
header .lv1 .lang .on {
  color: #fff;
  font-weight: 700;
}
header .lv1 > .active::after {
  width: 100%;
}
header .lv2 {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, 50%);
  transition: all 0.5s;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px;
  visibility: hidden;
  opacity: 0;
}
header .lv2 > li {
  position: relative;
  white-space: nowrap;
  text-align: center;
  padding: 2px 15px;
  min-width: 130px;
}
header .lv2 > li a {
  font-size: 16px;
  color: #fff;
}
header .lv2 > li:hover .lv3 {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}
header .lv3 {
  position: absolute;
  top: 0%;
  left: 100%;
  transform: translate(50%, 0);
  transition: all 0.5s;
  background-color: rgba(0, 0, 0, 0.88);
  padding: 0 0 10px;
  visibility: hidden;
  opacity: 0;
}
header nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #ddd;
}
header .search form {
  position: relative;
}
header .search form input {
  width: 214px;
  height: 30px;
  border-radius: 15px;
  outline: none;
  font-size: 13px;
  color: #333;
  font-weight: 300;
  background-color: #fafafa;
  padding: 0 35px 0 14px;
  transition: all 0.5s;
}
header .search form input::placeholder {
  color: #5f5f5f;
  transition: all 0.5s;
}
header .search form button {
  position: absolute;
  outline: none;
  border: 0;
  background-color: transparent;
  right: 22px;
  top: 50%;
  transform: translate(0, -50%);
  cursor: pointer;
  transition: all 0.5s;
}
.box {
  width: 100%;
  text-align: center;
  margin: 3.4868421% 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.pagination {
  display: flex !important;
  text-align: center;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2%;
}
.pagination a {
  display: block;
  font-size: 14px;
  padding: 0 13px;
  line-height: 32px;
  background-color: #fff;
  margin: 5px;
  color: #1f61be;
  transition: all 0.5s;
  font-family: var(--Din);
  border-radius: 4px;
}
.pagination span {
  display: block;
  font-size: 14px;
  padding: 0 13px;
  line-height: 32px;
  background-color: #1f61be;
  margin: 5px;
  color: #fff;
  transition: all 0.5s;
  font-family: var(--Din);
  border-radius: 4px;
}
.pagination a:hover {
  color: #fff;
  background-color: #1f61be;
  border-color: transparent;
}
.box .total {
  color: #666;
  margin: 5px 7px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.box .go-link {
  margin: 5px 19px;
  font-size: 16px;
  color: #666;
}
.box .go-link form {
  display: flex;
  align-items: center;
}
.box .go-link a {
  line-height: 1;
  display: inherit;
}
.box .go-link button {
  cursor: pointer;
  font-size: 16px;
  color: #666;
  outline: none;
  background-color: transparent;
  border: 0;
  padding: 0;
  margin: 0;
}
.box .go-link button:hover {
  text-decoration: underline;
}
.box .go-link input {
  width: 56px;
  height: 40px;
  text-align: center;
  outline: none;
  border-radius: 4px;
  border: 2px solid #f0f4f8;
  font-family: var(--Din);
  margin: 0 11px;
}
.box .go-link input[type='number']::-webkit-outer-spin-button,
.box .go-link input[type='number']::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0;
}
.index-banner {
  position: relative;
}
.index-banner .swiper .swiper-slide {
  position: relative;
}
.index-banner .swiper .swiper-slide-active h2 {
  animation: fadeInDown 2s;
}
.index-banner .swiper .swiper-slide-active h5 {
  animation: fadeInDown 2.5s;
}
.index-banner .swiper .swiper-slide-active a {
  animation: fadeInUp 2s;
}
.index-banner .swiper .swiper-slide-active .banner-img {
  transform: scale(1);
}
.index-banner .banner-img {
  display: block;
  width: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: all 5s;
}
.index-banner .mycontainer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.index-banner .banner-text {
  text-align: center;
}
.index-banner .banner-text h2 {
  font-size: 50px;
  color: #fff;
  font-weight: 700;
  line-height: 1.6;
}
.index-banner .banner-text h5 {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  line-height: 1.6;
}
.index-banner .banner-text a {
  display: inline-block;
  width: 150px;
  line-height: 50px;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 25px;
  color: #fff;
  margin-top: 6.13497%;
  transition: all 0.5s;
}
.index-banner .banner-text a img {
  margin-right: 13px;
  transition: all 0.5s;
}
.index-banner .banner-text a:hover {
  box-shadow: inset -5px 5px 15px rgba(255, 255, 255, 0.3);
}
.index-banner .banner-text a:hover img {
  margin-right: 7px;
}
.index-banner .swiper-pagination {
  position: relative;
  bottom: auto;
  left: auto;
  width: auto;
}
.index-banner .swiper-pagination .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  line-height: 1;
  background-color: #a98040;
  transition: all 0.5s;
  margin: 0 6px;
}
.index-banner .swiper-page {
  position: absolute;
  bottom: 2%;
  width: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.index-title {
  text-align: center;
  margin-bottom: 5%;
}
.index-title h2 {
  font-size: clamp(20px, 2.29166667vw, 44px);
  font-weight: 700;
  color: #333;
}
.index-title h2 span {
  color: #8d6830;
}
.index-title h3 {
  font-size: clamp(20px, 1.97916667vw, 38px);
  color: #333;
  font-weight: 700;
  position: relative;
}
.index-title h3 span {
  color: #8d6830;
}
.index-title em {
  position: relative;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #dcdcdc;
  margin: 2px auto 11px;
}
.index-title em::after {
  position: absolute;
  display: block;
  content: "";
  width: 50px;
  height: 1px;
  background-color: #8d6830;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
}
.index-title h4 {
  font-size: clamp(20px, 1.666667vw, 32px);
  font-weight: 700;
}
.index-title h4::after {
  display: block;
  content: "";
  margin: 0.28125em auto 0.375em;
  background-color: #8d6830;
  width: 1.4375em;
  height: 0.15625em;
  border-radius: 2px;
}
.index-title h5 {
  font-size: clamp(12px, 0.9375vw, 18px);
  color: #333;
}
.index-title i {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.714286%;
}
.index-title i img {
  margin: 0 8px;
}
.index-title i::before,
.index-title i::after {
  content: "";
  display: block;
  width: 5.8333333vw;
  height: 3px;
  background-color: #d5d5d5;
}
.search-banner {
  background-color: #f6f6f6;
}
.search-banner .mycontainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  padding: 0.5em 0;
}
.search-banner .mycontainer .lt {
  flex: 1;
  margin-right: 1em;
  font-size: 14px;
  color: #333;
  line-height: 1.375;
}
.search-banner .mycontainer .lt span {
  position: relative;
  font-size: 16px;
  font-weight: 700;
  border-left: 3px solid #a98040;
  padding-left: 0.5625em;
}
.search-banner .mycontainer .lt span::after {
  position: absolute;
  display: block;
  content: "";
  width: 1px;
  height: 100%;
  font-size: inherit;
  background-color: #a98040;
  left: 0.125em;
  top: 0;
}
.search-banner .mycontainer .rt form {
  position: relative;
  font-size: 15px;
}
.search-banner .mycontainer .rt form input {
  width: clamp(300px, 22.083333vw, 424px);
  height: 2.0666667em;
  color: #333;
  padding: 0 6em 0 1.2em;
  outline: none;
  border: 1px solid #d7d8da;
  border-radius: 1.03333335em;
  display: block;
}
.search-banner .mycontainer .rt form button {
  position: absolute;
  right: 0;
  top: 0;
  width: 5.8em;
  height: 100%;
  border-radius: 0 1.03333335em 1.03333335em 0;
  background-color: #a98040;
  cursor: pointer;
}
.index-prod {
  margin: 20px 0 28px;
}
.index-prod .wrapper {
  display: flex;
  justify-content: space-between;
}
.index-prod .wrapper .lt {
  width: clamp(200px, 12.91666667vw, 248px);
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 16px;
}
.index-prod .wrapper .lt .aside-title {
  background-color: #a98040;
  text-align: center;
  line-height: 1.5;
  padding: 12px 10px 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.index-prod .wrapper .lt .aside-title em {
  display: none;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  padding: 0 0.25em;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  z-index: 1;
  transition: all 0.5s;
  transform-origin: center;
}
.index-prod .wrapper .lt .aside-title::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 32px;
  background-color: #a98040;
  clip-path: ellipse(51% 100% at 50% 0%);
  bottom: 0;
  left: 0;
  transform: translate(0, 100%);
}
.index-prod .wrapper .lt .aside-title h4 {
  position: relative;
  z-index: 1;
  font-size: clamp(18px, 1.4583333vw, 28px);
  color: #fff;
  text-shadow: 0 0.2em 2em #ffffff;
}
.index-prod .wrapper .lt .aside-title h5 {
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  font-size: 13px;
  color: #fff;
  text-shadow: 0 0.3em 2em #ffffff;
}
.index-prod .wrapper .lt .on em {
  transform: translate(-50%, 100%) rotate(45deg);
}
.index-prod .wrapper .lt .aside-content {
  padding: 0 10px 8px;
  background-color: #a98040;
  overflow: auto;
}
.index-prod .wrapper .lt .aside-content aside {
  max-height: 100%;
  padding: 70px 9.21052632% 23px;
  background-color: #fff;
}
.index-prod .wrapper .lt .aside-content .aside-lv1 > li {
  font-size: clamp(14px, 0.9375vw, 18px);
  margin-bottom: 0.5em;
  margin-bottom: 8px;
  box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.16);
  border-radius: 5px;
  background-color: #fff;
  color: #5c5c5c;
  transition: all 0.5s;
}
.index-prod .wrapper .lt .aside-content .aside-lv1 > li:last-child {
  margin-top: 19px;
}
.index-prod .wrapper .lt .aside-content .aside-lv1 > li > a {
  display: block;
  color: inherit;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 0.5em;
  line-height: 2.5556em;
  text-align: center;
}
.index-prod .wrapper .lt .aside-content .aside-lv1 > li:hover {
  background-color: #a98040;
  color: #fff;
}
.index-prod .wrapper .lt .aside-content .aside-lv1 > .active {
  background-color: #a98040;
  color: #fff;
}
.index-prod .wrapper .lt .aside-content .aside-lv2 {
  display: none;
}
.index-prod .wrapper .lt .aside-content .aside-lv2 > li {
  font-size: 15px;
  color: #666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 1em;
}
.index-prod .wrapper .lt .aside-content .aside-lv2 > li > a {
  color: inherit;
}
.index-prod .wrapper .lt .aside-content .aside-lv2 > li > a::before {
  display: inline-block;
  content: "";
  width: 0.86666667em;
  height: 0.86666667em;
  background: url(../images/aside-lv2-icon.png) no-repeat;
  background-size: contain;
  margin-right: 0.933333em;
}
.index-prod .wrapper .lt .aside-content .aside-lv2 > .active {
  color: #a98040;
}
.index-prod .wrapper .lt .aside-content .aside-lv3 {
  display: none;
  background-color: #a98040;
  margin-top: 11px;
  padding: 10px 0 2px 0;
}
.index-prod .wrapper .lt .aside-content .aside-lv3 > li {
  color: #fff;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 9px;
}
.index-prod .wrapper .lt .aside-content .aside-lv3 > li a {
  position: relative;
  color: inherit;
  margin-left: clamp(30px, 3.125vw, 60px);
  max-width: 100%;
}
.index-prod .wrapper .lt .aside-content .aside-lv3 > li a::before {
  position: absolute;
  display: block;
  content: "";
  border: 4.5px solid transparent;
  border-top: 4.5px solid #fff;
  border-right: 4.5px solid #fff;
  left: -0.857143em;
  top: 0.4em;
  transform: translate(-100%, 0);
  transition: all 0.5s;
  visibility: hidden;
  opacity: 0;
}
.index-prod .wrapper .lt .aside-content .aside-lv3 > li a:hover::before {
  opacity: 1;
  visibility: visible;
}
.index-prod .wrapper .lt .aside-footer {
  background: url(../images/aside-footer-bg.jpg) no-repeat;
  background-size: cover;
  font-size: clamp(14px, 0.78125vw, 15px);
  color: #fff;
  padding: 0.5em 8px 1em 10px;
}
.index-prod .wrapper .lt .aside-footer p {
  margin-bottom: 0.4em;
}
.index-prod .wrapper .lt .aside-footer p:last-child {
  margin-bottom: 0;
}
.index-prod .wrapper .rt {
  flex: 1;
  margin-left: 2.4166667%;
}
.index-prod .wrapper .rt .prod-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
.index-prod .wrapper .rt .prod-wrapper > div {
  width: 30.87757313%;
  margin-right: 16px;
}
.index-prod .wrapper .rt .prod-wrapper .block {
  width: 100%;
  margin-bottom: 16px;
}
.index-prod .wrapper .rt .prod-wrapper .block .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 73.684211%;
  background-color: #fff;
  transition: all 0.5s;
  border: 1px solid #bfbfbf;
}
.index-prod .wrapper .rt .prod-wrapper .block .pic a {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.index-prod .wrapper .rt .prod-wrapper .block .pic img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  transition: all 0.5s;
  object-fit: scale-down;
}
.index-prod .wrapper .rt .prod-wrapper .block .title {
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  font-size: clamp(14px, 0.8333333vw, 16px);
  color: #333;
  background-color: #f7f8f9;
  transition: all 0.5s;
  line-height: 2.6875;
  padding: 0 2em 0 1em;
}
.index-prod .wrapper .rt .prod-wrapper .block .title a {
  color: inherit;
}
.index-prod .wrapper .rt .prod-wrapper .block .title::after {
  position: absolute;
  display: block;
  width: 1.5em;
  height: 1.5em;
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
  content: "+";
  right: 0.15em;
  bottom: 0;
  background-color: #a98040;
  color: #fff;
  transition: all 0.5s;
}
.index-prod .wrapper .rt .prod-wrapper .block:hover .pic {
  border-color: #a98040;
}
.index-prod .wrapper .rt .prod-wrapper .block:hover .pic img {
  transform: scale(0.95);
}
.index-prod .wrapper .rt .prod-wrapper .block:hover .title {
  background-color: #a98040;
  color: #fff;
}
.index-prod .wrapper .rt .prod-wrapper .block:hover .title::after {
  background-color: #f7f8f9;
  color: #a98040;
}
.index-slogan img {
  display: block;
  width: 100%;
}
.index-adv {
  margin: 18px 0 34px;
}
.index-adv .wrapper .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  padding: 20px 0 3%;
  box-shadow: 15px 20px 20px -15px rgba(0, 0, 0, 0.2);
}
.index-adv .wrapper .row .lt {
  display: flex;
  width: 49.25%;
}
.index-adv .wrapper .row .lt .num {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.index-adv .wrapper .row .lt .num h2 {
  position: relative;
  font-size: clamp(20px, 1.875vw, 36px);
  font-family: Impact, sans-serif;
  line-height: 1.0952381;
  width: 1.85714286em;
  background-color: #ff9f00;
  color: #fff;
  text-align: center;
}
.index-adv .wrapper .row .lt .num h2::before,
.index-adv .wrapper .row .lt .num h2::after {
  display: block;
  position: absolute;
  content: "";
  top: 0;
  transform: translate(0, -100%);
  border: 0.92857143em solid transparent;
  border-bottom: 0.52381em solid #ff9f00;
  border-top: 0;
}
.index-adv .wrapper .row .lt .num h2::after {
  transform: translate(0, 100%) rotate(180deg);
  top: auto;
  bottom: 0;
}
.index-adv .wrapper .row .lt .num em {
  flex: 1;
  padding-top: 44px;
  width: 1px;
  background-color: #f1f1f1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.index-adv .wrapper .row .lt .num em i {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50px;
  background-color: #666;
  animation: shine 1s infinite;
}
.index-adv .wrapper .row .lt .num em i:nth-child(1) {
  animation-delay: 0s;
}
.index-adv .wrapper .row .lt .num em i:nth-child(2) {
  animation-delay: 0.2s;
}
.index-adv .wrapper .row .lt .num em i:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes shine {
  0% {
    background-color: #666;
  }
  100% {
    scale: 1.3;
    background-color: #ff9f00;
  }
}
.index-adv .wrapper .row .lt .brief {
  flex: 1;
  margin-left: 4.647887%;
  font-size: clamp(14px, 0.9375vw, 18px);
  color: #666;
  line-height: 2.6;
}
.index-adv .wrapper .row .lt .brief .title {
  line-height: 1.6;
  border-bottom: 1px solid #ccc;
  padding-bottom: 2.507837%;
  margin-bottom: 10px;
}
.index-adv .wrapper .row .lt .brief .title h4 {
  color: #8d6830;
  font-size: clamp(16px, 1.35416667vw, 26px);
  font-weight: 700;
}
.index-adv .wrapper .row .lt .brief .title h5 {
  font-size: clamp(12px, 0.9375vw, 18px);
  color: #333;
}
.index-adv .wrapper .row .rt {
  width: 46.583333%;
  padding: 0 2.0833333% 0 0;
}
.index-adv .wrapper .row .rt .pic {
  text-align: center;
}
.index-adv .wrapper .row:nth-child(even) {
  flex-direction: row-reverse;
  box-shadow: -15px 20px 20px -15px rgba(0, 0, 0, 0.2);
}
.index-adv .wrapper .row:nth-child(even) .lt {
  flex-direction: row-reverse;
}
.index-adv .wrapper .row:nth-child(even) .lt .brief {
  margin-left: 0;
  margin-right: 4.647887%;
}
.index-adv .wrapper .row:nth-child(even) .rt {
  padding: 0 0 0 1.7857143%;
}
.index-about {
  background: url(../images/index-about-bg.jpg) no-repeat;
  background-size: 100% auto;
  padding: 2.083333% 0 34px;
}
.index-about .index-title {
  margin-bottom: 3%;
}
.index-about .index-title em {
  background-color: #fff;
}
.index-about .index-title em::after {
  background-color: #07873c;
}
.index-about .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  background-color: #fff;
  box-shadow: 0 0 13px rgba(85, 86, 84, 0.23);
  padding: 2.5% 2.25% 3.25% 2.3333%;
}
.index-about .wrapper .lt {
  width: 50.3930131%;
}
.index-about .wrapper .lt .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 65.6845754%;
}
.index-about .wrapper .lt .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.index-about .wrapper .lt .pic:hover img {
  transform: scale(1.05);
}
.index-about .wrapper .rt {
  width: 46.89956332%;
}
.index-about .wrapper .rt .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  position: relative;
  padding-bottom: 1em;
  margin-bottom: 4.841713%;
}
.index-about .wrapper .rt .title::after {
  position: absolute;
  display: block;
  content: "";
  width: 2.2666667em;
  height: 2px;
  background-color: #9e773b;
  bottom: 0;
  left: 0;
}
.index-about .wrapper .rt .title div {
  flex: 1;
  margin-right: 1em;
  line-height: 1.7;
}
.index-about .wrapper .rt .title div h4 {
  font-size: 1.6em;
  color: #111;
}
.index-about .wrapper .rt .title div h5 {
  font-size: 1.0666667em;
  color: #9e773b;
}
.index-about .wrapper .rt .title a {
  display: block;
  width: 2em;
  height: 2em;
  line-height: 2;
  text-align: center;
  color: #fff;
  background-color: #9e773b;
  transition: all 0.5s;
}
.index-about .wrapper .rt .title a:hover {
  transform: translateY(-3px);
  filter: brightness(120%);
}
.index-about .wrapper .rt .brief {
  font-size: 16px;
  color: #666;
  text-indent: 2em;
  line-height: 2.1875;
}
.index-device {
  margin: 0 0 0;
}
.index-device .mycontainer {
  max-width: 1426px;
}
.index-device .swiper .swiper-wrapper {
  transition-timing-function: linear;
}
.index-device .swiper .swiper-slide {
  width: 24.12342216%;
}
.index-device .swiper .swiper-slide:hover .pic img {
  scale: 1.05;
  filter: brightness(90%);
}
.index-device .swiper .swiper-slide:hover .title {
  filter: brightness(120%);
}
.index-device .swiper .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 80.23256%;
}
.index-device .swiper .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.index-device .swiper .title {
  font-size: clamp(14px, 1vw, 19px);
  color: #fff;
  background-color: #9e773b;
  text-align: center;
  padding: 0 0.5em;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: 2.211;
  transition: all 0.5s;
}
.index-device .swiper .title a {
  color: inherit;
}
.index-news {
  margin: 2.29166667% 0 20px;
}
.index-news .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.index-news .wrapper .block {
  width: 48.916667%;
}
.index-news .wrapper .block:nth-child(-n+2) .pic {
  display: block;
}
.index-news .wrapper .block:nth-child(-n+2) .title {
  border-bottom: 1px solid #eee;
}
.index-news .wrapper .block .pic {
  display: none;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 64.22487%;
}
.index-news .wrapper .block .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.index-news .wrapper .block .title {
  padding: 2.55536627% 0;
}
.index-news .wrapper .block .title h4 {
  font-size: clamp(16px, 1.04166667vw, 20px);
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.index-news .wrapper .block .title h4 a {
  color: inherit;
}
.index-news .wrapper .block .title p {
  font-size: 14px;
  color: #666;
  line-height: 2.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 7.5em;
}
.index-news .wrapper .block .title p a {
  color: inherit;
}
.index-news .wrapper .block:hover .pic img {
  scale: 1.05;
}
.index-news .wrapper .block:hover .title h4 {
  color: #a98040;
}
footer {
  background-color: #eaeaea;
}
footer .footer-top {
  border-bottom: 1px solid #0e62c1;
}
footer .footer-top ul {
  display: flex;
  justify-content: space-between;
}
footer .footer-top ul li {
  position: relative;
  flex: 1;
  font-size: 16px;
}
footer .footer-top ul li::after {
  position: absolute;
  display: block;
  content: "";
  width: 1px;
  height: 1em;
  background-color: #b3b4b6;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
}
footer .footer-top ul li:last-child::after {
  display: none;
}
footer .footer-top ul li a {
  display: block;
  padding: 0 1em;
  color: #333;
  line-height: 55px;
  text-align: center;
  transition: all 0.5s;
}
footer .footer-top ul li a:hover {
  color: #2478d8;
}
footer .footer-mid {
  padding: 4.4270833% 0 1.875%;
}
footer .footer-mid .mycontainer {
  position: relative;
  display: flex;
  justify-content: space-between;
  z-index: 1;
}
footer .footer-mid h3 {
  font-size: clamp(20px, 1.66667vw, 32px);
  font-family: Impact;
  color: #9e773b;
}
footer .footer-mid h3 img {
  margin-right: 0.5em;
  vertical-align: middle;
  display: inline-block;
  margin-top: -0.2em;
}
footer .footer-mid h4 {
  font-size: 15px;
  color: #111;
  margin-bottom: 0.70588235em;
}
footer .footer-mid ul li {
  font-size: 13px;
  margin-bottom: 0.9375em;
}
footer .footer-mid ul li a {
  transition: all 0.5s;
  color: #333;
}
footer .footer-mid ul li a:hover {
  opacity: 0.5;
}
footer .footer-mid p {
  font-size: 13px;
  color: #333;
}
footer .footer-mid nav {
  display: flex;
  justify-content: space-between;
  width: 35%;
}
footer .footer-mid .ewm {
  text-align: center;
}
footer .footer-mid .ewm img {
  width: clamp(100px, 7.2395833vw, 139px);
}
footer .footer-mid address {
  width: 27.5%;
}
footer .footer-mid .back-top {
  position: absolute;
  left: 50%;
  top: -22.125%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  width: clamp(30px, 3.125vw, 60px);
  height: clamp(30px, 3.125vw, 60px);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #9e773b;
  transition: all 0.5s;
  z-index: 1;
}
footer .footer-mid .back-top img {
  position: relative;
  z-index: 1;
}
footer .footer-mid .back-top:hover {
  filter: brightness(120%);
}
footer .footer-mid .back-top:hover::before {
  animation-play-state: paused;
}
footer .footer-mid .back-top::before {
  display: block;
  position: absolute;
  content: "";
  width: 120%;
  height: 120%;
  border-radius: 50%;
  background-color: #aaa;
  animation: zoomFadeOut 2s infinite;
  z-index: -1;
}
footer .footer-mid .back-top::after {
  display: block;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #9e773b;
}
@keyframes zoomFadeOut {
  0% {
    width: 100%;
    height: 100%;
    opacity: 1;
  }
  100% {
    width: 150%;
    height: 150%;
    opacity: 0;
  }
}
footer .footer-bt {
  background-color: #9e773b;
  padding: 0.5208333% 0 0.78125%;
}
footer .footer-bt .mycontainer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  line-height: 1.8;
  font-size: 14px;
  color: #e2dfdf;
}
footer .footer-bt .mycontainer a {
  color: inherit;
  transition: all 0.5s;
}
footer .footer-bt .mycontainer a:hover {
  opacity: 0.5;
}
