@font-face {
  font-family: 'Inter-UI-Regular';
  src: url("/lib/css/font/Inter-UI-Regular.ttf");
}

@font-face {
  font-family: 'Inter-UI-Medium';
  src: url("/lib/css/font/Inter-UI-Medium.ttf");
}

@font-face {
  font-family: 'Inter-UI-Bold';
  src: url("/lib/css/font/Inter-UI-Bold.ttf");
}

body {
  font-family: "Inter-UI-Regular";
  color: #2a2a2a;
}

main {
  margin-top: 128px;
}

.c-shadow {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
}

.c-shadow.show {
  opacity: 1;
}

.c-btn {
  width: 200px;
  height: 56px;
  background-color: #0094de;
  color: #fff !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.c-btn:hover::after {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}

.c-btn::after {
  content: '';
  width: 16px;
  height: 16px;
  background: url(/lib/img/index/arrow-right-white.svg) no-repeat center center;
  margin-left: 10px;
  -webkit-transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
}

.c-title.align-center {
  text-align: center;
}

.c-title h2 {
  font-size: 3.4rem;
}

.c-title p {
  font-size: 2rem;
  color: #8c8c8c;
  font-family: "Inter-UI-Bold";
}

.c-search {
  position: fixed;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -200%);
          transform: translate(-50%, -200%);
  z-index: 40;
  padding: 4rem;
  background-color: #fff;
  border: 1px solid #eef0f2;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(11, 21, 50, 0.1);
          box-shadow: 0px 0px 15px 0px rgba(11, 21, 50, 0.1);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
}

.c-search.active {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 1;
  pointer-events: auto;
}

.c-search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-search-form__input {
  width: 30rem;
  height: 5rem;
  padding: 0 15px;
  border-radius: 0;
}

.c-search-form__submit {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 5rem;
  height: 5rem;
  background: url(/lib/img/index/icon_search_white.svg) no-repeat center center, #0094de;
  border-radius: 0;
}

.c-search__close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 24px;
  height: 24px;
  background: url(/lib/img/index/x.svg) no-repeat center center;
  cursor: pointer;
}

.c-banner {
  background-color: #0094de;
  color: #fff;
  position: relative;
}

.c-banner::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 42.5%;
  height: 100%;
  background: url(/lib/img/products/banner_txt_bg.jpg) no-repeat center center;
}

.c-banner__container {
  height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: right;
  position: relative;
  z-index: 1;
}

.c-banner__content {
  max-width: 38rem;
}

.c-banner__title {
  font-size: 2.8rem;
}

.c-banner__title span {
  font-family: "Inter-UI-Regular";
}

.c-banner__line {
  width: 8rem;
  height: 2px;
  background-color: #fff;
  margin-top: 3.6rem;
  margin-bottom: 2.5rem;
  margin-left: auto;
}

.c-banner__description {
  font-size: 1.8rem;
  opacity: 0.7;
}

.c-F-layout {
  padding-bottom: 6rem;
}

.c-F-layout .aside-item {
  margin-top: 3rem;
}

.c-F-layout .aside-item__title {
  font-size: 2.4rem;
  color: #0094de;
}

.c-F-layout .aside-item .menu {
  margin-top: 1.7rem;
  border-bottom: 1px solid #eef0f2;
}

.c-F-layout .aside-item .menu li {
  font-size: 1.4rem;
  line-height: 1.25;
  border-top: 1px solid #eef0f2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-F-layout .aside-item .menu li.current-menu-ancestor > a, .c-F-layout .aside-item .menu li.current-menu-parent > a, .c-F-layout .aside-item .menu li.current-menu-item > a {
  color: #0094de;
}

