.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_5 .l .img img, .section_4 .r .img img, .section_3 .r img, .section_2 .r 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_4 .l .but a, .section_3 .l .but a, .section_2 .l .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: 8px 36px;
  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_4 .l .but a:hover, .section_3 .l .but a:hover, .section_2 .l .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_4 .l .but a i, .section_3 .l .but a i, .section_2 .l .but a i, .header .but a i, #banner_1 .but a i {
  line-height: 1;
  font-size: 14px;
}

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

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

body {
  color: #333;
  margin: 0 auto;
  font-size: 14px;
  font-family: var(--font);
  background-color: #fafafa;
}
.bx {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1330px;
}
@media (max-width: 1600px) {
  .bx {
    max-width: 1330px;
  }
}
@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: 100%;
}
#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: 600px;
}
@media (max-width: 768px) {
  #banner_1 .img img,
  #banner_1 .img video {
    height: 400px;
  }
}
#banner_1 .bx {
  padding-left: 150px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  #banner_1 .bx {
    padding-left: 15px;
  }
}
#banner_1 h2 {
  margin-left: auto;
  margin-right: auto;
  font-family: var(--font_title);
  width: 100%;
  line-height: 1.33;
  font-size: 64px;
  font-weight: bold;
  letter-spacing: 5px;
}
@media (max-width: 768px) {
  #banner_1 h2 {
    max-width: 100%;
    font-size: 32px;
  }
}
#banner_1 p {
  width: 100%;
  margin-top: 24px;
  line-height: 1.778;
  font-size: 18px;
  font-weight: 400;
}
#banner_1 .but {
  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;
}
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 {
  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: 34px;
}
@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: 600;
  line-height: 1.635em;
  font-family: var(--font_title);
}
.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: #000;
  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 .t {
  padding-bottom: 50px;
  display: flex;
}
@media (max-width: 768px) {
  footer .t {
    flex-wrap: wrap;
    gap: 30px;
  }
}
footer .t .logo {
  width: 30%;
}
@media (max-width: 768px) {
  footer .t .logo {
    width: 100%;
  }
}
footer .t .logo a {
  display: flex;
}
footer .t .logo img {
  height: 30px;
}
footer .t .logo h3 {
  max-width: 340px;
  font-size: 16px;
  line-height: 1.5;
  margin-top: 5px;
}
footer .t .logo p {
  max-width: 340px;
  line-height: 1.8;
  margin-top: 10px;
}
footer .t .logo .icon {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
}
footer .t .logo .icon a {
  display: flex;
}
footer .t .logo .icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
footer .t .nav {
  flex-grow: 1;
  padding-left: 20px;
  padding-right: 30px;
  display: flex;
}
@media (max-width: 768px) {
  footer .t .nav {
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    padding: 0;
  }
}
footer .t .nav .son {
  flex-grow: 1;
  width: 100%;
}
@media (max-width: 768px) {
  footer .t .nav .son {
    width: calc((100% - 10px * (3 - 1)) / 3);
    flex-grow: 0;
  }
}
footer .t .nav h3 {
  font-size: 16px;
  line-height: 1;
  margin-bottom: 15px;
}
footer .t .nav p {
  margin-bottom: 5px;
  line-height: 2;
}
footer .t .contact {
  width: 20%;
}
@media (max-width: 768px) {
  footer .t .contact {
    width: 100%;
  }
}
footer .t .contact h3 {
  font-size: 16px;
  line-height: 1;
  margin-bottom: 15px;
}
footer .t .contact p {
  margin-bottom: 5px;
  line-height: 1.5;
  display: flex;
  gap: 10px;
}
footer .t .contact p i {
  flex-shrink: 1;
  font-size: 14px;
}
footer .b {
  border-top: 1px solid #e5e5e5;
  line-height: 1.5;
  font-size: 12px;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  footer .b {
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px 10px;
  }
}
footer .b ul {
  margin-left: auto;
  margin-right: 40px;
  display: flex;
  gap: 20px;
}
@media (max-width: 768px) {
  footer .b ul {
    margin-right: auto;
  }
}

.title_1 {
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
  padding-bottom: 40px;
}
.title_1 h6 {
  display: inline-block;
  line-height: 1;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--color);
}
.title_1 h2 {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 1.4;
  color: #111;
  font-family: var(--font_title);
}
@media (max-width: 768px) {
  .title_1 h2 {
    font-size: 24px;
    letter-spacing: 1px;
  }
}
.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: 2;
  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;
}

