@charset "UTF-8";
.news_1 .son img, .services_2 .son .img img, .product_1 .r .son img, .cases_1 .r .son img, .section_6 .swiper img, .section_3 .son img, .section_1 .l img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s ease;
}

.services_1 .son .but .icon, .form_2 form .but button, .form_1 form .btn button, .header .but a, #banner_1 .txt .but a {
  display: inline-block;
  padding: 8px 30px;
  border-radius: 40px;
  font-size: 16px;
  border: 2px solid var(--color);
  background-color: var(--color);
  font-weight: 400;
  line-height: 24px;
  color: #fff;
  transition: all 0.8s ease;
}
.services_1 .son .but .icon:hover, .form_2 form .but button:hover, .form_1 form .btn button:hover, .header .but a:hover, #banner_1 .txt .but a:hover {
  background-color: var(--color1);
  border-color: var(--color1);
  color: #fff;
}

@font-face {
  font-family: "title1";
  src: url(../font/yYLl0h7WyfzTzI44.woff2);
}
:root {
  --color: #015293;
  --color1: #64b82e;
  --color2: #9bb56e;
  --nav_height: 200px;
}
@media (max-width: 768px) {
  :root {
    --nav_height: 80px;
  }
}

/* 定义滚动条整体样式 (Webkit) */
::-webkit-scrollbar {
  /* 滚动条宽度（垂直滚动条）/ 高度（水平滚动条） */
  width: 4px;
  height: 8px;
}

/* 滚动条轨道样式 (Webkit) */
::-webkit-scrollbar-track {
  /* 轨道背景色 */
  background: #f1f1f1;
  /* 轨道圆角 */
  border-radius: 4px;
}

/* 滚动条滑块样式 (Webkit) */
::-webkit-scrollbar-thumb {
  /* 滑块背景色 */
  background: #c1c1c1;
  /* 滑块圆角 */
  border-radius: 4px;
  /* 滑块悬停效果 */
  transition: background 0.2s ease;
}

/* 滑块悬停时的样式 (Webkit) */
::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* 滑块激活（点击拖动）时的样式 (Webkit) */
::-webkit-scrollbar-thumb:active {
  background: #888888;
}

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

body {
  font-family: "Inter";
  color: #333;
  margin: 0 auto;
  font-weight: 400;
  font-size: 16px;
}
@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: 1330px;
}
@media (max-width: 1440px) {
  .bx {
    max-width: 1200px;
  }
}
@media (max-width: 1200px) {
  .bx {
    max-width: 1140px;
  }
}
@media (max-width: 992px) {
  .bx {
    max-width: 960px;
  }
}
@media (max-width: 768px) {
  .bx {
    max-width: 720px;
  }
}
@media (max-width: 576px) {
  .bx {
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .bx {
    max-width: 100%;
  }
}

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%);
}
#fixed .son.on {
  display: none !important;
}
#fixed .son .close {
  position: absolute;
  right: 42px;
  top: 20px;
  width: 40px;
  height: 40px;
  border: 1px solid #dadada;
  background: #fff;
  border-radius: 50px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
}
#fixed .son .close i {
  color: #de0309;
  font-weight: bold;
}

#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: solid 1px var(--color);
}
#page_1 a.on {
  pointer-events: none;
}
#page_1 a i {
  font-size: 12px;
}

#page_2 {
  width: 100%;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 40px;
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
#page_2 a {
  font-size: 18px;
  line-height: 1;
  transition: all 0.5s ease;
}
#page_2 a:hover, #page_2 a.on {
  color: var(--color);
}

#banner_1 {
  margin-top: var(--nav_height);
}
#banner_1 .mySwiper1 {
  height: 475px;
}
#banner_1 .img {
  width: 100%;
  height: 100%;
  font-size: 0;
}
#banner_1 .img img,
#banner_1 .img video,
#banner_1 .img iframe {
  width: 100%;
  height: 100%;
}
#banner_1 .txt {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#banner_1 .txt .bx {
  color: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
#banner_1 .txt h3 {
  max-width: 800px;
  font-size: 14px;
  padding-bottom: 10px;
  font-weight: 700;
}
#banner_1 .txt h2 {
  max-width: 800px;
  font-size: 40px;
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: 700;
}
#banner_1 .txt .p {
  max-width: 800px;
  margin-top: 20px;
}
#banner_1 .txt .p p {
  font-weight: bold;
  font-size: 18px;
  line-height: 1.5;
}
#banner_1 .txt .but {
  margin-top: 32px;
  display: flex;
}
#banner_1 .next_1,
#banner_1 .prev_1 {
  width: 70px;
  height: 70px;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}