.c-F-layout .aside-item .menu li.active > .arrow {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.c-F-layout .aside-item .menu li.active > .sub-menu {
  display: block;
}

.c-F-layout .aside-item .menu li a {
  max-width: calc(100% - 36px);
  padding: 1.6rem 0;
}

.c-F-layout .aside-item .menu li .arrow {
  padding: 5px;
  -webkit-transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
}

.c-F-layout .aside-item .menu li .sub-menu {
  width: 100%;
  display: none;
}

.c-F-layout .aside-item .menu li .sub-menu li {
  padding: 0 15px;
}

.c-F-layout .aside-item .download {
  padding: 2.5rem 0;
  background-color: #2a2a2a;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
}

.c-F-layout .aside-item .download__icon {
  margin-right: 2rem;
}

.c-F-layout .aside-item .contact-form {
  padding-top: 2rem;
  margin-top: 1.7rem;
  border-top: 1px solid #ececec;
}

.c-F-layout .aside-item .contact-form input,
.c-F-layout .aside-item .contact-form textarea {
  display: block;
  width: 100%;
  height: 4.8rem;
  padding-left: 2rem;
  margin-bottom: 2rem;
  background-color: #f8f8f8;
  border: 1px solid #ececec;
  border-radius: 0;
  font-size: 1.4rem;
  -webkit-transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
}

.c-F-layout .aside-item .contact-form input::-webkit-input-placeholder,
.c-F-layout .aside-item .contact-form textarea::-webkit-input-placeholder {
  color: #8c8c8c;
}

.c-F-layout .aside-item .contact-form input:-ms-input-placeholder,
.c-F-layout .aside-item .contact-form textarea:-ms-input-placeholder {
  color: #8c8c8c;
}

.c-F-layout .aside-item .contact-form input::-ms-input-placeholder,
.c-F-layout .aside-item .contact-form textarea::-ms-input-placeholder {
  color: #8c8c8c;
}

.c-F-layout .aside-item .contact-form input::placeholder,
.c-F-layout .aside-item .contact-form textarea::placeholder {
  color: #8c8c8c;
}

.c-F-layout .aside-item .contact-form input:focus,
.c-F-layout .aside-item .contact-form textarea:focus {
  border: 1px solid #0094de;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(11, 21, 50, 0.1);
          box-shadow: 0px 0px 15px 0px rgba(11, 21, 50, 0.1);
}

.c-F-layout .aside-item .contact-form textarea {
  height: 14.2rem;
  padding: 20px;
  resize: none;
}

.c-F-layout .aside-item .contact-form input[type='submit'] {
  width: 14rem;
  padding: 0;
  margin: 0;
  background-color: #2a2a2a;
  border-color: #2a2a2a;
  color: #fff;
  cursor: pointer;
}

.c-F-layout .aside-item .contact-form input[type='submit']:hover {
  background-color: #0094de;
  border-color: #0094de;
}

.c-F-layout .aside-item .contact-form input[type='submit']:disabled {
  background-color: #ececec !important;
  color: #fff !important;
  border-color: #ececec !important;
  cursor: default;
}

.c-F-layout .aside-item .blog {
  margin-top: 1.7rem;
  border-bottom: 1px solid #eef0f2;
}

.c-F-layout .aside-item .blog-item {
  display: block;
  padding: 2rem 0;
  border-top: 1px solid #eef0f2;
}

.c-F-layout .aside-item .blog-item__title {
  font-size: 1.6rem;
  font-family: "Inter-UI-Regular";
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  /*!autoprefixer: off*/
  -webkit-box-orient: vertical;
  /*autoprefixer: on*/
  -webkit-line-clamp: 2;
}

.c-F-layout .aside-item .blog-item__date {
  font-size: 1.4rem;
  color: #8c8c8c;
  margin-top: 1rem;
}

.c-F-layout .aside-item .tags {
  padding: 2rem 0;
  padding-top: 1rem;
  margin-top: 1.6rem;
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.c-F-layout .aside-item .tags li {
  margin-right: 1rem;
  margin-top: 1rem;
}

.c-F-layout .aside-item .tags li a {
  display: block;
  font-size: 1.4rem;
  padding: .5rem 1rem;
  background-color: #f7f7f7;
  border: 1px solid #ececec;
  color: #9c9c9c;
}

.c-F-layout .aside-item .tags li a:hover {
  border-color: #0094de;
  background-color: #0094de;
  color: #fff;
}

.c-F-layout .article {
  margin-top: 3rem;
}

.c-breadcrumbs {
  background-color: #f8f8f8;
}

.c-breadcrumbs__container {
  padding: 1rem 0;
  font-size: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-breadcrumbs__container a {
  color: #8c8c8c;
}

.c-contact {
  padding: 6rem 0;
  background: url(/lib/img/products/bg.jpg) no-repeat center center;
  background-size: cover;
}

.c-contact__content {
  height: 100%;
  padding: 4rem 0;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.c-contact__title {
  line-height: 1.5;
  font-size: 3.4rem;
}

.c-contact__description {
  line-height: 1.875;
  margin-top: 5rem;
}

.c-contact__certification {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: auto;
}

.c-contact__certification .certification-item {
  width: 8.4rem;
  margin-right: 2.4rem;
}

.c-contact-form {
  padding: 3.125000vw;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(11, 21, 50, 0.1);
          box-shadow: 0px 0px 15px 0px rgba(11, 21, 50, 0.1);
}

.c-contact-form__input, .c-contact-form__textarea {
  width: 100%;
  height: 6.4rem;
  padding: 0 1.5rem;
  margin-bottom: 2rem;
  background-color: #f5f5f5;
  border-color: #eef0f2;
  border-radius: 0;
}

.c-contact-form__input:focus, .c-contact-form__textarea:focus {
  border-color: #0094de;
}

.c-contact-form__input::-webkit-input-placeholder, .c-contact-form__textarea::-webkit-input-placeholder {
  color: #8c8c8c;
}

.c-contact-form__input:-ms-input-placeholder, .c-contact-form__textarea:-ms-input-placeholder {
  color: #8c8c8c;
}

.c-contact-form__input::-ms-input-placeholder, .c-contact-form__textarea::-ms-input-placeholder {
  color: #8c8c8c;
}

.c-contact-form__input::placeholder, .c-contact-form__textarea::placeholder {
  color: #8c8c8c;
}

.c-contact-form__textarea {
  height: 19.2rem;
  padding: 2rem;
}

.c-contact-form__submit {
  padding: 0;
  margin: 0 auto;
  background-color: #131d33;
  border-color: #131d33;
  border-radius: 0;
  cursor: pointer;
  -webkit-transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
}

.c-contact-form__submit:hover {
  background-color: #0094de;
  border-color: #0094de;
}

.c-article-products-item {
  display: block;
  padding-bottom: 15px;
  margin-top: 20px;
  border: 2px solid #eef0f2;
  text-align: center;
}

.c-article-products-item:hover {
  border-color: #0094de;
}

header.header {
  position: fixed;
  width: 100%;
  height: 128px;
  z-index: 999;
  background-color: #fff;
  border-bottom: 3px solid #0094de;
  -webkit-transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
}

header.header.hide {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

header.header .header__language {
  position: relative;
}

header.header .header__language .language__btn {
  cursor: pointer;
}

header.header .header__language .language__container {
  position: absolute;
  top: calc(100% + .6rem);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 1rem 0;
  background-color: #fff;
  border-radius: .4rem;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(11, 21, 50, 0.1);
          box-shadow: 0px 0px 15px 0px rgba(11, 21, 50, 0.1);
  font-size: 14px;
  line-height: 42px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
}

header.header .header__language .language__container.active {
  opacity: 1;
  pointer-events: auto;
}

header.header .header__language .language__container::after {
  content: " ";
  position: absolute;
  top: -.4rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-width: .4rem;
  border-style: solid;
  border-color: transparent;
  border-top-width: 0;
  border-bottom-color: #fff;
}

header.header .header__language .language__option {
  display: block;
  padding: 0 2rem;
}

header.header .header__language .language__option:hover {
  background-color: #0094de;
  color: #fff;
}

header.header .header__pc {
  height: 100%;
}

header.header .header__pc .w {
  max-width: 1300px;
  height: 100%;
}

header.header .header__pc .header__container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header.header .header__pc .header__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

header.header .header__pc .header__right {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 100%;
}

header.header .header__pc .header__top {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header.header .header__pc .header__nav .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header.header .header__pc .header__nav .menu li {
  padding: 21px 0;
  margin-left: 3.645833vw;
}

header.header .header__pc .header__nav .menu li.current-menu-ancestor > a, header.header .header__pc .header__nav .menu li.current-menu-item > a {
  color: #0094de;
}

header.header .header__pc .header__nav .menu li:hover .header__drop {
  pointer-events: auto;
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  -webkit-transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
}

header.header .header__pc .header__call {
  font-family: "Inter-UI-Medium";
  color: #0094de;
}

header.header .header__pc .header__line {
  width: 1px;
  height: 30px;
  background-color: #2a2a2a;
  margin: 0 28px;
}

header.header .header__pc .header__search {
  margin-left: 28px;
  cursor: pointer;
}

header.header .header__pc .header__drop {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background-color: #fff;
  border-bottom: 2px solid #0094de;
  border-top: 2px solid #0094de;
  pointer-events: none;
  opacity: 0;
  -webkit-transform: rotateX(50deg);
          transform: rotateX(50deg);
}

header.header .header__pc .header__drop .drop__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header.header .header__pc .header__drop .drop__list {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 39.062500vw;
  padding: 40px 0;
  background-color: #0094de;
  color: #fff;
}

header.header .header__pc .header__drop .drop__list-inner {
  width: 390px;
  margin-left: auto;
}

header.header .header__pc .header__drop .drop__main {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 60.937500vw;
}

header.header .header__pc .header__drop .drop__main-inner {
  width: 790px;
  padding: 40px 50px;
}

header.header .header__pc .header__drop .drop__title {
  font-size: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header.header .header__pc .header__drop .drop__title::before {
  content: '';
  width: 16px;
  height: 16px;
  background-color: #fff;
  margin-right: 10px;
}

header.header .header__pc .header__drop .drop__menu {
  padding-left: 46px;
}

header.header .header__pc .header__drop .drop__menu li {
  margin: 16px 0;
  padding: 0;
}

header.header .header__pc .header__drop .drop__menu li a {
  opacity: 0.5;
  color: #fff;
}

header.header .header__pc .header__drop .drop__menu li a:hover {
  opacity: 1;
}

header.header .header__pc .header__drop .drop-item {
  display: block;
  padding: 0 10px;
  text-align: center;
}

header.header .header__pc .header__drop .drop-item__img-wrap {
  border: 1px solid #f5f7f8;
}

header.header .header__pc .header__drop .drop-item__title {
  padding: 0 10px;
  margin-top: 15px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

header.header .header__pc .header__drop .drop__more {
  width: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
  margin-top: 32px;
  position: relative;
  font-size: 1.4rem;
  color: #0094de;
}

header.header .header__pc .header__drop .drop__more:hover::after {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

header.header .header__pc .header__drop .drop__more::after {
  content: '';
  width: 16px;
  height: 16px;
  background: url(/lib/img/index/icon_right_blue.png) no-repeat center center;
  background-size: cover;
  margin-left: 10px;
  -webkit-transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
}

header.header .header__pc .header__drop .drop__more::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background-color: #0094de;
}

main.index .banner .swiper-pagination {
  bottom: 2rem;
}

main.index .banner .swiper-pagination-bullet {
  width: 2rem;
  height: .4rem;
  border-radius: .2rem;
  -webkit-transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
}

main.index .banner .swiper-pagination-bullet-active {
  width: 4rem;
}

main.index .h-products__top {
  height: 330px;
  background: url(/lib/img/index/img_bg_pro_point.png) center center, #0094de;
}

main.index .h-products__container {
  background-color: #fff;
  -webkit-box-shadow: -4px 0px 20px 0px rgba(19, 29, 51, 0.1);
          box-shadow: -4px 0px 20px 0px rgba(19, 29, 51, 0.1);
  margin-top: -250px;
  position: relative;
  z-index: 1;
}

main.index .h-products__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 2.604167vw;
  padding-top: 2.395833vw;
  padding-bottom: 1.354167vw;
  position: relative;
}

main.index .h-products__header::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: calc(100% - 100px);
  height: 1px;
  background-color: #eef0f2;
}

main.index .h-products .tabs-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #8c8c8c;
}

main.index .h-products .tabs-nav li {
  position: relative;
  margin-left: 3.6rem;
  -webkit-transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
}

main.index .h-products .tabs-nav li.active {
  color: #0094de;
  -webkit-transform: translateY(-0.4rem);
          transform: translateY(-0.4rem);
}

main.index .h-products .tabs-nav li.active::after {
  display: block;
}

main.index .h-products .tabs-nav li::after {
  content: '';
  position: absolute;
  left: 50%;
  top: calc(100% + 3px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1.4rem;
  height: 0.3rem;
  background-color: #0094de;
  border-radius: .15rem;
  display: none;
}

main.index .h-products-item__img-wrap {
  padding-bottom: 100%;
}
@media(max-width:768px){
  main.index .h-products-item__img-wrap {
    padding-bottom: 70%;
  }
  main.index .h-products-item__img-wrap img{
    width: 70%;
  }
}

main.index .h-products-item__content {
  padding: 3.958333vw 0;
  padding-left: 2.604167vw;
}

main.index .h-products-item__title {
  font-size: 2.4rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  /*!autoprefixer: off*/
  -webkit-box-orient: vertical;
  /*autoprefixer: on*/
  -webkit-line-clamp: 2;
}



main.index .h-products-item__params {
  margin-top: 4.2rem;
}

main.index .h-products-item__params li {
  margin: 1.6rem 0;
  font-size: 1.8rem;
}

main.index .h-products-item__params span {
  color: #8c8c8c;
}

main.index .h-products-item__btn {
  margin-top: 5.2rem;
}

@media (max-width: 768px) {
  main.index .h-products-item__title {
    text-align: center;
  }
}


main.index .parallax__container {
  position: relative;
}

main.index .parallax__shadow {
  position: absolute;
  left: -100px;
  top: 50%;
  z-index: -1;
  margin-top: -167px;
  width: 334px;
  height: 334px;
  background: url(/lib/img/index/img_bg_line.png) no-repeat center center;
}

main.index .products {
  margin-top: 7.5rem;
}

main.index .products__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main.index .products__body {
  margin-top: 4.5rem;
}

main.index .products-item {
  background-color: #fff;
  border: 2px solid #eef0f2;
  -webkit-transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
}

main.index .products-item:hover {
  border-color: #0094de;
}

main.index .products-item__img-wrap {
  padding-bottom: 100%;
}
@media(max-width:768px){
  main.index .products-item__img-wrap {
    padding-bottom: 70%;
  }
  main.index .products-item__img-wrap img {
    width: 70%;
  }
}
main.index .products-item__content {
  text-align: center;
  padding: 0 3rem;
  padding-top: 1.5rem;
  padding-bottom: 6rem;
}

main.index .products-item__model {
  font-size: 1.8rem;
  font-family: "Inter-UI-Bold";
  color: #0094de;
}

main.index .products-item__title {
  font-size: 2.4rem;
  margin-top: 1rem;
  height: 2.5em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  /*!autoprefixer: off*/
  -webkit-box-orient: vertical;
  /*autoprefixer: on*/
  -webkit-line-clamp: 2;
}

main.index .products-item__btn {
  margin: 0 auto;
  margin-top: 4.7rem;
  background-color: #fff;
  color: #8c8c8c !important;
  -webkit-transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
}

main.index .products-item__btn:hover {
  background-color: #0094de;
  color: #fff !important;
}

main.index .products-item__btn:hover::after {
  background-image: url(/lib/img/index/arrow-right-white.svg);
}

main.index .products-item__btn::after {
  background-image: url(/lib/img/index/arrow-right-gray.svg);
}
@media(max-width:768px){
  main.index .products-item__btn::after {
    background-image: url(/lib/img/index/arrow-right-white.svg);
  }
}

main.index .products .swiper-pagination {
  position: unset;
  margin-top: 5rem;
}

main.index .applications {
  padding-bottom: 8rem;
  margin-top: 7.5rem;
  overflow: hidden;
}

main.index .applications__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 768px) {
  main.index .products-item__content {
    padding-bottom: 2rem;
  }
  main.index .products-item__btn {
    margin: 2.2rem auto;
    background-color: #0094de;
    color: #fff !important;
  }
  main.index .applications__header {
    justify-content: center;
  }
}


main.index .applications__list {
  min-height: 3rem;
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #8c8c8c;
  overflow-x: auto;
  overflow-y: hidden;
}

main.index .applications__list li {
  position: relative;
  margin-left: 3.6rem;
  white-space: nowrap;
  -webkit-transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
}

main.index .applications__list li.active {
  color: #0094de;
  -webkit-transform: translateY(-0.4rem);
          transform: translateY(-0.4rem);
}

main.index .applications__list li.active::after {
  display: block;
}

main.index .applications__list li::after {
  content: '';
  position: absolute;
  left: 50%;
  top: calc(100% + 3px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1.4rem;
  height: 0.3rem;
  background-color: #0094de;
  border-radius: .15rem;
  display: none;
}

main.index .applications__body {
  margin-top: 3.5rem;
  position: relative;
}

main.index .applications__swiper {
  padding: 4.166667vw;
  position: absolute;
  width: 1180px;
  background-color: #fff;
}

main.index .applications__swiper-left {
  top: 0;
  right: 100%;
}

main.index .applications__swiper-mid {
  width: 100% !important;
  position: relative;
  -webkit-box-shadow: -4px 0px 20px 0px rgba(19, 29, 51, 0.1);
          box-shadow: -4px 0px 20px 0px rgba(19, 29, 51, 0.1);
}

main.index .applications__swiper-mid .swiper-button {
  width: 78px;
  height: 78px;
  border-radius: 0;
}

main.index .applications__swiper-right {
  top: 0;
  left: 100%;
}

main.index .applications__swiper-arrows {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  padding-bottom: 49.019607%;
}

main.index .applications-item__img-wrap {
  padding-bottom: 49.019607%;
}

main.index .applications-item__title {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 1.145833vw 2.083333vw;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 2.4rem;
}

main.index .applications-item__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 3.6rem;
}

main.index .applications-item__excerpt {
  max-width: 630px;
  height: 6em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  /*!autoprefixer: off*/
  -webkit-box-orient: vertical;
  /*autoprefixer: on*/
  -webkit-line-clamp: 4;
}

main.index .applications-item__btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

main.index .about__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

main.index .about__img-wrap {
  max-width: 380px;
  overflow: unset;
}

main.index .about__number {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(60%, -50%);
          transform: translate(60%, -50%);
  width: 185px;
  height: 160px;
  padding-top: 75px;
  padding-left: 40px;
  background: url(/lib/img/index/img_abuot_2.png) no-repeat center center;
  background-size: cover;
  color: #131d33;
}

main.index .about__content {
  max-width: 520px;
}

main.index .about__title h2 {
  margin-top: 4rem;
}

main.index .about__sub {
  font-size: 2.4rem;
  margin-top: 3rem;
}

main.index .about__description {
  color: #8c8c8c;
  margin-top: 4rem;
}

main.index .about__video {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 7rem;
}

main.index .about__video:hover::after {
  opacity: .2;
}

main.index .about__video::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.5;
  -webkit-transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
}

main.index .about__video-img-wrap {
  padding-bottom: 24.038461%;
}

main.index .about__video-btn {
  position: absolute;
  z-index: 1;
  width: 6rem;
  height: 6rem;
  background-color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
}

main.index .about__video-btn:hover {
  background-color: #0094de;
}

main.index .about__video-btn:hover::after {
  background: url(/lib/img/index/play-white.svg) no-repeat center center;
}

main.index .about__video-btn::after {
  content: '';
  position: absolute;
  width: 1.6rem;
  height: 1.6rem;
  background: url(/lib/img/index/play.svg) no-repeat center center;
  background-size: cover;
  -webkit-transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
}

main.index .advantages {
  margin-top: 6.5rem;
}

main.index .advantages__title {
  text-align: center;
}

main.index .advantages__container {
  margin-top: 3.6rem;
}

main.index .advantages-item__img-wrap {
  padding-bottom: 57.142857%;
}

main.index .advantages-item__title {
  font-size: 2rem;
  margin-top: 1.5rem;
}

main.index .advantages-item__description {
  color: #8c8c8c;
  margin-top: 1rem;
}

main.index .advantages .swiper-pagination {
  position: unset;
  margin-top: 2rem;
}

main.index .news {
  background-color: #e9eef1;
  margin-top: 14rem;
}
@media(max-width:768px){
  main.index .news {
    margin-top: 11rem;
  }
}

main.index .news__container {
  padding-top: 6.5rem;
  padding-bottom: 21.5rem;
  position: relative;
}

main.index .news__header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

main.index .news__header-inner {
  padding: 3.125000vw;
  background-color: #0094de;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main.index .news__title {
  font-size: 3.4rem;
}

main.index .news__sub {
  font-size: 1.8rem;
  margin-left: 3.125000vw;
}

main.index .news__arrow {
  width: 2.4rem;
  margin-left: auto;
}

main.index .news__body {
  margin-top: 4rem;
}

main.index .news-item {
  background-color: #fff;
}

main.index .news-item__img-wrap {
  padding-bottom: 60%;
}

main.index .news-item__img-wrap:hover::after {
  opacity: 1;
}

main.index .news-item__img-wrap::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  -webkit-transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
}

main.index .news-item__content {
  padding: 2.6rem 3rem;
}

main.index .news-item__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.4rem;
  color: #8c8c8c;
}

main.index .news-item__meta-dot {
  width: 4px;
  height: 4px;
  background-color: #0078E8;
  margin: 0 1rem;
}

main.index .news-item__title {
  line-height: 1.6;
  font-size: 2rem;
  margin-top: 1rem;
  height: 4.8em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  /*!autoprefixer: off*/
  -webkit-box-orient: vertical;
  /*autoprefixer: on*/
  -webkit-line-clamp: 3;
}

main.index .news-item__more {
  margin-top: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #8c8c8c;
}

main.index .news-item__more:hover {
  color: #0094de;
}

main.index .news-item__more:hover::after {
  background-image: url(/lib/img/index/arrow-right-blue.svg);
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}

main.index .news-item__more::after {
  content: '';
  width: 16px;
  height: 16px;
  background: url(/lib/img/index/arrow-right-gray.svg) no-repeat center center;
  background-size: cover;
  margin-left: 10px;
  -webkit-transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
}

main.index .news .swiper-pagination {
  position: unset;
  margin-top: 2rem;
}

main.index .contact {
  padding-bottom: 6rem;
}

main.index .contact__container {
  margin-top: -15.5rem;
  position: relative;
}

main.index .contact-info {
  max-width: 480px;
  padding-top: 3rem;
}

main.index .contact-info__map {
  margin-top: 11.5rem;
}

main.index .contact-info__map .map__img-wrap {
  border: 1px solid #eef0f2;
}

main.index .contact-info__map .map__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1.7rem;
}

main.index .contact-info__map .map__link:hover::after {
  -webkit-transform: translateX(0.5rem);
          transform: translateX(0.5rem);
  background-image: url(/lib/img/index/arrow-right-blue.svg);
}

main.index .contact-info__map .map__link::after {
  content: '';
  width: 1.6rem;
  height: 1.6rem;
  background: url(/lib/img/index/arrow-right-gray.svg) no-repeat center center;
  background-size: cover;
  margin-left: 1rem;
  -webkit-transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
}

main.index .contact-info__title {
  font-size: 2.8rem;
  margin-top: 3.6rem;
}
@media(max-width:768px){
  main.index .contact-info__title {
    font-size: 2.2rem;
  }
}

main.index .contact-info__line {
  width: 6.4rem;
  height: 2px;
  background-color: #18181f;
  margin-top: 2.6rem;
}

footer.footer {
  background: url(/lib/img/index/footer_bg.png) no-repeat center center, #18222e;
  color: #b3bbc6;
}

footer.footer .footer__pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 60px 0;
}

