.info_2 .l img, .cases_1 .son img, .news_1 .son img, .product_1 .flex .son img, .about_4 .son img, .about_2 .son img, .section_6 .son img, .section_3 .son img, #banner_2 .img img,
#banner_2 .img video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s ease;
}

.info_3 .l .txt .but a, .service_1 .flex .txt .but a, [class^=about_] .title_1 .but a, .section_2 .son .but a, .header .but a, #banner_1 .but a {
  background-color: var(--color1);
  border: 2px solid var(--color1);
  color: #fff;
  cursor: pointer;
  border-radius: 50px;
  padding: 6px 24px;
  font-size: 14px;
  line-height: 1.5;
  transition: all 0.3s ease;
  font-family: var(--font_title);
  display: flex;
  align-items: center;
  gap: 10px;
}
.info_3 .l .txt .but a:hover, .service_1 .flex .txt .but a:hover, [class^=about_] .title_1 .but a:hover, .section_2 .son .but a:hover, .header .but a:hover, #banner_1 .but a:hover {
  background-color: var(--color);
  border-color: var(--color);
  color: #fff;
}
.info_3 .l .txt .but a i, .service_1 .flex .txt .but a i, [class^=about_] .title_1 .but a i, .section_2 .son .but a i, .header .but a i, #banner_1 .but a i {
  font-weight: bold;
  line-height: 1;
  font-size: 14px;
}

@font-face {
  font-family: "title1";
  src: url(../font/yYLl0h7WyfzTzI44.woff2);
}
:root {
  --color: #2583fd;
  --color1: #2583fd;
  --color2: #f8e2b9;
  --nav_height: 80px;
  --font: "Poppins";
  --font_title: "Montserrat";
}
@media (max-width: 768px) {
  :root {
    --nav_height: 60px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: #333;
  margin: 0 auto;
  font-size: 16px;
  font-family: var(--font);
  background-color: #fafafa;
}
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

.bx {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1430px;
}
@media (max-width: 1600px) {
  .bx {
    max-width: 1430px;
  }
}
@media (max-width: 1400px) {
  .bx {
    max-width: 1230px;
  }
}
@media (max-width: 1200px) {
  .bx {
    max-width: 1030px;
  }
}
@media (max-width: 1024px) {
  .bx {
    max-width: 830px;
  }
}
@media (max-width: 768px) {
  .bx {
    padding-left: 15px;
    padding-right: 15px;
  }
}

video,
img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
  outline: none;
}

ul,
ol,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

input,
textarea,
select,
button {
  outline: none;
  border: none;
  background-color: transparent;
}

textarea {
  resize: none;
}

table {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
}
table th,
table td {
  border: 1px solid #e5e5e5;
  padding: 10px;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.con {
  line-height: 2;
}
.con ul {
  padding-left: 20px;
  list-style: unset;
}
.con li {
  list-style: unset;
}

.clear {
  clear: both;
}

#fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease;
}
#fixed .bj {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}
#fixed.on {
  visibility: visible;
  opacity: 1;
  z-index: 1000;
}
#fixed .son {
  z-index: 1000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 400px;
}
#fixed .son.on {
  display: none !important;
}
#fixed .son .box {
  padding: 30px;
  border-radius: 10px;
  background-color: #fff;
  width: 100%;
  position: relative;
}
#fixed .son i {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  display: flex;
}
#fixed .son .tit {
  width: 100%;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
#fixed .son form {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 20px;
}
#fixed .son label {
  width: 100%;
  display: flex;
}
#fixed .son input,
#fixed .son textarea {
  width: 100%;
  line-height: 1.5;
  font-size: 14px;
  padding: 10px 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: #f7f7f7;
  transition: all 0.3s ease;
  font-family: initial;
}
#fixed .son button {
  background-color: var(--color);
  color: #fff;
  border: none;
  border-radius: 5px;
  height: 48px;
  padding: 0 50px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 10px auto 0;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

#page_1 {
  width: 100%;
  text-align: center;
  margin-top: 64px;
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 0;
}
#page_1 a {
  padding: 0px 12px;
  line-height: 38px;
  min-width: 40px;
  display: inline-block;
  border: solid 1px #ccc;
  font-size: 16px;
  margin: 0 5px;
  transition: all 0.5s ease;
  border-radius: 5px;
}
#page_1 a:hover, #page_1 a.on {
  color: #fff;
  background-color: var(--color);
  border-color: var(--color);
}
#page_1 a.on {
  pointer-events: none;
}
#page_1 a i {
  font-size: 12px;
}

#banner_1 {
  position: relative;
  overflow: hidden;
}
#banner_1 + section {
  margin-top: 0;
}
#banner_1 .swiper {
  height: 100vh;
}
@media (max-width: 768px) {
  #banner_1 .swiper {
    height: 100vh;
  }
}
#banner_1 .img {
  width: 100%;
  height: 100%;
  font-size: 0;
  position: relative;
}
#banner_1 .img img,
#banner_1 .img video {
  position: relative;
  width: 100%;
  height: 100%;
}
#banner_1 .bx {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  color: #333;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  #banner_1 .bx {
    padding-left: 15px;
  }
}
#banner_1 .bx img {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 80%;
  max-height: 80%;
  animation: nots 50s infinite linear;
}
#banner_1 h2 {
  position: relative;
  z-index: 10;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--font_title);
  text-transform: uppercase;
  width: 100%;
  line-height: 1.25;
  font-size: 84px;
  font-weight: bold;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  #banner_1 h2 {
    max-width: 100%;
    font-size: 32px;
  }
}
#banner_1 p {
  position: relative;
  z-index: 10;
  max-width: 960px;
  width: 100%;
  margin-top: 24px;
  line-height: 1.75;
  font-size: 24px;
  font-weight: 400;
}
@media (max-width: 768px) {
  #banner_1 p {
    font-size: 18px;
  }
}
#banner_1 .but {
  position: relative;
  z-index: 10;
  margin-top: 48px;
  width: 100%;
  display: flex;
  gap: 16px;
}
@media (max-width: 768px) {
  #banner_1 .but {
    gap: 10px;
    margin-top: 30px;
    max-width: 100%;
  }
}
#banner_1 .but a {
  line-height: 2;
}
#banner_1 .but a + a {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}
#banner_1 .abs {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1330px;
}
@media (max-width: 1600px) {
  #banner_1 .abs {
    max-width: 1330px;
  }
}
@media (max-width: 1400px) {
  #banner_1 .abs {
    max-width: 1230px;
  }
}
@media (max-width: 1200px) {
  #banner_1 .abs {
    max-width: 1030px;
  }
}
@media (max-width: 1024px) {
  #banner_1 .abs {
    max-width: 830px;
  }
}
@media (max-width: 768px) {
  #banner_1 .abs {
    padding-left: 15px;
    padding-right: 15px;
    display: none;
  }
}
#banner_1 .prev,
#banner_1 .next {
  width: 50px;
  height: 50px;
  background-color: var(--color);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
