@charset "UTF-8";
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  font-size: 13px;
  box-sizing: border-box;
  font-family: 'Segoe UI', \5FAE\8F6F\96C5\9ED1, Tahoma, Geneva, Verdana, sans-serif;
}

a {
  color: #fff;
  text-decoration: none;
}

a:visited {
  color: #fff;
}

.wp, .container {
  width: 1200px;
  margin: 0 auto;
}

.containter {
  box-sizing: border-box;
  width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.content {
  width: 100%;
}

/* 页面顶部行 */
.site-top {
  background-color: #333;
  background-color: #222222;
}

.site-top .bar-box {
  height: 30px;
  line-height: 30px;
  color: #fff;
  text-align: right;
}

.site-top .bar-box .bar-right {
  width: 80px;
}

.site-top .bar-box span {
  margin: 0 5px;
  width: 30px;
}

.site-top .bar-box .layui-icon {
  color: #AAA;
}

.site-top .bar-box .bar-box > * {
  display: inline-block;
  height: 30px;
  line-height: 30px;
  vertical-align: middle;
}

/* 页面头部 */
header {
  position: relative;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .logo img {
  max-width: var(--logo-max-width);
}

.right-header {
  display: flex;
  flex-direction: column;
}

.search-box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: var(--search-box-height);
  overflow: hidden;
  width: 100%;
  font-size: var(--search-box-fontsize);
}

.search-box .login-box {
  margin-left: 15px;
}

.search-box .login-box .login-btn {
  display: inline-block;
  cursor: pointer;
  padding: 0 10px;
  border-radius: 5px;
  line-height: 30px;
  color: #333;
  font-weight: 500;
  transition: 300ms ease-in-out;
}

.search-box .login-box .login-btn i {
  margin-right: 3px;
}

.search-box .login-box .login-btn:hover {
  color: #fff;
  background-color: var(--title-font-color);
}

.search-form {
  position: relative;
  width: 50%;
  border: 1px solid #eeeeee;
  background-color: #eeeeee;
  border-top-width: 0;
  border-radius: 20px;
}

.search-form form {
  display: flex;
  align-items: center;
  overflow: hidden;
}

.search-form input[type=text] {
  display: unset;
  width: calc(100% - 32px);
  border: none;
  background-color: #eeeeee;
  border-radius: 20px;
  padding: 0 20px;
  height: 35px;
  line-height: 30px;
}

.search-form .search-btn {
  margin: 0 2px 0 -2px;
  height: 28px;
  width: 28px;
  border-radius: 50%;
  cursor: pointer;
  background-color: #fff;
  border-width: 0;
  transition: 0.3s;
}

.search-form .search-btn:hover {
  color: #fff;
  background-color: var(--title-font-color);
}

/**
 * 导航样式
 */
.menus {
  color: #000;
  font-family: unset;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--Main-menu-font-size);
  font-weight: 500;
}

.menus .nav-item {
  position: relative;
  line-height: var(--menu-font-line-height);
  display: inline-block;
}

.menus .nav-item::after {
  content: "";
  transition: width 0.3s ease-in-out;
}

.menus .nav-item:last-child {
  margin-right: 0;
}

.menus .nav-item:hover .sub-item {
  visibility: visible;
  opacity: 1;
  top: 100%;
}

.menus .nav-item:after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 0;
  right: var(--menu-sub-margin);
  height: 4px;
  background-color: var(--title-font-color);
}

.menus .nav-item:hover::after, .menus .nav-item.active::after {
  content: "";
  width: calc(100% - var(--menu-sub-margin) * 2);
  left: var(--menu-sub-margin);
}

.menus .nav-item .nav-link {
  display: block;
  color: #000;
  padding: 10px var(--menu-sub-margin) 15px;
}

.menus .nav-item .nav-link:hover {
  color: var(--title-font-color);
}