footer.footer .footer__pc .footer__title {
  font-size: 2rem;
  color: #fff;
}

footer.footer .footer__pc .footer__info {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 380px;
}

footer.footer .footer__pc .footer__info .subscribe {
  margin-top: 3.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

footer.footer .footer__pc .footer__info .subscribe__input {
  width: 100%;
  height: 56px;
  padding: 0 15px;
  border: 0;
  border-radius: 0;
}

footer.footer .footer__pc .footer__info .subscribe__input::-webkit-input-placeholder {
  color: #2a2a2a;
}

footer.footer .footer__pc .footer__info .subscribe__input:-ms-input-placeholder {
  color: #2a2a2a;
}

footer.footer .footer__pc .footer__info .subscribe__input::-ms-input-placeholder {
  color: #2a2a2a;
}

footer.footer .footer__pc .footer__info .subscribe__input::placeholder {
  color: #2a2a2a;
}

footer.footer .footer__pc .footer__info .subscribe__submit {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100px;
  height: 56px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: url(/lib/img/index/icon_footer_send.png) no-repeat center center, #0094de;
}

footer.footer .footer__pc .footer__info .socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
}

footer.footer .footer__pc .footer__info .socials-item {
  margin-right: 20px;
}

footer.footer .footer__pc .footer__nav {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-left: 50px;
}