.section_1 {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 10;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .section_1 {
    position: relative;
    transform: none;
    padding-top: 60px !important;
  }
}
.section_1 .flex {
  border-radius: 10px;
  padding: 30px 0;
  background-color: #fff;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .section_1 .flex {
    justify-content: center;
    padding: 20px 0;
  }
}
.section_1 .son {
  width: calc((100% - 0px * (3 - 1)) / 3);
  border-left: 1px solid rgba(108, 108, 108, 0.1411764706);
  padding: 10px 40px;
  display: flex;
  /*align-items: center;*/
  gap: 20px;
}
@media (max-width: 768px) {
  .section_1 .son {
    /*flex-direction: column;*/
    width: calc((100% - 0px * (1 - 1)) / 1);
    padding: 15px 20px;
  }
}
.section_1 .son:nth-child(1) {
  border-left: none;
}
@media (max-width: 768px) {
  .section_1 .son:nth-child(3n+1) {
    border-left: none;
  }
}
.section_1 .son img {
  height: 30px;
}
.section_1 .son > i {
  font-size: 30px;
  color: var(--color);
}
.section_1 .son .txt {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 768px) {
  .section_1 .son .txt {
    /*align-items: center;*/
    /*text-align: center;*/
  }
}
.section_1 .son p {
  font-size: 16px;
  line-height: 1.5;
  /*max-width: 210px;*/
  font-weight: normal;
}
@media (max-width: 768px) {
  .section_1 .son p {
    font-size: 16px;
  }
}
.section_1 .son p i {
  margin-right: 8px;
}
.section_1 .son h3 {
  font-size: 18px;
  line-height: 1.5;
  font-weight: bold;
}
@media (max-width: 768px) {
  .section_1 .son h3 {
    line-height: 1.5;
  }
}