#banner_1 .next_1::after,
#banner_1 .prev_1::after {
  transition: all 0.5s ease;
  font-size: 28px;
  color: #fff;
  font-weight: bold;
}
#banner_1 .next_1:hover,
#banner_1 .prev_1:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
#banner_1 .next_1 {
  right: 4%;
}
@media (max-width: 768px) {
  #banner_1 .next_1 {
    right: 4%;
  }
}
#banner_1 .prev_1 {
  left: 4%;
}
@media (max-width: 768px) {
  #banner_1 .prev_1 {
    left: 4%;
  }
}
#banner_1 .pag_1 span {
  transition: all 0.5s ease;
  opacity: 1;
  background-color: #fff;
}
#banner_1 .pag_1 .swiper-pagination-bullet-active {
  background-color: rgba(0, 0, 0, 0.5);
}

#banner_2 {
  margin-top: var(--nav_height);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 10;
  display: flex;
}
#banner_2 .img {
  width: 100%;
  font-size: 0;
  position: relative;
}
#banner_2 .img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(180deg, rgba(28, 28, 28, 0.27) 0%, rgba(28, 28, 28, 0.11) 100%);
}
#banner_2 img {
  width: 100%;
  height: 300px;
}
#banner_2 .bx {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
#banner_2 h2 {
  color: #fff;
  font-size: 56px;
  line-height: 1;
  font-weight: normal;
}

#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;
  font-size: 13px;
  line-height: 1.4;
}
#mbx_2 .bx {
  padding-top: 30px;
  padding-bottom: 30px;
}
#mbx_2 span {
  margin: 0 5px;
}