footer.footer .footer__pc .footer__nav .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 13px;
}

footer.footer .footer__pc .footer__nav .menu li {
  width: 50%;
  margin-bottom: 20px;
}

footer.footer .footer__pc .footer__contact {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 300px;
  margin-left: 50px;
}

footer.footer .footer__pc .footer__contact .contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 13px;
}

footer.footer .footer__pc .footer__contact .contact-item__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

footer.footer .footer__pc .footer__contact .contact-item__content {
  color: #fff;
  margin-left: 10px;
}

footer.footer .footer__pc .footer__contact .contact-item__title {
  color: #b3bbc6;
  margin-bottom: 10px;
}

footer.footer .footer__mobile {
  display: none;
  padding: 2rem 0;
}

footer.footer .footer__mobile .logo {
  width: 24rem;
  margin: 2rem auto;
}

footer.footer .footer__mobile .footer-item__header {
  height: 4.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.8rem;
  color: #fff;
}

footer.footer .footer__mobile .footer-item__header.active::after {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

footer.footer .footer__mobile .footer-item__header::after {
  content: '';
  width: 2.4rem;
  height: 2.4rem;
  background: url(/lib/img/index/chevron-down-white.svg) no-repeat center center;
  background-size: cover;
  -webkit-transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
}

footer.footer .footer__mobile .footer-item__body {
  padding: 1rem 0;
  display: none;
}

footer.footer .footer__mobile .footer-item .subscribe {
  margin-top: 1.6rem;
}

footer.footer .footer__mobile .footer-item .socials {
  margin-top: 2rem;
}

footer.footer .footer__mobile .footer-item .socials-item {
  margin-right: 1rem;
}

footer.footer .footer__mobile .footer-item .menu li {
  line-height: 4.5rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

footer.footer .footer__mobile .footer-item .contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 1rem 0;
}

footer.footer .footer__mobile .footer-item .contact-item span {
  width: 10rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

footer.footer .copyright {
  padding: 8px 0;
  border-top: 1px solid #333c48;
  text-align: center;
  font-size: 1.4rem;
}

main.products .banner {
  background: url(/lib/img/products/banner.jpg) no-repeat center center;
}

main.products .products-list__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

main.products .products-list__line {
  border-top: 1px solid #eef0f2;
  margin-top: 23px;
}

main.products .products-list__switch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main.products .products-list__switch .switch-item {
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid #eef0f2;
  cursor: pointer;
}

main.products .products-list__switch .switch-item--grid {
  margin-right: 1rem;
  background: url(/lib/img/products/icon_grid.svg) no-repeat center center;
}

main.products .products-list__switch .switch-item--grid.active {
  background: url(/lib/img/products/icon_grid_hover.svg) no-repeat center center;
}

main.products .products-list__switch .switch-item--list {
  background: url(/lib/img/products/icon_list.svg) no-repeat center center;
}

main.products .products-list__switch .switch-item--list.active {
  background: url(/lib/img/products/icon_list_hover.svg) no-repeat center center;
}

main.products .products-list__body.list .list-item {
  width: 100%;
}

main.products .products-list__body.list .products-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

main.products .products-list__body.list .products-item__img-wrap {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 30%;
}

main.products .products-list__body.list .products-item__content {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 70%;
  padding: 1.5rem 2rem;
  text-align: left;
}

main.products .products-list__body.list .products-item__title {
  height: auto;
}

main.products .products-list__body.list .products-item__params {
  display: block;
  margin-top: 1rem;
  color: #2a2a2a;
}

main.products .products-list__body.list .products-item__params span {
  color: #8c8c8c;
}

main.products .products-list__body.list .products-item__more {
  display: block;
  color: #0094de;
  margin-top: 1rem;
}

main.products .products-item {
  display: block;
  background-color: #fff;
  margin-top: 20px;
  border: 2px solid #eef0f2;
  -webkit-transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
}

main.products .products-item:hover {
  border-color: #0094de;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(19, 29, 51, 0.1);
          box-shadow: 0px 0px 20px 0px rgba(19, 29, 51, 0.1);
}

main.products .products-item__img-wrap {
  -webkit-transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
}

main.products .products-item__content {
  padding: 1.5rem 2rem;
  padding-bottom: 2.5rem;
  text-align: center;
  -webkit-transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
}

main.products .products-item__model {
  font-size: 1.4rem;
  font-family: "Inter-UI-Bold";
  color: #0094de;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

main.products .products-item__title {
  color: #2a2a2a;
  line-height: 1.5;
  margin-top: 1.4rem;
  font-size: 1.8rem;
  font-family: "Inter-UI-Medium";
  height: 3em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  /*!autoprefixer: off*/
  -webkit-box-orient: vertical;
  /*autoprefixer: on*/
  -webkit-line-clamp: 2;
}

main.products .products-item__params {
  display: none;
}

main.products .products-item__more {
  display: none;
}

main.products .products-details__header {
  padding: 40px 0;
  background: url(/lib/img/products/pro_bg.png) no-repeat center bottom, #f8f8f8;
}

main.products .products-details__header .swiper {
  padding-right: 40px;
}

main.products .products-details__header .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  padding: 3rem 0;
}

main.products .products-details__video-btn {
  position: absolute;
  width: 9.6rem;
  height: 9.6rem;
  border-radius: 50%;
  background: url(/lib/img/products/play.svg) no-repeat center center;
  background-size: cover;
  cursor: pointer;
  -webkit-transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
}

main.products .products-details__video-btn:hover {
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 0 20px 0px rgba(255, 255, 255, 0.5);
          box-shadow: 0 0 20px 0px rgba(255, 255, 255, 0.5);
}

main.products .products-details__category {
  color: #0094de;
  font-family: "Inter-UI-Medium";
}

main.products .products-details__title {
  font-size: 3.6rem;
  margin-top: 1rem;
}

main.products .products-details__params {
  margin-top: 3rem;
}

main.products .products-details__params li {
  font-size: 1.8rem;
  margin: 1.2rem 0;
}

main.products .products-details__params li span {
  color: #8c8c8c;
}

main.products .products-details__btns {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

main.products .products-details__btn--send {
  width: 18rem;
  height: 4.8rem;
  background-color: #0094de;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin-right: 2rem;
}

main.products .products-details__btn--download {
  width: 24.6rem;
  height: 4.8rem;
  background-color: #2a2a2a;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

main.products .products-details__btn--download::before {
  content: '';
  width: 1.6rem;
  height: 1.6rem;
  background: url(/lib/img/products/icon_download.png) no-repeat center center;
  background-size: cover;
  margin-right: 0.5rem;
}

main.products .products-details__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #eef0f2;
  margin-top: 20px;
}

main.products .products-details__nav li {
  cursor: pointer;
  padding: 1.1rem;
  margin-right: 2rem;
  position: relative;
  white-space: nowrap;
}

main.products .products-details__nav li.active {
  color: #0094de;
}

main.products .products-details__nav li.active::after {
  width: 100%;
  left: 0;
  right: auto;
}

main.products .products-details__nav li::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background-color: #0094de;
  -webkit-transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
}

main.products .products-details .industries {
  margin-top: 1.7rem;
  border-bottom: 1px solid #eef0f2;
}

main.products .products-details .industries-item {
  display: block;
  padding: 2rem 0;
  border-top: 1px solid #eef0f2;
}

main.products .products-details .industries-item__img-wrap {
  padding-bottom: 48.928571%;
}

main.products .products-details .industries-item__title {
  font-size: 1.6rem;
  font-family: "Inter-UI-Regular";
  margin-top: 0.6rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

main.products .products-swiper-pagination {
  position: unset;
  margin-top: 2rem;
}

main.products .similar {
  padding: 6rem 0;
  background-color: #fafafb;
}

main.products .similar__title {
  text-align: center;
}

main.products .similar__container {
  margin-top: 2rem;
}

main.products .similar-swiper-pagination {
  position: unset;
  margin-top: 2rem;
}

main.services .banner {
  background: url(/lib/img/services/banner.jpg) no-repeat center center;
}

main.services .services-list {
  padding-top: 4rem;
  padding-bottom: 6rem;
}

main.services .services-item {
  display: block;
  margin-top: 2rem;
}

main.services .services-item:hover .services-item__content::after {
  width: 100%;
  left: 0;
  right: auto;
}

main.services .services-item__img-wrap {
  padding-bottom: 48.947368%;
}

main.services .services-item__content {
  padding: 2.6rem 3rem;
  text-align: center;
  color: #2a2a2a;
  position: relative;
}

main.services .services-item__content::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0%;
  height: 0.3rem;
  background-color: #0094de;
  -webkit-transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
}

main.services .services-item__title {
  font-size: 2.4rem;
  font-family: "Inter-UI-Medium";
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

main.services .services-item__line {
  width: 4rem;
  height: 0.3rem;
  background-color: #0094de;
  margin: 1.6rem auto;
}

main.services .services-item__excerpt {
  font-size: 1.4rem;
  height: 3em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  /*!autoprefixer: off*/
  -webkit-box-orient: vertical;
  /*autoprefixer: on*/
  -webkit-line-clamp: 2;
}

main.industries .banner {
  background: url(/lib/img/industries/banner.jpg) no-repeat center center;
}

main.industries .industries-list .products-item {
  display: block;
  margin-top: 1.7rem;
}

main.industries .industries-list .products-item__img-wrap {
  border: 1px solid #eef0f2;
}

main.industries .industries-list .products-item__title {
  margin-top: 0.8rem;
  font-family: "Inter-UI-Medium";
}

main.industries .industries-list .navigation.pagination .nav-links {
  margin: 0;
}

main.industries .industries-list .navigation.pagination .nav-links .page-numbers {
  margin: 0;
  margin-right: 5px;
}

main.industries .industries-item {
  display: block;
  margin-bottom: 2rem;
  -webkit-transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
}

main.industries .industries-item:hover {
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

main.industries .industries-item:hover .industries-item__img-wrap::after {
  opacity: 1;
}

main.industries .industries-item:hover .industries-item__excerpt {
  color: #2a2a2a;
}

main.industries .industries-item:hover .industries-item__more::after {
  background: url(/lib/img/industries/icon_arrows_right_blue.png) no-repeat center center;
  -webkit-transform: translateX(0.2rem);
          transform: translateX(0.2rem);
}

main.industries .industries-item__img-wrap {
  padding-bottom: 48.928571%;
}

main.industries .industries-item__img-wrap::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  -webkit-transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
}

main.industries .industries-item__content {
  height: 100%;
  padding: 2rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

main.industries .industries-item__title {
  font-size: 2rem;
  font-family: "Inter-UI-Medium";
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

main.industries .industries-item__excerpt {
  color: #666;
  margin-top: 1rem;
  height: 3em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  /*!autoprefixer: off*/
  -webkit-box-orient: vertical;
  /*autoprefixer: on*/
  -webkit-line-clamp: 2;
}

main.industries .industries-item__more {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main.industries .industries-item__more::after {
  content: '';
  width: 1.4rem;
  height: 1.2rem;
  background: url(/lib/img/industries/icon_arrows_right_gray.png) no-repeat center center;
  background-size: cover;
  margin-left: 1.2rem;
  -webkit-transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
}

main.industries .help {
  padding: 6rem 0;
  background: url(/lib/img/industries/help_bg.png) no-repeat center bottom, #f8f8f8;
}

main.industries .help__title {
  text-align: center;
}

main.industries .help__container {
  margin-top: 3.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main.industries .help-item {
  width: 48rem;
  height: 8rem;
  background-color: #fff;
  border: 2px solid #e5e5e5;
  margin: 0 3rem;
  margin-top: 2rem;
  font-size: 2rem;
  font-family: "Inter-UI-Medium";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
}

main.industries .help-item:hover {
  border-color: #0094de;
}

main.industries .help-item:hover::before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

main.industries .help-item:hover::after {
  background: url(/lib/img/industries/icon_arrows_right_blue.png) no-repeat center center;
  -webkit-transform: translateX(0.2rem);
          transform: translateX(0.2rem);
}

main.industries .help-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 12rem;
  height: 7.6rem;
  background: url(/lib/img/industries/btn_hover_icon.png) no-repeat center center;
  background-size: cover;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
}

main.industries .help-item::after {
  content: '';
  width: 1.4rem;
  height: 1.2rem;
  background: url(/lib/img/industries/icon_arrows_right_gray.png) no-repeat center center;
  background-size: cover;
  margin-left: 1.2rem;
  -webkit-transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
}

main.about .banner {
  height: 480px;
  background: url(/lib/img/about/banner.jpg) no-repeat center center;
}

main.about .story__container {
  padding: 0 8.4745762%;
  padding-top: 5.5rem;
  padding-bottom: 6rem;
  background-color: #fff;
  margin-top: -8.7rem;
}

main.about .story__title {
  text-align: center;
}

main.about .story__title p {
  font-size: 1.6rem;
  color: #2a2a2a;
}

main.about .story-swiper {
  position: relative;
  margin-top: 3.6rem;
}

main.about .story-swiper-button-prev {
  left: 28px;
}

main.about .story-swiper-button-next {
  right: 28px;
}

main.about .story-swiper-pagination {
  position: unset;
  margin-top: 2rem;
}

main.about .story__content {
  max-width: 890px;
  text-align: center;
  color: #8c8c8c;
  margin: 0 auto;
  margin-top: 3.6rem;
}

main.about .story__btn {
  margin: 0 auto;
  margin-top: 5.6rem;
}

main.about .ability__header {
  padding-top: 5.5rem;
  background: #eef0f2;
  text-align: center;
  background: url(/lib/img/about/bg.jpg) no-repeat center center;
  background-size: cover;
}

main.about .ability__sub {
  color: #0094de;
  font-size: 2rem;
  font-family: "Inter-UI-Medium";
}

main.about .ability__title {
  font-size: 3.4rem;
  margin-top: 1.8rem;
}

main.about .ability__nav {
  margin-top: 5.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: auto;
}

main.about .ability__nav li {
  width: 33.333333%;
  height: 8rem;
  padding: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.8rem;
  font-family: "Inter-UI-Medium";
  cursor: pointer;
  color: #fff;
  white-space: nowrap;
}

main.about .ability__nav li.active {
  background-color: #fff !important;
  color: #2a2a2a;
}

main.about .ability__nav li:nth-child(1) {
  background-color: #00BFFF;
}

main.about .ability__nav li:nth-child(2) {
  background-color: #16a3ea;
}

main.about .ability__nav li:nth-child(3) {
  background-color: #0094de;
}

main.about .ability-item {
  margin-top: 6rem;
}

main.about .ability-item__img-box {
  padding-right: 20px;
}

main.about .ability-item__img-box--even {
  padding: 0;
  padding-left: 20px;
}

main.about .ability-item__img-title {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 6.4rem;
  padding: 0 1.5rem;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main.about .ability-item__img-title span {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

main.about .ability-item__content {
  max-width: 460px;
}

main.about .ability-item__icon {
  width: 4.8rem;
  margin-right: 2rem;
}

main.about .ability-item__title {
  font-size: 2rem;
  margin-top: 1.3rem;
}

main.about .ability-item__excerpt {
  line-height: 1.875;
  margin-top: 1rem;
  color: #8c8c8c;
}

main.about .ability-item__btn {
  margin-top: 4.5rem;
}

main.about .awards {
  margin-top: 6rem;
}

main.about .awards__title {
  text-align: center;
}

main.about .awards__container {
  margin-top: 4rem;
}

main.about .awards-item {
  border: 1px solid #f8f8f8;
}

main.about .awards-item:hover .awards-item__img-wrap::after {
  opacity: 1;
}

main.about .awards-item__img-wrap {
  padding-bottom: 73.684210%;
  cursor: pointer;
}

main.about .awards-item__img-wrap::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(/lib/img/about/plus.svg) no-repeat center center, rgba(0, 0, 0, 0.5);
  opacity: 0;
  -webkit-transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
}

main.about .awards-item__content {
  height: 8rem;
  padding: 0 1.5rem;
  background-color: #f8f8f8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

main.about .awards-item__title {
  font-family: "Inter-UI-Medium";
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  /*!autoprefixer: off*/
  -webkit-box-orient: vertical;
  /*autoprefixer: on*/
  -webkit-line-clamp: 2;
}

main.about .awards-swiper-pagination {
  position: unset;
  margin-top: 4rem;
}

main.about .news {
  margin-top: 6rem;
  padding-bottom: 6rem;
}

main.about .news__title {
  text-align: center;
}

main.about .news__container {
  margin-top: 2rem;
}

main.about .news-item {
  display: block;
  padding: 0 5.172413%;
  padding-top: 4.655172%;
  padding-bottom: 4.482758%;
  margin-top: 2rem;
  background-color: #fff;
  border: 1px solid #eef0f2;
}

main.about .news-item.active {
  background-color: #0094de;
  color: #fff;
}

main.about .news-item.active .news-item__meta {
  color: #fff;
}

main.about .news-item.active .news-item__meta-dot {
  background-color: #fff;
}

main.about .news-item__img-wrap {
  padding-bottom: 60%;
  margin-top: 2rem;
}

main.about .news-item__title {
  font-size: 2rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

main.about .news-item__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #8c8c8c;
  font-size: 1.4rem;
  margin-top: 0.2rem;
}

main.about .news-item__meta-dot {
  width: 4px;
  height: 4px;
  background-color: #0078E8;
  margin: 0 1rem;
}

main.about .img-zoom {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 11;
  width: 100%;
  height: 100%;
  padding: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
}

main.about .img-zoom.active {
  visibility: visible;
  opacity: 1;
}

main.about .img-zoom img {
  max-width: 800px;
}

main.download .banner {
  background: url(/lib/img/download/banner.jpg) no-repeat center center;
  position: relative;
}

main.download .banner::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

main.download .banner__container {
  height: 300px;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main.download .banner .select-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

main.download .banner .select-form__input {
  width: 100%;
  height: 6.4rem;
  padding: 0;
  background-color: #fff;
  border-radius: 0;
  border: 0;
  pointer-events: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

main.download .banner .select-form__input::-webkit-input-placeholder {
  color: #0094de;
  font-family: "Inter-UI-Medium";
}

main.download .banner .select-form__input:-ms-input-placeholder {
  color: #0094de;
  font-family: "Inter-UI-Medium";
}

main.download .banner .select-form__input::-ms-input-placeholder {
  color: #0094de;
  font-family: "Inter-UI-Medium";
}

main.download .banner .select-form__input::placeholder {
  color: #0094de;
  font-family: "Inter-UI-Medium";
}

main.download .banner .select-form__submit {
  width: 200px;
  height: 6.4rem;
  background-color: #0094de;
  color: #fff;
  text-align: center;
}

main.download .banner .select {
  width: 390px;
  position: relative;
}

main.download .banner .select.active .select-header::after {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

main.download .banner .select.active .select-dropdown__wrap {
  pointer-events: auto;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

main.download .banner .select-header {
  padding: 0 1.5rem;
  background-color: #fff;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main.download .banner .select-header::after {
  content: '';
  width: 1.6rem;
  height: 1.6rem;
  background: url(/lib/img/download/icon_up.svg) no-repeat center center;
  background-size: cover;
  -webkit-transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
}

main.download .banner .select-dropdown__wrap {
  position: absolute;
  left: 0;
  top: calc(100% + 2px);
  z-index: 1;
  width: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(11, 21, 50, 0.1);
          box-shadow: 0px 0px 15px 0px rgba(11, 21, 50, 0.1);
  -webkit-transform: translateY(-2rem);
          transform: translateY(-2rem);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
}

main.download .banner .select-dropdown__list {
  padding: 1rem 0;
}

main.download .banner .select-dropdown__item {
  height: 50px;
  line-height: 50px;
  padding: 0 1.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
}

main.download .banner .select-dropdown__item:hover {
  background-color: #0094de;
  color: #fff;
}

main.download .download-list {
  padding-top: 1rem;
  padding-bottom: 6rem;
}

main.download .download-item {
  display: block;
  margin-top: 3rem;
}

main.download .download-item__img-wrap {
  border: 1px solid #eef0f2;
}

main.download .download-item__meta {
  color: #8c8c8c;
  font-size: 1.4rem;
  font-family: "Inter-UI-Medium";
  margin-top: 1.6rem;
}

main.download .download-item__title {
  margin-top: 1.4rem;
  height: 2.5em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  /*!autoprefixer: off*/
  -webkit-box-orient: vertical;
  /*autoprefixer: on*/
  -webkit-line-clamp: 2;
}

main.download .download-item__link {
  color: #0094de;
  font-family: "Inter-UI-Medium";
  font-size: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1.4rem;
}

main.download .download-item__link::before {
  content: '';
  width: 1.4rem;
  height: 1.2rem;
  background: url(/lib/img/download/icon_download.png) no-repeat center center;
  background-size: cover;
  margin-right: 1rem;
}

main.news .banner {
  background: url(/lib/img/news/banner.jpg) no-repeat center center;
}

main.news .news-item {
  margin-bottom: 2rem;
}

main.news .news-item__img-wrap {
  padding-bottom: 60%;
}

main.news .news-item__content {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0.6rem 0;
}

main.news .news-item__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.4rem;
  color: #8c8c8c;
}

main.news .news-item__meta-dot {
  width: 4px;
  height: 4px;
  background-color: #0078E8;
  margin: 0 1rem;
}

main.news .news-item__title {
  font-size: 2rem;
  margin-top: 1.3rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  /*!autoprefixer: off*/
  -webkit-box-orient: vertical;
  /*autoprefixer: on*/
  -webkit-line-clamp: 2;
}

main.news .news-item__excerpt {
  color: #8c8c8c;
  font-size: 1.4rem;
  margin-top: 1.3rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  /*!autoprefixer: off*/
  -webkit-box-orient: vertical;
  /*autoprefixer: on*/
  -webkit-line-clamp: 2;
}

main.news .news-item__more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #8c8c8c;
  margin-top: auto;
}

main.news .news-item__more:hover {
  color: #0094de;
}

main.news .news-item__more:hover::after {
  background-image: url(/lib/img/index/arrow-right-blue.svg);
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}

main.news .news-item__more::after {
  content: '';
  width: 16px;
  height: 16px;
  background: url(/lib/img/index/arrow-right-gray.svg) no-repeat center center;
  background-size: cover;
  margin-left: 10px;
  -webkit-transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
}

main.article-details {
  padding: 6rem 0;
}

main.article-details .article-details__container {
  padding: 3rem;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(11, 21, 50, 0.1);
          box-shadow: 0px 0px 15px 0px rgba(11, 21, 50, 0.1);
}

main.article-details .article-details__header {
  padding-bottom: 2rem;
  border-bottom: 1px solid #f5f5f5;
}

main.article-details .article-details__title {
  font-size: 2.8rem;
}

main.article-details .article-details__meta {
  font-size: 1.4rem;
  color: #a8a8a8;
  margin-top: 1rem;
}

main.article-details .end {
  color: #c8c8c8;
  text-align: center;
  margin: 1em 0;
}

main.contact .banner {
  background: url(/lib/img/contact/banner.jpg) no-repeat center center;
}

main.contact .contact-info {
  margin-top: 6rem;
}

main.contact .contact-info__title {
  text-align: center;
}

main.contact .contact-info__share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 3rem;
}

main.contact .contact-info__share .share-item {
  margin: 0 1.5rem;
}

main.contact .contact-info__share .share-item svg {
  vertical-align: middle;
}

main.contact .contact-info__share .share-item:hover svg {
  fill: #0094de;
}

main.contact .contact-info__container {
  margin-top: 3rem;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(11, 21, 50, 0.1);
          box-shadow: 0px 0px 15px 0px rgba(11, 21, 50, 0.1);
}

main.contact .contact-info__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  padding: 8.620689%;
  padding-top: 1rem;
}

main.contact .contact-info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 4rem;
}

main.contact .contact-info-item__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 4.8rem;
}

main.contact .contact-info-item__content {
  margin-left: 2rem;
}

main.contact .contact-info-item__title {
  font-size: 1.4rem;
  color: #8c8c8c;
}

main.contact .contact-info-item__description {
  font-size: 1.6rem;
  font-family: "Inter-UI-Medium";
  margin-top: 0.2rem;
}

main.contact .contact-info__map {
  margin-top: auto;
}

main.contact .contact-info__map .map__img-wrap {
  border: 1px solid #eef0f2;
}

main.contact .contact-info__map .map__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1.7rem;
}

main.contact .contact-info__map .map__link:hover::after {
  -webkit-transform: translateX(0.5rem);
          transform: translateX(0.5rem);
  background-image: url(/lib/img/index/arrow-right-blue.svg);
}

main.contact .contact-info__map .map__link::after {
  content: '';
  width: 1.6rem;
  height: 1.6rem;
  background: url(/lib/img/index/arrow-right-gray.svg) no-repeat center center;
  background-size: cover;
  margin-left: 1rem;
  -webkit-transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
}

main.not-found {
  padding: 40px 0;
}

main.not-found .container {
  text-align: center;
  color: #393e4b;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main.not-found .container h2 {
  font-size: 150px;
  margin: 20px 0;
}

main.not-found .container h3 {
  font-size: 25px;
  margin: 20px 0;
}

main.not-found .container p {
  margin: 20px 0;
}

main.not-found .container .btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

main.not-found .container .btns a {
  width: 160px;
  height: 42px;
  color: #fff;
  background-color: #0094de;
  margin: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main.not-found .container .btns a img {
  margin-right: 4px;
}

main.success {
  padding: 40px 0;
}

main.success .container {
  text-align: center;
  color: #393e4b;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main.success .container h3 {
  font-size: 30px;
  margin: 20px 0;
}

main.success .container .btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

main.success .container .btns a {
  width: 160px;
  height: 42px;
  color: #fff;
  margin: 0 10px;
  background-color: #0094de;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main.success .container .btns a img {
  margin-right: 4px;
}

@media (max-width: 1279px) {
  header.header {
    height: 53px;
  }
  header.header .header__mobile {
    height: 100%;
  }
  header.header .header__mobile .header__container {
    height: 100%;
    padding: 0 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header.header .header__mobile .header__logo img {
    height: 30px;
  }
  header.header .header__mobile .header__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header.header .header__mobile .header__line {
    width: 1px;
    height: 15px;
    background-color: #ccc;
    margin: 0 10px;
  }
  header.header .header__mobile .header__nav-btn {
    width: 20px;
    height: 20px;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  header.header .header__mobile .header__nav-btn.active span:nth-child(1) {
    -webkit-transform: translateY(8.5px) rotate(-45deg);
            transform: translateY(8.5px) rotate(-45deg);
  }
  header.header .header__mobile .header__nav-btn.active span:nth-child(2) {
    opacity: 0;
  }
  header.header .header__mobile .header__nav-btn.active span:nth-child(3) {
    -webkit-transform: translateY(-8.5px) rotate(45deg);
            transform: translateY(-8.5px) rotate(45deg);
  }
  header.header .header__mobile .header__nav-btn span {
    display: inline-block;
    width: 100%;
    height: 3px;
    border-radius: 2px;
    background-color: #2a2a2a;
    -webkit-transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
    transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
  }
  header.header .header__mobile .header__nav-mobile {
    display: block;
    position: fixed;
    top: 53px;
    left: 0;
    width: 100%;
    height: calc(100% - 53px);
    background-color: #fff;
    overflow-y: scroll;
    overscroll-behavior: contain;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
    transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
  }
  header.header .header__mobile .header__nav-mobile.active {
    opacity: 1;
    visibility: visible;
  }
  header.header .header__mobile .header__nav-mobile .menu {
    padding: 20px 0;
  }
  header.header .header__mobile .header__nav-mobile .menu li {
    padding: 0 20px;
    line-height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header.header .header__mobile .header__nav-mobile .menu li.current-menu-ancestor > a, header.header .header__mobile .header__nav-mobile .menu li.current-menu-item > a {
    font-family: "Inter-UI-Bold";
  }
  header.header .header__mobile .header__nav-mobile .menu li.active .arrow {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
  header.header .header__mobile .header__nav-mobile .menu li .arrow {
    -webkit-transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
    transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
  }
  header.header .header__mobile .header__nav-mobile .menu li .sub-menu {
    width: 100%;
    display: none;
  }
  main {
    margin-top: 53px;
  }
  main.index .applications__list li {
    margin: 0;
    margin-right: 20px;
  }
  main.index .applications__swiper {
    width: 940px;
  }
  main.index .about__number {
    top: unset;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  footer.footer .footer__pc {
    display: none;
  }
  footer.footer .footer__mobile {
    display: block;
  }
  main.products .products-details__nav {
    overflow-x: auto;
    overflow-y: hidden;
  }
  main.industries .industries-item__content {
    padding: 1rem;
  }
  main.download .banner .select-form {
    width: 100%;
  }
  main.download .banner .select-form__submit {
    width: 20%;
  }
  main.download .banner .select {
    width: 40%;
  }
  main.contact .contact-info__map {
    margin-top: 3.6rem;
  }
  .c-contact__certification {
    margin-top: 4rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media (max-width: 1023px) {
  .c-sidebar-item#go-top {
    position: fixed;
    right: 5px;
    bottom: 5px;
    width: 40px;
    height: 40px;
    -webkit-transform: translateX(0) !important;
            transform: translateX(0) !important;
    padding: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .c-sidebar-item#go-top .c-sidebar-item__icon {
    margin: 0;
  }
  .c-sidebar-item#go-top span {
    display: none;
  }
  .c-banner::after {
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
  }
  .c-banner__container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
  .c-banner__content {
    max-width: 100%;
  }
  .c-banner__line {
    margin-right: auto;
  }
  .c-contact__content {
    padding: 0;
    margin-bottom: 4rem;
    text-align: center;
  }
  .c-contact__certification {
    margin-top: 4rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .c-contact-form {
    padding: 20px;
  }
  main.index .applications__swiper {
    width: 700px;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  main.index .applications-item__content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  main.index .applications-item__excerpt {
    max-width: 100%;
  }
  main.index .applications-item__btn {
    margin-top: 3.6rem;
  }
  main.index .about__container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  main.index .about__content {
    text-align: center;
    margin-top: 4rem;
  }
  main.index .news__container {
    padding-top: 4rem;
    padding-bottom: 6rem;
  }
  main.index .contact {
    margin-top: 6rem;
  }
  main.index .contact__container {
    margin: 0;
  }
  main.index .contact-info {
    max-width: 100%;
    padding: 0;
    margin: 0 auto 2rem;
  }
  main.index .contact-info__map {
    margin-top: 4rem;
  }
  main.index .contact-form {
    margin-top: 4rem;
    padding: 4rem 2rem;
  }
  main.products .products-details__header .swiper {
    padding: 0;
  }
  main.products .products-details__category {
    margin-top: 1.5rem;
  }
  main.about .story__container {
    padding-left: 0;
    padding-right: 0;
    margin: 0;
  }
  main.about .ability-item {
    margin-top: 3rem;
  }
  main.about .ability-item__img-box {
    padding: 0;
  }
  main.about .ability-item__img-box--even {
    padding: 0;
  }
  main.contact .contact-info__map {
    margin-top: 3.6rem;
  }
}

@media (max-width: 767px) {
  .c-title {
    text-align: center;
  }
  .c-search {
    width: 95vw;
    padding: 30px;
  }
  .c-search-form__input {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    height: 40px;
  }
  .c-search-form__submit {
    width: 40px;
    height: 40px;
  }
  .c-search__close {
    right: 5px;
    top: 5px;
  }
  main.index .h-products__container {
    margin-top: -315px;
  }
  main.index .h-products__header {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 20px;
    justify-content: center;
  }
  main.index .h-products__header::after {
    width: calc(100% - 40px);
  }
  main.index .h-products .tabs-nav {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 20px;
  }
  main.index .h-products .tabs-nav li {
    margin: 0;
  }
  main.index .h-products-item__content {
    padding: 20px;
  }
  main.index .h-products-item__params {
    display: none;
  }
  main.index .h-products-item__btn {
    /* display: none; */
    margin: 2rem auto;
  }
  main.index .products__header {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        justify-content: center;
  }
  main.index .products__btn {
    margin: 0 auto;
    margin-top: 2rem;
  }
  main.index .applications-item__content {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
  main.products .products-item__params {
    display: none !important;
  }
  main.products .products-item__more {
    display: none !important;
  }
  main.products .products-details__btn {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  main.products .products-details__title {
    font-size: 2.8rem;
  }
  main.industries .industries-item__more {
    margin-top: 1rem;
  }
  main.about .ability__nav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  main.about .ability__nav li {
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
  }
  main.download .banner .select-form {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  main.download .banner .select-form__submit {
    width: 100%;
  }
  main.download .banner .select {
    width: 100%;
    margin-bottom: 2rem;
  }
  main.news .news-item__more {
    margin-top: 1.3rem;
  }
}



.search_result  {
  padding: 8rem 0;
}
.search_result .c-search-form {
  justify-content: center;
}
.search_result .psearch-tip {
  text-align: center;
  font-size: 2.4rem;
  padding: 2.5rem 0 5rem;
}
.search_result .list a{
  padding: 2rem;
  display: flex;
  gap: 4rem;
  align-items: center;
  height: 100%;
}
.search_result .list {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}
.search_result .list>li{
  width: calc(50% - 2rem);
}
.search_result .list a .item__img-wrap {
  width: 200px;
  min-width: 200px;
  overflow: hidden;
}
.search_result .list a .item__img-wrap img{
-webkit-transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
transition: all 500ms cubic-bezier(0.2, 0, 0, 1);
width: 100%;
}
.search_result .list a .item__title{
  font-size: 2rem;
  font-weight: 600;
  padding: 0 0 2rem 0;
}
.search_result .list .item__params {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-height: 2;
}
@media(max-width:1280px){
  .search_result .list {
    gap: 2rem;
  }
  .search_result .list>li {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .search_result .list .item__params {
    -webkit-line-clamp: 50;
    padding-bottom: 2rem;
  }
  .search_result .list a {
    flex-wrap: wrap;
  }
  .search_result .list a .item__img-wrap {
    width: 100%;
  }
  .search_result .list a .item__title {
    padding-top: 0;
  }
  .search_result .psearch-tip {
    padding: 2.5rem 0 3rem;
  }
}