.menus .sub-item {
  position: absolute;
  z-index: 999;
  visibility: hidden;
  background-color: #fff;
  padding: 20px 0;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
  top: 120%;
  left: 0;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.menus .sub-item .sub-link {
  padding: 8px 25px;
  color: #000;
}

.menus .sub-item .sub-link:hover {
  color: #0372c1;
  text-decoration: underline;
}

/**
 * 栅格 列排板
 */
.grid-col-2 {
  grid-template-columns: repeat(2, 1fr);
  padding: 0;
}

.grid-col-2-custom {
  grid-template-columns: 1.1fr 0.9fr;
}

.grid-col-3 {
  grid-template-columns: repeat(3, 1fr);
  padding: 0;
}

.split-0 {
  grid-gap: 0px;
}

.split-25 {
  grid-gap: 25px;
  margin-top: 25px;
}

.split-40 {
  grid-gap: 40px;
  padding: 20px;
}

.row-padding-1 {
  padding: 20px 0 20px;
}

.image-block, .img-block {
  cursor: pointer;
  overflow: hidden;
  width: 100%;
}

.image-block img, .img-block img {
  width: 100%;
  height: 100%;
}

.img-block img {
  max-width: 100%;
  height: unset;
}

.max-image {
  width: 100%;
}

.page-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.grid-row-product {
  grid-template-columns: 50% 50%;
  grid-gap: var(--index-product-grid-gap);
  padding: var(--index-product-grid-padding) 0;
  overflow: hidden;
}

.grid-row-product > div {
  background-color: #EBEBEB;
}

.grid-row-product .grid-item-left {
  grid-row-start: 1;
  grid-row-end: 3;
}

.page-banner {
  width: 100%;
}

.page-banner img {
  width: 100%;
}

/**
 * 首页的样式
 */
.col-box {
  position: relative;
  cursor: pointer;
}

.col-box .col-image {
  overflow: hidden;
}

.col-box .col-image img {
  width: 100%;
  transform: scale(1.05);
  transition: all 0.3s ease-in-out;
}

.col-box .col-text-box {
  padding: 10px 20px 35px 20px;
  background-color: #E9E9E9;
  border-radius: 0 0 10px 10px;
}

.col-box .title {
  font-size: var(--standard-title-font-size);
  color: #E7360E;
  margin-bottom: 5px;
}

.col-box .box-text {
  font-size: var(--standard-fontsize);
  color: #787878;
  height: 65px;
}

.col-box:hover {
  color: #fff;
}

.col-box:hover .col-text-box {
  background-color: #E73710;
}

.col-box:hover .col-image img {
  transform: scale(1);
}

.col-box:hover .title {
  color: #fff;
}

.col-box:hover .box-text {
  color: #fff;
}

/**
 * 页尾样式
 */
.footer {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #fff;
  background-color: #000;
  padding: 40px 0 10px;
  margin-top: 100px;
}

.footer .line-color {
  height: 2px;
  background: var(--the-main-color);
}

.footer .fotter-top {
  margin-bottom: 80px;
}

.footer .fotter-top dl {
  margin-top: 20px;
}

.footer .fotter-top dl dt {
  color: #fff;
  cursor: pointer;
  position: relative;
  font-size: var(--footer-bottom-menu-font-size);
  font-weight: 400;
  margin-bottom: 18px;
}

.footer .fotter-top dl dt:after {
  content: '';
  position: absolute;
  top: 5px;
  bottom: 5px;
  right: 0;
  width: 1px;
  background-color: #5e5e5e;
}

.footer .fotter-top dl dt.hide:after {
  display: none;
}

.footer .fotter-top dl dd {
  position: relative;
  font-size: var(--footer-bottom-default-fontsize);
  line-height: 1;
  padding: 0 0 15px 0;
}

.footer .footer-bottom {
  font-size: var(--footer-bottom-default-fontsize);
  padding-top: 10px;
}

.footer .footer-bottom .company-name img {
  max-width: var(--footer-company-logo-max-width);
}

.footer .footer-bottom h3 {
  margin-bottom: 3px;
  font-size: var(--footer-bottom-h3-fontsize);
}

.footer .footer-col, .footer .footer-col-7 {
  background-color: #000;
  grid-template-columns: var(--footer-bottom-grid-columns);
}

.footer .footer-col-7 {
  grid-template-columns: var(--footer-columns-value);
}

.footer .footer-col-7 .sub-item {
  color: #a5a5a5;
  padding-left: 30px;
  min-width: var(--footer-item-list-min-width);
}

.footer .footer-col-7 .sub-item:first-child {
  margin-right: 0;
}

.footer .footer-col-7 .sub-item a {
  color: #a5a5a5;
}

.footer .footer-col-7 .sub-item a:hover {
  color: #fff;
}

.footer .footer-col-7 .footer-logo img {
  width: unset;
  max-width: var(--footer-logo-width);
}

/**
 * 页面标题样式
 */
.simple-line, .product-section .product-details .item {
  overflow: hidden;
  /* 隐藏超出范围的内容 */
  text-overflow: ellipsis;
  /* 使用省略号 */
  white-space: nowrap;
  /* 不换行 */
}

.page-view {
  padding-bottom: 10px;
}

.page-view.mt_60 {
  margin-top: 60px;
}

.page-view .pv-big-title {
  font-size: var(--page-view-big-title-fontsize);
  font-weight: 400;
  text-align: center;
}

.page-view .pv-center-title {
  text-align: center;
  font-size: var(--page-view-title-fontsize);
  font-weight: 400;
  margin-bottom: 20px;
}

.page-view .pv-small-title {
  text-align: center;
  font-size: var(--page-view-small-title-fontsize);
  font-weight: 400;
  margin-bottom: 20px;
}

.page-view .pv-text-centect {
  font-size: var(--pv-text-centect-fontsize);
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 20px;
}

.text-left .pv-big-title {
  text-align: left;
}

.text-left .pv-center-title {
  text-align: left;
}

.about-text-box {
  padding: 0 20px;
}

.about-text-box .ab-note {
  font-size: var(--standard-fontsize);
  line-height: var(--standard-line-height);
  text-indent: 2em;
}

.about-text-box .ab-note p {
  margin-bottom: 10px;
}

.hor-image {
  width: 100%;
}

.hor-image img {
  max-width: 100%;
}

.field-block {
  cursor: pointer;
  border: 1px solid #ccc;
  border-radius: 10px;
}

.max-image-w-h {
  width: 100%;
  height: 100%;
}

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

/**
 * development
 */
.dev-text-wrap {
  padding: 0 20px;
  color: #fff;
  position: relative;
}

.dev-text-wrap .dev-text-box {
  font-size: 17px;
  line-height: 2;
  height: 50%;
}

.dev-text-wrap .dev-text-box span {
  color: var(--the-main-color);
}

.dev-text-wrap .dev-text-box .txt-title {
  text-indent: 0;
  font-size: 32px;
  font-weight: 700;
}

/**
 * service
 */
.feedback {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.form-containter {
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 20px;
  width: var(--service-form-width);
}

.contact-box .service {
  font-size: var(--contant-service-fontsize);
  padding-bottom: 10px;
  border-bottom: 5px solid #ffb100;
  margin-bottom: 30px;
}

.contact-box .address-box {
  margin-bottom: 50px;
}

.contact-box .address-box .ptit {
  margin-bottom: 20px;
  font-size: var(--address-title-fontsize);
}

.contact-box .address-box .pitem {
  font-size: var(--address-item-fontsize);
  line-height: 1.6;
}

.mailme .layui-form {
  font-size: var(--contact-form-fontsize);
}

.mailme textarea {
  width: 100%;
  height: 160px;
  padding: 8px 10px;
  border: 1px solid #e6e6e6;
}

.mailme .layui-form-item {
  margin-bottom: 25px;
}

.mailme .lay_inline {
  float: left;
  width: 48%;
}

.mailme .lay_inline_right {
  float: right;
  width: 48%;
}

.mailme input {
  padding: 3px 10px;
  height: 38px;
  width: 100%;
  border: 1px solid #e6e6e6;
}

.mailme input.button {
  width: 150px;
  background-color: #fff;
  border-color: var(--the-main-color);
  color: var(--the-main-color);
}

/**
 * contact
 */
.contact-block {
  grid-template-columns: var(--footer-bottom-grid-columns);
  grid-template-columns: 2.2fr repeat(4, 1fr);
  grid-gap: 2px;
  border-bottom: 2px solid #C0C0C0;
  padding: 0;
}

.contact-item .contact-title {
  color: #333;
  background-color: #C0C0C0;
  margin-bottom: 10px;
  font-size: var(--contact-item-title-fontsize);
  font-weight: 700;
  padding: 15px 10px;
}

.contact-item .contact-content {
  padding: 20px 10px;
  color: #808080;
  font-size: var(--contact-item-content-fontsize);
  font-weight: 500;
}

/**
  * about
  */
.at-sub-wrap {
  text-align: center;
  color: #333;
}

.at-sub-wrap .at-subimage {
  margin: 25px 0;
}

.at-sub-wrap .at-sub-title {
  color: var(--the-main-color);
  font-size: var(--at-sub-title-fontsize);
  font-weight: 700;
  margin-bottom: 20px;
}

.at-sub-wrap .at-sub-line {
  font-size: var(--at-sub-line-fontsize);
}

/**
 * products
 */
.search-wrap {
  user-select: none;
}

.search-wrap h3.base {
  font-size: 32px;
  font-weight: 400;
  margin: 0;
}

.search-wrap h3.big-margin {
  margin: 50px 0;
}

.search-wrap ul, .search-wrap li, .search-wrap dl, .search-wrap dt, .search-wrap dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

.search-wrap .spanel {
  height: 80px;
  background-color: #ededed;
}

.search-wrap .spanel ul li {
  margin-left: 10px;
  width: 240px;
  height: 80px;
  line-height: 80px;
  float: left;
}

.search-wrap .spanel ul li:first-child {
  width: 150px;
  text-align: right;
}

.search-wrap input[type="text"],
.search-wrap button {
  height: 40px;
  width: 230px;
  padding: 3px 9px;
  border: 1px solid #CECECE;
  box-sizing: border-box;
}

.search-wrap button {
  width: 100px;
  background-color: #ededed;
  cursor: pointer;
}

.search-wrap button:hover {
  background-color: #fff;
}

.search-wrap .type {
  overflow: hidden;
  margin-top: 30px;
  border: 1px solid #CECECE;
}

.search-wrap .type dl {
  overflow: hidden;
  padding: 0 25px 10px 25px;
  margin-top: 21px;
  border-bottom: 1px solid #CECECE;
  min-height: 45px;
}

.search-wrap .type dl:last-child {
  border: 0;
}

.search-wrap .type dl dt {
  width: 165px;
  float: left;
  display: inline;
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 8px;
}

.search-wrap .type dl dd {
  overflow: hidden;
}

.search-wrap .type dl dd ul li {
  width: 112px;
  float: left;
  margin: 0 10px 8px 0;
  font-size: var(--standard-fontsize);
  cursor: pointer;
  border: 1px solid #fff;
  border-color: rgba(230, 230, 230, 0.8);
  background-color: rgba(245, 245, 245, 0.8);
  border-radius: 5px;
}

.search-wrap .type dl dd ul li span {
  padding: 0 10px;
  display: inline-block;
  height: 35px;
  min-width: 50px;
  line-height: 35px;
}

.search-wrap .type dl dd ul li.act {
  color: #fff;
  background-color: var(--title-font-color);
}

.search-wrap .type dl dd ul li:hover {
  border-color: rgba(138, 138, 138, 0.8);
}

.product-title-box {
  margin: 50px 0 20px 0;
  display: flex;
  line-height: 60px;
  border-radius: 5px 5px 0 0;
}

.product-title-box .item {
  width: 50%;
  background-color: #808080;
  color: #fff;
  padding-left: 15px;
  font-size: 17px;
}

.product-detail-title {
  color: #333;
  background-color: #DDD;
  margin: 100px 0 50px 0;
  line-height: 60px;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
}

.product-section {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  border-bottom: 1px solid #808080;
  padding: 25px 0 40px;
}

.product-section .product-info {
  width: var(--product-item-info-width);
  display: flex;
}

.product-section .product-simple {
  width: 100%;
  gap: 60px;
}

.product-section .product-simple .product-image {
  flex: 0;
  width: auto;
  min-width: 40%;
}

.product-section .product-simple .product-image img {
  border-radius: 15px;
}

.product-section .product-simple .product-description {
  width: auto;
  flex: 1;
  margin: 0;
}

.product-section .product-simple .product-details {
  width: auto;
  flex: 1;
}

.product-section .product-simple .product-details .item {
  width: calc(100% / 3);
}

.product-section .product-simple .product-links {
  margin-top: 30px;
  margin-left: -30px;
}

.product-section .product-simple .product-links a {
  margin-left: 30px;
}

.product-section .product-image {
  width: var(--product-image-width);
}

.product-section .product-image img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

.product-section .product-description {
  width: calc(100% - var(--product-image-width));
  margin: 0 0 20px 20px;
}

.product-section .product-title {
  font-size: 24px;
  font-weight: bold;
  line-height: 4;
}

.product-section .product-title-container {
  display: flex;
  justify-content: space-between;
}

.product-section .product-title-container .head-title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 30px;
}

.product-section .product-links {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
}

.product-section .product-links a {
  margin-left: 15px;
  color: #333;
  text-decoration: none;
  line-height: 1.8;
  margin-bottom: 10px;
}

.product-section .product-links a:hover {
  text-decoration: underline;
  color: var(--the-main-color);
}

.product-section .product-links .pdf {
  padding-left: 20px;
  background: url(/images/product/pdf.jpg) no-repeat;
}

.product-section .product-links .file {
  padding-left: 24px;
  background: url(/images/product/file.jpg) no-repeat;
}

.product-section .pro-look {
  display: flex;
  align-items: flex-start;
  margin-left: 10px;
}

.product-section .pro-box-button {
  margin-top: 3px;
  padding: var(--product-see-button-padding);
  color: #fff;
  background-color: var(--title-font-color);
  border-radius: 5px;
  cursor: pointer;
  white-space: nowrap;
}

.product-section .product-desc-box {
  display: flex;
  justify-content: space-between;
}

.product-section .product-desc-box .pro-box-desc {
  line-height: 2;
  font-size: var(--product-standard-fontsize);
}

.product-section .product-tab-title {
  padding: 10px 0 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #d0d0d0;
  font-size: 16px;
  font-weight: 700;
}

.product-section .product-easy-desc {
  padding: 10px 0;
  line-height: 2;
  font-size: var(--product-standard-fontsize);
  margin-bottom: 30px;
}

.product-section .product-details {
  width: calc(100% - var(--product-item-info-width) - 4%);
  font-size: var(--product-standard-fontsize);
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
}

.product-section .product-details .item {
  box-sizing: border-box;
  padding-right: 10px;
  width: var(--product-details-item-width);
  margin-bottom: 10px;
  line-height: 1.8;
}

.no-border {
  border-width: 0;
}

.rel-product .node-title {
  position: relative;
  font-size: var(--about-culture-title-fontsize);
  font-weight: 600;
  padding: 20px 0 5px;
  margin-bottom: 15px;
}

.rel-product .node-title .title-line {
  position: absolute;
  left: 0;
  left: 0;
  bottom: 0;
  height: 3px;
  width: calc(100% / 4);
  background-color: #FFC000;
  z-index: -1;
}

.rel-product .node-title:first-child .title-line {
  background-color: var(--the-main-color);
}

.rel-product .product-box {
  display: flex;
  gap: 2px;
  flex-wrap: wrap;
}

.rel-product .proitem {
  width: calc(100% / 4 - 2px);
}

.rel-product .proitem img {
  max-width: 100%;
}

.rel-product .proitem .proitem-title {
  margin: 25px 0 50px 0;
  text-align: center;
  font-size: var(--product-item-title-fontsize);
}

.nothing {
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  text-align: center;
  height: 350px;
}

.nothing .nothing-icon {
  margin: 50px 0;
}

.nothing .nothing-text {
  font-size: 24px;
  color: #333;
  margin: 50px 0;
  line-height: 2;
}

/* www/dist/css/main.css */
.row-padding-1 {
  padding: 60px 0 40px;
}

.row-padding-2 {
  padding: 80px 0 0;
}

.banner .banner-box {
  width: 100%;
  max-width: 1920px;
  min-height: 300px;
  margin: 0 auto;
}

.banner img {
  width: 100%;
}

.grid-row {
  display: grid;
  grid-gap: var(--index-grid-gap);
  padding: var(--index-grid-gap);
  background-color: #fff;
}

.grid-row > div {
  overflow: hidden;
  /* background-color: #838383; */
}

.grid-row-2 {
  grid-template-columns: repeat(3, 1fr);
  grid-gap: var(--second-grid-gap);
  padding: var(--index-grid-gap);
}

/* www/dist/css/public.css */
#kkpager {
  width: 100%;
  margin-top: 50px;
  color: #333;
  text-align: center;
  font-size: 0px;
}