#banner_1 .prev::after,
#banner_1 .next::after {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  transition: all 0.3s ease;
}
#banner_1 .prev {
  left: 15px;
}
#banner_1 .next {
  right: 15px;
}

#banner_2 {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 10;
}
#banner_2 img {
  width: 100%;
}
#banner_2 .img {
  overflow: hidden;
  width: 100%;
  height: 500px;
  position: relative;
}
@media (max-width: 768px) {
  #banner_2 .img {
    height: 300px;
  }
}
#banner_2 .img img,
#banner_2 .img video {
  object-fit: cover;
}

#banner_3 {
  margin-top: var(--nav_height);
}

#mbx_1 {
  position: relative;
  z-index: 10;
  font-size: 16px;
  line-height: 70px;
  border-bottom: 1px solid rgba(191, 191, 191, 0.4117647059);
}
#mbx_1 .bx {
  display: flex;
}
#mbx_1 .l {
  margin-right: auto;
  display: flex;
  gap: 40px;
}
#mbx_1 .l a {
  position: relative;
}
#mbx_1 .l a:hover::after, #mbx_1 .l a.on::after {
  width: 100%;
}
#mbx_1 .l a.on {
  font-weight: bold;
  color: var(--color);
}
#mbx_1 .l a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 4px;
  border-radius: 4px;
  background-color: var(--color);
  transition: all 0.3s ease;
}
#mbx_1 .r {
  margin-left: auto;
}
#mbx_1 .r form {
  border-radius: 50px;
  border: 1px solid #ccc;
  margin: auto 0;
  display: flex;
  align-items: center;
}
#mbx_1 span {
  margin: 0 5px;
}

#mbx_2 {
  position: relative;
  z-index: 10;
}
#mbx_2 .bx {
  padding-top: 25px;
  padding-bottom: 25px;
}
@media (max-width: 768px) {
  #mbx_2 .bx {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
#mbx_2 span {
  margin: 0 5px;
}

header {
  height: var(--nav_height);
  position: fixed;
  width: 100%;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(14, 12, 8, 0.1607843137);
}
header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  transition: all 0.3s ease;
}
header.active::after, header.on::after {
  background-color: rgba(255, 255, 255, 0.75);
}
header.active .mobile i, header.on .mobile i {
  color: #333 !important;
}
header.active .nav .tit a, header.on .nav .tit a {
  color: #333;
}

.header {
  height: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
}
.header .bx {
  height: 100%;
  display: flex;
  align-items: center;
}
.header .logo {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
}
.header .logo img {
  height: 50px;
}
@media (max-width: 768px) {
  .header .logo img {
    height: 30px;
  }
}
.header .logo .logo-text {
  transition: all 0.3s ease;
}
.header .logo span {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.635em;
  font-family: var(--font);
}
.header .logo p {
  font-size: 10.7px;
  font-weight: normal;
  color: #888;
}
.header .nav {
  margin-left: auto;
  margin-right: auto;
  height: 100%;
  display: flex;
  gap: 36px;
}
@media (max-width: 768px) {
  .header .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin: 0;
    position: fixed;
    top: var(--nav_height);
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.85);
    width: 0;
    overflow: hidden;
    overflow-y: auto;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s;
  }
  .header .nav.on {
    width: 100%;
    opacity: 1;
  }
}
.header .nav .menu {
  position: relative;
}
@media (max-width: 768px) {
  .header .nav .menu {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2392156863);
    flex-grow: 0;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
  }
}
.header .nav .menu:hover .sub {
  opacity: 1;
  visibility: visible;
}
.header .nav .menu_mobile {
  display: none;
}
@media (max-width: 768px) {
  .header .nav .menu_mobile {
    flex-grow: 1;
    width: 100%;
    height: 100%;
    display: block;
  }
}
.header .nav .tit {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
@media (max-width: 768px) {
  .header .nav .tit {
    padding: 0 15px;
    height: auto;
    display: flex;
  }
}
.header .nav .tit.on a::after, .header .nav .tit:hover a::after {
  width: 100%;
}
.header .nav .tit.on i, .header .nav .tit:hover i {
  color: var(--color);
}
.header .nav .tit i {
  transition: all 0.5s ease;
  line-height: 40px;
  font-size: 10px;
  text-align: center;
}
@media (max-width: 768px) {
  .header .nav .tit i {
    display: block;
  }
}
.header .nav .tit a {
  cursor: pointer;
  transition: all 0.5s ease;
  position: relative;
  height: 100%;
  font-size: 15px;
  color: #333;
  font-weight: bold;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .header .nav .tit a {
    line-height: 50px;
    font-size: 18px;
    flex-grow: 1;
    color: #fff;
  }
  .header .nav .tit a::after {
    display: none;
  }
}
.header .nav .tit a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 18px;
  width: 0%;
  height: 4px;
  border-radius: 4px;
  transition: all 0.5s ease;
  background-color: var(--color);
}
.header .nav .sub {
  position: absolute;
  min-width: 200px;
  max-width: 320px;
  z-index: 11;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}