.section_2 {
  padding-top: 150px !important;
}
@media (max-width: 768px) {
  .section_2 {
    padding-top: 60px !important;
  }
}
@media (max-width: 768px) {
  .section_2 .flex {
    gap: 30px;
  }
}
.section_2 .l {
  width: 20%;
  padding-right: 15px;
}
@media (max-width: 768px) {
  .section_2 .l {
    width: 100%;
    padding-right: 0;
  }
}
.section_2 .l .but {
  display: flex;
}
.section_2 .l .but a {
  background-color: transparent;
  border-color: #dcdee3;
  color: #333;
}
.section_2 .r {
  width: 80%;
  padding-left: 15px;
  position: relative;
}
@media (max-width: 768px) {
  .section_2 .r {
    width: 100%;
    padding-left: 0;
  }
}
.section_2 .r .img {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 220%;
  border-radius: 8px;
}
.section_2 .r .img:hover img {
  transform: scale(1.05);
}
.section_2 .r .txt {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  color: #fff;
  padding: 30px 10px 15px;
}
.section_2 .r .txt::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
}
.section_2 .r h3 {
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 10px;
  font-weight: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.section_2 .r p {
  font-size: 12px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 100%;
}
.section_2 .r i {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  color: #fff;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section_2 .r i::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  border: 2px solid #fff;
}
.section_2 .r .swiper-pagination {
  position: relative;
  top: 0;
  margin-top: 15px;
}
.section_2 .r .swiper-pagination span {
  transition: all 0.5s ease;
}
.section_2 .r .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color);
}
.section_2 .r .abs {
  position: absolute;
  right: 0;
  bottom: -8px;
  display: flex;
  gap: 10px;
}
.section_2 .r .next,
.section_2 .r .prev {
  transition: all 0.5s ease;
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  margin: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.section_2 .r .next::after,
.section_2 .r .prev::after {
  font-size: 12px;
  color: #000;
  font-weight: bold;
}

@media (max-width: 768px) {
  .section_3 .flex {
    gap: 30px;
  }
}
.section_3 .l {
  width: 20%;
  padding-right: 15px;
}
@media (max-width: 768px) {
  .section_3 .l {
    width: 100%;
    padding-right: 0;
  }
}
.section_3 .l .but {
  display: flex;
}
.section_3 .l .but a {
  background-color: transparent;
  border-color: #dcdee3;
  color: #333;
}
.section_3 .r {
  width: 80%;
  padding-left: 15px;
}
@media (max-width: 768px) {
  .section_3 .r {
    width: 100%;
    padding-left: 0;
  }
}
.section_3 .r .flex {
  gap: 20px;
}
.section_3 .r .son {
  width: calc((100% - 20px * (4 - 1)) / 4);
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .section_3 .r .son {
    width: calc((100% - 20px * (2 - 1)) / 2);
  }
}
.section_3 .r .son:hover img {
  transform: scale(1.05);
}
.section_3 .r .son:hover h3 {
  color: var(--color);
}
.section_3 .r a {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .section_3 .r a {
    flex-direction: column;
  }
}
.section_3 .r .img {
  flex-shrink: 0;
  position: relative;
  width: 120px;
  height: 110px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .section_3 .r .img {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
  }
}
.section_3 .r .txt {
  flex-grow: 1;
  padding: 15px;
}
@media (max-width: 768px) {
  .section_3 .r .txt {
    width: 100%;
  }
}
.section_3 .r h3 {
  font-size: 15px;
  margin-bottom: 10px;
  transition: all 0.8s ease;
}

.section_4 .l {
  width: 30%;
  padding-right: 30px;
}
@media (max-width: 768px) {
  .section_4 .l {
    width: 100%;
    padding-right: 0;
  }
}
.section_4 .l .but {
  display: flex;
}
.section_4 .l .but a {
  background-color: transparent;
  border-color: #dcdee3;
  color: #333;
}
.section_4 .r {
  width: 70%;
  padding-left: 30px;
}
@media (max-width: 768px) {
  .section_4 .r {
    width: 100%;
    padding-left: 0;
  }
}
.section_4 .r .flex {
  gap: 30px;
}
@media (max-width: 768px) {
  .section_4 .r .flex {
    gap: 20px;
  }
}
.section_4 .r .son {
  width: calc((100% - 30px * (3 - 1)) / 3);
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .section_4 .r .son {
    width: 100%;
  }
}
.section_4 .r .img {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 50%;
}
.section_4 .r .txt {
  padding: 15px;
  display: flex;
}
@media (max-width: 768px) {
  .section_4 .r .txt {
    padding: 20px;
  }
}
.section_4 .r .txt .icon {
  flex-shrink: 0;
  height: 45px;
  width: 45px;
}
.section_4 .r .txt img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.section_4 .r .txt .info {
  flex-grow: 1;
  padding-left: 10px;
}
@media (max-width: 768px) {
  .section_4 .r .txt .info {
    padding-left: 20px;
  }
}
.section_4 .r .txt h3 {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 8px;
}
.section_4 .r .txt h5 {
  font-size: 12px;
  font-weight: normal;
  line-height: 1;
  text-transform: uppercase;
}
.section_4 .r .txt p {
  margin-top: 15px;
  margin-bottom: 15px;
  line-height: 1.5;
}
.section_4 .r .txt a {
  color: var(--color);
  line-height: 1;
}
.section_4 .r .txt a i {
  font-size: 14px;
}

@media (max-width: 768px) {
  .section_5 .flex {
    gap: 30px;
  }
}
.section_5 .l {
  width: 75%;
}
@media (max-width: 768px) {
  .section_5 .l {
    width: 100%;
  }
}
.section_5 .l .flex {
  gap: 30px;
}
@media (max-width: 768px) {
  .section_5 .l .flex {
    gap: 20px;
  }
}
.section_5 .l .son {
  width: calc((100% - 30px * (3 - 1)) / 3);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .section_5 .l .son {
    width: 100%;
  }
}
.section_5 .l .img {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 38%;
}
.section_5 .l .txt {
  padding: 15px;
  display: flex;
  gap: 15px;
}
.section_5 .l .txt .icon {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  /*background-color: #f2f2f2;*/
  border-radius: 50%;
  overflow: hidden;
  padding: 10px;
}
.section_5 .l .txt .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.section_5 .l .txt .icon i {
  font-size: 25px;
}
.section_5 .l .txt .info h3 {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 5px;
}
.section_5 .l .txt .info p {
  line-height: 1.5;
}
.section_5 .l .txt .info p + p {
  margin-top: 5px;
}
.section_5 .l .txt .info p i {
  margin-right: 8px;
}
.section_5 .r {
  width: 25%;
  padding-left: 60px;
}
@media (max-width: 768px) {
  .section_5 .r {
    width: 100%;
    padding-left: 0;
  }
}
.section_5 .r .img {
  font-size: 0;
  width: 100%;
}
.section_5 .r img {
  width: 100%;
}

[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: 35px;
  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: translateX(100%);
    right: 0;
  }
  100% {
    transform: translateX(0);
    right: 100%;
  }
}
@keyframes img_ani {
  0% {
    transform: translateX(-20px);
  }
  50% {
    transform: translateX(20px);
  }
  100% {
    transform: translateX(-20px);
  }
}
@keyframes forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}
@keyframes marquee_r {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes marquee_l {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

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