#kkpager * {
  box-sizing: border-box;
}

#kkpager a,
#kkpager span {
  display: inline-block;
  min-width: 48px;
  padding: 0px 15px;
  margin: 0 -1px 5px 0;
  font-size: 14px;
  height: 40px;
  line-height: 40px;
  border: 1px solid #c6c6c6;
  border-radius: 2px;
}

#kkpager a {
  color: #333;
  background-color: #fff;
}

#kkpager a:hover {
  color: var(--title-font-color);
}

#kkpager span.disabled {
  color: #d2d2d2;
  background-color: #FFF;
}

#kkpager span.curr {
  border-color: #A30000;
  color: #fff;
  background-color: #E70012;
}

#kkpager span.normalsize {
  border: 0;
  display: none;
}

#kkpager_gopage_wrap {
  display: inline-block;
  width: 42px;
  height: 20px;
  border: 1px solid #DFDFDF;
  margin: 0px 4px;
  padding: 0px;
  position: relative;
  left: 0px;
  top: 5px;
}

#kkpager_btn_go {
  width: 32px;
  height: 22px;
  line-height: 22px;
  padding: 0px;
  text-align: center;
  border: 0px;
  background-color: #0063DC;
  color: #FFF;
  left: 0px;
  top: -1px;
  position: absolute;
  display: none;
  cursor: pointer;
}