@media (max-width: 768px) {
  .header .nav .sub {
    position: relative;
    top: 0;
    left: 0;
    transform: translateX(0px);
    opacity: 1;
    visibility: visible;
    transition: none;
    width: 100%;
    padding: 0;
    display: none;
  }
}
.header .nav .sub ul {
  background-color: #fff;
  box-shadow: 0 8px 24px rgba(8, 9, 24, 0.1);
  border-radius: 0 0 10px 10px;
  padding: 10px 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .header .nav .sub ul {
    background-color: transparent;
    color: #fff;
    padding: 0 15px;
  }
}
.header .nav .sub li {
  position: relative;
}
.header .nav .sub a {
  color: #333;
  display: block;
  line-height: 1.5;
  font-size: 16px;
  padding: 10px;
  transition: all 0.5s ease;
  white-space: nowrap;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 768px) {
  .header .nav .sub a {
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2392156863);
  }
}
.header .nav .sub a:hover {
  background-color: var(--color);
  color: #fff;
}
.header .mobile {
  display: none;
}
@media (max-width: 768px) {
  .header .mobile {
    margin-left: auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header .mobile i {
    font-size: 24px;
    color: #fff;
    transition: all 0.3s ease;
  }
}
.header .but {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 768px) {
  .header .but {
    display: none;
  }
}
.header .tel {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}
.header .tel i {
  font-size: 20px;
}
@media (max-width: 768px) {
  .header .tel {
    display: none;
  }
}
.header .tel a {
  font-size: 24px;
  font-weight: 400;
  font-family: var(--font_title);
}
.header .icon {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 768px) {
  .header .icon {
    display: none;
  }
}
.header .icon a {
  padding: 5px;
  width: 24px;
  height: 24px;
}
.header .icon a img {
  width: 100%;
  height: 100%;
}
.header .lang {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .header .lang {
    display: none;
  }
}
.header .lang:hover ul {
  opacity: 1;
  visibility: visible;
}
.header .lang p {
  display: flex;
  gap: 5px;
}
.header .lang p img {
  width: 24px;
}
.header .lang p span {
  font-size: 15px;
}
.header .lang ul {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  min-width: 100%;
  box-shadow: 0 8px 24px rgba(8, 9, 24, 0.1);
}
.header .lang ul a {
  display: block;
  text-align: center;
  padding: 10px 20px;
  font-size: 14px;
  line-height: 1.5;
  transition: all 0.3s ease;
}
.header .lang ul a:hover {
  background-color: var(--color);
  color: #fff;
}

footer {
  background-color: #2b2b2b;
  color: #fff;
  padding-top: 72px;
  padding-bottom: 32px;
}
@media (max-width: 768px) {
  footer {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

.footer .top {
  padding-bottom: 24px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 768px) {
  .footer .top {
    flex-direction: column;
  }
}
.footer .top .l {
  width: 58.3333333333%;
}
@media (max-width: 768px) {
  .footer .top .l {
    width: 100%;
  }
}
.footer .top .l .logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer .top .l .logo img {
  height: 40px;
}
.footer .top .l .logo h2 {
  font-size: 22px;
  font-weight: 600;
  font-family: var(--font_title);
  line-height: 1.635em;
}
.footer .top .l .txt {
  margin-top: 24px;
}
.footer .top .l .txt p {
  line-height: 1.75em;
  font-weight: 400;
}
.footer .top .l .nav {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 32px;
}
.footer .top .l .nav a {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75em;
}
.footer .top .r {
  width: 33.3333333333%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 768px) {
  .footer .top .r {
    width: 100%;
  }
}
.footer .top .r p {
  line-height: 1.75em;
}
.footer .bottom {
  padding-top: 24px;
  border-top: 1px solid #404244;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .footer .bottom {
    gap: 10px;
  }
}
.footer .bottom .p {
  font-size: 13px;
  width: 58.3333333333%;
  color: rgba(255, 255, 255, 0.4509803922);
}
@media (max-width: 768px) {
  .footer .bottom .p {
    width: 100%;
  }
}
.footer .bottom ul {
  width: 30%;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
@media (max-width: 768px) {
  .footer .bottom ul {
    width: 100%;
  }
}
.footer .bottom ul a {
  display: block;
  width: 24px;
  height: 24px;
  font-size: 0;
}
.footer .bottom ul img {
  width: 100%;
  height: 100%;
}

.title_1 {
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
  padding-bottom: 40px;
}
.title_1 h6 {
  margin-bottom: 16px;
  line-height: 1.75;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.125em;
  text-transform: uppercase;
  color: rgba(17, 23, 29, 0.5882352941);
  font-family: var(--font_title);
}
.title_1 h2 {
  font-size: 54px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.2;
  color: #111;
  text-transform: uppercase;
  font-family: var(--font_title);
}
@media (max-width: 768px) {
  .title_1 h2 {
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: 0;
  }
}
.title_1 h3 {
  margin-top: 16px;
  line-height: 1.57em;
  font-size: 28px;
  font-weight: 300;
}
.title_1 h5 {
  color: #333;
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: normal;
}
@media (max-width: 768px) {
  .title_1 h5 {
    font-size: 16px;
  }
}

section.bj {
  margin-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  section.bj {
    margin-top: 60px;
    padding-bottom: 60px;
  }
}
section.bj + section {
  margin-top: 0;
}
section.bj + .section_ {
  padding: 0;
}

section.bj_img {
  margin-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  section.bj_img {
    margin-top: 60px;
    padding-bottom: 60px;
  }
}
section.bj_img + section {
  margin-top: 0;
}

section.bj_0 {
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
}

[class^=info_],
[class^=contact_],
[class^=cases_],
[class^=news_],
[class^=service_],
[class^=product_],
[class^=about_],
[class^=section_] {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 100px;
}
@media (max-width: 768px) {
  [class^=info_],
  [class^=contact_],
  [class^=cases_],
  [class^=news_],
  [class^=service_],
  [class^=product_],
  [class^=about_],
  [class^=section_] {
    padding-top: 60px;
  }
}

[class^=section_] .title_1 {
  text-align: left;
  padding-bottom: 0;
}
[class^=section_] .title_1 h5 {
  margin: 0;
}
[class^=section_] .color {
  color: var(--color);
}
[class^=section_] .flex_tit {
  display: flex;
  gap: 30px;
}
@media (max-width: 768px) {
  [class^=section_] .flex_tit {
    flex-wrap: wrap;
    gap: 20px;
  }
}
[class^=section_] .flex_tit .l {
  width: calc(58.3333333333% - 15px);
}
@media (max-width: 768px) {
  [class^=section_] .flex_tit .l {
    width: 100%;
  }
}
[class^=section_] .flex_tit .r {
  width: calc(41.6666666667% - 15px);
}
@media (max-width: 768px) {
  [class^=section_] .flex_tit .r {
    width: 100%;
  }
}
[class^=section_] .flex {
  margin-top: 60px;
}
@media (max-width: 768px) {
  [class^=section_] .flex {
    margin-top: 40px;
  }
}

.section_1 .flex {
  gap: 30px;
}
@media (max-width: 768px) {
  .section_1 .flex {
    gap: 20px;
  }
}
.section_1 .flex .l {
  width: calc(50% - 15px);
}
@media (max-width: 768px) {
  .section_1 .flex .l {
    width: 100%;
  }
}
.section_1 .flex .r {
  width: calc(50% - 15px);
  padding-left: 60px;
}
@media (max-width: 768px) {
  .section_1 .flex .r {
    padding: 0;
    width: 100%;
  }
}

.section_2 .flex {
  gap: 10px;
}
@media (max-width: 768px) {
  .section_2 .flex {
    flex-direction: column;
  }
}
.section_2 .son {
  flex: 1;
  position: relative;
  transition: all 0.8s ease;
  height: 520px;
  border-radius: 10px;
  overflow: hidden;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .section_2 .son {
    width: 100%;
    height: auto;
  }
}
.section_2 .son.on {
  flex: 3;
}
@media (max-width: 768px) {
  .section_2 .son.on {
    flex: 1;
  }
}
.section_2 .son.on p {
  height: auto;
  opacity: 1;
}
.section_2 .son .img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.section_2 .son .img img {
  width: 100%;
  height: 100%;
}
.section_2 .son .txt {
  position: relative;
  z-index: 10;
  padding: 40px;
  padding-top: 120px;
}
@media (max-width: 768px) {
  .section_2 .son .txt {
    padding: 20px;
    padding-top: 60px;
  }
}
.section_2 .son .txt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to top, var(--color), rgba(255, 255, 255, 0));
  opacity: 1;
  z-index: 0;
  transition: all 0.8s ease;
}
.section_2 .son h5 {
  position: relative;
  z-index: 1;
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1.5;
  font-weight: normal;
  margin-bottom: 10px;
}
.section_2 .son h3 {
  position: relative;
  z-index: 1;
  font-size: 20px;
  line-height: 1.5;
  font-weight: normal;
  font-family: var(--font_title);
  margin-bottom: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.section_2 .son p {
  position: relative;
  z-index: 1;
  transition: all 0.8s ease;
  line-height: 1.75;
  height: 0;
  opacity: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
@media (max-width: 768px) {
  .section_2 .son p {
    height: auto;
    opacity: 1;
  }
}
.section_2 .son .but {
  margin-top: 20px;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
}
.section_2 .son .but a {
  background-color: #fff;
  border-color: #fff;
  color: var(--color);
}

.section_3 .flex {
  gap: 40px;
}
@media (max-width: 768px) {
  .section_3 .flex {
    gap: 20px;
  }
}
.section_3 .son {
  width: calc((100% - 40px * (2 - 1)) / 2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .section_3 .son {
    width: 100%;
  }
}
.section_3 .son .img {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 40%;
}
.section_3 .son .txt {
  padding: 24px 26px;
}
@media (max-width: 768px) {
  .section_3 .son .txt {
    padding: 20px;
  }
}
.section_3 .son .tit {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section_3 .son h3 {
  font-size: 34px;
  line-height: 1;
  font-weight: 500;
}
@media (max-width: 768px) {
  .section_3 .son h3 {
    font-size: 24px;
    line-height: 1.5;
  }
}
.section_3 .son span {
  font-size: 12px;
  color: var(--color);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .section_3 .son span {
    font-size: 11px;
    letter-spacing: 0.5px;
  }
}
.section_3 .son h4 {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color);
  font-weight: normal;
}
.section_3 .son .con {
  line-height: 1.6;
  margin-top: 14px;
  max-width: 520px;
}
.section_3 .son .p {
  font-size: 11px;
  color: rgba(14, 12, 8, 0.6196078431);
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(14, 12, 8, 0.1607843137);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section_4 .box {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.section_4 .box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(to left, var(--color), transparent);
  opacity: 1;
  z-index: 1;
  transition: all 0.8s ease;
}
@media (max-width: 768px) {
  .section_4 .box::after {
    background-image: linear-gradient(to left, var(--color), var(--color));
    opacity: 0.75;
  }
}
@media (max-width: 768px) {
  .section_4 .flex_tit {
    gap: 0;
  }
}
.section_4 .r {
  position: relative;
  z-index: 2;
}
.section_4 .r .title_1 {
  padding: 100px 50px;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .section_4 .r .title_1 {
    padding: 50px 0px;
  }
}
.section_4 .r .title_1 h6,
.section_4 .r .title_1 h2,
.section_4 .r .title_1 h5 {
  color: #fff;
}
.section_4 .r .title_1 h5 {
  margin-top: 20px;
}
.section_4 .flex {
  align-items: flex-start;
  gap: 40px;
}
@media (max-width: 768px) {
  .section_4 .flex {
    gap: 20px;
  }
}
.section_4 .flex h4 {
  width: 100%;
  font-size: 12px;
  line-height: 1.5;
  color: var(--color);
  letter-spacing: 0.22em;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-weight: 400;
}
.section_4 .son {
  width: calc((100% - 40px * (2 - 1)) / 2);
  border-radius: 10px;
  overflow: hidden;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .section_4 .son {
    width: 100%;
    border-radius: 8px;
    padding: 15px;
  }
}
.section_4 .son .t {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.section_4 .son .t h3 {
  font-family: var(--font_title);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  font-weight: 500;
}
@media (max-width: 768px) {
  .section_4 .son .t h3 {
    font-size: 18px;
    line-height: 1.5;
  }
}
.section_4 .son .t p {
  color: var(--color);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.section_4 .son .t h5 {
  margin-top: 10px;
  font-family: var(--font_title);
  font-size: 16px;
  line-height: 1.5;
  color: #1a1610;
  font-weight: normal;
}
.section_4 .son .t i {
  color: var(--color);
  font-size: 18px;
  font-weight: bold;
  transition: all 0.5s ease;
  display: block;
}
.section_4 .son .b {
  display: none;
}
.section_4 .son .b .con {
  margin-top: 20px;
}

.section_5 {
  background-color: #ebf0f6;
}
.section_5 .flex {
  gap: 30px;
}
.section_5 .rel {
  position: relative;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .section_5 .rel {
    margin-top: 40px;
  }
}
.section_5 .rel .swiper-slide {
  height: auto;
}
.section_5 .rel .prev,
.section_5 .rel .next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color);
}
@media (max-width: 768px) {
  .section_5 .rel .prev,
  .section_5 .rel .next {
    width: 30px;
    height: 30px;
  }
  .section_5 .rel .prev::after,
  .section_5 .rel .next::after {
    font-size: 16px;
  }
}
.section_5 .rel .prev::after,
.section_5 .rel .next::after {
  font-size: 18px;
  color: #fff;
}
.section_5 .rel .prev {
  left: -45px;
}
@media (max-width: 768px) {
  .section_5 .rel .prev {
    left: -10px;
  }
}
.section_5 .rel .next {
  right: -45px;
}
@media (max-width: 768px) {
  .section_5 .rel .next {
    right: -10px;
  }
}
.section_5 .son {
  height: 100%;
  padding: 40px 24px;
  overflow: hidden;
  border-radius: 10px;
  background-color: #f8f9fd;
}
@media (max-width: 768px) {
  .section_5 .son {
    padding: 24px;
  }
}
.section_5 .son span {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(14, 12, 8, 0.6196078431);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}
.section_5 .son h3 {
  font-family: var(--font_title);
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: -0.015em;
  font-weight: 500;
  font-style: italic;
}
@media (max-width: 768px) {
  .section_5 .son h3 {
    font-size: 20px;
  }
}
.section_5 .son p {
  font-size: 15px;
  color: rgba(14, 12, 8, 0.6196078431);
  margin-top: 15px;
  line-height: 1.65;
}

.section_6 .flex {
  gap: 30px;
}
@media (max-width: 768px) {
  .section_6 .flex {
    gap: 20px;
  }
}
.section_6 .son {
  width: calc((100% - 30px * (3 - 1)) / 3);
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
}
@media (max-width: 768px) {
  .section_6 .son {
    width: 100%;
  }
}
.section_6 .son:hover img {
  transform: scale(1.05);
}
.section_6 .son:hover h3 {
  color: var(--color);
}
.section_6 .son .img {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 60%;
}
.section_6 .son .txt {
  padding: 20px;
}
.section_6 .son h3 {
  font-size: 20px;
  letter-spacing: -0.012em;
  font-weight: 500;
  line-height: 1.5;
  height: 60px;
  transition: all 0.8s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.section_6 .son p {
  font-size: 12px;
  margin-top: 10px;
  line-height: 1.5;
}

[class^=about_] .title_1 {
  text-align: left;
  max-width: 401px;
  margin-left: 0;
}
[class^=about_] .title_1 h5 {
  margin-top: 0;
}
[class^=about_] .title_1 .but {
  margin-top: 35px;
  display: flex;
}
.about_1 .img {
  float: left;
  width: 100%;
  max-width: 550px;
  font-size: 0;
  margin-right: 50px;
  margin-bottom: 10px;
  overflow: hidden;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .about_1 .img {
    margin-bottom: 20px;
  }
}
.about_1 .img img {
  width: 100%;
}
.about_1 .txt .h1 {
  font-size: 36px;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .about_1 .txt .h1 {
    font-size: 24px;
  }
}

.about_2 .flex {
  justify-content: space-between;
  gap: 40px;
}
.about_2 .son {
  width: calc((100% - 40px * (2 - 1)) / 2);
  padding: 20px 20px 32px;
  border-radius: 20px;
  background-color: #fff;
}
.about_2 .son .img {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 52%;
  border-radius: 20px;
}
.about_2 .son .txt {
  margin-top: 32px;
}
.about_2 .son h3 {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
}
.about_2 .son p {
  margin-top: 15px;
  line-height: 1.5;
  color: #6c6c6c;
}

.about_3 .flex {
  justify-content: space-between;
  gap: 20px;
}
.about_3 .son {
  width: calc((100% - 20px * (3 - 1)) / 3);
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.about_3 .son h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  color: #111;
}
.about_3 .son h4 {
  font-size: 12px;
  line-height: 2;
  color: #6c6c6c;
  font-weight: 400;
}
.about_3 .son .info {
  margin-top: 80px;
  display: flex;
  gap: 20px;
}
.about_3 .son .img {
  flex-shrink: 0;
  width: 130px;
  height: 130px;
  border-radius: 10px;
  overflow: hidden;
}
.about_3 .son .img img {
  width: 100%;
  height: 100%;
}
.about_3 .son p {
  color: #6c6c6c;
  line-height: 1.5;
}

.about_4 .flex {
  justify-content: space-between;
  gap: 20px;
}
.about_4 .son {
  width: calc((100% - 20px * (4 - 1)) / 4);
  background-color: #fff;
  border-radius: 12px;
}
.about_4 .son .img {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 35%;
  border-radius: 10px;
}
.about_4 .son img {
  object-fit: contain;
  padding: 20px;
}

.about_5 .flex {
  justify-content: space-between;
  gap: 36px;
}
.about_5 .son:nth-child(1) {
  width: calc(40% - 18px);
}
.about_5 .son:nth-child(2) {
  width: calc(60% - 18px);
}
.about_5 .son .img {
  font-size: 0;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.about_5 .son .img img {
  width: 100%;
  height: 100%;
}
.about_5 .son ul li {
  cursor: pointer;
  border-bottom: 1px rgba(14, 66, 51, 0.2);
  background-color: #fff;
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
}
.about_5 .son ul .t {
  padding: 15px 20px;
  padding-left: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.about_5 .son ul .t.on i {
  transform: rotate(45deg);
}
.about_5 .son ul .t h3 {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
.about_5 .son ul .t i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: var(--color);
  color: #fff;
  font-weight: bold;
  transition: all 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about_5 .son ul .b {
  display: none;
  padding: 20px;
  padding-left: 24px;
  padding-right: 44px;
  padding-top: 0;
}
.about_5 .son ul .b p {
  color: #6c6c6c;
  font-size: 14px;
  line-height: 1.75;
}

.product_1 .rel {
  background-color: #fff;
  border-radius: 1000px;
  padding: 6px 12px;
  margin-bottom: 80px;
  display: flex;
}
.product_1 .rel .swiper-slide {
  width: auto;
}
.product_1 .rel a {
  display: block;
  cursor: pointer;
  font-size: 16px;
  line-height: 1.5;
  color: #6c6c6c;
  padding: 14px 30px;
  border-radius: 100px;
  transition: all 0.5s ease;
}
.product_1 .rel a.on {
  background-color: var(--color);
  color: #fff;
}
.product_1 .flex {
  gap: 60px 35px;
}
.product_1 .flex .son {
  width: calc((100% - 35px * (3 - 1)) / 3);
}
.product_1 .flex .son:hover img {
  transform: scale(1.05);
}
.product_1 .flex .son:hover h3 {
  color: var(--color);
}
.product_1 .flex .son a {
  display: block;
}
.product_1 .flex .son .img {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 90%;
  border-radius: 10px;
}
.product_1 .flex .son .txt {
  margin-top: 20px;
}
.product_1 .flex .son h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  transition: all 0.5s ease;
  margin-bottom: 10px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 100%;
}
.product_1 .flex .son p {
  color: #6c6c6c;
  line-height: 1.5;
  transition: all 0.5s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.service_1 .tab {
  display: flex;
  justify-content: center;
}
.service_1 .tab .box {
  background-color: #fff;
  border-radius: 1000px;
  padding: 6px 12px;
  display: flex;
  gap: 10px;
}
.service_1 .tab .son {
  cursor: pointer;
  font-size: 16px;
  line-height: 1.5;
  color: #6c6c6c;
  padding: 14px 30px;
  border-radius: 100px;
  transition: all 0.5s ease;
}
.service_1 .tab .son.on {
  background-color: var(--color);
  color: #fff;
}
.service_1 .flex {
  margin-top: 60px;
}
.service_1 .flex .son {
  display: none;
  width: 100%;
}
.service_1 .flex .son.on {
  display: block;
}
.service_1 .flex .box {
  display: flex;
  align-items: center;
  gap: 20px;
}
.service_1 .flex .img {
  width: calc((100% - 20px * (2 - 1)) / 2);
  font-size: 0;
  border-radius: 20px;
  overflow: hidden;
}
.service_1 .flex .img img {
  width: 100%;
}
.service_1 .flex .txt {
  width: calc((100% - 20px * (2 - 1)) / 2);
  margin-left: auto;
  max-width: 489px;
}
.service_1 .flex .txt .h4 {
  color: #6c6c6c;
  font-size: 14px;
  font-weight: normal;
}
.service_1 .flex .txt .h3 {
  margin-top: 40px;
  font-size: 22px;
  color: #111;
  line-height: 1.5;
  font-weight: 500;
}
.service_1 .flex .txt .p {
  margin-top: 25px;
  font-size: 16px;
  line-height: 1.5;
  color: #6c6c6c;
}
.service_1 .flex .txt .con {
  margin-top: 25px;
}
.service_1 .flex .txt .but {
  margin-top: 25px;
  display: flex;
}
.news_1 .flex {
  gap: 30px;
}
.news_1 .son {
  width: calc((100% - 30px * (3 - 1)) / 3);
}
.news_1 .son:hover img {
  transform: scale(1.05);
}
.news_1 .son:hover h3 {
  color: var(--color);
}
.news_1 .son a {
  display: block;
}
.news_1 .son .img {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 96%;
  border-radius: 10px;
}
.news_1 .son .txt {
  margin-top: 20px;
}
.news_1 .son h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  height: 60px;
  margin-bottom: 10px;
  transition: all 0.5s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news_1 .son p {
  line-height: 1.75;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.cases_1 .flex {
  gap: 40px;
}
.cases_1 .son {
  width: calc((100% - 40px * (2 - 1)) / 2);
  padding: 20px;
  border-radius: 20px;
  background-color: #fff;
}
.cases_1 .son:hover img {
  transform: scale(1.05);
}
.cases_1 .son:hover h3 {
  color: var(--color);
}
.cases_1 .son a {
  display: block;
}
.cases_1 .son .img {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 60%;
  border-radius: 20px;
}
.cases_1 .son .txt {
  margin-top: 20px;
}
.cases_1 .son h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  transition: all 0.5s ease;
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.cases_1 .son p {
  line-height: 1.75;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.contact_1 .flex {
  gap: 40px;
}
@media (max-width: 768px) {
  .contact_1 .flex {
    gap: 20px;
  }
}
.contact_1 .son {
  width: calc((100% - 40px * (3 - 1)) / 3);
  padding: 60px 15px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
}
@media (max-width: 768px) {
  .contact_1 .son {
    width: 100%;
  }
}
.contact_1 .son::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1e242a;
  opacity: 0.5;
}
.contact_1 .son i {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
  font-size: 40px;
}
.contact_1 .son p {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  font-size: 20px;
}
.contact_1 .son span {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  margin-top: 15px;
}

.contact_2 h2 {
  position: relative;
  font-size: 36px;
  line-height: 1;
  margin-bottom: 50px;
  text-transform: capitalize;
  text-align: center;
}
@media (max-width: 768px) {
  .contact_2 h2 {
    font-size: 32px;
    margin-bottom: 30px;
  }
}
.contact_2 form {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media (max-width: 768px) {
  .contact_2 form {
    gap: 20px;
  }
}
.contact_2 label {
  width: calc((100% - 30px * (3 - 1)) / 3);
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .contact_2 label {
    width: 100%;
  }
}
.contact_2 label.textarea {
  width: 100%;
}
.contact_2 input,
.contact_2 textarea {
  width: 100%;
  height: 52px;
  line-height: 2;
  padding: 0px 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: #f7f7f7;
  transition: all 0.3s ease;
  font-family: initial;
}
.contact_2 textarea {
  height: 150px;
  padding: 20px 20px;
}
.contact_2 button {
  background-color: var(--color);
  color: #fff;
  border: none;
  border-radius: 5px;
  height: 50px;
  padding: 0 60px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 30px auto 0;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.info_1 .tit {
  color: #111;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
}
@media (max-width: 768px) {
  .info_1 .tit {
    font-size: 24px;
  }
}
.info_1 .con {
  margin-top: 40px;
}

.info_2 .flex {
  gap: 40px;
}
.info_2 .l {
  width: calc((100% - 40px * (2 - 1)) / 2);
}
@media (max-width: 768px) {
  .info_2 .l {
    width: 100%;
    padding-right: 0;
    padding-bottom: 40px;
  }
}
.info_2 .l .img {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 75%;
}
.info_2 .l .mySwiper_1 {
  border-radius: 10px;
}
.info_2 .l .mySwiper_2 {
  margin-top: 15px;
}
.info_2 .l .mySwiper_2 .img {
  border: 1px solid #e4e4e4;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.info_2 .l .mySwiper_2 img {
  margin: auto;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border-radius: 5px;
}
.info_2 .l .mySwiper_2 .swiper-slide-thumb-active .img {
  border: 1px solid var(--color);
}
.info_2 .r {
  width: calc((100% - 40px * (2 - 1)) / 2);
}
@media (max-width: 768px) {
  .info_2 .r {
    width: 100%;
  }
}
.info_2 .r h1 {
  color: #111;
  font-size: 35px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .info_2 .r h1 {
    font-size: 20px;
  }
}
.info_2 .r .p {
  line-height: 2;
}
.info_2 .r .but {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}
.info_2 .r .but a {
  height: 42px;
  line-height: 40px;
  border-radius: 40px;
  border: 1px solid var(--color);
  background-color: var(--color);
  color: #fff;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 200px;
}
.info_2 .info {
  margin-top: 80px;
}
.info_2 .info .tab {
  border: 1px solid #e4e4e4;
  display: flex;
}
.info_2 .info .tab span {
  line-height: 54px;
  width: 160px;
  text-align: center;
  text-overflow: ellipsis;
  transition: all 0.3s;
  white-space: nowrap;
  font-size: 15px;
  position: relative;
  border-right: 1px solid #e4e4e4;
  color: var(--color);
}
.info_2 .info .tab span::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--color);
}
.info_2 .info .con {
  padding: 25px 0;
}
.info_2 .form {
  margin-top: 40px;
  background-color: #fff;
  border-radius: 20px;
  margin-bottom: 0;
  padding: 40px;
}
.info_2 .form h3 {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.5;
  color: #111;
}
.info_2 .form .p {
  margin-top: 15px;
  font-size: 16px;
  line-height: 1.5;
  color: #6c6c6c;
}
.info_2 .form form {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 25px 20px;
}
.info_2 .form form label {
  width: calc((100% - 20px * (3 - 1)) / 3);
}
.info_2 .form form label.w5 {
  width: calc((100% - 20px * (2 - 1)) / 2);
}
.info_2 .form form label.w10 {
  width: 100%;
}
.info_2 .form form p {
  font-weight: 400;
  color: #111;
  margin-bottom: 10px;
  line-height: 1.5;
}
.info_2 .form form input,
.info_2 .form form textarea {
  font-family: initial;
  font-size: 12px;
  line-height: 2;
  padding: 10px 15px;
  color: #676767;
  background-color: #f2f2f2;
  border: 1px #d4d4d4 solid;
  border-radius: 10px;
  width: 100%;
}
.info_2 .form form button {
  margin-top: 25px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 100px;
  background-color: var(--color);
  color: #fff;
  padding: 12px 21px;
  cursor: pointer;
  font-size: 16px;
  line-height: 1.5;
  width: 100%;
  max-width: 380px;
}

.info_3 {
  padding-top: 40px !important;
}
@media (max-width: 768px) {
  .info_3 .flex {
    gap: 30px;
  }
}
.info_3 .l {
  width: 30%;
}
@media (max-width: 768px) {
  .info_3 .l {
    width: 100%;
  }
}
.info_3 .l .box {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.info_3 .l .img {
  width: 100%;
  font-size: 0;
}
.info_3 .l .img img {
  width: 100%;
}
.info_3 .l .txt {
  padding: 30px;
}
.info_3 .l .txt p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
}
.info_3 .l .txt p i {
  font-weight: bold;
  flex-shrink: 0;
  font-size: 16px;
}
.info_3 .l .txt .but {
  margin-top: 30px;
}
@media (max-width: 768px) {
  .info_3 .l .txt .but {
    margin-top: 20px;
  }
}
.info_3 .l .txt .but a {
  justify-content: center;
  border-radius: 8px;
  font-weight: normal;
  font-size: 18px;
  padding: 10px 24px;
}
@media (max-width: 768px) {
  .info_3 .l .txt .but a {
    font-size: 16px;
  }
}
.info_3 .l .txt .but a i {
  font-size: 24px;
}
@media (max-width: 768px) {
  .info_3 .l .txt .but a i {
    font-size: 20px;
  }
}
.info_3 .r {
  width: 70%;
  padding-left: 60px;
}
@media (max-width: 768px) {
  .info_3 .r {
    width: 100%;
    padding-left: 0;
  }
}
.info_3 .r .h1 {
  font-size: 36px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 768px) {
  .info_3 .r .h1 {
    gap: 20px;
    font-size: 24px;
  }
}
.info_3 .r .h1 span {
  font-size: 16px;
  color: var(--color);
  background-color: #feede1;
  padding: 5px 15px;
  border-radius: 5px;
  display: block;
}
@media (max-width: 768px) {
  .info_3 .r .h1 span {
    font-size: 14px;
  }
}
.info_3 .r .p {
  margin-top: 20px;
  font-size: 20px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .info_3 .r .p {
    font-size: 18px;
  }
}
.info_3 .r .con {
  margin-top: 20px;
}
.info_3 .r .icon {
  margin-top: 80px;
  padding-bottom: 40px;
  border-bottom: 2px solid #ececec;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .info_3 .r .icon {
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
  }
}
.info_3 .r .icon .son {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 768px) {
  .info_3 .r .icon .son {
    width: calc((100% - 20px * (2 - 1)) / 2);
  }
}
.info_3 .r .icon img {
  height: 50px;
}
@media (max-width: 768px) {
  .info_3 .r .icon img {
    height: auto;
    width: 50px;
  }
}
.info_3 .r .icon h3 {
  font-size: 18px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .info_3 .r .icon h3 {
    font-size: 15px;
  }
}
.info_3 .r .icon p {
  margin-top: 9px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}
@media (max-width: 768px) {
  .info_3 .r .icon p {
    font-size: 18px;
  }
}
.info_3 .r .honors {
  margin-top: 40px;
}
.info_3 .r .honors h2 {
  font-size: 20px;
}
.info_3 .r .honors .flex {
  gap: 20px;
  margin-top: 40px;
}
.info_3 .r .honors .son {
  width: calc((100% - 20px * (3 - 1)) / 3);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 40px;
  text-align: center;
}
@media (max-width: 768px) {
  .info_3 .r .honors .son {
    width: calc((100% - 20px * (2 - 1)) / 2);
    padding: 30px 20px;
  }
}
.info_3 .r .honors .son img {
  height: 66px;
}
@media (max-width: 768px) {
  .info_3 .r .honors .son img {
    height: 54px;
  }
}
.info_3 .r .honors .son h3 {
  margin-top: 30px;
  font-size: 16px;
}
@media (max-width: 768px) {
  .info_3 .r .honors .son h3 {
    margin-top: 15px;
  }
}
.info_3 .service {
  margin-top: 60px;
}
@media (max-width: 768px) {
  .info_3 .service {
    margin-top: 40px;
  }
}
.info_3 .service h2 {
  font-size: 20px;
}
.info_3 .service .flex {
  gap: 20px;
  margin-top: 40px;
  padding-bottom: 60px;
  border-bottom: 2px solid #ececec;
}
@media (max-width: 768px) {
  .info_3 .service .flex {
    padding-bottom: 40px;
  }
}
.info_3 .service .son {
  width: calc((100% - 20px * (3 - 1)) / 3);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .info_3 .service .son {
    flex-direction: column;
    gap: 20px;
    width: calc((100% - 20px * (2 - 1)) / 2);
    padding: 20px;
  }
}
.info_3 .service .son img {
  flex-shrink: 0;
  height: 66px;
}
@media (max-width: 768px) {
  .info_3 .service .son img {
    height: 54px;
  }
}
.info_3 .service .son .txt {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 768px) {
  .info_3 .service .son .txt {
    gap: 10px;
    text-align: center;
  }
}
.info_3 .service .son h3 {
  font-size: 18px;
  line-height: 1.5;
}
.info_3 .service .son p {
  line-height: 1.5;
}
.info_3 .user {
  margin-top: 60px;
}
@media (max-width: 768px) {
  .info_3 .user {
    margin-top: 40px;
  }
}
.info_3 .user h2 {
  font-size: 20px;
}
.info_3 .user .rel {
  position: relative;
  padding: 40px 80px;
}
@media (max-width: 768px) {
  .info_3 .user .rel {
    padding: 40px 20px;
  }
}
.info_3 .user .mySwiper {
  padding: 15px;
  margin: -15px;
}
.info_3 .user .mySwiper .swiper-slide {
  height: auto;
}
.info_3 .user .mySwiper .son {
  height: 100%;
  padding: 30px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}
.info_3 .user .mySwiper .t {
  margin-bottom: 20px;
}
.info_3 .user .mySwiper .t i {
  color: var(--color);
}
.info_3 .user .mySwiper .t span {
  margin-left: 10px;
}
.info_3 .user .mySwiper .p {
  font-size: 15px;
  line-height: 2;
  margin-bottom: 20px;
}
.info_3 .user .mySwiper .u {
  margin-top: auto;
  display: flex;
  gap: 20px;
}
.info_3 .user .mySwiper .u img {
  border-radius: 50%;
  height: 50px;
  width: 50px;
}
.info_3 .user .mySwiper .u .txt {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.info_3 .user .mySwiper .u .txt h3 {
  font-size: 16px;
  line-height: 1.5;
}
.info_3 .user .mySwiper .u .txt p {
  line-height: 1;
}
.info_3 .user .next,
.info_3 .user .prev {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background-color: var(--color);
}
.info_3 .user .next::after,
.info_3 .user .prev::after {
  font-size: 16px;
  color: #fff;
  font-weight: bold;
}
.info_3 .user .next {
  right: 0;
}
.info_3 .user .prev {
  left: 0;
}

.list_1 {
  border-bottom: 1px solid #e4e4e4;
}
.list_1 .flex {
  gap: 30px;
}
.list_1 a {
  padding-top: 18px;
  padding-bottom: 18px;
  line-height: 2;
  font-size: 18px;
  position: relative;
}
.list_1 a::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 2px;
  background-color: var(--color);
  opacity: 0;
  transition: all 0.5s ease;
}
.list_1 a:hover::after, .list_1 a.on::after {
  opacity: 1;
}

@keyframes nots {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(1turn);
  }
}

/*# sourceMappingURL=index.css.map */
