@font-face {
  font-family: 'DIN-Medium';
  src: url('../fonts/DIN-Medium.otf');
}
@font-face {
  font-family: 'Montserrat-SemiBold';
  src: url('../fonts/Montserrat-SemiBold.otf');
}
:root {
  --Noto-Sans-SC: 'Noto Sans SC', sans-serif;
  --Noto-Serif-SC: 'Noto Serif SC', sans-serif;
  --Song-Myung: 'Song Myung', sans-serif;
  --Roboto: 'Roboto', sans-serif;
  --Abel: 'Abel', sans-serif;
  --Barlow-Condensed: 'Barlow Condensed', sans-serif;
  --Din: 'DIN-Medium', sans-serif;
  --Montserrat-SemiBold: 'Montserrat-SemiBold', 'sans-serif';
}
h1,
h2,
h3,
h4,
h5,
p {
  transition: all 0.5s;
}
a {
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
  transition: all 0.5s;
}
html,
body {
  scroll-behavior: smooth;
}
body {
  overflow: visible;
}
body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  background-color: #fff;
}
body::-webkit-scrollbar {
  width: 5px;
  background-color: #fff;
}
body::-webkit-scrollbar-thumb {
  border-radius: 2px;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
  background-color: #666;
}
body:hover::-webkit-scrollbar-thumb {
  background-color: #ccc;
}
.out-header {
  height: 90px;
  width: 100%;
}
.container {
  max-width: 1480px;
  width: 85%;
  margin: 0 auto;
}
.blank {
  margin: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  min-height: 0 !important;
  border: 0px !important;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 6, 26, 0.19);
  z-index: 99;
  transition: all 0.5s;
}
header .logo {
  width: 18%;
}
header .header-info {
  background-color: #111;
}
header .header-info .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #fff;
  font-weight: 300;
  height: 30px;
}
header .header-info .lang {
  position: relative;
  cursor: pointer;
}
header .header-info .lang img {
  vertical-align: text-top;
}
header .header-info .lang .lang-tab {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #111;
  text-align: center;
  z-index: 1;
  transition: all 0.5s;
  visibility: hidden;
  opacity: 0;
}
header .header-info .lang .lang-tab p {
  transition: all 0.5s;
  transform: translateY(3px);
  padding: 1px 15px;
}
header .header-info .lang .lang-tab a {
  color: #fff;
  font-size: 12px;
}
header .header-info .lang .lang-tab a:hover {
  opacity: 0.5;
}
header .header-info .lang:hover .lang-tab {
  opacity: 1;
  visibility: visible;
}
header .header-info .lang:hover .lang-tab p {
  transform: translateY(0);
  transition-delay: 0.1s;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  /*max-width: 1600px;*/
}
header .lv1 {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
header .lv1 > li {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 2px;
}
header .lv1 > li a {
  color: #333;
  font-size: 18px;
  font-family: var(--Noto-Sans-SC);
  transition: all 0.5s;
}
header .lv1 > li a:hover {
  color: #962326;
}
header .lv1 > li::after {
  position: absolute;
  display: block;
  content: "";
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 0;
  height: 3px;
  background-color: #962326;
  border-radius: 1.5px;
  transition: all 0.5s;
}
header .lv1 > li:hover::after {
  width: 100%;
}
header .lv1 > li:hover .lv2 {
  opacity: 1;
  transform: translate(-50%, -1px);
  visibility: visible;
}
header .lv1 > .active::after {
  width: 100%;
}
header .lv1 > .active > a {
  font-weight: 500;
  color: #962326;
}
header .lv2 {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, 50%);
  transition: all 0.5s;
  background-color: #fff;
  padding: 26px 17px 37px;
  border: 1px solid #e4e4e4;
  visibility: hidden;
  opacity: 0;
}
header .lv2 li {
  white-space: nowrap;
  text-align: left;
  padding: 0 15px;
  min-width: 200px;
  line-height: 44px;
  border-bottom: 1px solid #e6e6e6;
}
header .lv2 li img {
  width: 29px;
  height: 26px;
  object-fit: scale-down;
  margin-right: 1em;
}
header .lv2 li a {
  font-size: 16px;
  color: #666;
}
header .lv2 > li:hover > .lv3 {
  opacity: 1;
  visibility: visible;
  transform: translate(0, -1px);
}
header .lv3,
header .lv4 {
  position: absolute;
  top: 0%;
  left: 100%;
  transform: translate(50%, 0);
  transition: all 0.5s;
  background-color: #fff;
  padding: 26px 17px 37px;
  border: 1px solid #e4e4e4;
  visibility: hidden;
  opacity: 0;
}
header .lv3 li,
header .lv4 li {
  position: relative;
  text-align: center;
}
header .lv3 li:hover .lv4 {
  opacity: 1;
  visibility: visible;
  transform: translate(0, -1px);
}
header nav {
  width: 73.75%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
header .search-and-lang {
  display: flex;
  margin-left: 7.5625%;
}
header .search {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 90px;
  background-color: #f1f1f1;
  cursor: pointer;
}
header .lang {
  position: relative;
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #962326;
  cursor: pointer;
}
header .lang ul {
  position: absolute;
  top: 100%;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
}
header .lang ul li {
  text-align: center;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
}
header .lang ul li a {
  color: #333;
  display: block;
  padding: 10px 0;
}
header .lang ul li a:hover {
  color: #962326;
}
header .lang:hover ul {
  opacity: 1;
  visibility: visible;
}
header .header-search-form {
  display: none;
  border-top: 1px solid #ccc;
}
header .header-search-form .container {
  max-width: 1480px;
  height: auto;
  padding: 15px 0;
}
header .header-search-form .container form {
  position: relative;
  width: 100%;
}
header .header-search-form .container form input {
  width: 100%;
  height: 40px;
  outline: none;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 0 60px 0 20px;
  appearance: none;
  color: #666;
  font-size: 16px;
  transition: all 0.5s;
}
header .header-search-form .container form input::placeholder {
  color: #999;
}
header .header-search-form .container form input:focus {
  border-bottom: 1px solid #ccc;
}
header .header-search-form .container form button {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 50%;
  right: 0;
  cursor: pointer;
  outline: none;
  background: #f1f1f1;
  border: 1px solid #ccc;
  transform: translate(0, -50%);
}
.box {
  width: 100%;
  text-align: center;
  margin: 3.657% 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.pagination {
  display: flex !important;
  text-align: center;
  justify-content: center;
  flex-wrap: wrap;
}
.pagination > li a {
  display: block;
  font-size: 18px;
  font-family: var(--Noto-Sans-SC);
  font-weight: 500;
  padding: 0 15px 2px;
  line-height: 38px;
  border: 1px solid #e5e5e5;
  background-color: #fff;
  margin: 4px;
  color: #999;
  transition: all 0.5s;
}
.pagination .active a {
  color: #fff;
  background-color: #962326;
  border: 1px solid transparent;
}
.pagination .active a:hover {
  color: #fff;
}
.pagination li a:hover {
  color: #962326;
}
.pagination .btn a {
  background-color: #eee;
}
.pagination .disabled {
  cursor: not-allowed;
}
.pagination .disabled a {
  color: #ccc !important;
  cursor: not-allowed;
  background-color: #fff;
  pointer-events: none;
}
.box .total {
  color: #999;
  margin-left: 10px;
  font-size: 12px;
}
.index-banner {
  position: relative;
}
.index-banner img {
  display: block;
  width: 100%;
  min-height: 150px;
  object-fit: cover;
}
.index-banner .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.index-banner .banner-text {
  text-align: center;
  margin: 0 auto;
  max-width: 1190px;
  font-family: var(--Noto-Sans-SC);
}
.index-banner .banner-text h2 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
}
.index-banner .banner-text h3 {
  font-size: 36px;
  color: #fff;
  font-weight: 700;
  line-height: 1.4;
}
.index-banner .banner-text h5 {
  font-size: 18px;
  color: #e5e5e5;
  line-height: 1.6;
}
.index-title {
  font-family: var(--Noto-Sans-SC);
  line-height: 1.8;
}
.index-title h3 {
  position: relative;
  font-size: 40px;
  color: #333;
  text-align: center;
  font-weight: 700;
  z-index: 1;
}
.index-title h3::before {
  position: absolute;
  content: attr(title);
  display: block;
  top: 0;
  left: 50%;
  transform: translate(-50%, -20%);
  line-height: 1;
  font-size: 48px;
  color: #f2f2f2;
  font-weight: 700;
  z-index: -1;
  text-transform: uppercase;
  white-space: nowrap;
}
.index-title h3::after {
  display: block;
  position: relative;
  content: "";
  margin: 0 auto;
  width: 36px;
  height: 2px;
  background-color: #962326;
}
.index-prod {
  margin: 4.3229167% 0 4.0104167%;
}
.index-prod .index-title {
  margin-bottom: 4.864865%;
}
.index-prod .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.index-prod .wrapper .block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 32.02703%;
  padding: 2.63514% 3.91892% 2.5676%;
  border: 5px solid #fff;
  background-color: #f7f7f7;
  margin-bottom: 1.95946%;
  box-shadow: 0 0 31px rgba(0, 0, 0, 0.08), inset 0 0 24px rgba(0, 0, 0, 0.11);
}
.index-prod .wrapper .block .icon {
  width: 75px;
  height: 59px;
}
.index-prod .wrapper .block .icon img {
  max-height: 100%;
  object-fit: scale-down;
}
.index-prod .wrapper .block em {
  display: block;
  width: 1px;
  height: 52px;
  background-color: #d9d9d9;
  margin: 0 10% 0 11px;
}
.index-prod .wrapper .block .title {
  flex: 1;
  font-family: var(--Noto-Sans-SC);
  line-height: 1.6;
}
.index-prod .wrapper .block .title h5 {
  font-size: 18px;
  color: #666;
}
.index-prod .wrapper .block .title h3 {
  font-size: 26px;
  color: #333;
}
.index-prod .wrapper .block .title h3 a:hover {
  color: #962326;
}
.index-solution {
  padding: 3.75% 0 5.989583%;
  background-color: #f7f7f7;
}
.index-solution .index-title {
  margin-bottom: 3.9865%;
}
.index-solution .index-title h3::before {
  color: #e5e5e5;
}
.index-solution .solution-tab {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  font-family: var(--Noto-Sans-SC);
  margin-bottom: 3.17568%;
}
.index-solution .solution-tab li a {
  display: block;
  padding: 0 1.1em;
  font-size: 20px;
  color: #333;
  line-height: 3em;
}
.index-solution .solution-tab .active a {
  color: #fff;
  background-color: #962326;
  font-weight: 700;
}
.index-solution .content {
  position: relative;
  overflow: hidden;
}
.index-solution .wrapper {
  display: none;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 3.040541% 4.7973%;
  background-color: #fff;
}
.index-solution .wrapper .lt {
  width: 38.2661%;
}
.index-solution .wrapper .lt h1 {
  margin: 0;
  font-size: 72px;
  color: #666;
  font-weight: 700;
  font-family: var(--Din);
  line-height: 1.8;
}
.index-solution .wrapper .lt h3 {
  font-size: 36px;
  color: #962326;
  font-family: var(--Noto-Sans-SC);
  font-weight: 700;
  line-height: 1.5;
}
.index-solution .wrapper .lt h4 {
  font-size: 24px;
  color: #333;
  font-family: var(--Noto-Sans-SC);
  font-weight: 700;
  line-height: 1.5;
}
.index-solution .wrapper .lt .brief {
  font-size: 16px;
  color: #666;
  font-family: var(--Noto-Sans-SC);
  margin-top: 5.859375%;
  min-height: 6em;
}
.index-solution .wrapper .lt .learn-more {
  margin-top: 2.9296875%;
}
.index-solution .wrapper .rt {
  width: 47.5336323%;
}
.index-solution .wrapper .rt .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 71.38365%;
}
.index-solution .wrapper .rt .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.index-solution .wrapper .rt .swiper-button-prev,
.index-solution .wrapper .rt .swiper-button-next {
  transition: all 0.5s;
}
.index-solution .wrapper .rt .swiper-button-prev::after,
.index-solution .wrapper .rt .swiper-button-next::after {
  display: none;
}
.index-solution .wrapper .rt .swiper-button-prev img,
.index-solution .wrapper .rt .swiper-button-next img {
  transition: all 0.5s;
}
.index-solution .wrapper .rt .swiper-button-prev img {
  transform: rotate(180deg);
}
.index-solution .wrapper .rt .swiper-button-disabled {
  opacity: 0.5;
}
.index-solution .wrapper .rt .swiper-button-disabled img {
  filter: grayscale(1);
}
.index-solution .show {
  display: flex;
}
.learn-more {
  display: inline-block;
  width: 150px;
  line-height: 50px;
  color: #fff;
  font-size: 16px;
  font-family: var(--Noto-Sans-SC);
  background-color: #962326;
  text-align: center;
}
.learn-more:hover {
  transform: translateY(-5px);
  color: #fff;
}
.index-news {
  margin: 4.6875% 0 6.8229167%;
}
.index-news .index-title {
  margin-bottom: 5.06757%;
}
.index-news .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.index-news .wrapper .block {
  width: 30.40541%;
  transition: all 0.5s;
}
.index-news .wrapper .block .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 61.3333%;
}
.index-news .wrapper .block .pic em {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 49px;
  line-height: 44px;
  height: 49px;
  font-size: 36px;
  font-weight: 300;
  text-align: center;
  color: #fff;
  background-color: #962326;
  opacity: 0;
  transition: all 0.5s;
  transform: translate(0, 100%);
}
.index-news .wrapper .block .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.index-news .wrapper .block .title {
  padding: 7.1111% 6.66667% 8.4444%;
}
.index-news .wrapper .block .title h5 {
  font-size: 14px;
  color: #962326;
  line-height: 1.6;
}
.index-news .wrapper .block .title h4 {
  color: #333;
  font-size: 20px;
  font-weight: 700;
  font-family: var(--Noto-Sans-SC);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.6;
  margin-bottom: 5.64103%;
}
.index-news .wrapper .block .title h4 a {
  color: inherit;
}
.index-news .wrapper .block .title p {
  font-size: 16px;
  color: #666;
  font-family: var(--Noto-Sans-SC);
  text-align: justify;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  line-height: 1.8;
}
.index-news .wrapper .block .title p a {
  color: inherit;
}
.index-news .wrapper .block:hover {
  background-color: #f7f7f7;
}
.index-news .wrapper .block:hover .pic img {
  transform: scale(1.05);
}
.index-news .wrapper .block:hover .pic em {
  transform: translate(0, 0);
  opacity: 1;
}
.index-about {
  background: url(../images/index-about-bg.jpg) no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 3.6979167% 0 4.16667%;
}
.index-about .index-title {
  position: relative;
  z-index: 1;
  margin-bottom: 4.0541%;
}
.index-about .index-title h3 {
  color: #fff;
}
.index-about .index-title h3::before {
  color: rgba(229, 229, 229, 0.3);
}
.index-about .index-title h3::after {
  background-color: #fff;
}
.index-about .brief {
  text-align: center;
  margin: 0 auto;
  font-family: var(--Noto-Sans-SC);
  font-size: 16px;
  color: #fff;
  max-width: 1030px;
  margin-bottom: 6.4865%;
}
.index-about .learn-more {
  background-color: #fff;
  color: #962326;
  margin-top: 4.0541%;
}
.index-about .data {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index-about .data .block {
  text-align: center;
}
.index-about .data .block h2 {
  font-size: 40px;
  color: #fff;
  line-height: 1.5;
}
.index-about .data .block h2 i {
  font-style: normal;
  font-size: 16px;
}
.index-about .data .block h2 span {
  font-size: 60px;
  font-weight: 700;
  font-family: var(--Din);
}
.index-about .data .block h2 sup {
  font-size: 40px;
  font-weight: 300;
}
.index-about .data .block h5 {
  font-size: 16px;
  color: #fff;
}
.index-about .data em {
  display: block;
  width: 1px;
  height: 71px;
  background-color: #fff;
}
.index-partner {
  margin: 5.20833% 0 3.75%;
}
.index-partner .index-title {
  margin-bottom: 5.202703%;
}
.index-partner .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100px;
  border: 1px solid #dcdcdc;
  display: flex;
  justify-content: center;
  align-items: center;
}
.index-partner .pic img {
  position: absolute;
  display: block;
  max-width: 90%;
  max-height: 90%;
  object-fit: scale-down;
}
.index-partner .partnerSwiper {
  height: 250px;
}
.index-partner .partnerSwiper .swiper-slide {
  height: calc((100% - 60px) / 2) !important;
}
.index-partner .swiper-pagination {
  position: relative;
  margin: 0;
  bottom: 0;
  margin-top: 4.1892%;
}
.index-partner .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #e8e8e8;
  opacity: 1;
  transition: all 0.5s;
  margin: 0 8px;
}
.index-partner .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #962326;
}
footer {
  background-color: #2a2f33;
}
footer .container {
  /*max-width: 1600px;*/
}
footer .footer-top {
  padding: 5.125% 0 1.75%;
  display: flex;
  justify-content: space-between;
}
footer .footer-top .info h5 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 0.5em;
}
footer .footer-top .info .logo {
  margin-bottom: 30px;
}
footer .footer-top .info .logo img {
  filter: contrast(0) grayscale(1) brightness(500%);
}
footer .footer-top .info .ewm {
  display: inline-block;
  text-align: center;
  margin-top: 18px;
}
footer .footer-top .info .ewm img {
  max-width: 110px;
}
footer .footer-top .info .ewm p {
  font-size: 14px;
  color: #fff;
  margin-top: 5px;
}
footer .footer-top nav h3 {
  margin-bottom: 28px;
}
footer .footer-top nav ul li {
  font-size: 16px;
  color: #fff;
  margin-bottom: 5px;
}
footer .footer-top nav ul li i {
  display: inline-block;
  border: 6px solid transparent;
  border-left: 7px solid #fff;
  margin-right: 6px;
}
footer .footer-top nav ul li a {
  color: inherit;
}
footer .footer-top nav ul li a:hover {
  text-decoration: underline !important;
}
footer .footer-top .msg {
  width: 48.5%;
}
footer .footer-top .msg h3 {
  line-height: 1.4;
}
footer .footer-top .msg h5 {
  font-size: 14px;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 1em;
}
footer .footer-top .msg p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}
footer .footer-top .msg form .row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer .footer-top .msg form .row .col {
  width: 31.314433%;
  margin-bottom: 18px;
}
footer .footer-top .msg form input {
  width: 100%;
  height: 34px;
  border: 1px solid #ccc;
  color: #fff;
  background-color: transparent;
  outline: none;
  transition: all 0.5s;
  font-size: 12px;
  padding: 0 14px;
}
footer .footer-top .msg form input:focus {
  border: 1px solid #fff;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.6);
}
footer .footer-top .msg form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
footer .footer-top .msg form textarea {
  width: 100%;
  height: 103px;
  font-size: 12px;
  padding: 12px 14px;
  border: 1px solid #ccc;
  color: #fff;
  background-color: transparent;
  outline: none;
  transition: all 0.5s;
}
footer .footer-top .msg form textarea:focus {
  border: 1px solid #fff;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.6);
}
footer .footer-top .msg form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
footer .footer-top .msg form button {
  font-size: 14px;
  color: #fff;
  cursor: pointer;
  width: 120px;
  height: 34px;
  border: 0;
  background-color: rgba(255, 255, 255, 0.3);
  margin-top: 30px;
  transition: all 0.5s;
}
footer .footer-top .msg form button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
footer .footer-top h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
footer .footer-bt {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding: 1.6875% 0;
}
footer .footer-bt p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}
footer .footer-bt p a {
  color: inherit;
}
footer .footer-bt p a:hover {
  color: #fff;
}
.bread-crumb {
  font-family: var(--Noto-Sans-SC);
  box-shadow: 0 0 20px rgba(36, 0, 2, 0.07);
}
.bread-crumb ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  height: 70px;
}
.bread-crumb ul li {
  margin: 0 2.703%;
}
.bread-crumb ul li a {
  font-size: 18px;
  color: #333;
}
.bread-crumb ul .active a {
  color: #962326;
}
.inner-title {
  font-family: var(--Noto-Sans-SC);
  text-align: center;
}
.inner-title h3 {
  font-size: 40px;
  color: #333;
  font-weight: 500;
}
.dev-article {
  margin: 3.125% 0 4.166667%;
}
.dev-article .inner-title {
  margin-bottom: 1.6892%;
}
.dev-article article {
  font-size: 16px;
  color: #666;
  font-family: var(--Noto-Sans-SC);
  text-align: justify;
}
.contact-us {
  margin: 5.3125% 0 0;
}
.contact-us .inner-title {
  margin-bottom: 2.83784%;
}
.contact-us .inner-title h3 {
  font-weight: 700;
}
.contact-us .wrapper {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto 2.02703%;
}
.contact-us .wrapper .block {
  text-align: center;
  width: 24.324324%;
}
.contact-us .wrapper .block .icon {
  margin-bottom: 17px;
}
.contact-us .wrapper .block h4 {
  font-size: 20px;
  color: #404040;
  font-weight: 700;
}
.contact-us .wrapper .block em {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 127px;
  height: 1px;
  background-color: #ccc;
  margin: 7px auto 14px;
}
.contact-us .wrapper .block em::after {
  position: absolute;
  display: block;
  content: "";
  width: 18px;
  height: 3px;
  background-color: #962326;
  left: 50%;
  transform: translate(-50%, -1px);
}
.contact-us .wrapper .block h5 {
  font-size: 19px;
  color: #666;
  line-height: 1.8;
}
.contact-us .map {
  position: relative;
  width: 100%;
  height: 531px;
}
.contact-us .map iframe {
  width: 100%;
  height: 100%;
}
.online-msg {
  margin: 4.6875% 0 5.729167%;
}
.online-msg .inner-title {
  margin-bottom: 3.64865%;
}
.online-msg form .row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 1.75676%;
}
.online-msg form .row .col {
  width: 48.91892%;
}
.online-msg form input {
  width: 100%;
  height: 70px;
  color: #333;
  font-size: 14px;
  padding: 0 27px;
  outline: none;
  background-color: #fafafa;
}
.online-msg form input::placeholder {
  color: #bfbfbf;
}
.online-msg form textarea {
  width: 100%;
  height: 265px;
  color: #333;
  font-size: 14px;
  padding: 29px 27px;
  outline: none;
  background-color: #fafafa;
}
.online-msg form textarea::placeholder {
  color: #bfbfbf;
}
.online-msg form button {
  display: block;
  font-size: 24px;
  color: #fff;
  font-weight: 700;
  background-color: #962326;
  width: 200px;
  height: 60px;
  cursor: pointer;
  outline: none;
  margin: 4.45946% auto 0;
}
.news-detail {
  margin: 3.3854167% 0 4.166667%;
}
.news-detail .news-title {
  text-align: center;
  margin-bottom: 3.24324%;
}
.news-detail .news-title h3 {
  font-size: 36px;
  color: #333;
  line-height: 1.8;
}
.news-detail .news-title h5 {
  font-size: 18px;
  color: #696969;
}
.news-detail article {
  font-size: 16px;
  color: #666;
  text-align: justify;
  line-height: 1.8;
}
.news-detail .article-tab {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-top: 1px solid #ebeceb;
  margin-top: 5.202703%;
  padding-top: 2.702703%;
}
.news-detail .article-tab .lt {
  width: 50%;
}
.news-detail .article-tab .lt p {
  font-size: 16px;
  color: #333;
  margin-bottom: 0.625em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-detail .article-tab .lt p a {
  color: inherit;
}
.news-detail .article-tab .lt p a:hover {
  color: #666;
}
.news-detail .article-tab .rt a {
  color: #666;
  font-size: 18px;
}
.news-detail .article-tab .rt a:hover {
  color: #962326;
}
.news-list {
  margin: 3.6979167% 0 4.791667%;
}
.news-list .row {
  transition: all 0.5s;
}
.news-list .row .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.9791667% 0;
  border-bottom: 1px solid #d9d9d9;
  font-family: var(--Noto-Sans-SC);
}
.news-list .row .container .date {
  text-align: center;
  margin-right: 3.10811%;
}
.news-list .row .container .date h2 {
  font-size: 46px;
  color: #666;
  line-height: 1.6;
}
.news-list .row .container .date em {
  display: block;
  width: 73px;
  height: 1px;
  background-color: #666;
}
.news-list .row .container .date h5 {
  font-size: 18px;
  color: #666;
  font-weight: 500;
  margin-top: 0.5em;
  line-height: 1.8;
}
.news-list .row .container .picture {
  width: 24.392%;
}
.news-list .row .container .picture .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 59.27978%;
}
.news-list .row .container .picture .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.news-list .row .container .title {
  flex: 1;
  margin-left: 2.702703%;
}
.news-list .row .container .title h4 {
  font-size: 24px;
  color: #333;
  margin-bottom: 1.770833%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.news-list .row .container .title p {
  font-size: 16px;
  color: #999;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.news-list .row .container .title p a {
  color: inherit;
}
.news-list .row .container .title .more {
  display: inline-block;
  font-size: 16px;
  color: #666;
  margin-top: 2.604167%;
}
.news-list .row:hover {
  background-color: #f7f7f7;
}
.news-list .row:hover .picture .pic img {
  transform: scale(1.05);
}
.news-list .row:hover .title h4 a {
  color: #962326;
}
.news-list .row:hover .title .more {
  color: #962326;
}
.company-intro {
  margin: 3.90625% 0 5%;
}
.company-intro .container {
  position: relative;
}
.company-intro .container::after {
  display: block;
  position: absolute;
  content: "";
  top: 100%;
  width: 100%;
  height: 47px;
  background: url(../images/company-intro-shadow.png) no-repeat;
  background-size: contain;
  background-position: center top;
}
.company-intro .inner-title {
  margin-bottom: 1.35135%;
}
.company-intro .intro {
  max-width: 1170px;
  margin: 0 auto;
  text-align: justify;
  /*text-align-last: center;*/
  font-family: var(--Noto-Sans-SC);
  font-size: 16px;
  color: #666;
  padding-bottom: 2.972973%;
}
.sub-company {
  margin-bottom: 5.20833%;
}
.sub-company .inner-title {
  margin-bottom: 4.392%;
}
.sub-company .company-tab {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.513514%;
}
.sub-company .company-tab li {
  margin: 0 17px;
}
.sub-company .company-tab li a {
  display: block;
  width: 349px;
  line-height: 66px;
  text-align: center;
  font-size: 20px;
  color: #333;
  font-family: var(--Noto-Sans-SC);
  background-color: #f2f2f2;
}
.sub-company .company-tab .active a {
  color: #fff;
  background-color: #962326;
}
.sub-company .content {
  position: relative;
  overflow: hidden;
}
.sub-company .wrapper {
  display: none;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background-color: #f7f7f7;
}
.sub-company .wrapper:nth-child(even) {
  flex-direction: row-reverse;
}
.sub-company .wrapper .lt {
  width: 50%;
}
.sub-company .wrapper .lt .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 57.1875%;
}
.sub-company .wrapper .lt .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sub-company .wrapper .rt {
  text-align: justify;
  width: 50%;
  padding: 3% 4.89583%;
  font-family: var(--Noto-Sans-SC);
}
.sub-company .wrapper .rt .title h4 {
  font-size: 30px;
  color: #962326;
  margin-bottom: 4.1558442%;
}
.sub-company .wrapper .rt .brief {
  font-size: 16px;
  color: #666;
}
.sub-company .show {
  display: flex;
}
.honor {
  margin-bottom: 2.291667%;
  margin-bottom: 12.1875%;
}
.honor .inner-title {
  margin-bottom: 3.513514%;
}
.honor .wrapper .row {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 7.7703%;
}
.honor .wrapper .row::after {
  position: absolute;
  display: block;
  width: 100%;
  height: 190px;
  content: "";
  top: 100%;
  background: url(../images/honor-bg.png) no-repeat;
  background-size: contain;
}
.honor .wrapper .row .block {
  width: 17.22973%;
}
.honor .wrapper .row .block .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 129.01961%;
  background-color: #ddd;
}
.honor .wrapper .row .block .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.proj-period {
  margin: 3.2291667% 0 3.125%;
}
.proj-period .inner-title {
  margin-bottom: 6.75676%;
}
.proj-period .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.proj-period .wrapper .block {
  width: 15.2703%;
  box-shadow: 0 0 11px rgba(13, 1, 0, 0.08);
  text-align: center;
  font-family: var(--Noto-Sans-SC);
  font-size: 16px;
  color: #666;
  padding-bottom: 2.02703%;
}
.proj-period .wrapper .block .num {
  margin-top: -20%;
}
.proj-period .wrapper .block .num h3 {
  display: inline-block;
  width: 72px;
  line-height: 70px;
  font-size: 36px;
  color: #962326;
  font-weight: 700;
  font-family: var(--Din);
  border: 1px solid #e5e5e5;
  background-color: #fff;
  border-radius: 50%;
}
.proj-period .wrapper .block .title h4 {
  font-size: 25px;
  color: #333;
  font-weight: 500;
  margin: 0.4em 0 0.6em;
}
.after-sales {
  margin-bottom: 3.90625%;
}
.after-sales .inner-title {
  margin-bottom: 2.43243%;
}
.after-sales .picture {
  margin-bottom: 4.3919%;
}
.after-sales .picture img {
  display: block;
  width: 100%;
}
.after-sales .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.after-sales .wrapper .block {
  width: 32.2973%;
  box-shadow: 0 0 20px rgba(13, 1, 0, 0.08);
  padding: 1.0135% 1.6892% 2.02703% 2.702703%;
  font-family: var(--Noto-Sans-SC);
}
.after-sales .wrapper .block .title h4 {
  display: flex;
  align-items: center;
  font-size: 30px;
  color: #333;
  font-weight: 500;
}
.after-sales .wrapper .block .title h4 img {
  margin-right: 12px;
}
.after-sales .wrapper .block .brief ul li {
  font-size: 16px;
  color: #666;
  display: flex;
}
.after-sales .wrapper .block .brief ul li::before {
  content: "";
  width: 5px;
  min-width: 5px;
  height: 5px;
  background-color: #962326;
  border-radius: 50%;
  margin: 0.85em 10px 0 0;
}
.file-system {
  margin-bottom: 7.291667%;
}
.file-system .inner-title {
  margin-bottom: 3.040541%;
}
.file-system .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.file-system .wrapper .block {
  width: 48.513514%;
  box-shadow: 0 0 20px rgba(13, 1, 0, 0.08);
  font-family: var(--Noto-Sans-SC);
  padding: 2.83784% 0 4.52703%;
}
.file-system .wrapper .block .title {
  position: relative;
  color: #fff;
  font-size: 30px;
  font-weight: 500;
  line-height: 56px;
  width: 250px;
  padding-left: 15px;
  text-align: center;
  background-color: #962326;
  transform: translate(-15px, 0);
  margin-bottom: 3.89972%;
}
.file-system .wrapper .block .title::before {
  position: absolute;
  display: block;
  content: "";
  border: 6px solid transparent;
  border-right: 10px solid #661214;
  border-bottom: 4px solid #661214;
  right: 100%;
  top: 0;
  transform: translate(100%, -100%);
}
.file-system .wrapper .block .title::after {
  position: absolute;
  display: block;
  content: "";
  left: 100%;
  top: 0;
  border: 28px solid transparent;
  border-left: 22px solid #962326;
}
.file-system .wrapper .block .brief {
  padding: 0 5.571031% 0 6.545961%;
  text-align: justify;
  font-size: 18px;
  color: #666;
  line-height: 1.8;
}
.file-system .wrapper .block .brief h4 {
  font-size: 24px;
  color: #333;
  font-weight: 500;
  margin-bottom: 2.2187%;
}
.prod-category {
  background-color: #f7f7f7;
  padding: 2.864583% 0 3.75%;
}
.prod-category .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.prod-category .container .block {
  text-align: center;
  font-family: var(--Noto-Sans-SC);
  font-size: 22px;
}
.prod-category .container .block .icon {
  width: 75px;
  height: 59px;
  text-align: center;
  margin: 0 auto;
}
.prod-category .container .block .icon img {
  max-height: 100%;
}
.prod-category .container .block p {
  margin-top: 0.5em;
}
.prod-category .container .block a {
  color: #333;
}
.prod-category .container .block:hover a {
  color: #962326;
}
.prod-category .container .block:hover .icon img {
  animation: rubberBand 1s;
}
.prod-category .container em {
  display: block;
  width: 1px;
  height: 62px;
  background-color: #ccc;
}
.prod-category .container em:last-of-type {
  display: none;
}
.product {
  margin: 3.69792% 0 4.32292%;
}
.product .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}
.product aside {
  width: 288px;
  font-family: var(--Noto-Sans-SC);
}
.product aside .aside-title {
  display: flex;
  align-items: center;
  background-color: #962326;
  min-height: 70px;
  padding: 0 3.47222% 0 9.375%;
}
.product aside .aside-title .icon {
  width: 42px;
  height: 37px;
}
.product aside .aside-title .icon img {
  max-width: 100%;
  max-height: 100%;
}
.product aside .aside-title .icon img {
  filter: contrast(0) brightness(300%);
}
.product aside .aside-title em {
  display: block;
  width: 1px;
  height: 20px;
  background-color: rgba(255, 255, 255, 0.5);
  margin: 0 11px;
}
.product aside .aside-title h3 {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
}
.product aside .aside-lv1 {
  background-color: #f7f7f7;
}
.product aside .aside-lv1 > li {
  border-bottom: 1px solid #e5e5e5;
  position: relative;
}
.product aside .aside-lv1 > li > a {
  display: flex;
  align-items: center;
  height: 55px;
  padding: 0 18.7778% 0 15.0972%;
  font-size: 18px;
  color: #666;
}
.product aside .aside-lv1 > li span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product aside .aside-lv1 > li em {
  position: absolute;
  right: 10.75%;
  width: 0.5em;
  line-height: 1em;
}
.product aside .aside-lv1 > .on > a {
  color: #962326;
}
.product aside .aside-lv1 > .on > a::before {
  position: absolute;
  display: block;
  content: "";
  width: 4px;
  height: 1em;
  background-color: #962326;
  transform: translateX(-300%);
}
.product aside .aside-lv1 > .show > a em {
  transform: rotate(90deg);
}
.product aside .aside-lv2 {
  display: none;
}
.product aside .aside-lv2 li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 28.7778% 0 15.0972%;
  font-size: 16px;
  color: #999;
  border-top: 1px solid #e5e5e5;
}
.product aside .aside-lv2 li span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product aside .aside-lv2 .active a {
  color: #962326;
}
.product main {
  width: calc(100% - 288px - 3.37838%);
  background-color: #f7f7f7;
  padding: 3.513514% 3.040541% 5.472973% 3.37838%;
}
.prod-intro {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 8.3095%;
}
.prod-intro .lt {
  width: 51.95798%;
}
.prod-intro .lt .pic {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 65.625%;
  background-color: #fff;
}
.prod-intro .lt .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.prod-intro .rt {
  width: 44.3171%;
  font-family: var(--Noto-Sans-SC);
}
.prod-intro .rt .title {
  margin-bottom: 4px;
}
.prod-intro .rt .title h4 {
  font-size: 30px;
  color: #962326;
  font-weight: 500;
}
.prod-intro .rt .brief {
  font-size: 14px;
  color: #333;
  text-align: justify;
}
.prod-feature {
  font-family: var(--Noto-Sans-SC);
  margin-bottom: 4.39351%;
}
.prod-feature ul {
  /*display: flex;*/
  /*flex-wrap: wrap;*/
}
.prod-feature ul li {
  position: relative;
  line-height: 1.8;
  padding-left: 23px;
  min-width: 21.96753%;
  /* max-width: 50%; */
  margin-right: 1em;
  margin-bottom: 2.86533%;
}
.prod-feature ul li h4 {
  font-size: 20px;
  color: #333;
}
.prod-feature ul li h4::before {
  position: absolute;
  display: block;
  content: "";
  width: 9px;
  height: 9px;
  background-color: #962326;
  border-radius: 50%;
  left: 0;
  top: 0.675em;
}
.prod-feature ul li h5 {
  font-size: 16px;
  color: #333;
}
.tech-params {
  font-family: var(--Noto-Sans-SC);
  margin-bottom: 3.62942%;
}
.tech-params .title {
  margin-bottom: 4.2025%;
}
.tech-params .title h3 {
  font-size: 24px;
  color: #333;
  font-weight: 500;
  padding: 0 18px 3px;
  border-bottom: 1px solid #ccc;
}
.tech-params .title h3 span {
  color: #999;
}
.after-sale-support {
  font-family: var(--Noto-Sans-SC);
}
.after-sale-support .title {
  margin-bottom: 7.8319%;
  font-size: 16px;
  color: #333;
}
.after-sale-support .title h3 {
  font-size: 24px;
  color: #333;
  font-weight: 700;
  margin-bottom: 2px;
}
.after-sale-support .title h3 span {
  font-size: 14px;
  color: rgba(51, 51, 51, 0.8);
  font-weight: 400;
}
.after-sale-support .title h5 {
  font-size: 16px;
  color: #333;
}
.after-sale-support .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.after-sale-support .wrapper .block {
  width: 46.9914%;
  background-color: #fff;
  border-radius: 10px;
  padding: 0 3.53391% 18px;
  font-size: 16px;
  color: #333;
  margin-bottom: 3%;
}
.after-sale-support .wrapper .block h4 {
  display: inline-block;
  font-size: 16px;
  color: #fff;
  background-color: #962326;
  line-height: 44px;
  padding: 0 15px;
  min-width: 129px;
  text-align: center;
  transform: translateY(-13px);
}
.after-sale-support .wrapper .block h4::before,
.after-sale-support .wrapper .block h4::after {
  position: absolute;
  display: block;
  content: "";
  border: 5px solid transparent;
}
.after-sale-support .wrapper .block h4::before {
  border-right: 4px solid #661214;
  border-bottom: 8px solid #661214;
  right: 100%;
  top: 0;
}
.after-sale-support .wrapper .block h4::after {
  border-left: 4px solid #661214;
  border-bottom: 8px solid #661214;
  left: 100%;
  top: 0;
}
.after-sale-support .wrapper .block ul li {
  font-size: 16px;
  color: #333;
}
.inner-solution-tab {
  margin: 4.53125% 0 0;
  font-family: var(--Noto-Sans-SC);
}
.inner-solution-tab ul {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.inner-solution-tab ul li {
  min-width: 18.85135%;
}
.inner-solution-tab ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 63px;
  padding: 0 5px;
  margin-bottom: 5px;
  line-height: 1.2;
  font-size: 20px;
  color: #333;
  border: 1px solid #999;
}
.inner-solution-tab ul .active a {
  background-color: #962326;
  color: #fff;
  border-color: transparent;
}
.solution-article {
  margin: 4.27083% 0 5.7291667%;
  font-family: var(--Noto-Sans-SC);
}
.solution-article h1 {
  font-size: 36px;
  color: #333;
  line-height: 1.9;
  margin: 0;
}
.solution-article h2 {
  font-size: 24px;
  color: #333;
  font-weight: 500;
  padding: 0.798611em 0.83333em 1em;
  background-color: #f2f2f2;
  line-height: 1.2;
  margin-bottom: 0.5em;
}
.solution-article h3 {
  font-size: 20px;
  color: #333;
  font-weight: 500;
  padding: 0 1.35em 0 0.65em;
}
.solution-article h3::before {
  position: relative;
  display: inline-block;
  content: "";
  width: 4px;
  height: 17px;
  background-color: #962326;
  margin-right: 0.45em;
}
.solution-article h4 {
  font-size: 30px;
  color: #666;
}
.solution-article h5 {
  font-size: 24px;
  color: #666;
}
.solution-article p {
  font-size: 18px;
  color: #666;
  padding: 0 1.5em;
}
.solution-article .article-title {
  text-align: center;
  margin-bottom: 3.5135%;
}
.solution-article .article-pic {
  margin-bottom: 4.84375%;
}
.solution-article .article-pic .pic {
  background-color: #f7f7f7;
  text-align: center;
  padding: 4.27083% 0 4.427083%;
}
.solution-article article {
  color: #666;
  text-align: justify;
}
article table {
  width: 100%;
}
article table tr td {
  border-bottom: 1px dashed #ccc;
  border-right: 1px solid #e5e5e5;
  height: 3.2em;
  font-size: 20px;
  color: #333;
  padding: 3px 1em;
  line-height: 1.6;
  background-color: #f7f7f7;
  text-align: center;
  vertical-align: middle;
}
article table tr td:last-child {
  border-right: 0;
}
article table tr:nth-of-type(1) td {
  background-color: #962326;
  color: #fff;
  text-align: center;
  height: 80px;
  font-size: 24px;
}
.solution-article article .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.solution-article article .wrapper .block {
  position: relative;
  width: 23.71622%;
  box-shadow: 0 0 20px rgba(36, 0, 2, 0.07);
  padding: calc(1.75em + 0.6em) 3.311% 2.02703%;
  font-size: 20px;
}
.solution-article article .wrapper .block em {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 20px;
  line-height: 1.75em;
  font-weight: 500;
  padding: 0 9px 0 13px;
  border-radius: 0 0 20px 0;
  color: #fff;
  background-color: #962326;
}
.solution-article article .wrapper .block .title {
  font-size: 20px;
  color: #333;
  font-weight: 500;
}
.solution-article article .wrapper .block .brief {
  font-size: 16px;
  color: #666;
}
.solution-article article .wrapper .block .brief p {
  font-size: 16px;
  padding: 0;
}
.anchor-fixed {
  position: relative;
  height: 0;
  top: -150px;
}
.tech-params article ul, .tech-params article ol {
    padding: 0 1em;
    margin: .5em 0;
}
.tech-params article ul li, .tech-params article ol li {
    list-style: inherit;
}