#kkpager_btn_go_input {
  width: 40px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border: 0px;
  position: absolute;
  left: 0px;
  top: 0px;
  outline: none;
}

:root {
  --grow-grid-lv: calc(16/12);
  --index-grid-template-columns: 40% auto auto;
  --title-font-color: #B5020B;
  --the-main-color: #E72D0F;
}

@media (min-width: 1750px) {
  :root {
    --header-height: 125px;
    --search-box-height: 65px;
    --search-box-fontsize: 15px;
    --logo-max-width: 100%;
    --Main-menu-height: 72px;
    --Main-menu-font-size: 18px;
    --menu-font-line-height: 35px;
    --menu-sub-margin: 20px;
    --container-width: 1600px;
    --index-grid-gap: 12px;
    --index-product-grid-gap: 15px;
    --index-news-card-fontsize: 21px;
    --wordview-fontsize: 19px;
    --index-col-box-title-fontsize: 22px;
    --index-com-intro-note-fontsize: 25px;
    --second-grid-gap: 35px;
    --third-grid-gap: 12px;
    --footer-bottom-menu-font-size: 18px;
    --footer-bottom-default-fontsize: 15px;
    --footer-bottom-h3-fontsize: 18px;
    --footer-block-image-sale: 1.1;
    --footer-margin-top-value: 60px;
    --footer-logo-width: 70%;
    --footer-columns-value: 2fr repeat(6, auto);
    --footer-item-list-min-width: 130px;
    --footer-company-logo-max-width: 100%;
    --footer-bottom-grid-columns: 3fr 2.5fr repeat(3, 1fr);
    --img-banner-sale: 1;
    --img-title-sale: 0.7;
    --third-text-item-padding: 40px 50px;
    --third-text-item-font-size: 18px;
    --third-text-item-line-height: 2.2;
    --third-button-padding: 0 30px 20px 0;
    --news-page-margin-top: 120px;
    --news-title-font-size: 30px;
    --news-title-margin-bottom: 100px;
    --news-detail-font-size: 20px;
    --news-detail-max-width: 1200px;
    --about-page-margin-top: 20px;
    --about-culture-title-fontsize: 21px;
    --about-culture-note-fontsize: 33px;
    --product-item-title-fontsize: 19px;
    --product-item-title-height: 55px;
    --learnBtn-fontsize: 18px;
    --intro-title-fontsize: 25px;
    --intro-note-fontsize: 21px;
    --contact-form-fontsize: 19px;
    --contant-service-fontsize: 60px;
    --address-title-fontsize: 32px;
    --address-item-fontsize: 19px;
    --jobs-table-fontsize: 18px;
    --custom-title-font-size: 43px;
    --service-form-width: 1400px;
    --contact-item-title-fontsize: 20px;
    --contact-item-content-fontsize: 18px;
    --standard-fontsize: 15px;
    --standard-title-font-size: 27px;
    --standard-line-height: 2;
    --page-view-big-title-fontsize: 38px;
    --page-view-title-fontsize: 32px;
    --page-view-small-title-fontsize: 16px;
    --pv-text-centect-fontsize: 15px;
    --at-sub-title-fontsize: 20px;
    --at-sub-line-fontsize: 25px;
    --index-product-grid-gap: 15px;
    --index-product-grid-padding: 20px;
    --product-see-button-padding: 10px 20px;
    --product-item-info-width: 50%;
    --product-details-item-width: calc(100%/3);
    --product-image-width: 28%;
    --product-standard-fontsize: 14px;
  }
}

