@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-Condensed: 'Roboto Condensed', 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';
  --exCondensed: 'Fira Sans Extra Condensed', 'sans-serif';
  --Anton: 'Anton', 'sans-serif';
}
h1,
h2,
h3,
h4,
h5,
p {
  transition: all 0.5s;
}
.wow {
  visibility: hidden;
}
html,
body {
  scroll-behavior: smooth;
  background-color: #fff;
}
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: 185px;
  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, 0, 0, 0.15);
  z-index: 99;
  transition: all 0.5s;
  background-color: #fff;
}
header .header-top {
  background-color: #eee;
}
header .header-top .mycontainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
  color: #000;
  font-size: clamp(12px, 1vw, 14px);
}
header .header-top .mycontainer a {
  display: inline-block;
  color: inherit;
}
header .header-top .mycontainer a:hover {
  text-decoration: underline !important;
}
header .header-top .mycontainer .search-icon {
  display: inline-block;
  margin-left: 2em;
  cursor: pointer;
}
header .header-mid {
  background-color: #fff;
}
header .header-mid .mycontainer {
  height: 88px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header-mid .logo {
  text-align: left;
  line-height: 1.5;
}
header .header-mid .logo h3 {
  font-size: clamp(20px, 1.7708333vw, 34px);
  color: #000;
  font-weight: 700;
}
header .header-mid .logo h3 span {
  color: #c00;
}
header .header-mid .logo h5 {
  text-transform: uppercase;
  color: #7a7a7a;
  font-size: 11px;
}
header .header-mid .tel {
  display: flex;
  align-items: center;
  line-height: 1.2;
}
header .header-mid .tel img {
  margin-right: 16px;
}
header .header-mid .tel h5 {
  font-size: clamp(12px, 1vw, 16px);
  color: #000;
}
header .header-mid .tel h3 {
  font-size: clamp(20px, 1.3541667vw, 26px);
  color: #c00;
  font-weight: 700;
}
header .header-bt {
  background-color: #c00;
}
header .header-bt .mycontainer {
  height: 58px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2px 0;
}
header .lv1 {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  margin-bottom: 0;
  gap: 2px;
}
header .lv1 > li {
  flex: 1;
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(16px, 1.2vw, 20px);
  color: #fff;
  transition: all 0.5s;
}
header .lv1 > li a {
  display: block;
  color: inherit;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
}
header .lv1 > li:last-child::before {
  display: none;
}
header .lv1 > li:hover {
  background-color: #fff;
  color: #c00;
}
header .lv1 > li:hover .lv2 {
  opacity: 1;
  transform: translate(-50%, 0);
  visibility: visible;
}
header .lv1 > .active {
  background-color: #fff;
  color: #c00;
}
header .lv2 {
  position: absolute;
  left: 50%;
  top: 100%;
  width: 100%;
  transform: translate(-50%, 10%);
  transition: all 0.5s;
  background-color: #fff;
  padding: 8px 0;
  visibility: hidden;
  opacity: 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}
header .lv2 > li {
  position: relative;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  padding: 2px 0.5em;
  font-size: 16px;
  line-height: 1.875;
  color: #333;
  font-weight: normal;
  transition: all 0.5s;
}
header .lv2 > li a {
  color: inherit;
}
header .lv2 > li:hover {
  background-color: #FF8937;
  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 {
  flex: 1;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .search-form {
  background-color: #fff;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
  border-top: 1px solid #ccc;
  padding: 1.5% 0;
  display: none;
}
header .search-form form {
  display: flex;
  max-width: 800px;
  margin: 0 auto;
}
header .search-form form input {
  flex: 1;
  font-size: clamp(14px, 1.1vw, 18px);
  color: #333;
  padding: 0 1em;
  height: 2.5em;
  outline: none;
  border: 1px solid #ccc;
  font-weight: 300;
  transition: all 0.5s;
}
header .search-form form input:focus {
  border-color: #FF8937;
}
header .search-form form button {
  font-size: clamp(14px, 1.1vw, 18px);
  width: 2.5em;
  height: 2.5em;
  cursor: pointer;
  background-color: #ccc;
  transition: all 0.5s;
  color: #333;
  outline: none;
}
header .search-form form button:hover {
  color: #fff;
  background-color: #FF8937;
}
.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: #FF8937;
  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: #FF8937;
  margin: 5px;
  color: #fff;
  transition: all 0.5s;
  font-family: var(--Din);
  border-radius: 4px;
}
.pagination a:hover {
  color: #fff;
  background-color: #FF8937;
  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 img {
  display: block;
  width: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: all 4s;
}
.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 img {
  transform: scale(1);
}
.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: absolute;
  bottom: 5%;
}
.index-banner .swiper-pagination .swiper-pagination-bullet {
  font-size: clamp(10px, 1.1vw, 18px);
  width: 1em;
  height: 1em;
  line-height: 1;
  background-color: #fff;
  transition: all 0.5s;
  margin: 0 0.6111em;
  opacity: 1;
}
.index-banner .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #FF8937;
}
.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-banner .swiper-button-prev,
.index-banner .swiper-button-next {
  font-size: clamp(16px, 1.2vw, 20px);
  border-radius: 50%;
  background-color: #fff;
  width: 2.9em;
  height: 2.9em;
  outline: none;
}
.index-banner .swiper-button-prev::after,
.index-banner .swiper-button-next::after {
  display: none;
}
.index-banner .swiper-button-prev img,
.index-banner .swiper-button-next img {
  height: 1em;
}
.index-banner .swiper-button-prev {
  left: 2.2395833%;
}
.index-banner .swiper-button-next {
  right: 2.2395833%;
}
.index-title {
  text-align: center;
  margin: 0 auto 3%;
  max-width: 1100px;
}
.index-title h3 {
  font-size: clamp(20px, 1.5625vw, 30px);
  color: #000;
  font-weight: 700;
  position: relative;
}
.index-title h5 {
  color: #747474;
  font-size: clamp(12px, 1vw, 14px);
}
.index-title em {
  display: inline-block;
  border: 7.5px solid transparent;
  border-top: 10px solid #1b1b1b;
  border-bottom: 0;
}
.index-serv {
  position: relative;
  overflow: hidden;
  padding: 2.2395833% 0 2.916667%;
  background-color: #f5f5f5;
}
.index-serv .mycontainer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.index-serv .mycontainer .block {
  width: 23.3333%;
  background-color: #fff;
  box-shadow: 0px 3px 9px 0px rgba(49, 17, 15, 0.2);
  font-size: clamp(16px, 1.5625vw, 30px);
  text-align: center;
  padding: 3.3333% 2% 4.166667%;
  border-radius: 10px;
  transition: all 0.5s;
}
.index-serv .mycontainer .block:hover {
  transform: translateY(-3px);
  box-shadow: 0px 5px 12px 0px rgba(49, 17, 15, 0.3);
}
.index-serv .mycontainer .block:hover .icon img {
  animation: swing 1s;
}
.index-serv .mycontainer .block .icon img {
  width: 4em;
  height: 4em;
  object-fit: scale-down;
}
.index-serv .mycontainer .block h3 {
  color: #1b1b1b;
}
.index-serv .mycontainer .block p {
  font-size: clamp(12px, 1vw, 16px);
  color: #aaa;
  line-height: 1.25;
}
.index-prod {
  padding: 2.083333% 0 4.01041667%;
}
.index-prod .mycontainer {
  max-width: 1487px;
}
.index-prod .index-title {
  margin-bottom: 2%;
}
.index-prod .prod-tab {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  font-size: clamp(14px, 1.2vw, 20px);
  gap: 0.4em;
  margin-bottom: 3%;
}
.index-prod .prod-tab li {
  width: 11.096167%;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.2;
  color: #747474;
  background-color: #eee;
  min-height: 2.65em;
  transition: all 0.5s;
}
.index-prod .prod-tab li:hover {
  color: #c00;
}
.index-prod .prod-tab li a {
  display: block;
  text-align: center;
  color: inherit;
}
.index-prod .swiper .swiper-slide {
  padding: 8px 10px 0 9px;
  background-color: #eee;
}
.index-prod .swiper .swiper-slide:hover .pic img {
  scale: 1.05;
}
.index-prod .swiper .swiper-slide:hover .title {
  color: #c00;
}
.index-prod .swiper .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 93.5483871%;
}
.index-prod .swiper .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.index-prod .swiper .title {
  font-size: clamp(14px, 1vw, 16px);
  color: #333;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.5s;
  line-height: 3.25;
}
.index-prod .swiper .title a {
  color: inherit;
}
.index-form {
  background: url(../images/index-form-bg.jpg) no-repeat;
  background-size: cover;
  padding: 2.083333% 0 2.5%;
}
.index-form form .form-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 1.5%;
}
.index-form form .form-row .form-col {
  width: 49.08333%;
}
.index-form form input,
.index-form form textarea {
  width: 100%;
  display: block;
  background-color: #fff;
  outline: none;
  font-size: clamp(14px, 1.1vw, 16px);
  color: #000;
  height: 4.25em;
  padding: 0 1.625em;
}
.index-form form input::placeholder,
.index-form form textarea::placeholder {
  color: #666;
}
.index-form form textarea {
  height: 7.3125em;
  padding: 1em 1.625em;
}
.index-form form button {
  font-size: clamp(14px, 1.1vw, 16px);
  color: #fff;
  height: 2em;
  padding: 0 1em;
  background-color: #c00;
  cursor: pointer;
  transition: all 0.5s;
  margin-top: 1.5%;
}
.index-form form button:hover {
  filter: brightness(1.2);
}
.index-about {
  margin: 3.0208333% 0;
}
.index-about .mycontainer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.index-about .mycontainer .lt {
  width: 50%;
}
.index-about .mycontainer .lt .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.index-about .mycontainer .lt .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-about .mycontainer .lt .pic::before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  content: "";
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  box-sizing: border-box;
  border: 4px solid rgba(255, 255, 255, 0.4);
  transform: translate(-50%, -50%);
  z-index: 1;
}
.index-about .mycontainer .lt .pic::after {
  position: absolute;
  content: "ABOUT US";
  font-size: clamp(20px, 3.125vw, 60px);
  color: rgba(0, 0, 0, 0.4);
  font-weight: 700;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
.index-about .mycontainer .rt {
  width: 50%;
  box-shadow: 0 9.353px 3.88px -4px rgba(28, 28, 28, 0.09);
  padding: 0 2.166667% 2.75% 2.5%;
}
.index-about .mycontainer .rt .title {
  font-size: clamp(16px, 1.2vw, 19px);
  color: #070707;
  font-weight: 700;
}
.index-about .mycontainer .rt .brief {
  font-size: clamp(14px, 1.1vw, 18px);
  color: #2e2e2e;
  line-height: clamp(1.8em, 2.2916667vw, 2.44444em);
}
.index-about .mycontainer .rt .data {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  line-height: 1.6667;
  margin-top: 2%;
}
.index-about .mycontainer .rt .data h3 {
  font-size: clamp(12px, 1.1vw, 18px);
  color: #2e2e2e;
}
.index-about .mycontainer .rt .data h3 span {
  font-size: clamp(20px, 1.458333vw, 28px);
  color: #c00;
  font-weight: 700;
}
.index-about .mycontainer .rt .data h5 {
  font-size: clamp(12px, 1.1vw, 18px);
  color: #2e2e2e;
}
.index-about .mycontainer .rt .more {
  display: inline-block;
  font-size: clamp(14px, 1vw, 16px);
  color: #fff;
  background-color: #c00;
  border-radius: 4px;
  transition: all 0.5s;
  line-height: 2;
  padding: 0 1.125em;
  margin-top: 3%;
}
.index-about .mycontainer .rt .more:hover {
  transform: translateY(-3px);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
}
.index-process {
  padding: 2.083333% 0 2.8645833%;
  background-color: #f5f5f5;
}
.index-process .wrapper {
  display: flex;
  justify-content: space-between;
  font-size: clamp(16px, 1.5625vw, 30px);
}
.index-process .wrapper .block {
  width: 13.333333%;
  text-align: center;
}
.index-process .wrapper .block .icon {
  margin: 0 auto 0.5em;
  width: 2em;
  height: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f5f5f5;
}
.index-process .wrapper .block .icon img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: scale-down;
}
.index-process .wrapper .block h3 {
  font-weight: 300;
  color: #a1a1a1;
  line-height: 1.6667;
}
.index-process .wrapper .block h4 {
  font-size: clamp(14px, 1.2vw, 20px);
  color: #131313;
  line-height: 1.875;
}
.index-process .wrapper .block h5 {
  font-size: clamp(12px, 1.1vw, 15px);
  color: #a1a1a1;
  line-height: 1.875;
}
.index-process .wrapper .block:hover .icon img {
  animation: swing 1s;
}
.index-process .wrapper em {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  height: 1px;
  margin-top: 1em;
}
.index-process .wrapper em i {
  position: absolute;
  width: 250%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 1px;
  border-bottom: 1px dashed #dcdcdc;
}
.index-process .wrapper em i::before {
  position: absolute;
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #dcdcdc;
  background-color: #dcdcdc;
  box-shadow: inset 0 0 0 3px #f5f5f5;
}
.index-case {
  margin: 2.083333% 0 3.6458333%;
}
.index-case .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5%;
}
.index-case .wrapper .lt {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 18.8020833vw;
  z-index: 1;
  width: 52.416667%;
  margin-right: -2.666667%;
  background: url(../images/case-intro-bg.jpg) no-repeat;
  background-size: cover;
  color: #fff;
  font-size: clamp(14px, 1.2vw, 20px);
  line-height: clamp(1.8em, 2.8645833vw, 2.75em);
  padding: 2em 2.1em;
}
.index-case .wrapper .lt em {
  position: absolute;
  width: 3.4em;
  height: 3.4em;
}
.index-case .wrapper .lt em:nth-of-type(1) {
  top: 1em;
  left: 1.05em;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
}
.index-case .wrapper .lt em:nth-of-type(2) {
  top: 1em;
  right: 1.05em;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.index-case .wrapper .lt em:nth-of-type(3) {
  bottom: 1em;
  left: 1.05em;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
}
.index-case .wrapper .lt em:nth-of-type(4) {
  bottom: 1em;
  right: 1.05em;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}
.index-case .wrapper .rt {
  width: 50.25%;
}
.index-case .wrapper .rt .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 73.466%;
}
.index-case .wrapper .rt .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-case .swiper .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 82.47012%;
}
.index-case .swiper .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.index-case .swiper .title {
  font-size: clamp(14px, 1.2vw, 22px);
  color: #000;
  transition: all 0.5s;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.index-case .swiper .title a {
  color: inherit;
}
.index-partner {
  margin-bottom: 2.08333%;
}
.index-partner .swiper .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 42.857143%;
  border: 1px solid #dfdfdf;
}
.index-partner .swiper .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.index-slogan {
  background: url(../images/index-slogan-bg.jpg) no-repeat;
  background-size: cover;
  color: #fff;
  text-align: center;
  padding: 2.2916667% 0 3.28125%;
}
.index-slogan h2 {
  font-size: clamp(24px, 2.5vw, 48px);
  font-weight: 700;
  line-height: 1.583333;
}
.index-slogan h3 {
  font-size: clamp(18px, 1.71875vw, 33px);
  line-height: 1.875;
  margin: 0.75em 0;
}
.index-slogan h4 {
  font-size: clamp(16px, 1.66667vw, 32px);
  font-weight: 300;
  display: inline-block;
  background-color: #c00;
  line-height: 1.820513;
  border-radius: 1.109375em;
  padding: 0 0.875em;
}
.index-slogan h4 b {
  font-weight: 700;
  font-size: 1.21875em;
}
.index-news {
  padding: 1.5625% 0 3.90625%;
  background-color: #f6f6f6;
}
.index-news .news-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid #dcdcdc;
  margin-bottom: 3.3333%;
}
.index-news .news-title .lt h3 {
  font-size: clamp(18px, 1.5625vw, 30px);
  color: #131313;
  font-weight: 700;
  display: inline-block;
  border-bottom: 1px solid #c00;
  transform: translateY(1px);
  margin-right: 0.866667em;
}
.index-news .news-title .lt h5 {
  display: inline-block;
  font-size: clamp(12px, 1vw, 14px);
  vertical-align: middle;
  color: #747474;
}
.index-news .news-title a {
  font-size: 14px;
  color: #323232;
  transition: all 0.5s;
}
.index-news .news-title a:hover {
  color: #c00;
}
.index-news .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.index-news .wrapper .lt {
  width: 70.75%;
}
.index-news .wrapper .lt .block {
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  margin-bottom: 3.180212%;
}
.index-news .wrapper .lt .block:last-child {
  margin-bottom: 0;
}
.index-news .wrapper .lt .block .picture {
  width: 24.26384%;
}
.index-news .wrapper .lt .block .picture .pic {
  position: relative;
  width: 100%;
  height: 100%;
}
.index-news .wrapper .lt .block .picture .pic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-news .wrapper .lt .block .list {
  width: 72.79152%;
  padding: 2.3557126% 5.30035336% 2% 0;
}
.index-news .wrapper .rt {
  width: 27.58333%;
  background-color: #fff;
}
.index-news .wrapper .rt .pic {
  position: relative;
  width: 100%;
}
.index-news .wrapper .rt .pic img {
  display: block;
  width: 100%;
}
.index-news .wrapper .rt .list {
  padding: 8px 13px 0 15px;
}
.index-news .wrapper .rt .list p {
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.index-news .wrapper .rt .list p:last-child {
  margin-bottom: 0;
  border-bottom: 0;
  padding-bottom: 0;
}
.index-news .wrapper p {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #6b6b6b;
  margin-bottom: 1.42857143em;
}
.index-news .wrapper p:last-child {
  margin-bottom: 0;
}
.index-news .wrapper p:hover {
  color: #c00;
}
.index-news .wrapper p:hover::before {
  background-color: #c00;
}
.index-news .wrapper p::before {
  display: block;
  content: "";
  vertical-align: middle;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #dcdcdc;
  margin-right: 10px;
  transition: all 0.5s;
}
.index-news .wrapper p a {
  color: inherit;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 0.5em;
}
.index-news .wrapper p span {
  white-space: nowrap;
}
footer .footer-top {
  background-color: #e00;
  padding: 0.520833% 0 0.9375%;
}
footer .footer-top .mycontainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2%;
}
footer .footer-top .mycontainer .lt {
  font-size: clamp(14px, 1.2vw, 21px);
  color: #fff;
  line-height: 1.6667;
}
footer .footer-top .mycontainer .rt {
  font-size: clamp(14px, 1.2vw, 20px);
  color: #fff;
}
footer .footer-top .mycontainer .rt a {
  color: inherit;
  margin-left: 4.15em;
}
footer .footer-top .mycontainer .rt a:first-child {
  margin-left: 0;
}
footer .footer-mid {
  background-color: #313131;
  padding: 2.08333% 0;
}
footer .footer-mid .mycontainer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
footer .footer-mid .mycontainer .lt {
  width: 41.25%;
  display: flex;
  justify-content: space-between;
  gap: 2em;
  font-size: clamp(14px, 1.1vw, 16px);
  color: #fff;
}
footer .footer-mid .mycontainer .lt a {
  color: inherit;
}
footer .footer-mid .mycontainer .lt a:hover {
  text-decoration: underline !important;
}
footer .footer-mid .mycontainer .lt p {
  margin-bottom: 0.5em;
}
footer .footer-mid .mycontainer .lt p:last-child {
  margin-bottom: 0;
}
footer .footer-mid .mycontainer .lt ul li {
  margin-bottom: 0.5em;
}
footer .footer-mid .mycontainer .lt ul li:last-child {
  margin-bottom: 0;
}
footer .footer-mid .mycontainer .mid {
  width: 27.75%;
  padding: 0 2.916667% 2%;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
footer .footer-mid .mycontainer .mid .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer .footer-mid .mycontainer .mid .wrapper img {
  width: 49%;
  margin-bottom: 2%;
}
footer .footer-mid .mycontainer .rt {
  width: 24.5%;
}
footer .footer-mid .mycontainer .rt form .form-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
footer .footer-mid .mycontainer .rt form .form-row .form-col {
  width: 48.9796%;
}
footer .footer-mid .mycontainer .rt form input,
footer .footer-mid .mycontainer .rt form textarea {
  width: 100%;
  background-color: #fff;
  font-size: 12px;
  outline: none;
  height: 2em;
  padding: 0.5em;
}
footer .footer-mid .mycontainer .rt form textarea {
  padding: 0.25em 0.5em;
  height: 3.5833em;
}
footer .footer-mid .mycontainer .rt form button {
  font-size: 14px;
  color: #fff;
  cursor: pointer;
  outline: none;
  height: 1.7142857em;
  width: 7.642857em;
  background-color: #f00;
  transition: all 0.5s;
  border: 1px solid transparent;
}
footer .footer-mid .mycontainer .rt form button:hover {
  background-color: #fff;
  color: #f00;
  border-color: #f00;
}
footer .footer-mid .mycontainer h4 {
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 1em;
}
footer .footer-bt {
  font-size: clamp(12px, 1.1vw, 16px);
  color: #fff;
  background-color: #fff;
  text-align: center;
  background-color: #e00;
  line-height: 1.8;
  padding: 1.5625% 0 1.30208333%;
}
footer .footer-bt a {
  color: inherit;
}
footer .footer-bt a:hover {
  text-decoration: underline !important;
}