header {
  height: var(--nav_height);
  transition: all 0.3s;
  position: absolute;
  width: 100%;
  z-index: 100;
  top: 0;
  box-shadow: 0px 3px 30px -1px rgba(0, 0, 0, 0.06);
}
@media (max-width: 768px) {
  header {
    position: fixed;
  }
}
header::after {
  transition: all 0.3s;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-color: #fff;
}
.header {
  background-image: url(../image/bj1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: calc(var(--nav_height) - 60px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .header {
    height: 100%;
  }
}
.header .bx {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header .logo img {
  height: 80px;
}
@media (max-width: 768px) {
  .header .logo img {
    height: 50px;
  }
}
.header .logo h2 {
  margin-top: 5px;
  font-size: 30px;
  line-height: 1;
  font-weight: bold;
}
@media (max-width: 768px) {
  .header .logo h2 {
    font-size: 24px;
  }
}
.header .logo p {
  font-size: 14.4px;
  display: block;
  line-height: 1;
  margin-top: 5px;
}
@media (max-width: 768px) {
  .header .logo p {
    font-size: 12px;
  }
}
.header .search {
  width: 350px;
  height: 40px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .header .search {
    display: none;
  }
}
.header .search form {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.header .search input {
  width: 100%;
  height: 100%;
  border: 1px solid #ccc;
  border-right: none;
  text-indent: 2em;
  font-size: 12px;
  border-radius: 25px 0px 0px 25px;
  box-sizing: border-box;
}
.header .search button {
  height: 100%;
  flex-shrink: 0;
  padding: 6px 20px;
  color: #fff;
  background-color: var(--color);
  border-radius: 0 25px 25px 0;
  border: none;
}
.header .mobile {
  display: none;
}
@media (max-width: 768px) {
  .header .mobile {
    display: block;
  }
}
.header .mobile i {
  font-size: 20px;
}
.header .but {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 768px) {
  .header .but {
    display: none;
  }
}
.header .but a {
  font-size: 14px;
}

.header_nav {
  height: 60px;
  background-image: linear-gradient(to left, var(--color) 0%, var(--color) 30%, var(--color1));
}
@media (max-width: 768px) {
  .header_nav {
    height: 0;
  }
}
.header_nav .bx {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header_nav .nav {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .header_nav .nav {
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    margin-top: var(--nav_height);
    overflow: hidden;
    white-space: nowrap;
    width: 0%;
    opacity: 0;
    background-color: #fff;
    transition: all 0.5s ease;
  }
  .header_nav .nav.on {
    width: 100%;
    opacity: 1;
  }
}
.header_nav .nav li {
  position: relative;
  width: 100%;
  height: 100%;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}
.header_nav .nav li:nth-child(1) {
  border-left: none;
}
.header_nav .nav li.menu_mobile {
  display: none;
}
@media (max-width: 768px) {
  .header_nav .nav li.menu_mobile {
    display: block;
    flex-grow: 1;
  }
}
@media (max-width: 768px) {
  .header_nav .nav li {
    width: 100%;
    height: auto;
  }
}
.header_nav .nav li:hover .ej_box {
  opacity: 1;
  visibility: visible;
}
.header_nav .nav li i {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  font-size: 18px;
  font-weight: bold;
  width: 45px;
  height: 45px;
}
@media (max-width: 768px) {
  .header_nav .nav li i {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.header_nav .nav li > a {
  color: #fff;
  height: 100%;
  font-weight: 600;
  position: relative;
  transition: all 0.5s ease;
  font-size: 17px;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .header_nav .nav li > a {
    justify-content: flex-start;
    color: #000;
    height: auto;
    line-height: 1.5;
    padding: 10px 15px;
  }
}
.header_nav .nav li .ej_box {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 100%;
  width: auto;
  white-space: nowrap;
  border-radius: 8px;
  overflow: hidden;
  opacity: 0;
  transition: all 0.5s ease;
  visibility: hidden;
}
@media (max-width: 768px) {
  .header_nav .nav li .ej_box {
    display: none;
    transform: none;
    top: auto;
    left: auto;
    width: 100%;
    position: relative;
    opacity: 1;
    visibility: visible;
  }
}
.header_nav .nav li .ej_box a {
  display: block;
  text-align: center;
  padding: 15px 30px;
  background-color: #fff;
  font-size: 14px;
  color: #212121;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}
@media (max-width: 768px) {
  .header_nav .nav li .ej_box a {
    text-align: left;
  }
}
.header_nav .nav li .ej_box a:hover {
  background-color: var(--color);
  color: #fff;
}
@media (max-width: 768px) {
  .header_nav .nav li .ej_box a:hover {
    color: #212121;
  }
}
.header_nav .nav li .ej_box a:last-child {
  margin-bottom: 0;
}

.footer {
  background-color: #eceff0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 50px;
}
@media (max-width: 768px) {
  .footer {
    padding-top: 24px;
  }
}
.footer .top {
  padding-bottom: 50px;
}
.footer .top .bx {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
@media (max-width: 768px) {
  .footer .top .bx {
    flex-direction: column;
  }
}
.footer .top .l {
  max-width: 400px;
}
@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: 65px;
}
@media (max-width: 768px) {
  .footer .top .l .logo img {
    height: 50px;
  }
}
.footer .top .l .logo h2 {
  font-size: 22px;
  font-weight: 600;
  font-family: var(--font_title);
  line-height: 1.635em;
  text-transform: uppercase;
}
.footer .top .l .txt {
  margin-top: 20px;
}
.footer .top .l .txt p {
  line-height: 1.77em;
  font-size: 16px;
  font-weight: 400;
}
.footer .top .l ul {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.footer .top .l ul li {
  height: 24px;
  width: 24px;
}
.footer .top .l ul li a {
  display: block;
  width: 100%;
  height: 100%;
}
.footer .top .l ul li img {
  width: 100%;
  height: 100%;
}
.footer .top .nav {
  width: calc((100% - 24px * (3 - 1)) / 3);
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
@media (max-width: 768px) {
  .footer .top .nav {
    width: 100%;
  }
}
.footer .top .nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}
.footer .top .nav h3 {
  width: 100%;
  font-size: 18px;
  line-height: 1;
  margin-bottom: 10px;
}
.footer .top .nav li {
  width: calc((100% - 24px * (4 - 1)) / 4);
}
.footer .top .nav a {
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
}
.footer .top .r {
  width: calc((100% - 24px * (3 - 1)) / 3);
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .footer .top .r {
    width: 100%;
  }
}
.footer .top .r .img {
  text-align: center;
}
.footer .top .r .img img {
  width: 90px;
  height: 90px;
}
.footer .bottom {
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #033580;
}
.footer .bottom .bx {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .footer .bottom .bx {
    gap: 10px;
  }
}
.footer .bottom .p {
  width: 100%;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  text-align: center;
}
@media (max-width: 768px) {
  .footer .bottom .p {
    width: 100%;
  }
}
.footer .bottom ul {
  width: 30%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
@media (max-width: 768px) {
  .footer .bottom ul {
    width: 100%;
  }
}
.footer .bottom ul a {
  display: block;
  width: 20px;
  height: 20px;
  font-size: 0;
}
.footer .bottom ul img {
  width: 100%;
  height: 100%;
}

.main {
  background-color: #eceff0;
}

.title_1 {
  margin-bottom: 20px;
  text-align: center;
  position: relative;
}
@media (max-width: 768px) {
  .title_1 {
    margin-bottom: 40px;
  }
}
.title_1 h6 {
  line-height: 1.4;
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: var(--color);
}
.title_1 h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .title_1 h2 {
    font-size: 20px;
  }
}
.title_1 h5 {
  font-size: 15px;
  line-height: 1.575;
  font-weight: 400;
  width: 100%;
  margin-bottom: 30px;
}

.title_2 {
  width: 100%;
  font-weight: bold;
  padding: 0 10px;
  font-size: 16px;
  color: var(--color);
  line-height: 2.2;
  border-bottom: solid 1px #e1e1e1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.title_2 a {
  font-size: 14px;
  font-weight: normal;
  color: #000;
}

[class^=section_] {
  padding-top: 20px;
}

.section_1 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
}
.section_1 .flex {
  gap: 20px;
  padding: 20px;
  background-color: #fff;
}
@media (max-width: 768px) {
  .section_1 .flex {
    padding: 15px;
  }
}
.section_1 .l {
  width: calc((100% - 20px * (2 - 1)) / 2);
}
@media (max-width: 768px) {
  .section_1 .l {
    width: 100%;
  }
}
.section_1 .l .mySwiper1:hover .next_1,
.section_1 .l .mySwiper1:hover .prev_1 {
  background-color: var(--color);
}
.section_1 .l .mySwiper1:hover .next_1 i,
.section_1 .l .mySwiper1:hover .prev_1 i {
  color: #fff;
}
.section_1 .l a {
  display: block;
  position: relative;
}
.section_1 .l .img {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 68.75%;
}
.section_1 .l .txt {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
}
.section_1 .l h3 {
  color: #fff;
  font-size: 16px;
  padding: 15px 20px;
  line-height: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 100%;
}
.section_1 .l .next_1,
.section_1 .l .prev_1 {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.8s ease;
}
.section_1 .l .next_1::after,
.section_1 .l .prev_1::after {
  display: none;
}
.section_1 .l .next_1 i,
.section_1 .l .prev_1 i {
  font-size: 24px;
  transition: all 0.8s ease;
}
.section_1 .r {
  width: calc((100% - 20px * (2 - 1)) / 2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .section_1 .r {
    width: 100%;
  }
}
.section_1 .r .tab {
  width: 100%;
  border-bottom: 1px solid #ddd;
  display: flex;
}
.section_1 .r .tab span {
  cursor: pointer;
  padding: 0 15px 20px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  position: relative;
  transition: all 0.8s ease;
}
@media (max-width: 768px) {
  .section_1 .r .tab span {
    font-size: 16px;
    padding: 0 10px 20px;
  }
}
.section_1 .r .tab span.on {
  color: var(--color);
}
.section_1 .r .tab span.on::after {
  opacity: 1;
}
.section_1 .r .tab span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background-color: var(--color);
  opacity: 0;
  transition: all 0.8s ease;
}
@media (max-width: 768px) {
  .section_1 .r .list {
    margin-top: 10px;
  }
}
.section_1 .r .list ul {
  padding: 0 10px;
  height: 360px;
  display: none;
}
.section_1 .r .list ul.on {
  display: block;
}
.section_1 .r .list li {
  line-height: 2.5;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.section_1 .r .list li:hover a {
  color: var(--color);
}
.section_1 .r .list li:hover a::before {
  background-color: var(--color);
}
.section_1 .r .list li a {
  transition: all 0.5s ease;
  position: relative;
  padding-left: 15px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 100%;
}
.section_1 .r .list li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #000;
  transition: all 0.5s ease;
}
.section_1 .r .list li span {
  flex-shrink: 0;
}

.section_2 {
  overflow: hidden;
  position: relative;
}
.section_2 .box {
  padding: 20px;
  background-color: #fff;
}
@media (max-width: 768px) {
  .section_2 .box {
    padding: 15px;
  }
}
.section_2 .img {
  display: block;
  width: 100%;
  height: 90px;
}
.section_2 .img img {
  width: 100%;
  height: 100%;
}
.section_2 .next_2,
.section_2 .prev_2 {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.8s ease;
}
.section_2 .next_2::after,
.section_2 .prev_2::after {
  display: none;
}
.section_2 .next_2 i,
.section_2 .prev_2 i {
  font-size: 24px;
  transition: all 0.8s ease;
}

.section_3 {
  overflow: hidden;
  position: relative;
}
.section_3 .box {
  padding: 20px;
  background-color: #fff;
}
@media (max-width: 768px) {
  .section_3 .box {
    padding: 15px;
  }
}
.section_3 .flex {
  gap: 20px;
  padding: 20px 10px 10px;
}
@media (max-width: 768px) {
  .section_3 .flex {
    padding: 20px 0px 10px;
  }
}
.section_3 .son {
  width: calc((100% - 20px * (6 - 1)) / 6);
}
@media (max-width: 768px) {
  .section_3 .son {
    width: calc((100% - 20px * (2 - 1)) / 2);
  }
}
.section_3 .son:hover img {
  transform: scale(1.05);
}
.section_3 .son .img {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
}
.section_3 .son .txt {
  padding-top: 10px;
}
.section_3 .son h3 {
  text-align: center;
  line-height: 1.5;
  font-size: 16px;
  font-weight: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.section_4 {
  position: relative;
  overflow: hidden;
}
.section_4 .flex {
  gap: 20px;
}
.section_4 .son {
  width: calc((100% - 20px * (3 - 1)) / 3);
  padding: 20px;
  background-color: #fff;
}
@media (max-width: 768px) {
  .section_4 .son {
    width: 100%;
    padding: 15px;
  }
}
.section_4 .son ul {
  padding-top: 15px;
}
.section_4 .son li {
  line-height: 2.5;
  padding: 0 10px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.section_4 .son li:hover a {
  color: var(--color);
}
.section_4 .son li:hover a::before {
  background-color: var(--color);
}
.section_4 .son li a {
  transition: all 0.5s ease;
  position: relative;
  padding-left: 15px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 100%;
}
.section_4 .son li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #000;
  transition: all 0.5s ease;
}
.section_4 .son li span {
  flex-shrink: 0;
}

.section_5 {
  position: relative;
  overflow: hidden;
}
.section_5 .flex {
  gap: 20px;
}
.section_5 .son {
  width: calc((100% - 20px * (2 - 1)) / 2);
  padding: 20px;
  background-color: #fff;
}
@media (max-width: 768px) {
  .section_5 .son {
    width: 100%;
    padding: 15px;
  }
}
.section_5 .son ul {
  padding-top: 15px;
}
.section_5 .son li {
  line-height: 2.5;
  padding: 0 10px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.section_5 .son li:hover a {
  color: var(--color);
}
.section_5 .son li:hover a::before {
  background-color: var(--color);
}
.section_5 .son li a {
  transition: all 0.5s ease;
  position: relative;
  padding-left: 15px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 100%;
}
.section_5 .son li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #000;
  transition: all 0.5s ease;
}
.section_5 .son li a span {
  color: var(--color);
}
.section_5 .son li span {
  flex-shrink: 0;
}

.section_6 {
  position: relative;
  overflow: hidden;
}
.section_6 .box {
  padding: 20px;
  background-color: #fff;
}
@media (max-width: 768px) {
  .section_6 .box {
    padding: 15px;
  }
}
.section_6 .swiper {
  padding: 20px 10px 10px;
}
@media (max-width: 768px) {
  .section_6 .swiper {
    padding: 20px 0px 10px;
  }
}
.section_6 .swiper a {
  display: block;
}
.section_6 .swiper .img {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
}
.section_6 .swiper .txt {
  padding-top: 10px;
}
.section_6 .swiper h3 {
  text-align: center;
  line-height: 1.5;
  font-size: 16px;
  font-weight: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.section_7 {
  overflow: hidden;
  position: relative;
  padding-bottom: 20px;
}
.section_7 .box {
  padding: 20px;
  background-color: #fff;
}
@media (max-width: 768px) {
  .section_7 .box {
    padding: 15px;
  }
}
.section_7 .img {
  display: block;
  width: 100%;
  height: 90px;
}
.section_7 .img img {
  width: 100%;
  height: 100%;
}
.section_7 .next_7,
.section_7 .prev_7 {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.8s ease;
}
.section_7 .next_7::after,
.section_7 .prev_7::after {
  display: none;
}
.section_7 .next_7 i,
.section_7 .prev_7 i {
  font-size: 24px;
  transition: all 0.8s ease;
}

.cases_1 {
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .cases_1 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.cases_1 .bx {
  display: flex;
}
.cases_1 .l {
  flex-shrink: 0;
  width: 25%;
  padding-right: 40px;
}
@media (max-width: 768px) {
  .cases_1 .l {
    display: none;
  }
}
.cases_1 .l h2 {
  width: 100%;
  height: 60px;
  background-color: var(--color);
  margin: 0;
  padding: 0;
  border-radius: 10px 10px 0 0;
  line-height: 1.3;
  font-weight: 400;
  font-size: 18px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cases_1 .l ul {
  background-color: #f5f5f5;
  padding: 20px 0;
  border-radius: 0 0 10px 10px;
}
.cases_1 .l li {
  padding: 10px 20px;
  border-bottom: 1px solid #edebeb;
}
.cases_1 .l li a {
  line-height: 2.5;
  font-size: 16px;
  padding: 0 30px;
  border-radius: 40px;
  transition: all 0.5s ease;
  display: flex;
  gap: 20px;
}
.cases_1 .l li a.on, .cases_1 .l li a:hover {
  background-color: var(--color);
  color: #fff;
}
.cases_1 .r {
  flex-grow: 1;
}
@media (max-width: 768px) {
  .cases_1 .r {
    width: 100%;
  }
}
.cases_1 .r .flex {
  gap: 30px;
}
@media (max-width: 768px) {
  .cases_1 .r .flex {
    gap: 20px;
  }
}
.cases_1 .r .son {
  width: calc((100% - 30px * (3 - 1)) / 3);
  transition: all 0.8s ease;
}
@media (max-width: 768px) {
  .cases_1 .r .son {
    width: calc((100% - 20px * (2 - 1)) / 2);
  }
}
.cases_1 .r .son:hover img {
  transform: scale(1.05);
}
.cases_1 .r .son .img {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 75%;
  border-radius: 4px;
}
.cases_1 .r .son .txt {
  padding-top: 15px;
}
.cases_1 .r .son h3 {
  font-weight: normal;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 100%;
}

[class^=about_] .title_1 h2 {
  font-weight: 400;
}

.about_1 {
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .about_1 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.about_1 .img {
  float: left;
  width: calc(50% - 30px);
  margin-right: 60px;
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  font-size: 0;
}
@media (max-width: 768px) {
  .about_1 .img {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.about_1 .img img {
  width: 100%;
}
.about_1 .txt .tit {
  font-size: 28px;
  line-height: 1.33;
  font-weight: normal;
}
@media (max-width: 768px) {
  .about_1 .txt .tit {
    font-size: 28px;
  }
}
.about_1 .txt .con {
  margin-top: 20px;
  font-size: 15px;
}

.form_1 {
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .form_1 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.form_1 .tit {
  text-align: center;
  font-weight: normal;
  margin-bottom: 30px;
  padding-bottom: 30px;
  line-height: 1.5;
  font-size: 28px;
  color: #010101;
}
.form_1 form {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.form_1 form label {
  width: calc((100% - 20px * (2 - 1)) / 2);
  display: flex;
}
.form_1 form .w100 {
  width: 100%;
}
.form_1 form p {
  width: 100px;
  flex-shrink: 0;
  line-height: 46px;
}
.form_1 form input,
.form_1 form textarea {
  font-family: initial;
  width: 100%;
  font-size: 16px;
  line-height: 2;
  padding: 5px 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #f7f7f7;
  transition: all 0.3s ease;
}
.form_1 form .btn {
  width: 100%;
  display: flex;
  justify-content: center;
}
.form_2 {
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .form_2 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.form_2 .tit {
  font-weight: normal;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ccc;
  line-height: 1.5;
  font-size: 20px;
  color: #010101;
}
.form_2 form {
  padding-top: 40px;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.form_2 form label,
.form_2 form .label {
  display: flex;
}
.form_2 form label + label, .form_2 form label + .label,
.form_2 form .label + label,
.form_2 form .label + .label {
  margin-top: 20px;
}
.form_2 form .p {
  width: 100px;
  flex-shrink: 0;
  line-height: 40px;
}
.form_2 form select,
.form_2 form input[type=text] {
  width: 500px;
  font-size: 16px;
  height: 40px;
  padding: 0px 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.form_2 form input[type=file] {
  display: none;
}
.form_2 form .image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 30px;
  border: 1px dashed #e2e2e2;
  border-radius: 4px;
  background-color: #f1f1f1;
  width: 300px;
  height: 150px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.form_2 form .image:hover {
  background-color: #e2e2e2;
}
.form_2 form .but {
  margin-top: 30px;
  margin-left: 100px;
  display: flex;
}
.product_1 {
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .product_1 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.product_1 .bx {
  display: flex;
}
.product_1 .l {
  flex-shrink: 0;
  width: 25%;
  padding-right: 40px;
}
.product_1 .l h2 {
  width: 100%;
  height: 60px;
  background-color: var(--color);
  margin: 0;
  padding: 0;
  border-radius: 10px 10px 0 0;
  line-height: 1.3;
  font-weight: 400;
  font-size: 18px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.product_1 .l ul {
  background-color: #f5f5f5;
  padding: 20px 0;
  border-radius: 0 0 10px 10px;
}
.product_1 .l li {
  padding: 10px 20px;
  border-bottom: 1px solid #edebeb;
}
.product_1 .l li a {
  line-height: 2.5;
  font-size: 16px;
  padding: 0 30px;
  border-radius: 40px;
  transition: all 0.5s ease;
  display: flex;
  gap: 20px;
}
.product_1 .l li a.on, .product_1 .l li a:hover {
  background-color: var(--color);
  color: #fff;
}
.product_1 .r {
  flex-grow: 1;
}
@media (max-width: 768px) {
  .product_1 .r {
    width: 100%;
  }
}
.product_1 .r .flex {
  gap: 30px;
}
@media (max-width: 768px) {
  .product_1 .r .flex {
    gap: 20px;
  }
}
.product_1 .r .son {
  width: calc((100% - 30px * (4 - 1)) / 4);
  transition: all 0.8s ease;
}
@media (max-width: 768px) {
  .product_1 .r .son {
    width: calc((100% - 20px * (2 - 1)) / 2);
  }
}
.product_1 .r .son:hover img {
  transform: scale(1.05);
}
.product_1 .r .son .img {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 75%;
  border-radius: 4px;
}
.product_1 .r .son .txt {
  padding-top: 15px;
}
.product_1 .r .son h3 {
  font-weight: normal;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 100%;
}

.services_1 {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .services_1 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.services_1 .flex {
  gap: 40px;
}
.services_1 .son {
  width: 100%;
  border: 1px solid #f3f3f3;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.5s ease;
  display: flex;
}
.services_1 .son:hover {
  box-shadow: 0px 4.4px 12px -1px rgba(19, 16, 34, 0.06), 0px 2px 6.4px -1px rgba(19, 16, 34, 0.03);
}
.services_1 .son:hover img {
  transform: scale(1.05);
}
.services_1 .son:hover h3 {
  color: var(--color);
}
.services_1 .son:nth-child(2n) {
  flex-direction: row-reverse;
}
.services_1 .son:nth-child(2n) .but {
  justify-content: flex-start;
}
.services_1 .son .img {
  font-size: 0;
  width: 35%;
  overflow: hidden;
}
.services_1 .son img {
  width: 100%;
  transition: all 0.5s ease;
}
.services_1 .son .txt {
  padding: 30px;
  width: 65%;
  display: flex;
  flex-direction: column;
}
.services_1 .son h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  color: #0d233e;
  transition: all 0.5s ease;
  margin-bottom: 15px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 100%;
}
.services_1 .son p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.services_1 .son .but {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
}
.services_2 {
  overflow: hidden;
  padding-bottom: 70px;
}
@media (max-width: 768px) {
  .services_2 {
    padding-bottom: 30px;
  }
}
.services_2 .title {
  text-align: center;
}
.services_2 .title h2 {
  font-size: 60px;
  color: var(--color);
  font-weight: normal;
  line-height: 1.1;
}
.services_2 .title h5 {
  font-size: 28px;
  line-height: 2;
}
.services_2 .title p {
  margin-top: 10px;
  color: rgb(153, 153, 153);
  line-height: 2;
}
.services_2 .flex {
  gap: 60px;
  margin-top: 60px;
}
.services_2 .son {
  width: 100%;
  display: flex;
}
.services_2 .son .img {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 29%;
  width: 44%;
}
.services_2 .son .txt {
  width: 56%;
  padding-top: 30px;
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
}
.services_2 .son .txt .h3 {
  font-size: 24px;
  line-height: 1.5;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 100%;
}
.services_2 .son .txt .con {
  margin-bottom: 20px;
  margin-top: 15px;
  font-size: 16px;
  line-height: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}
.services_2 .son .txt .but {
  margin-top: auto;
  display: flex;
}
.services_2 .son .txt .but a {
  background-color: var(--color);
  color: #fff;
  border-radius: 4px;
  font-size: 16px;
  line-height: 2;
  padding: 6px 50px;
}

.news_1 {
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .news_1 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.news_1 .flex {
  gap: 40px;
}
.news_1 .son {
  width: calc((100% - 40px * (3 - 1)) / 3);
  overflow: hidden;
  transition: all 0.5s ease;
}
.news_1 .son:hover img {
  transform: scale(1.05);
}
.news_1 .son .img {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 66.6666666667%;
  border-radius: 8px;
}
.news_1 .son .txt {
  padding-top: 20px;
}
.news_1 .son span {
  display: block;
  color: var(--color);
}
.news_1 .son h3 {
  font-size: 18px;
  font-weight: 500;
  margin: 10px 0 20px;
  line-height: 1.5;
  height: 54px;
  transition: all 0.8s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news_1 .son .more {
  text-transform: uppercase;
  font-size: 14px;
  transition: all 0.8s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}
.news_1 .son .more i {
  font-size: 14px;
}

.contact_1 {
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .contact_1 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.contact_1 .flex {
  box-shadow: 5px 8.66px 25px 0px rgba(29, 50, 149, 0.15);
  overflow: hidden;
  border-radius: 12px;
}
.contact_1 .map {
  width: 50%;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .contact_1 .map {
    width: 100%;
    height: 300px;
  }
}
.contact_1 .map iframe,
.contact_1 .map .lyNyContact_map {
  width: 100%;
  height: 100%;
}
.contact_1 .info {
  width: 50%;
  padding: 50px;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 0 12px 12px 0;
}
@media (max-width: 768px) {
  .contact_1 .info {
    width: 100%;
    padding: 30px;
    border-radius: 0 0 12px 12px;
  }
}
.contact_1 .info h3 {
  font-size: 28px;
  color: #212121;
  font-weight: bold;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .contact_1 .info h3 {
    margin-bottom: 30px;
  }
}
.contact_1 .info li {
  margin-top: 25px;
}
.contact_1 .info p {
  line-height: 25px;
  font-size: 16px;
}

.contact_2 {
  padding-top: 100px;
  padding-bottom: 100px;
  background-image: url(../image/contact1.jpg);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
}
@media (max-width: 768px) {
  .contact_2 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.contact_2 h2 {
  position: relative;
  font-size: 36px;
  line-height: 1;
  margin-bottom: 70px;
  text-transform: capitalize;
  font-weight: 700;
  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 {
  font-family: initial;
  width: 100%;
  height: 52px;
  line-height: 2;
  padding: 0px 30px;
  border: 1px solid #ccc;
  border-radius: 30px;
  background-color: #f7f7f7;
  transition: all 0.3s ease;
}
.contact_2 textarea {
  border-radius: 10px;
  height: 150px;
  padding: 20px 30px;
}
.contact_2 button {
  background-color: var(--color);
  color: #fff;
  border: none;
  border-radius: 100px;
  height: 50px;
  padding: 0 50px;
  font-size: 15px;
  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 {
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .info_1 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.info_1 .h1 {
  text-align: center;
  font-weight: normal;
  margin-bottom: 15px;
  line-height: 1.5;
  font-size: 28px;
  color: #010101;
}
@media (max-width: 768px) {
  .info_1 .h1 {
    margin-bottom: 30px;
    font-size: 20px;
  }
}
.info_1 .icon {
  width: 100%;
  border-bottom: 1px solid #eeeeee;
  margin-bottom: 30px;
  padding-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .info_1 .icon {
    gap: 5px;
  }
}
.info_1 .icon p {
  font-size: 16px;
  color: #666666;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 7px;
}
@media (max-width: 768px) {
  .info_1 .icon p {
    gap: 5px;
    font-size: 14px;
  }
}

.info_2 {
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .info_2 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.info_2 .h1 {
  text-align: center;
  font-weight: normal;
  margin-bottom: 15px;
  line-height: 1.5;
  font-size: 28px;
  color: #010101;
}
@media (max-width: 768px) {
  .info_2 .h1 {
    margin-bottom: 30px;
    font-size: 20px;
  }
}
.info_2 .icon {
  width: 100%;
  border-bottom: 1px solid #eeeeee;
  margin-bottom: 30px;
  padding-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .info_2 .icon {
    display: none;
  }
}
.info_2 .icon p {
  font-size: 16px;
  color: #666666;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 7px;
}

@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 */