@media (max-width: 1750px) {
  body {
    min-width: 1140px;
  }
  :root {
    --logo-max-width: 88%;
    --header-height: 115px;
    --search-box-height: 60px;
    --search-box-fontsize: 13px;
    --Main-menu-height: 60px;
    --Main-menu-font-size: 16px;
    --menu-font-line-height: 30px;
    --menu-sub-margin: 15px;
    --container-width: 1140px;
    --index-grid-gap: 6px;
    --index-product-grid-gap: 10px;
    --index-news-card-fontsize: 16px;
    --wordview-fontsize: 16px;
    --index-col-box-title-fontsize: 18px;
    --index-com-intro-note-fontsize: 19px;
    --second-grid-gap: 20px;
    --third-grid-gap: 8px;
    --footer-bottom-menu-font-size: 16px;
    --footer-bottom-default-fontsize: 13px;
    --footer-bottom-h3-fontsize: 15px;
    --footer-block-image-sale: 0.9;
    --footer-margin-top-value: 40px;
    --footer-logo-width: 70%;
    --footer-columns-value: 3fr repeat(6, 1fr);
    --footer-item-list-min-width: 90px;
    --footer-company-logo-max-width: 80%;
    --footer-bottom-grid-columns: 3fr 2.5fr repeat(3, 1fr);
    --img-banner-sale: 0.8;
    --img-title-sale: 0.53;
    --third-text-item-padding: 20px 30px;
    --third-text-item-font-size: 16px;
    --third-text-item-line-height: 2;
    --third-button-padding: 0 20px 10px 0;
    --news-page-margin-top: 80px;
    --news-title-font-size: 25px;
    --news-title-margin-bottom: 60px;
    --news-detail-font-size: 16px;
    --news-detail-max-width: 900px;
    --about-page-margin-top: 15px;
    --about-culture-title-fontsize: 19px;
    --about-culture-note-fontsize: 25px;
    --product-item-title-fontsize: 17px;
    --product-item-title-height: 47px;
    --learnBtn-fontsize: 14px;
    --intro-title-fontsize: 20px;
    --intro-note-fontsize: 16px;
    --contact-form-fontsize: 15px;
    --contant-service-fontsize: 40px;
    --address-title-fontsize: 27px;
    --address-item-fontsize: 17px;
    --jobs-table-fontsize: 14px;
    --custom-title-font-size: 35px;
    --service-form-width: 1000px;
    --contact-item-title-fontsize: 17px;
    --contact-item-content-fontsize: 15px;
    --standard-fontsize: 13px;
    --standard-title-font-size: 22px;
    --standard-line-height: 1.6;
    --page-view-big-title-fontsize: 28px;
    --page-view-title-fontsize: 22px;
    --page-view-small-title-fontsize: 14px;
    --pv-text-centect-fontsize: 13px;
    --at-sub-title-fontsize: 17px;
    --at-sub-line-fontsize: 20px;
    --index-product-grid-gap: 10px;
    --index-product-grid-padding: 15px;
    --product-see-button-padding: 8px 15px;
    --product-item-info-width: 60%;
    --product-details-item-width: calc(100%/2);
    --product-image-width: 28%;
    --product-standard-fontsize: 13px;
  }
  .about-text-box .ab-note p {
    margin-bottom: 5px;
  }
  .dev-text-wrap {
    padding: 0 0 0 10px;
  }
  .dev-text-wrap .dev-text-box {
    font-size: 14px;
    line-height: 1.7;
  }
  .dev-text-wrap .dev-text-box .txt-title {
    font-size: 21px;
  }
  .product-section .product-title-container .head-title {
    margin-bottom: 10px;
  }
  .product-section .product-easy-desc {
    padding: 5px 0;
    margin-bottom: 10px;
  }
  .product-section .product-tab-title {
    padding: 10px 0 10px;
    margin-bottom: 10px;
    font-size: 15px;
  }
  .product-section .product-details .item {
    margin-bottom: 5px;
  }
  .product-section .product-simple {
    gap: 30px;
  }
  .product-section .product-simple .product-links {
    margin-top: 15px;
  }
}

@media (min-width: 1950px) {
  .banner .banner-box {
    max-width: var(--container-width);
    box-sizing: border-box;
    padding: 0 20px;
  }
}
