@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Regular.eot');
  src: url('../fonts/Montserrat-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/Montserrat-Regular.woff2') format('woff2'), url('../fonts/Montserrat-Regular.woff') format('woff'), url('../fonts/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Bold.eot');
  src: url('../fonts/Montserrat-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/Montserrat-Bold.woff2') format('woff2'), url('../fonts/Montserrat-Bold.woff') format('woff'), url('../fonts/Montserrat-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}
body {
  font-family: 'Montserrat';
  --index-main-color: #df2323;
}
@-webkit-keyframes to-opacity-true {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes to-opacity-true {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes to-opacity-true {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes to-big {
  to {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    transform: translate(-50%, -50%) scale(1.1);
  }
}
@-moz-keyframes to-big {
  to {
    -moz-transform: translate(-50%, -50%) scale(1.1);
    transform: translate(-50%, -50%) scale(1.1);
  }
}
@keyframes to-big {
  to {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    -moz-transform: translate(-50%, -50%) scale(1.1);
    transform: translate(-50%, -50%) scale(1.1);
  }
}

@keyframes header-dropdown-in{
  0% {
    -webkit-transform: translateY(-50px) ;
    transform: translateY(-50px) ;
    opacity: 0;
}

100% {
    -webkit-transform: translateY(0) ;
    transform: translateY(0);
    opacity: 1;
}
}
 
.set-position-center {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.set-display-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.set-display-sb-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.set-text-overflow {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ui.container {
  padding: 0 15px;
  position: relative;
  max-width: 1630px;
  margin: auto;
  width: 100%;
}
#header {
  z-index: 11;
  position: absolute;
  width: 100%;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#header .nav {
  display: inline-block;
  width: 100%;
}
#header .ui.container {
  max-width: 1810px;
}
#header .nav .ui.menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
}
#header .nav .ui.menu .logo {
  display: inline-block;
  margin-left: 0;
  margin-right: auto;
  vertical-align: middle;
}
#header .nav .ui.menu .menu-box {
  display: inline-block;
  vertical-align: middle;
  margin-left: auto;
  margin-right: 0;
}
#header .nav .ui.menu .menu-box ul.menu > li {
  margin: 0 30px;
  font-size: 18px;
  /*font-weight: bold;*/
  color: white;
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  z-index: 100;
  float: left;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: uppercase;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover {
  color: var(--index-main-color);
  -webkit-transition: .5s .5s border;
  -moz-transition: .5s .5s border;
  transition: .5s .5s border;
}
#header .nav .ui.menu .menu-box ul.menu > li > a {
  display: block;
  padding: 40px 0 37px;
  position: relative;
}
#header .nav .ui.menu .menu-box ul.menu > li > a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 4px;
  background-color: var(--index-main-color);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#header .nav .ui.menu .menu-box ul.menu > li:hover > a::after {
  width: 100%;
}
#header .nav .ui.menu .menu-box ul.menu > li:nth-child(2) ul.sub-menu{
  width: 345px;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu {
  /*-webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;*/
  text-align: left;
  position: absolute;
  font-size: 15px;
  background: #fff;
  top: 100%;
  left: 0px;
  width: 300px;
  /*transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  -ms-transform: rotate3d(1, 0, 0, -90deg);
  -o-transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;*/
  /*-webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
  transition: opacity 0.3s, -webkit-transform 0.5s;
  -moz-transition: transform 0.5s, opacity 0.3s, -moz-transform 0.5s;
  transition: transform 0.5s, opacity 0.3s;
  transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s, -moz-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.3s;
  -moz-transition: -moz-transform 0.5s, opacity 0.3s;*/
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid var(--index-main-color);
  display: none;
  transform: translateX(-50%);
  -webkit-animation: header-dropdown-in 0.4s both .1s;
  animation: header-dropdown-in 0.4s both .1s;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li ul.sub-menu {
  left: 100%;
  top: 0;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li {
  display: block;
  float: none;
  padding: 0 15px;
  line-height: 40px;
  color: black;
  font-size: 16px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
  position: relative;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li a {
  display: block;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li:hover {
  background: #222;
  color: white;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li:hover ul.sub-menu,
#header .nav .ui.menu .menu-box ul.menu > li:hover > ul.sub-menu {
  /*-moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  -ms-transform: rotate3d(0, 0, 0, 0);
  -o-transform: rotate3d(0, 0, 0, 0);*/
  display: block;
  
}
#header .nav .ui.menu .h-search {
  display: inline-block;
  vertical-align: middle;
  margin-right: 30px;
  cursor: pointer;
  cursor: hand;
  background-color: var(--index-main-color);
  border-radius: 0 0 200px 200px;
  width: 65px;
  height: 100px;
  text-align: center;
  position: relative;
  margin-top: -39px;
  padding-top: 57px;
  margin-left: 60px;
}
#header .nav .ui.menu .h-search img {
  vertical-align: middle;
}
#header .nav .ui.menu .h-search::before {
  content: '';
  position: absolute;
  left: -35px;
  top: 54px;
  width: 1px;
  height: 25px;
  background-color: rgba(255, 255, 255, 0.2);
}
#header .nav .ui.menu .language {
  position: relative;
  cursor: pointer;
}
#header .nav .ui.menu .language img{
  width: 50px;
}
#header .nav .ui.menu .language ul {
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  text-align: left;
  position: absolute;
  font-size: 15px;
  background: #fff;
  top: 100%;
  right: 0px;
  width: 120px;
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  -ms-transform: rotate3d(1, 0, 0, -90deg);
  -o-transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
  transition: opacity 0.3s, -webkit-transform 0.5s;
  -moz-transition: transform 0.5s, opacity 0.3s, -moz-transform 0.5s;
  transition: transform 0.5s, opacity 0.3s;
  transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s, -moz-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.3s;
  -moz-transition: -moz-transform 0.5s, opacity 0.3s;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid var(--index-main-color);
  display: none \9;
}
#header .nav .ui.menu .language ul li {
  display: block;
  float: none;
  padding: 0 15px;
  line-height: 30px;
  color: black;
  font-size: 12px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
}
#header .nav .ui.menu .language ul li a {
  display: block;
}
#header .nav .ui.menu .language ul li a img {
  width: 23px;
  vertical-align: middle;
  margin-right: 6px;
}
#header .nav .ui.menu .language ul li:hover {
  background: #222;
  color: white;
}
#header .nav .ui.menu .language:hover ul {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  -ms-transform: rotate3d(0, 0, 0, 0);
  -o-transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header.active {
  position: fixed;
  background-color: rgb(38 54 74 / 80%);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
#header .nav .search-box {
  line-height: normal;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: none;
}
#header .nav .search-box form {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 60%;
  margin-left: -30%;
}
#header .nav .search-box form input {
  background: none;
  outline: none;
  border: none;
}
#header .nav .search-box form input[type="text"] {
  width: 100%;
  border-bottom: 1px solid #e1e1e1;
  font-size: 26px;
  color: #000;
  padding: 10px 0;
}
#header .nav .search-box form input[type="submit"] {
  width: 22px;
  height: 22px;
  background: url(../images/tc-zoom.png) no-repeat;
  position: absolute;
  right: 15px;
  top: 20px;
}
#header .nav .search-box form input[type="submit"]:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}
#header .nav .search-box .close {
  width: 30px;
  height: 30px;
  background: url(../images/close.png) no-repeat;
  position: absolute;
  right: 25px;
  top: 15px;
  cursor: pointer;
}
#banner .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50px;
  height: 80px;
  color: transparent;
  border: none;
  z-index: 1;
  outline: none;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  opacity: 1;
  border-radius: 5px;
}
#banner .slick-arrow:hover {
  background-color: #eb623a;
}
#banner:hover .slick-arrow {
  opacity: 1;
}
#banner .slick-prev {
  background: url("../images/banner-btn-l.png") no-repeat center center rgba(0, 0, 0, 0.3);
  left: 15px;
}
#banner .slick-next {
  background: url("../images/banner-btn-r.png") no-repeat center center rgba(0, 0, 0, 0.3);
  right: 15px;
}
#banner ul.slick-dots {
  position: absolute;
  bottom: 5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#banner ul.slick-dots li {
  width: 30px;
  height: 30px;
  display: inline-block;
  margin: 0 10px;
  border-radius: 100%;
  border: 6px solid white;
  background-color: #eb623a;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner ul.slick-dots li button {
  display: none;
}
#banner ul.slick-dots li.slick-active {
  border-color: #eb623a;
  background-color: white;
}
/*#banner .slick-slide .content {
  transition: .3s;
}
#banner .slick-active .content {
}*/
table {
  margin-bottom: 20px;
  word-break: break-word;
  width: 100% !important;
  height: auto !important;
  display: block;
  overflow: auto;
}
table tbody {
  display: table;
  width: 100% !important;
}
table td,
table th {
  padding: 5px 10px;
  border: 1px solid #666;
  width: auto !important;
  height: auto !important;
}
table tr {
  width: auto !important;
  height: auto !important;
}
table tr:nth-child(even) {
  background: #eee;
}
.wpulike.wpulike-default {
  display: none;
}
.prodet-page .wpulike.wpulike-default,
.newdet-page .wpulike.wpulike-default {
  display: inline-block;
}
.post-views-box {
  position: relative;
  margin-left: 20px;
}
.post-views-box .wp_ulike_btn.wp_ulike_put_image:after {
  background-image: url(../images/fw.png) !important;
  -webkit-filter: none;
  filter: none;
}
.wpulike {
  z-index: 10;
}
.wpulike.post-views-box {
  z-index: 5;
}
#banner .nivo-directionNav a {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.3);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  color: transparent;
  overflow: hidden;
  text-indent: -999em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner .nivo-directionNav a {
  opacity: 0;
}
#banner:hover .nivo-directionNav a {
  opacity: 1;
}
#banner .nivo-directionNav a:hover {
  background-color: #eb623a;
}
#banner .nivo-directionNav a.nivo-prevNav {
  background-image: url(../images/banner-btn-l.png);
  left: 40px;
}
#banner .nivo-directionNav a.nivo-nextNav {
  background-image: url(../images/banner-btn-r.png);
  right: 40px;
}
#banner .theme-default .nivo-controlNav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: auto !important;
}
#banner .theme-default .nivo-controlNav a {
  width: 25px  !important;
  height: 25px !important;
  background: #fff !important;
  border: 7px solid #7d7d7d !important;
  border-radius: 100% !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  margin: 0 8px !important;
}
#banner .theme-default .nivo-controlNav a.active {
  border-color: #eb623a !important;
}
html.mobile {
  overflow: hidden;
}
html.mobile .body-overflow-box {
  position: relative;
  left: 280px;
}
#mobile {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  display: none;
  z-index: 20;
  height: 100%;
}
#mobile:before {
  content: '';
  width: 200%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 100%;
  display: block;
  background: rgba(0, 0, 0, 0.13);
  z-index: -1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#mobile .mobile-logo {
  position: absolute;
  left: 100%;
  width: 100vw;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #111;
  -o-box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  -webkit-box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}
#mobile .mobile-logo img {
  max-height: 30px;
  margin: 0 auto;
  display: inline-block;
  vertical-align: middle;
}
#mobile #menu-on {
  width: 40px;
  height: 40px;
  background: #f5f5f5;
  position: absolute;
  left: 100%;
  top: 0;
  cursor: pointer;
  cursor: hand;
  z-index: 1;
}
#mobile #menu-on i {
  width: 23px;
  height: 2px;
  background: #222;
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
}
#mobile #menu-on i.line1 {
  top: 12px;
}
#mobile #menu-on i.line2 {
  top: 19px;
}
#mobile #menu-on i.line3 {
  top: 26px;
}
#mobile .menu-content {
  width: 100%;
  height: 100%;
  display: block;
  background: #222;
  padding: 40px 10% 60px;
  overflow-y: auto;
  color: white;
}
#mobile .menu-content::-webkit-scrollbar {
  width: 3px;
  border-radius: 1.5px;
}
#mobile .menu-content::-webkit-scrollbar-button {
  display: none;
}
#mobile .menu-content::-webkit-scrollbar-track {
  background-color: #222;
}
#mobile .menu-content::-webkit-scrollbar-thumb {
  background-color: #eee;
}
#mobile .menu-content h3 {
  font-size: 20px;
  color: inherit;
  text-transform: capitalize;
  margin-bottom: 10px;
}
#mobile .menu-content h3 i {
  font-size: 16px;
  position: relative;
  top: -1px;
}
#mobile .menu-content .menu-logo {
  display: block;
}
#mobile .menu-content .menu-logo img {
  margin: 0 auto;
}
#mobile .menu-content .menu-list {
  margin: 40px 0;
}
#mobile .menu-content .menu-list ul li {
  font-size: 15px;
  color: inherit;
  text-transform: uppercase;
  line-height: 20px;
}
#mobile .menu-content .menu-list ul li a {
  padding: 8px 0;
  display: block;
  line-height: 28px;
}
#mobile .menu-content .menu-list ul li a:hover {
  color: #eb623a;
  text-decoration: underline;
}
#mobile .menu-content .menu-list ul li li a {
  position: relative;
  padding-left: 15px;
  font-size: 14px;
  line-height: 28px;
}
#mobile .menu-content .menu-list ul li li a:after {
  content: '';
  width: 6px;
  height: 1px;
  background: white;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#mobile .menu-content .menu-list ul li li li a {
  padding-left: 25px;
}
#mobile .menu-content .menu-list ul li li li a:after {
  width: 12px;
}
#mobile .menu-content .mob-search form {
  position: relative;
}
#mobile .menu-content .mob-search form input {
  width: 100%;
  height: 45px;
  line-height: 45px;
  border-radius: 5px;
  border: none;
  padding: 0 15px;
  font-size: 14px;
  color: black;
}
#mobile .menu-content .mob-search form input[type="submit"] {
  width: 45px;
  height: 45px;
  background: url("../images/icon-search-white.png") no-repeat center center #222;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0;
}
#mobile .menu-content .mob-yuy {
  margin: 40px 0;
}
#mobile .menu-content .mob-yuy ul li {
  margin-bottom: 10px;
  color: inherit;
  font-size: 14px;
  line-height: 28px;
}
#mobile .menu-content .mob-yuy ul li img {
  max-width: 40px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
#mobile .menu-content .mob-share ul li {
  width: 30px;
  height: 30px;
  border-radius: 3px;
  background: #333;
  display: inline-block;
  text-align: center;
  line-height: 30px;
  color: white;
  font-size: 14px;
  margin-right: 3px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#mobile .menu-content .mob-share ul li:hover {
  background: #eb623a;
}
#mobile .menu-content #menu-off {
  margin-top: 40px;
  cursor: pointer;
  cursor: hand;
}
#mobile.active {
  left: 0;
}
#mobile.active:before {
  right: 0;
}
#mobile.active #menu-on i.line1 {
  -webkit-transform: translateX(-50%) rotateZ(45deg);
  -moz-transform: translateX(-50%) rotateZ(45deg);
  -ms-transform: translateX(-50%) rotateZ(45deg);
  transform: translateX(-50%) rotateZ(45deg);
  top: 12px;
  margin-left: 3px;
}
#mobile.active #menu-on i.line2 {
  opacity: 0;
}
#mobile.active #menu-on i.line3 {
  -webkit-transform: translateX(-50%) rotateZ(-45deg);
  -moz-transform: translateX(-50%) rotateZ(-45deg);
  -ms-transform: translateX(-50%) rotateZ(-45deg);
  transform: translateX(-50%) rotateZ(-45deg);
  top: 28px;
  margin-left: 3px;
}
#mobile.white .mobile-logo {
  -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background: white;
}
#mobile.white .menu-content {
  background: white;
  color: black;
}
#mobile.white .menu-content .menu-list ul li li a:after {
  background: black;
}
#mobile.white .menu-content .mob-search form input {
  border: 1px solid black;
}
#mobile.white .menu-content .mob-search form input[type="submit"] {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
@media screen and (max-width: 1000px) {
  a.zhutiyejiao{
        display: none !important;
  }
  #banner,
  .inner-banner {
    margin-top: 40px;
  }
}
#spotlight.show {
  display: inline-block;
  background: rgba(0, 0, 0, 0.3) !important;
}
#spotlight .scene img {
  border: 10px solid white !important;
  border-radius: 10px;
}
#spotlight .header {
  background: black !important;
}
.more {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  color: white;
  font-size: 15px;
  background-color: #231f20;
  height: 52px;
  line-height: 52px;
  border-radius: 8px;
  padding: 0 23px;
  position: relative;
  display: inline-block;
  z-index: 2;
  overflow: hidden;
}
.more i {
  margin-left: 57px;
  font-size: 24px;
  -webkit-transform: translateY(3px);
  -moz-transform: translateY(3px);
  -ms-transform: translateY(3px);
  transform: translateY(3px);
}
.more span {
  display: inline-block;
  margin-top: -4px;
}
.more::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 80px;
  height: 100%;
  background-color: var(--index-main-color);
  border-left: 2px solid white;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  z-index: -1;
  -webkit-transform: skew(324deg);
  -moz-transform: skew(324deg);
  -ms-transform: skew(324deg);
  transform: skew(324deg);
  -webkit-transform-origin: bottom right;
  -moz-transform-origin: bottom right;
  -ms-transform-origin: bottom right;
  transform-origin: bottom right;
}
.more:hover::after {
  width: 100%;
  -webkit-transform: skew(360deg);
  -moz-transform: skew(360deg);
  -ms-transform: skew(360deg);
  transform: skew(360deg);
  border: none;
}
.font-48 {
  font-size: 48px;
}
.font-36 {
  font-size: 36px;
}
.font-44 {
  font-size: 44px;
}
.lh-32 {
  line-height: 32px;
}
#banner {
  position: relative;
}
#banner ul li {
  position: relative;
  border-radius: 0 0 30px 30px;
}
#banner ul li > img {
  border-radius: inherit;
}
#banner ul li .content-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
#banner ul li .content-box .content {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: white;
}
#banner ul li .content-box .content .cms_name {
  font-size: 20px;
}
#banner ul li .content-box .content .h2 {
  font-size: 156px;
  line-height: 1;
  font-weight: bold;
  margin: 16px 0 36px;
  color: var(--index-main-color);
  width: 500px;
}
#banner ul li .content-box .content p {
  font-size: 18px;
  margin-bottom: 47px;
}
#banner .scroll {
  cursor: pointer;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  color: var(--index-main-color);
  text-align: center;
  font-size: 24px;
}
#banner .scroll img {
  vertical-align: bottom;
}
@-webkit-keyframes circle {
  100% {
    -webkit-transform: translate(-50%, -50%) scale(3);
    transform: translate(-50%, -50%) scale(3);
    opacity: 0;
  }
}
@-moz-keyframes circle {
  100% {
    -moz-transform: translate(-50%, -50%) scale(3);
    transform: translate(-50%, -50%) scale(3);
    opacity: 0;
  }
}
@keyframes circle {
  100% {
    -webkit-transform: translate(-50%, -50%) scale(3);
    -moz-transform: translate(-50%, -50%) scale(3);
    transform: translate(-50%, -50%) scale(3);
    opacity: 0;
  }
}
#index-body {
  overflow: hidden;
}
#index-body .tag {
  color: var(--index-main-color);
}
#index-body .ui.container.pt-10 {
  padding: 10px 15px 0;
}
#index-body .line {
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  position: relative;
}
#index-body .line::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 60%;
  height: 16px;
  background: var(--index-main-color);
  border-radius: 10px 0 0 10px;
}
#index-body .i-category {
  padding-top: 118px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}
#index-body .i-category .circle {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100px;
  height: 100px;
  border-radius: 100%;
}
#index-body .i-category .circle i {
  border-radius: 100%;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation: circle 2s ease-out infinite;
  -moz-animation: circle 2s ease-out infinite;
  animation: circle 2s ease-out infinite;
  width: 100%;
  height: 100%;
  border: 1px solid var(--index-main-color);
}
#index-body .i-category .circle i:nth-child(1) {
  -webkit-animation-delay: -0.5s;
  -moz-animation-delay: -0.5s;
  animation-delay: -0.5s;
}
#index-body .i-category .circle i:nth-child(2) {
  -webkit-animation-delay: -1s;
  -moz-animation-delay: -1s;
  animation-delay: -1s;
}
#index-body .i-category .circle i:nth-child(3) {
  -webkit-animation-delay: -1.5s;
  -moz-animation-delay: -1.5s;
  animation-delay: -1.5s;
}
#index-body .i-category .top {
  position: relative;
  margin-bottom: 32px;
}
#index-body .i-category .top .i-title {
  margin-top: 15px;
}
#index-body .i-category .top .mores {
  position: absolute;
  right: 0;
  bottom: 15px;
  font-size: 16px;
  height: 43px;
  line-height: 43px;
  background-color: rgba(0, 0, 0, 0.03);
  border-radius: 10px;
  padding: 0 20px;
  display: inline-block;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  z-index: 2;
  color: rgba(32, 32, 32, 0.7);
}
#index-body .i-category .top .mores i {
  width: 8px;
  height: 9px;
  border-radius: 100%;
  background-color: var(--index-main-color);
  position: relative;
  display: inline-block;
  z-index: 2;
  margin-right: 15px;
}
#index-body .i-category .top .mores i::after {
  content: "";
  position: absolute;
  left: -5px;
  top: -5px;
  right: -5px;
  bottom: -5px;
  background-color: rgba(223, 35, 35, 0.6);
  border-radius: 100%;
  z-index: -1;
}
#index-body .i-category .top .mores::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: var(--index-main-color);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  border-radius: inherit;
  z-index: -2;
}
#index-body .i-category .top .mores:hover::after {
  width: 100%;
}
#index-body .i-category .top .mores:hover {
  color: white;
}
#index-body .i-category .top .mores:hover i {
  background-color: white;
}
#index-body .i-category .top .mores:hover i::after {
  background-color: rgba(255, 255, 255, 0.6);
}
#index-body .i-category .list-box {
  position: relative;
}
#index-body .i-category .list-box .cat-one {
  margin-right: 0;
}
#index-body .i-category .list-box .btn{
  top: 0;
  position: absolute;
  right: 40.4%;
  z-index: 8;
  background: var(--index-main-color);
  color: #fff;
  font-size: 16px;
  height: 43px;
  line-height: 43px;
  border-radius: 0 0 0 20px;
  padding: 0 33px;
}

#index-body .i-category .list-box .category-line{
  top: 0;
  height: 100%;
  position: absolute;
  right: 40.4%;
  z-index: 9;
  background: #e0e0e0;
  width: 2px;
}
#index-body .i-category .list-box .arrow {
  position: absolute;
  /*right: 38%;*/
  top: 49%;
  z-index: 10;
}
#index-body .i-category .list-box .arrow.arrow1{
  left: 0;
}
#index-body .i-category .list-box .arrow.arrow2{
  right: 0;
}
#index-body .i-category .list-box .arrow div {
  width: 75px;
  height: 53px;
  line-height: 53px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
  text-align: center;
  position: relative;
}
/*#index-body .i-category .list-box .arrow .prev {
  margin-bottom: 40px;
}*/
#index-body .i-category .list-box .arrow div img {
  vertical-align: middle;
  z-index: 2;
  position: relative;
  -webkit-filter: brightness(0.45);
  filter: brightness(0.45);
}
#index-body .i-category .list-box .arrow div::after {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 100%;
  height: 100%;
  background: #eaebed;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  /*-webkit-transform: skew(-20deg);
  -moz-transform: skew(-20deg);
  -ms-transform: skew(-20deg);
  transform: skew(-20deg);*/
  border-radius: 5px;
}
#index-body .i-category .list-box .arrow .next img {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
#index-body .i-category .list-box .arrow div:hover::after {
  background: var(--index-main-color);
}
#index-body .i-category .list-box .arrow div:hover img {
  -webkit-filter: brightness(1);
  filter: brightness(1);
}
#index-body .i-category .list-box .cat-one{
    border-top: 2px solid #e0e0e0;
}
#index-body .i-category .list-box .item {
  /*border-top: 2px solid #e0e0e0;*/
  /*border-right: 2px solid #e0e0e0;*/
  padding-right: 0;
  padding-top: 89px;
  position: relative;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
}
#index-body .i-category .list-box .item .title a {
  display: block;
}
#index-body .i-category .list-box .item .btn {
  position: absolute;
  right: 0;
  top: 0;
  background: var(--index-main-color);
  color: white;
  font-size: 16px;
  height: 43px;
  line-height: 43px;
  border-radius: 0 0 0 20px;
  padding: 0 33px;
}
#index-body .i-category .list-box .item .content {
  margin-bottom: 60px;
  margin-top: 20px;
  color: #242422;
  opacity: 0.7;
  line-height: 1.45;
}
#index-body .i-category .list-box .item ul {
  margin: 0 -14px 5.3125vw;
}
#index-body .i-category .list-box .item ul .slick-list {
  padding-left: 0px;
}
#index-body .i-category .list-box .item ul li {
  padding: 0 14px;
}
#index-body .i-category .list-box .item ul li a {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  z-index: 2;
  position: relative;
  padding-top: 27px;
  padding-bottom: 28px;
  display: block;
  width: 100%;
}
#index-body .i-category .list-box .item ul li a .icon-plus {
  position: absolute;
  right: 0;
  top: 0;
  width: 49px;
  height: 48px;
  background-color: var(--index-main-color);
  border-radius: 24px 0px 24px 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
  -webkit-transform-origin: right top;
  -moz-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}
#index-body .i-category .list-box .item ul li:hover a .icon-plus {
  -webkit-transform: scale(1.306);
  -moz-transform: scale(1.306);
  -ms-transform: scale(1.306);
  transform: scale(1.306);
}
#index-body .i-category .list-box .item ul li a > img {
  margin: 0 auto;
}
#index-body .i-category .list-box .item ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #f6f6f6;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  z-index: -1;
  border-radius: 50px 0px 50px 50px;
}
#index-body .i-category .list-box .item ul li .product-title {
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
  margin-top: 19px;
  display: block;
  text-align: center;
  text-overflow: ellipsis;
overflow: hidden;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
display: -webkit-box;
}
#index-body .i-category .list-box .item ul li:hover .product-title {
  color: var(--index-main-color);
}
#index-body .i-category .list-box .item .current {
  margin-top: 80px;
  margin-bottom: 45px;
}
#index-body .i-category .list-box .item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  z-index: 6;
  display: none!important;
}
#index-body .i-category .list-box .cat-one > .slick-list {
  padding-right: 40.5%;
}
#index-body .i-category .list-box .cat-one > .slick-list > .slick-track .item {
  padding-left: 71px;
}
#index-body .i-category .list-box .cat-one .item .content{
  max-width: 521px;
}
#index-body .i-category .list-box .cat-one > .slick-list .slick-current .item {
  padding-left: 0;
  padding-right: 71px;
}
#index-body .i-category .list-box .cat-one > .slick-list .slick-current .item .content{
  max-width: 699px;
}
#index-body .i-category .list-box .cat-one > .slick-list .slick-current .item::after {
  opacity: 0;
  z-index: -3;
}
#index-body .i-solution {
  padding-bottom: 130px;
  position: relative;
  overflow: hidden;
}
#index-body .i-solution .line::after {
  left: auto;
  right: 100%;
  border-radius: 0 10px 10px 0;
}
#index-body .i-solution .wrap {
  padding: 98px 0 0px;
}
#index-body .i-solution .wrap .left {
  padding-left: 160px;
  padding-right: 60px;
  width: 57%;
}
#index-body .i-solution .wrap .left .application-arrows{
  width: 100%;
  justify-content: center;
  padding-right: 7.395833333333333vw;
  position: relative;
  z-index: 4;
  transform: translateY(50px);
}
#index-body .i-solution .wrap .left .application-arrows .prev,
#index-body .i-solution .wrap .left .application-arrows .next{
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  margin: 0 15px;
  border: 2px solid var(--index-main-color);
  background: var(--index-main-color);
  transition: .3s;
  cursor: pointer;
}
#index-body .i-solution .wrap .left .application-arrows i{
 font-size: 30px;
  color: #fff;
  transition: .3s;
  font-weight: bold;
}
#index-body .i-solution .wrap .left .application-arrows .prev:hover,
#index-body .i-solution .wrap .left .application-arrows .next:hover{
  background: transparent;
}
#index-body .i-solution .wrap .left .application-arrows .prev:hover i,
#index-body .i-solution .wrap .left .application-arrows .next:hover i{
  color: var(--index-main-color);
}

#index-body .i-solution .wrap .left .content {
  line-height: 29px;
  margin: 16px 0 34px;
  max-width: 809px;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: rgba(32, 32, 32, 0.7);
}
#index-body .i-solution .wrap .left .i-title {
  margin-top: 24px;
}
.action {
  -webkit-animation: to-opacity-true 0.6s;
  -moz-animation: to-opacity-true 0.6s;
  animation: to-opacity-true 0.6s;
}
#index-body .i-solution .wrap .left ul {
  margin: 0 -1.45833333vw;
  padding-right: 7.395833333333333vw;
}
#index-body .i-solution .wrap .left ul li {
  padding: 0 1.458333333333333vw;
}
#index-body .i-solution .wrap .left ul li .application-title {
  height: 0;
  overflow: hidden;
}
#index-body .i-solution .wrap .left ul li .application-content {
  height: 0;
  overflow: hidden;
}
#index-body .i-solution .wrap .left ul li .application-big-img {
  height: 0;
  overflow: hidden;
}
#index-body .i-solution .wrap .left ul li .video-link {
  display: block;
  height: 0;
  overflow: hidden;
}
#index-body .i-solution .wrap .left ul li img {
  width: 100%;
  border-radius: 10px;
  height: 250px;
}
#index-body .i-solution .wrap .right {
  width: 43%;
  position: relative;
  vertical-align: middle;
}
#index-body .i-solution .wrap .right a.play {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  -webkit-animation: to-big 1s linear infinite alternate;
  -moz-animation: to-big 1s linear infinite alternate;
  animation: to-big 1s linear infinite alternate;
  display: none;
}
#index-body .i-solution .wrap .right a.play i {
  color: var(--index-main-color);
  font-size: 30px;
}
#index-body .i-solution .wrap .right img {
  display: block;
  margin-left: auto;
}
#index-body .i-solution .wrap .right .mores {
  position: absolute;
  left: -2.5vw;
  top: 56%;
  background: transparent;
  font-size: 15px;
  height: 83px;
  line-height: 83px;
  padding: 0 30px;
  z-index: 2;
  color: white;
  display: inline-block;
}
#index-body .i-solution .wrap .right .mores::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: skew(-10deg);
  -moz-transform: skew(-10deg);
  -ms-transform: skew(-10deg);
  transform: skew(-10deg);
  background: var(--index-main-color);
  border-radius: 8px;
  z-index: -1;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
}
#index-body .i-solution .wrap .right .mores:hover::after {
  background: rgba(0, 0, 0, 0.9);
}
#index-body .i-solution .bottom-line {
  position: absolute;
  left: 0;
  bottom: 120px;
  width: 38%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
#index-body .i-solution .bottom-line i {
  width: 50%;
  height: 3px;
  position: relative;
  display: inline-block;
  background: #df2323;
}
#index-body .i-solution .bottom-line i::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background: var(--index-main-color);
}
#index-body .i-solution .bottom-line i:nth-child(1)::after {
  background: #ec6262;
}
#index-body .i-solution .bottom-line i:nth-child(2) {
  background: rgba(223, 35, 35, 0.2);
}
#index-body .i-solution .bottom-line i:nth-child(2)::after {
  background: #df2323;
}
#index-body .i-about {
  background: #f5f5f5;
}
#index-body .i-about .line {
  background: #f5f5f5;
  margin-top: -8px;
}
#index-body .i-about .wrap {
  padding-top: 107px;
}
#index-body .i-about .wrap .left {
  position: relative;
  z-index: 2;
}
#index-body .i-about .wrap .left .video-box{
 border-radius: 0 68px 68px 0;
 transform: skew(10deg) translateX(-42px);
 overflow: hidden;
 background: whitesmoke;
}
#index-body .i-about .wrap .left .video-box video{
 transform: skew(-10deg) translateX(42px);
 vertical-align: bottom;
}
#index-body .i-about .wrap .left .num {
  position: absolute;
  right: -2vw;
  top: 47.5%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: white;
  font-size: 15px;
  padding: 34px 50px 24px;
}
#index-body .i-about .wrap .left .num em {
  font-size: 46px;
  font-weight: bold;
  padding-right: 19px;
}
#index-body .i-about .wrap .left .num::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--index-main-color);
  z-index: -1;
  -webkit-transform: skew(-10deg);
  -moz-transform: skew(-10deg);
  -ms-transform: skew(-10deg);
  transform: skew(-10deg);
  border-radius: 25px;
  -webkit-box-shadow: 0px 0px 28px 0px rgba(0, 0, 0, 0.13);
  box-shadow: 0px 0px 28px 0px rgba(0, 0, 0, 0.13);
}
#index-body .i-about .wrap .left .img {
  position: absolute;
  top: 11%;
  right: -60px;
  z-index: -1;
}
#index-body .i-about .wrap .right {
  padding-right: 200px;
  /*padding-top: 48px;*/
}
#index-body .i-about .wrap .right .box {
  background: white;
  -webkit-box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.05);
  border-radius: 30px;
  width: 80%;
  padding: 48px 45px 55px;
  margin-left: auto;
  z-index: 3;
  position: relative;
}
#index-body .i-about .wrap .right .box .i-title {
  line-height: 55px;
  margin: 13px 0 25px;
}
#index-body .i-about .wrap .right .box .content {
  line-height: 1.95;
  margin-bottom: 36px;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: rgba(29, 29, 27, 0.7);
}
#index-body .i-about .bottom {
  background: url(../images/about-bottom-bg.png) no-repeat;
  padding-top: 260px;
  position: relative;
  margin-top: -235px;
  padding-bottom: 100px;
}
#index-body .i-about .bottom .right-img {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 5;
}
#index-body .i-about .bottom ul {
  margin: -22px;
}
#index-body .i-about .bottom ul li {
  padding: 22px;
}
#index-body .i-about .bottom ul li .box {
  padding: 0 25px 50px;
  border-radius: 20px;
  border: 2px solid #d8d8d8;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  background: white;
}
#index-body .i-about .bottom ul li .box .icon {
  display: inline-block;
  padding: 20px 30px;
  position: relative;
  -webkit-transform: translate(30px, -50%);
  -moz-transform: translate(30px, -50%);
  -ms-transform: translate(30px, -50%);
  transform: translate(30px, -50%);
}
#index-body .i-about .bottom ul li .box .icon img {
  z-index: 2;
  position: relative;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#index-body .i-about .bottom ul li .box .icon::after {
  border-radius: 16px;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
  -webkit-transform: skew(-10deg);
  -moz-transform: skew(-10deg);
  -ms-transform: skew(-10deg);
  transform: skew(-10deg);
  border: 2px solid #d8d8d8;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#index-body .i-about .bottom ul li .box p {
  font-size: 20px;
  line-height: 32px;
  font-weight: bold;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  color: #a4a4a4;
}
#index-body .i-about .bottom ul li .box:hover {
  -webkit-box-shadow: 11px 11px 28px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 11px 11px 28px 0px rgba(0, 0, 0, 0.06);
  border-color: transparent;
}
#index-body .i-about .bottom ul li .box:hover .icon::after {
  border-color: transparent;
  -webkit-box-shadow: 11px 11px 28px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 11px 11px 28px 0px rgba(0, 0, 0, 0.06);
}
#index-body .i-about .bottom ul li .box:hover .icon img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}
#index-body .i-about .bottom ul li .box:hover p {
  color: var(--index-main-color);
}
#index-body .i-news {
  padding: 60px 0 132px;
  position: relative;
  margin-top: 55px;
}
#index-body .i-news .line::after {
  left: unset;
  right: 100%;
  border-radius: 0 8px 8px 0;
}
#index-body .i-news .line {
  height: 2px;
  background-color: #e0e0e0;
}
#index-body .i-news .top {
  position: relative;
  margin-top: 103px;
}
#index-body .i-news .top .mores {
  position: absolute;
  right: 0;
  bottom: 14px;
  font-size: 16px;
  height: 43px;
  line-height: 43px;
  background-color: rgba(0, 0, 0, 0.03);
  border-radius: 10px;
  padding: 0 20px;
  display: inline-block;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  z-index: 2;
  color: rgba(20, 20, 20, 0.7);
}
#index-body .i-news .top .mores i {
  width: 8px;
  height: 9px;
  border-radius: 100%;
  background-color: var(--index-main-color);
  position: relative;
  display: inline-block;
  z-index: 2;
  margin-right: 11px;
}
#index-body .i-news .top .mores i::after {
  content: "";
  position: absolute;
  left: -5px;
  top: -5px;
  right: -5px;
  bottom: -5px;
  background-color: rgba(223, 35, 35, 0.3);
  border-radius: 100%;
  z-index: -1;
}
#index-body .i-news .top .mores::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: var(--index-main-color);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  border-radius: inherit;
  z-index: -2;
}
#index-body .i-news .top .mores:hover::after {
  width: 100%;
}
#index-body .i-news .top .mores:hover {
  color: white;
}
#index-body .i-news .top .mores:hover i {
  background-color: white;
}
#index-body .i-news .top .mores:hover i::after {
  background-color: rgba(255, 255, 255, 0.6);
}
#index-body .i-news .i-title {
  margin: 22px 0 61px;
}
#index-body .i-news ul {
  margin: -32px;
}
#index-body .i-news ul li {
  padding: 32px;
}
#index-body .i-news ul li .box {
  background-color: white;
  border-radius: 20px;
  padding: 30px 0;
}
#index-body .i-news ul li .box .img {
  display: block;
  border-radius:20px; 
}
#index-body .i-news ul li .box .title {
  margin-top: 36px;
  font-size: 20px;
  line-height: 36px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 17px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  margin-left: 18px;
  margin-right: 18px;
}
#index-body .i-news ul li .box .title a{
  display: block;
  height: 72px;
}
#index-body .i-news ul li .box .content {
  font-size: 16px;
  line-height: 31px;
  opacity: 0.5;
  margin: 28px 0 48px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
   padding-left: 18px;
  padding-right: 18px;
}
#index-body .i-news ul li .box .time {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-size: 18px;
  color: #594b4b;
   padding-left: 18px;
  padding-right: 18px;
}
#index-body .i-news ul li .box .time .mores {
  position: relative;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#index-body .i-news ul li .box .time .mores::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: black;
}
#index-body .i-news ul li .box .time span {
  margin-top: 12px;
  opacity: 0;
}
#index-body .i-news ul li .box:hover .title {
  color: var(--index-main-color);
}
#index-body .i-news .slick-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
  margin-top: 20px;
}
#index-body .i-news .slick-dots li {
  width: 12px;
  height: 12px;
  border-radius: 100%;
  border: 1px solid var(--index-main-color);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  margin: 0 5px;
  padding: 0;
}
#index-body .i-news .slick-dots li button {
  display: none;
}
#index-body .i-news .slick-dots li.slick-active {
  background: var(--index-main-color);
}
.i-form {
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.i-form .box {
  background: url(../images/contact-bg.png) no-repeat;
  padding: 36px 85px;
  border-radius: 20px;
}
.i-form .box .left {
  vertical-align: middle;
}
.i-form .box .left .h5 {
  font-size: 30px;
  font-weight: bold;
  color: white;
  margin-bottom: 9px;
}
.i-form .box .left p {
  font-size: 16px;
  color: #fff;
}
.i-form .box .right {
  vertical-align: middle;
  text-align: right;
}
.i-form .box .right .mores {
  background: white;
  color: var(--index-main-color);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  font-weight: bold;
  font-size: 16px;
  height: 53px;
  line-height: 53px;
  border-radius: 12px;
  display: inline-block;
  padding: 0 30px;
}
.i-form .box .right .mores:hover {
  background: #222;
}
#footer {
  background: #1c293a;
  margin-top: 75px;
}
#footer .top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 113px;
}
#footer .top h5 {
  color: white;
  position: relative;
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 19px;
  margin-bottom: 23px;
}
#footer .top h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 90px;
  background: var(--index-main-color);
}
#footer .top .one {
  max-width: 320px;
  margin-top: -27px;
}
#footer .top .four .four-top{
  justify-content: space-between;
}
#footer .top .four .four-top .right{
  margin-top: 6px;
}
#footer .top .four .four-top .right a{
    font-size: 18px;
    color: var(--index-main-color);
    margin-left: 15px;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border:1px solid var(--index-main-color);
}
#footer .top .four .four-top .right a:hover{
  background: #fff;
  border-color: #fff;
}
#footer .top .four,
#footer .top .two,
#footer .top .three {
  margin-top: -5px;
}
#footer .top .four h5 {
  margin-bottom: 31px;
}
#footer .top .one .logo {
  border-bottom: 4px solid var(--index-main-color);
  display: inline-block;
  padding-bottom: 18px;
  margin-bottom: 34px;
  width: 217px;
  text-align: center;
}
#footer .top .one .logo > img {
  margin: 0 auto;
}
#footer .top .one ul li {
  position: relative;
  padding-left: 27px;
  margin-bottom: 4px;
}
#footer .top .one ul li:last-child {
  line-height: 2;
  margin-top: 11px;
}
#footer .top .one ul li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 25px;
  height: 100%;
}
#footer .top .one ul li:nth-child(1)::after {
  background: url(../images/f-phone.png) no-repeat left top;
}
#footer .top .one ul li:nth-child(2)::after {
  content: "\f232";
  font-family: "FontAwesome";
  font-size: 20px;
  opacity: 0.6;
  top: 0px;
}
#footer .top .one ul li:nth-child(3)::after {
  background: url(../images/f-fax.png) no-repeat left top;
}
#footer .top .one ul li:nth-child(4)::after {
  background: url(../images/f-add.png) no-repeat left top;
}
#footer .top ul li {
  font-size: 16px;
  color: white;
  margin-bottom: 8px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  line-height: 28px;
}
#footer .top .two ul li:hover,
#footer .top .three ul li:hover {
  color: var(--index-main-color);
}
#footer .top .four {
  max-width: 500px;
}
#footer .top .two {
  margin-left: 1.2vw;
}
#footer .top .four form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
}
#footer .top .four form textarea,
#footer .top .four form input {
  width: 49%;
  background: rgba(255, 255, 255, 0.14);
  border: none;
  font-size: 16px;
  height: 41px;
  border-radius: 8px;
  margin-bottom: 21px;
  padding-left: 10px;
  color: #fff;
}
#footer .top .four form textarea::-webkit-input-placeholder, #footer .top .four form input::-webkit-input-placeholder {
  color: rgba(241, 241, 241, 0.7);
}
#footer .top .four form textarea:-moz-placeholder, #footer .top .four form input:-moz-placeholder {
  color: rgba(241, 241, 241, 0.7);
}
#footer .top .four form textarea::-moz-placeholder, #footer .top .four form input::-moz-placeholder {
  color: rgba(241, 241, 241, 0.7);
}
#footer .top .four form textarea:-ms-input-placeholder, #footer .top .four form input:-ms-input-placeholder {
  color: rgba(241, 241, 241, 0.7);
}
#footer .top .four form textarea::placeholder,
#footer .top .four form input::placeholder {
  color: rgba(241, 241, 241, 0.7);
}
#footer .top .four form textarea {
  width: 100%;
  height: 144px;
  padding: 10px;
  margin-bottom: 0;
}
#footer .top .four form input[type="submit"] {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: url(../images/f-arrow.png) no-repeat;
  width: 50px;
  height: auto;
  margin-bottom: 0;
  padding-left: 0;
}
#footer .bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 17px 0 9px;
  line-height: 30px;
}
#footer .bottom a.foothuaw {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 430px;
  display: inline-block;
  vertical-align: middle;
}
#footer .bottom .left {
  font-size: 16px;
  color: white;
  opacity: 0.5;
  vertical-align: middle;
}
#footer .bottom .left .svg-link {
  display: inline-block;
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
}
#footer .bottom .left svg {
  display: inline-block;
  vertical-align: middle;
  width: auto;
  max-height: 29px;
  fill: #ffffff;
}
#footer .bottom .left svg text {
  fill: #ffffff;
}
#footer .bottom .left img {
  height: 18px;
  vertical-align: middle;
  margin: 0;
}
#footer .bottom .right {
  vertical-align: middle;
}
#footer .bottom .right a {
  font-size: 24px;
  color: var(--index-main-color);
  margin-left: 44px;
}
@media screen and (max-width: 1280px) {
  #index-body .i-solution .wrap .left ul {
    padding-right: 0;
  }
  #header .nav .ui.menu .h-search{
    margin-left: 0;
  }
  #footer .top .two{
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  #header .nav .ui.menu .items {
    display: none;
  }
  #index-body .i-solution .wrap .right .mores {
    left: 15px;
  }
  #index-body .i-solution .wrap .left .application-arrows{
    transform: translateY(10px);
    padding-right: 0;
  }
  #index-body .i-solution .wrap .left .application-arrows .prev, #index-body .i-solution .wrap .left .application-arrows .next{
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 700px) {
  #index-body .i-news {
    padding-bottom: 60px;
  }
  #index-body .i-category .list-box .btn,
  #index-body .i-category .list-box .category-line{
    right: 0;
  }
}
@media screen and (max-width: 500px) {
  #index-body .i-solution .wrap .right .mores {
    height: 40px;
    line-height: 40px;
  }
  #index-body .i-category {
    padding-top: 60px;
  }
  #index-body .i-solution .wrap {
    padding-top: 60px;
  }
  #index-body .i-about .wrap {
    padding-top: 60px;
  }
  #index-body .i-about .bottom {
    margin-top: -260px;
  }
  #index-body .i-news {
    padding-top: 0;
  }
  #index-body .i-news .top {
    margin-top: 60px;
  }
  .i-form .box .right .mores {
    height: 38px;
    line-height: 38px;
  }
  #footer .top {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 1600px) {
  /*.ui.container {
    max-width: 1350px;
  }*/
  #header .nav .ui.menu .menu-box ul.menu > li {
    margin: 0 28px;
  }
  #banner ul li .content-box .content .h2 {
    font-size: 44px;
    line-height: 57px;
  }
  .font-48 {
    font-size: 38px;
  }
  #index-body .i-about .wrap .right {
    padding-right: 50px;
  }
  .font-36 {
    font-size: 28px;
  }
  #index-body .i-about .wrap .right .box .i-title {
    line-height: 40px;
  }
  #index-body .i-about .wrap .left .num em {
    font-size: 34px;
  }
  #index-body .i-solution .wrap .left {
    padding-left: 80px;
  }
  .font-44 {
    font-size: 32px;
  }
  #index-body .i-solution .bottom-line {
    bottom: 80px;
  }
}
@media screen and (max-width: 1400px) {
  /*.ui.container {
    max-width: 1150px;
  }*/
  #header .nav .ui.menu .menu-box ul.menu > li {
    margin: 0 15px;
  }
  #banner ul li .content-box .content .h2 {
    font-size: 36px;
    line-height: 47px;
  }
  .font-48 {
    font-size: 30px;
  }
  #index-body .i-category .list-box .arrow {
    right: 38%;
  }
  #index-body .i-product ul li .box .img-box {
    padding: 25px 0;
  }
  #index-body .i-about .wrap .right {
    padding-right: 20px;
    padding-top: 0;
  }
  #index-body .i-about .wrap .right .box {
    width: 95%;
  }
  #index-body .i-about .bottom ul li .box p {
    font-size: 16px;
    line-height: 26px;
  }
  .i-form .box .left {
    width: 70%;
  }
  .i-form .box .right {
    width: 30%;
  }
  #footer .top .four {
    max-width: 415px;
  }
}
@media screen and (max-width: 1200px) {
  /*.ui.container {
    max-width: 970px;
  }*/
  #header .nav .ui.menu .menu-box ul.menu > li {
    margin: 0 8px;
    font-size: 14px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li > a {
    padding: 29px 0;
  }
  #banner ul li .content-box .content .h2 {
    font-size: 31px;
    line-height: 41px;
  }
  #banner ul li .content-box .content .cms_name {
    font-size: 20px;
  }
  #index-body .i-category .list-box .item {
    padding-right: 70px;
  }
  .font-36 {
    font-size: 23px;
  }
  #index-body .i-about .wrap .right .box .content {
    margin-bottom: 25px;
    max-height: 180px;
    overflow: auto;
  }
  #index-body .i-about .wrap .right .box .i-title {
    line-height: 30px;
    margin: 6px 0 11px;
  }
  #index-body .i-news ul {
    margin: -12px;
  }
  #index-body .i-news ul li {
    padding: 12px;
  }
  .i-form .box .left .h5 {
    font-size: 24px;
  }
  #footer .top .four {
    max-width: 270px;
  }
  #footer .top .four form {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #footer .top .four form input {
    width: 100%;
  }
}
@media screen and (max-width: 1000px) {
  #header {
    display: none;
  }
  #mobile {
    display: block;
  }
  /*.ui.container {
    max-width: 700px;
  }*/
  #banner ul li .content-box .content {
    width: 87%;
  }
  #banner ul li .content-box .content .h2 {
    font-size: 26px;
    line-height: 34px;
  }
  #index-body .i-category .list-box .cat-one > .slick-list {
    padding-right: 0px;
  }
  #index-body .i-category .list-box .arrow {
    display: none !important;
  }
  #index-body .i-product .bottom {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #index-body .i-product .bottom .left {
    width: 100%;
  }
  #index-body .i-product .bottom .right {
    width: 100%;
    margin-top: 20px;
  }
  #index-body .i-about .wrap .left {
    width: 100%;
  }
  #index-body .i-about .wrap .right {
    width: 100%;
  }
  #index-body .i-about .bottom ul li {
    width: 50%;
    margin-bottom: 20px;
  }
  #index-body .i-solution .wrap .left {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  #index-body .i-solution .wrap .right {
    width: 100%;
    margin-top: 30px;
  }
  .i-form .box {
    padding-left: 40px;
    padding-right: 40px;
  }
  #footer .top .three,
  #footer .top .two {
    display: none;
  }
  #footer .bottom {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #footer .bottom a.foothuaw,
  .inner-banner .text h2.singhuaw.font-148 {
    display: none;
  }
}
@media screen and (max-width: 700px) {
  #banner ul li .content-box .content {
    width: 100%;
  }
  #banner ul li .content-box .content .h2 {
    font-size: 20px;
    line-height: 30px;
    margin: 8px 0;
  }
  #banner ul li .content-box .content .cms_name {
    font-size: 16px;
  }
  #banner ul li .content-box .content p {
    font-size: 14px;
    opacity: 0.5;
    margin-bottom: 8px;
  }
  #banner .scroll {
    margin-bottom: -50px;
    display: none;
  }
  #index-body .i-category .top .mores {
    position: relative;
    margin-top: 10px;
  }
  #index-body .i-category .list-box .item {
    padding-right: 20px;
  }
  .font-44 {
    font-size: 26px;
  }
  #index-body .i-news .top .mores {
    position: relative;
    margin-top: 10px;
  }
  #index-body .i-news .i-title {
    margin: 8px 0 14px;
  }
  .font-20 {
    font-size: 18px;
  }
  #index-body .i-news .top {
    margin-bottom: 30px;
  }
  .i-form .box {
    background-size: cover;
    padding: 35px 15px;
    margin-top: 55px;
  }
  .i-form .box .left {
    width: 100%;
  }
  .i-form .box .right {
    width: 100%;
    margin-top: 20px;
    text-align: left;
  }
  .i-form {
    -webkit-transform: translateY(-28%);
    -moz-transform: translateY(-28%);
    -ms-transform: translateY(-28%);
    transform: translateY(-28%);
  }
  #footer .top {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #footer .top .one {
    max-width: 100%;
  }
  #footer .top .four {
    max-width: 100%;
  }
  #index-body .i-partner {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  #banner ul li .content-box .content .cms_name,
  #banner ul li .content-box .content p {
    display: none;
  }
  #banner ul li .content-box .content .h2 {
    font-size: 15px;
    line-height: 22px;
    margin: 8px 0;
  }
  .more {
    font-size: 13px;
    height: 40px;
    line-height: 40px;
  }
  .font-48 {
    font-size: 22px;
  }
  #index-body .i-category {
    padding-bottom: 40px;
  }
  #index-body .i-about .bottom .right-img,
  #index-body .i-about .wrap .left .num {
    display: none;
  }
  #index-body .i-about .wrap .right .box {
    width: 100%;
    padding: 50px 15px;
  }
  #index-body .i-about .wrap .right {
    padding-left: 15px;
    padding-right: 15px;
  }
  #index-body .i-about .bottom ul li {
    width: 100%;
  }
  .font-44 {
    font-size: 22px;
  }
}



/*内页 inner css*/
.inner-banner{
    padding-top: 180px;
  }
  .inner-banner .container{
    max-width: 1580px;
  }
  .inner-banner {
    position: relative;
    height: 435px;
    background-image: url(../images/banner115.jpg);
    background-size: cover ;
    background-repeat: no-repeat;
    background-position: center center;
    padding-top: 0;
  }
  .about {
    position: relative;
    height: 935px;
    background-image: url(../images/inner-about-banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding-top: 0;
  }
  .inner-banner .text {
    width: 100%;
    padding: 0 20px;
    text-align: center;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 3;
  }
  .inner-banner .text h2 {
    color: #fff;
    font-weight: bold;
  }
  .inner-banner .text .mbx {
    font-size: 16px;
    color: #fff;
    text-align: center;
    line-height: 30px;
  }
  .inner-banner.about img.dec-img {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .font-148 {
    font-size: 148px;
    line-height: 1;
    margin-bottom: 40px;
  }
  .font-148 .mbx {
    font-size: 16px;
    text-align: center;
    line-height: 1.5;
  }
  .inner-page h3.tit3 {
    width: 100%;
    font-weight: bold;
    text-align: center;
    position: relative;
  }
  .inner-page h3.tit3:before {
    height: 1px;
    width: 30%;
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    background: #000;
  }
  .inner-page h3.tit3:after {
    height: 1px;
    width: 30%;
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    background: #000;
  }
  .about-page .ui.container {
    max-width: 1600px;
  }
  .about-page .about-1 {
    padding-top: 80px;
    padding-bottom: 90px;
  }
  .about-page .about-1 .ui.container {
    text-align: center;
    padding: 0 60px;
  }
  .about-page .about-1 .ui.container h3 {
    margin-bottom: 45px;
  }
  .about-page .about-1 .ui.container p {
    text-align: left;
    line-height: 1.875;
    color: #636363;
    margin-bottom: 25px;
  }
  .about-page .about-1 .ui.container ul.datalist {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -25px;
  }
  .about-page .about-1 .ui.container ul.datalist li {
    text-align: center;
    border-right: 1px solid  #aaa;
    margin-top: 25px;
  }
  .about-page .about-1 .ui.container ul.datalist li:nth-child(4) {
    border: none;
  }
  .about-page .about-1 .ui.container ul.datalist li img {
    margin: 0 auto;
  }
  .about-page .about-1 .ui.container ul.datalist li p {
    color: #636363;
    margin-top: 10px;
    margin-bottom: 20px;
    text-align: center;
  }
  .about-page .about-1 .ui.container ul.datalist li span {
    color: #333;
    font-weight: bold;
    font-size: 48px;
  }
  .about-page .about-2 {
    padding-top: 105px;
    padding-bottom: 90px;
    background: url(../images/about-history-bj.jpg) center center no-repeat;
    background-size: cover;
  }
  .about-page .about-2 .ui.container {
    position: relative;
  }
  .about-page .about-2 .ui.container span.btn {
    font-size: 24px;
    position: absolute;
    cursor: pointer;
    top: 50%;
    color: #fff;
    z-index: 99;
  }
  .about-page .about-2 .ui.container span.btn.slick-prev {
    left: -25px;
  }
  .about-page .about-2 .ui.container span.btn.slick-next {
    right: -25px;
  }
  .about-page .about-2 .ui.container ul.historylist {
    margin: 0 -25px;
  }
  .about-page .about-2 .ui.container ul.historylist li {
    padding: 0 25px;
  }
  .about-page .about-2 .ui.container ul.historylist li .item {
    text-align: left;
    color: #fff;
  }
  .about-page .about-2 .ui.container ul.historylist li .item h5 {
    font-weight: 400;
    margin-bottom: 25px;
  }
  .about-page .about-2 .ui.container ul.historylist li .item p {
    font-size: 16px;
    line-height: 1.625;
    color: #fff;
    padding-left: 25px;
    position: relative;
  }
  .about-page .about-2 .ui.container ul.historylist li .item p:before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background: #fff;
    position: absolute;
    top: 2px;
    left: 0;
  }
  .about-page .about-2 .ui.container ul.navlist {
    position: relative;
    margin-top: 130px;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .about-page .about-2 .ui.container ul.navlist:before {
    content: "";
    width: 89%;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    position: absolute;
    top: 3px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .about-page .about-2 .ui.container ul.navlist li {
    text-align: center;
    padding: 0 40px;
  }
  .about-page .about-2 .ui.container ul.navlist li i {
    width: 15px;
    height: 15px;
    border-radius: 100%;
    border: 3px solid #fff;
    background: #000;
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
  }
  .about-page .about-2 .ui.container ul.navlist li span {
    width: 100%;
    text-align: center;
    font-size: 22px;
    line-height: 1.36363636px;
    font-weight: 400;
    color: #fff;
  }
  .about-page .about-3 {
    padding: 100px 0;
  }
  .about-page .about-3 .ui.container {
    text-align: center;
  }
  .about-page .about-3 .ui.container h3 {
    font-weight: bold;
    text-transform: uppercase;
  }
  
  .about-page .about-3 .ui container .honorlist grid-box four .column .img-box{
    margin: 0 20px;
  }
  
  .about-page .about-2 .ui.container h3 {
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    margin-bottom:60px;
    text-align: center;
  }
  
  .al{
    margin: 40px 0px;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
  }
  
  .about-page .about-2 .ui.container img{
    display: block;
    margin:0 auto;
    padding: 20px;
    transition: 1s ease;
  }
  .about-page .about-2 .ui.container img:hover{
     transform: scale(1.1,1.1);
  }
     
  
  .about-page .about-2 .ui.container p{
    color: #ffffff;
    padding: 0 20px;
  }
  
  
  
  .about-page .about-3 .ui.container p {
    text-align: center;
    margin: 40px auto;
    max-width: 840px;
    line-height: 1.875;
    color: #454545;
  }
  .about-page .about-3 .ui.container ul.honorlist {
    margin: 0 -10px;
  }
  .about-page .about-3 .ui.container ul.honorlist li {
    padding: 0 10px;
  }
  .about-page .about-4 {
    padding: 145px 0px;
    background: url(../images/about-pc-top2.jpg) center top no-repeat;
    background-size: 100%;
  }
  .about-page .about-4 .ui.container .top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 90px;
  }
  .about-page .about-4 .ui.container .top .left {
    display: inline-block;
    color: #fff;
    text-align: left;
  }
  .about-page .about-4 .ui.container .top .left span {
    text-transform: uppercase;
  }
  .about-page .about-4 .ui.container .top .left h3 {
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 20px;
  }
  .about-page .about-4 .ui.container .top p {
    max-width: 650px;
    line-height: 1.75;
    color: #fff;
    text-align: left;
  }
  .about-page .about-4 .ui.container .mainbox ul.pclist {
    margin: 0 -18px;
  }
  .about-page .about-4 .ui.container .mainbox ul.pclist li {
    padding: 0 18px;
    padding-bottom: 60px;
  }
  .elevator-page .elevator-5 .ui.container .mainbox ul.pclist li {
    padding: 0 18px;
    padding-bottom: 60px;
  }
  
  .about-page .about-4 .ui.container .mainbox ul.pclist li .imgbox {
    position: relative;
  }
  .elevator-page .elevator-5 .ui.container .mainbox ul.pclist li .imgbox {
    position: relative;
  }
  
  .elevator-page .elevator-5 .ui.container .mainbox ul.pclist li .imgbox h5 {
    position: absolute;
    padding: 10px 10px;
    width: 80%;
    background: #fff;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 50%);
    -moz-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
    text-align: center;
    text-transform: uppercase;
    font-weight: 400;
  }
  
  
  .about-page .about-4 .ui.container .mainbox ul.pclist li .imgbox h5 {
    position: absolute;
    padding: 10px 10px;
    width: 80%;
    background: #fff;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 50%);
    -moz-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
    text-align: center;
    text-transform: uppercase;
    font-weight: 400;
  }
  .font-15 {
    font-size: 15px;
  }
  @media screen and (max-width: 1200px) {
    .about-page .about-1 .ui.container ul.datalist li span {
      font-size: 32px;
    }
    .inner-banner {
      height: 500px;
    }
    .font-148 {
      font-size: 80px;
    }
    .about-page .about-4 {
      padding-top: 40px;
    }
    .font-30 {
      font-size: 24px;
    }
    .about-page .about-2 .ui.container span.btn {
      display: none!important;
    }
    .about-page .about-3 {
      padding: 60px 0;
    }
  }
  @media screen and (max-width: 1000px) {
    .case-page .case-content li{
      width: 50%!important;
    }
    .about-page .about-1 .ui.container ul.datalist li {
      width: 50%;
    }
    .about-page .about-1 .ui.container ul.datalist li:nth-child(2) {
      border: none;
    }
    .about-page .about-3 {
      padding: 20px 0;
    }
    .about-page .about-1 .ui.container {
      text-align: center;
      padding: 0 15px;
    }
    .about-page .about-3 .ui.container p {
      
      margin: 20px 0;
    }
  }
  @media screen and (max-width: 700px) {
    .case-page .case-content li{
      width: 100%!important;
    }
    .inner-banner {
      height: 400px;
    }
    .font-148 {
      font-size: 60px;
    }
    .about-page .about-4 {
      padding-top: 20px;
      background-size: 200%;
    }
    .font-40 {
      font-size: 24px;
    }
  }
  @media screen and (max-width: 500px) {
    .font-148 {
      font-size: 30px;
    }
    .inner-banner .text h2 {
      margin-bottom: 10px;
    }
  }
  
  
  /*inner css starts*/
  .inner-banner h2 {
    font-size: 26px;
  }
  .inner-banner .pa{
    width: 100%;
    left: 0;
    top: 0;
  }
  @media screen and (max-width: 1000px) {
    .inner-banner h2 {
      font-size: 40px;
    }
  }
  @media screen and (max-width: 700px) {
    .inner-banner h2 {
      font-size: 30px;
    }
  }
  .contact-page .contact-0 .contact-list{
    justify-content: space-between;
    margin: 0 -8px;
    flex-wrap: wrap;
  }
    .contact-page .contact-0 .contact-list li{
      margin: 8px;
    }
     .contact-page .contact-0 .contact-list li dl{
       align-items: center;
       margin: 8px 0;
     }
   .contact-page .contact-0 .contact-list li dl dt{
     font-size: 20px;
     margin-right: 10px;
     font-weight: 600;
     color: #222;
   }
    .contact-page .contact-0 .contact-list li dl dd{
      font-size: 18px;
      max-width: 300px;
      color: #222;
    }


     @media screen and (max-width: 700px){
         .contact-page .contact-0 .contact-list li dl dt{
           font-size: 18px;
         }
        .contact-page .contact-0 .contact-list li dl dd{
          font-size: 16px;
        }
     }
  .contact-page {
    background-color: #f7f7f7;
    margin-bottom: 50px;
  }
  .contact-page .contact-1 form{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .contact-page .contact-1 .xiugai{
    padding: 27px 7.5vw;
    background: #ffffff;
    margin-bottom:2.5vw;
    border-radius: 2.5vw;
    box-shadow: 0 0 8px rgba(0,0,0,.3);
  }
  .contact-page .contact-1 .left {
    width: 75%;
    background: #fff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(0,0,0,.3);
  }
  .contact-page .contact-1 .left input,
  .contact-page .contact-1 .left textarea,
  .contact-page .contact-1 .left select {
    width: 100%;
    border: 1px solid #999999;
    background-color: transparent;
    font-size: 16px;
    padding: 10px 20px;
    font-family: arial;
    margin-bottom: 25px;
    border-radius: 10px;
  }
  .contact-page .contact-1 .left textarea {
    height: 160px;
  }
  .contact-page .contact-1 .left button {
    font-size: 19px;
    text-transform: uppercase;
    padding: 12px 42px;
    border: none;
    color: #FFFFFF;
    background-color: var(--index-main-color);
    transition: .5s ease;
    border-radius: 10px;
  }
  .contact-page .contact-1 .left ul.df{
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .contact-page .contact-1 .left ul.df li{
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .contact-page .contact-1 .left ul.df li i{
    font-size: 35px;
    padding: 0 15px;
    color: var(--index-main-color);
  }
  .contact-page .contact-1 .left ul.df li .title{
    font-weight: bold;
    color: #444;
    margin: 15px 0;
  }
  .contact-page .contact-1 .left ul.df li .content{
    max-width: 300px;
    text-align: center;
  }

/*设计师修改*/
.contact-page .contact-1 .xiugai ul.df{
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .contact-page .contact-1 .xiugai ul.df li{
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .contact-page .contact-1 .xiugai ul.df li i{
    font-size: 35px;
    padding: 0 15px;
    color: var(--index-main-color);
  }
  .contact-page .contact-1 .xiugai ul.df li .title{
    font-weight: bold;
    color: #444;
    margin: 15px 0;
  }
  .contact-page .contact-1 .xiugai ul.df li .content{
    max-width: 400px;
    text-align: center;
  }
/*设计师修改结束*/

  .contact-page .contact-1 .left button:hover{
    background: #000000;
    color: #FFFFFF;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  }
  
  .contact-page .contact-1 .right {
    width: 25%;
    padding-left: 75px;
    /*margin-top: 80px;*/
  }
  .contact-page .contact-1 .right ul {
    margin: -10px;
  }
  .contact-page .contact-1 .right ul li {
    padding: 25px;
    width: 100%;
    background: #fff;
    box-shadow: 0 0 8px rgba(0, 0, 0, .3);
    border-radius: 8px;
    margin: 0 auto;
  }
   .contact-page .contact-1 .right ul li:first-child{
     margin-bottom: 25px; 
   }
   .contact-page .contact-1 .right ul li dl dt{
     font-weight: bold;
     color: #444;
     margin-bottom: 15px;
     line-height: 1;
     padding-left: 15px;
     border-left: 3px solid var(--index-main-color);
   }
   .contact-page .contact-1 .right ul li dl dd{
     margin-bottom: 10px;
   }
  .contact-page .contact-1 .right ul li.wid-100 {
    width: 100%;
  }
  .contact-page .contact-1 .right ul li i {
    position: absolute;
    left: 0;
    top: 0;
  }
  .contact-page .contact-1 .right ul li i img {
    vertical-align: -webkit-baseline-middle;
  }
  @media screen and (max-width: 1600px) {
    .contact-page .contact-1 .left {
      width: 75%;
    }
    .contact-page .contact-1 .right {
      width: 25%;
      padding-left: 60px;
    }
  }
  @media screen and (max-width: 1000px) {
    .contact-page .contact-1 {
      padding: 0;
    }
    .tuskhide {
      display: none !important;
    }
    .contact-page .contact-1 .left {
      width: 100%;
    }
    .contact-page .contact-1 .right {
      width: 100%;
      padding: 0;
      margin-top: 40px;
    }
    .contact-page .contact-1 .left input,
    .contact-page .contact-1 .left textarea,
    .contact-page .contact-1 .left select {
      font-size: 16px;
      padding: 10px;
    }
    .font-32 {
      font-size: 24px;
    }
    .font-30 {
      font-size: 20px;
    }
  }
  .about-page .about-1 .box {
    margin: -15px;
  }
  .about-page .about-1 .left,
  .about-page .about-1 .right {
    padding: 15px;
  }
  .about-page .about-1 h2 {
    line-height: 1.3;
  }
  .about-page .about-1 .text {
    line-height: 2;
    padding-right: 90px;
  }
  .about-page .about-1 .bottom ul {
    margin: -15px;
  }
  .about-page .about-1 .bottom ul li {
    padding: 15px;
  }
  .about-page .about-1 .bottom h2 {
    font-size: 62px;
    color: var(--index-main-color);
  }
  /*.about-page .about-2 {
    background: url(/tuskrobots/2023/02/24/555.jpg) no-repeat center;
    background-attachment: fixed;
    height: 650px;
  }*/
  .about-page .about-2 .play {
    width: 96px;
    height: 96px;
    line-height: 96px;
    border-radius: 100%;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.71);
    cursor: pointer;
    cursor: hand;
  }
  .about-page .about-2 .play img {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    left: 5px;
  }
  .about-page .about-2 .play::before {
    width: 100%;
    height: 100%;
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: inherit;
    background: rgba(255, 255, 255, 0.25);
    -webkit-animation: ks 2s linear infinite;
    -moz-animation: ks 2s linear infinite;
    animation: ks 2s linear infinite;
    z-index: -1;
  }
  .about-page .about-3 {
    padding: 120px 0;
  }
  .about-page .about-3 ul {
    position: relative;
    margin: 0 -20px;
  }
  /*.about-page .about-3 ul::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 17px;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 2px;
    background-color: #000000;
  }*/
  .about-page .about-3 ul li {
    position: relative;
    padding: 0 20px;
  }
  .about-page .about-3 ul li + li {
    margin-top: -110px;
  }
  .about-page .about-3 ul li i {
    position: absolute;
    left: -9px;
    top: 8px;
  }
  .about-page .about-3 ul li i img {
    vertical-align: middle;
  }
  .about-page .about-3 ul li i::before,
  .about-page .about-3 ul li i::after {
    content: "";
    display: inline-block;
    margin: 0 15px;
    vertical-align: middle;
    width: 60px;
    border: 1px dashed #000000;
  }
  .about-page .about-3 ul li h4 {
    line-height: 30px;
  }
  .about-page .about-3 ul li h4 span {
    display: inline-block;
    vertical-align: middle;
    color: #074ca0;
  }
  /*.about-page .about-3 ul li:nth-child(odd) {
    left: 50%;
    padding-left: 100px;
  }
  .about-page .about-3 ul li:nth-child(odd) i:before {
    display: none;
  }*/
  /*.about-page .about-3 ul li:nth-child(even) {
    text-align: right;
    padding-right: 100px;
  }*/
  /*.about-page .about-3 ul li:nth-child(even) i {
    left: auto;
    right: -9px;
  }
  .about-page .about-3 ul li:nth-child(even) i::after {
    display: none;
  }*/
  /*.about-page .about-4 {
    background-color: #f3f4f6;
  }*/
  .about-page .about-5 {
    padding: 120px 0;
  }
  .about-page .about-5 .list .arrow {
    font-size: 20px;
    width: 37px;
    height: 44px;
    line-height: 44px;
    background-color: #e3e3e3;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .about-page .about-5 .list .arrow_l {
    left: -60px;
  }
  .about-page .about-5 .list .arrow_r {
    right: -60px;
  }
  .about-page .about-5 .list ul {
    margin: -15px;
  }
  .about-page .about-5 .list ul li {
    padding: 15px;
  }
  .about-page .about-5 .list h4 {
    padding: 15px;
    position: absolute;
    right: 0;
    bottom: 0;
    color: #FFFFFF;
    background-color: var(--index-main-color);
    max-width: 100%;
  }
  .about-page .about-6 {
    padding: 110px 0;
    background: url(../images/about-6-bg.jpg) no-repeat center;
    background-size: cover;
  }
  
  .about-page .about-6 .arrow{
    position: absolute;
    top: 50%;
  }
  
  .about-page .about-6 .arrow_l{
    left: 0;
  }
  
  .about-page .about-6 .arrow_r{
    right: 0;
  }
  
  .about-page .about-6 .list {
    margin-top: 30px;
  }
  .about-page .about-6 .list .slick-list {
    padding-top: 15%!important;
  }
  .about-page .about-6 .list .slick-slide {
    -webkit-transform-origin: bottom;
    -moz-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    position: relative;
    -webkit-transition: .5s ease;
    -moz-transition: .5s ease;
    transition: .5s ease;
  }
  /*.about-page .about-6 .list .slick-active + .slick-active {
    -webkit-transform: scale(1.2) translateX(-30%);
    -moz-transform: scale(1.2) translateX(-30%);
    -ms-transform: scale(1.2) translateX(-30%);
    transform: scale(1.2) translateX(-30%);
  }
  .about-page .about-6 .list .slick-active + .slick-active + .slick-active {
    -webkit-transform: scale(1.4) translateX(-50%);
    -moz-transform: scale(1.4) translateX(-50%);
    -ms-transform: scale(1.4) translateX(-50%);
    transform: scale(1.4) translateX(-50%);
  }
  .about-page .about-6 .list .slick-active + .slick-active + .slick-active + .slick-active {
    -webkit-transform: scale(1.6) translateX(-55%);
    -moz-transform: scale(1.6) translateX(-55%);
    -ms-transform: scale(1.6) translateX(-55%);
    transform: scale(1.6) translateX(-55%);
  }
  .about-page .about-6 .list .slick-active + .slick-active + .slick-active + .slick-active + .slick-active {
    -webkit-transform: scale(1.8) translateX(-50%);
    -moz-transform: scale(1.8) translateX(-50%);
    -ms-transform: scale(1.8) translateX(-50%);
    transform: scale(1.8) translateX(-50%);
  }
  .about-page .about-6 .list .slick-active + .slick-active + .slick-active + .slick-active + .slick-active + .slick-active {
    -webkit-transform: scale(2) translateX(-40%);
    -moz-transform: scale(2) translateX(-40%);
    -ms-transform: scale(2) translateX(-40%);
    transform: scale(2) translateX(-40%);
  }
  .about-page .about-6 .list .slick-active + .slick-active + .slick-active + .slick-active + .slick-active + .slick-active + .slick-active {
    -webkit-transform: scale(2.2) translateX(-25%);
    -moz-transform: scale(2.2) translateX(-25%);
    -ms-transform: scale(2.2) translateX(-25%);
    transform: scale(2.2) translateX(-25%);
  }
  .about-page .about-6 .list .slick-active + .slick-active + .slick-active + .slick-active + .slick-active + .slick-active + .slick-active + .slick-active.slick-center {
    -webkit-transform: scale(2.4) translateX(0);
    -moz-transform: scale(2.4) translateX(0);
    -ms-transform: scale(2.4) translateX(0);
    transform: scale(2.4) translateX(0);
    z-index: 10;
  }
  .about-page .about-6 .list .slick-active.slick-center + .slick-active {
    -webkit-transform: scale(2.2) translateX(25%) !important;
    -moz-transform: scale(2.2) translateX(25%) !important;
    -ms-transform: scale(2.2) translateX(25%) !important;
    transform: scale(2.2) translateX(25%) !important;
    z-index: 9;
  }
  .about-page .about-6 .list .slick-active.slick-center + .slick-active + .slick-active {
    -webkit-transform: scale(2) translateX(40%) !important;
    -moz-transform: scale(2) translateX(40%) !important;
    -ms-transform: scale(2) translateX(40%) !important;
    transform: scale(2) translateX(40%) !important;
    z-index: 8;
  }
  .about-page .about-6 .list .slick-active.slick-center + .slick-active + .slick-active + .slick-active {
    -webkit-transform: scale(1.8) translateX(50%) !important;
    -moz-transform: scale(1.8) translateX(50%) !important;
    -ms-transform: scale(1.8) translateX(50%) !important;
    transform: scale(1.8) translateX(50%) !important;
    z-index: 7;
  }
  .about-page .about-6 .list .slick-active.slick-center + .slick-active + .slick-active + .slick-active + .slick-active {
    -webkit-transform: scale(1.6) translateX(55%) !important;
    -moz-transform: scale(1.6) translateX(55%) !important;
    -ms-transform: scale(1.6) translateX(55%) !important;
    transform: scale(1.6) translateX(55%) !important;
    z-index: 6;
  }
  .about-page .about-6 .list .slick-active.slick-center + .slick-active + .slick-active + .slick-active + .slick-active + .slick-active {
    -webkit-transform: scale(1.4) translateX(50%) !important;
    -moz-transform: scale(1.4) translateX(50%) !important;
    -ms-transform: scale(1.4) translateX(50%) !important;
    transform: scale(1.4) translateX(50%) !important;
    z-index: 5;
  }
  .about-page .about-6 .list .slick-active.slick-center + .slick-active + .slick-active + .slick-active + .slick-active + .slick-active + .slick-active {
    -webkit-transform: scale(1.2) translateX(30%) !important;
    -moz-transform: scale(1.2) translateX(30%) !important;
    -ms-transform: scale(1.2) translateX(30%) !important;
    transform: scale(1.2) translateX(30%) !important;
    z-index: 4;
  }
  .about-page .about-6 .list .slick-active.slick-center + .slick-active + .slick-active + .slick-active + .slick-active + .slick-active + .slick-active ~ .slick-active {
    -webkit-transform: scale(1) translateX(0) !important;
    -moz-transform: scale(1) translateX(0) !important;
    -ms-transform: scale(1) translateX(0) !important;
    transform: scale(1) translateX(0) !important;
    z-index: 3;
  }*/
  
  
  
  .about-page .about-6 .list .slick-active + .slick-active {
    -webkit-transform: scale(1.2) translateX(-25%);
    -moz-transform: scale(1.2) translateX(-25%);
    -ms-transform: scale(1.2) translateX(-25%);
    transform: scale(1.2) translateX(-25%);
  }
  .about-page .about-6 .list .slick-active + .slick-active + .slick-active {
    -webkit-transform: scale(1.4) translateX(-25%);
    -moz-transform: scale(1.4) translateX(-25%);
    -ms-transform: scale(1.4) translateX(-25%);
    transform: scale(1.4) translateX(-25%);
  }
  .about-page .about-6 .list .slick-active + .slick-active + .slick-active + .slick-active.slick-center {
    -webkit-transform: scale(1.6) translateX(0);
    -moz-transform: scale(1.6) translateX(0);
    -ms-transform: scale(1.6) translateX(0);
    transform: scale(1.6) translateX(0);
    z-index: 10;
  }
  .about-page .about-6 .list .slick-active.slick-center + .slick-active {
    -webkit-transform: scale(1.4) translateX(25%) !important;
    -moz-transform: scale(1.4) translateX(25%) !important;
    -ms-transform: scale(1.4) translateX(25%) !important;
    transform: scale(1.4) translateX(25%) !important;
    z-index: 9;
  }
  .about-page .about-6 .list .slick-active.slick-center + .slick-active + .slick-active {
    -webkit-transform: scale(1.2) translateX(25%) !important;
    -moz-transform: scale(1.2) translateX(25%) !important;
    -ms-transform: scale(1.2) translateX(25%) !important;
    transform: scale(1.2) translateX(25%) !important;
    z-index: 8;
  }
  .about-page .about-6 .list .slick-active.slick-center + .slick-active + .slick-active + .slick-active {
    -webkit-transform: scale(1) translateX(0) !important;
    -moz-transform: scale(1) translateX(0) !important;
    -ms-transform: scale(1) translateX(0) !important;
    transform: scale(1) translateX(0) !important;
    z-index: 7;
  }
  
  
  
  
  @media screen and (max-width: 1200px) {
    .about-page .about-1 .bottom {
      padding: 0;
    }
    .about-page .about-1 .bottom h2 {
      font-size: 40px;
    }
    .about-page .about-2 {
      height: 400px;
    }
  }
  @media screen and (max-width: 1000px) {
    .about-page .about-1 {
      text-align: center;
    }
    .about-page .about-1 .left,
    .about-page .about-1 .right {
      width: 100%!important;
    }
    .about-page .about-1 .text {
      padding: 0;
      height: auto;
    }
    .about-page .about-3 ul::before {
      left: 0;
      -webkit-transform: translateX(0);
      -moz-transform: translateX(0);
      -ms-transform: translateX(0);
      transform: translateX(0);
    }
    .about-page .about-3 ul li:nth-child(odd) {
      left: 0;
    }
    .about-page .about-3 ul li {
      width: 100%;
      margin-bottom: 30px;
    }
    .about-page .about-3 ul li + li {
      margin-top: 0;
    }
    .about-page .about-3 ul li:nth-child(even) {
      text-align: left;
      padding-right: 0;
      padding-left: 100px;
    }
    .about-page .about-3 ul li:nth-child(even) i {
      left: -8px;
      right: auto;
    }
    .about-page .about-3 ul li:nth-child(even) i::before {
      display: none;
    }
    .about-page .about-3 ul li:nth-child(even) i::after {
      display: inline-block;
    }
    .about-page .about-4 .text {
      padding: 0;
    }
    .about-page .about-5 .list .arrow {
      display: none;
    }
    .about-page .about-6 .list .slick-slide {
      -webkit-transform: scale(1) translateX(0) !important;
      -moz-transform: scale(1) translateX(0) !important;
      -ms-transform: scale(1) translateX(0) !important;
      transform: scale(1) translateX(0) !important;
    }
    .about-page .about-6 .list .slick-active.slick-center + .slick-active {
      -webkit-transform: scale(1) translateX(0) !important;
      -moz-transform: scale(1) translateX(0) !important;
      -ms-transform: scale(1) translateX(0) !important;
      transform: scale(1) translateX(0) !important;
    }
    .about-page .about-6 .list .slick-active.slick-center + .slick-active {
      -webkit-transform: scale(1) translateX(0) !important;
      -moz-transform: scale(1) translateX(0) !important;
      -ms-transform: scale(1) translateX(0) !important;
      transform: scale(1) translateX(0) !important;
    }
    .about-page .about-6 .list .slick-active.slick-center + .slick-active + .slick-active {
      -webkit-transform: scale(1) translateX(0) !important;
      -moz-transform: scale(1) translateX(0) !important;
      -ms-transform: scale(1) translateX(0) !important;
      transform: scale(1) translateX(0) !important;
    }
    .about-page .about-6 .list .slick-list {
      padding-top: 0!important;
    }
    .about-page .about-6 .list ul li {
      padding: 15px;
    }
    .about-page .about-3 {
      padding: 60px 0;
    }
    .about-page .about-5 {
      padding: 60px 0;
    }
    .about-page .about-6 {
      padding: 60px 0;
    }
    .about-page .about-6 .list {
      margin-top: 40px;
    }
    .about-page .about-3 ul li i::before,
    .about-page .about-3 ul li i::after {
      display: none!important;
    }
    .about-page .about-3 ul li:nth-child(odd),
    .about-page .about-3 ul li:nth-child(even) {
      padding-left: 30px;
    }
    .font-36 {
      font-size: 30px;
    }
  }
  .cooperation-page h2 {
    line-height: 1.3;
  }
  .cooperation-page .cooperation-2 ul {
    background: url(../images/cooperation-2.jpg) no-repeat center;
    background-size: cover;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
  .cooperation-page .cooperation-2 ul li {
    width: 33.33%;
    padding: 40px;
    min-height: 650px;
    text-align: left;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .cooperation-page .cooperation-2 ul li + li {
    border-left: 1px solid rgba(255, 255, 255, 0.3);
  }
  .cooperation-page .cooperation-2 ul li i {
    font-size: 48px;
    color: #FFFFFF;
  }
  .cooperation-page .cooperation-2 ul li .text h2 {
    color: #FFFFFF;
  }
  .cooperation-page .cooperation-2 ul li .text p {
    color: #FFFFFF;
    height: 0;
    overflow: hidden;
  }
  .cooperation-page .cooperation-2 ul li:hover {
    background-color: rgba(9, 58, 149, 0.6);
  }
  .cooperation-page .cooperation-2 ul li:hover i {
    opacity: 1;
  }
  .cooperation-page .cooperation-2 ul li:hover .text h2 {
    opacity: 1;
  }
  .cooperation-page .cooperation-2 ul li:hover .text p {
    height: auto;
    overflow: visible;
  }
  .cooperation-page .cooperation-4 .box {
    margin: -15px;
  }
  .cooperation-page .cooperation-4 .column {
    padding: 15px;
    vertical-align: middle;
  }
  .cooperation-page .cooperation-4 ul {
    position: relative;
  }
  .cooperation-page .cooperation-4 ul::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 70px;
    top: 0;
    bottom: 0;
    border-left: 1px dashed #000000;
  }
  .cooperation-page .cooperation-4 ul li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .cooperation-page .cooperation-4 ul li + li {
    margin-top: 35px;
  }
  .cooperation-page .cooperation-4 ul li span {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 28px;
    border-radius: 50%;
    text-align: center;
    background-color: #ebebeb;
  }
  .cooperation-page .cooperation-4 ul li h4 {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .cooperation-page .cooperation-5 {
    margin-bottom: 135px;
  }
  .cooperation-page .cooperation-5 .list {
    background: url(../images/cooperation-5.jpg) no-repeat center;
    background-size: cover;
    margin: 0 -60px;
    padding: 0 60px;
  }
  .cooperation-page .cooperation-5 .list ul {
    margin: 0 -25px;
    -webkit-transform: translateY(135px);
    -moz-transform: translateY(135px);
    -ms-transform: translateY(135px);
    transform: translateY(135px);
  }
  .cooperation-page .cooperation-5 .list ul li {
    padding: 0 25px;
  }
  .cooperation-page .cooperation-5 .list ul li .mml-text {
    background-color: #FFFFFF;
    padding: 40px;
  }
  @media screen and (max-width: 1200px) {
    .cooperation-page .cooperation-2 ul li .text h2 {
      font-size: 24px;
    }
    .cooperation-page .cooperation-2 ul li:hover .text p {
      height: 210px;
      overflow-y: auto;
    }
    .cooperation-page .cooperation-5 .list ul {
      margin: 0 -15px;
    }
    .cooperation-page .cooperation-5 .list ul li {
      padding: 0 15px;
    }
    .cooperation-page .cooperation-5 .list ul li .mml-text {
      padding: 20px;
    }
  }
  @media screen and (max-width: 1000px) {
    .cooperation-page .cooperation-2 ul {
      display: block;
    }
    .cooperation-page .cooperation-2 ul li {
      width: 100%;
      min-height: initial;
      padding: 20px;
    }
    .cooperation-page .cooperation-2 ul li .text p {
      height: auto;
      margin-top: 15px;
    }
    .cooperation-page .cooperation-2 ul li + li {
      border-left: none;
      border-top: 1px solid rgba(255, 255, 255, 0.3);
    }
    .cooperation-page .cooperation-2 ul li:hover .text p {
      height: auto;
    }
    .cooperation-page .cooperation-4 .column {
      width: 100%;
    }
    .cooperation-page .cooperation-4 ul li span {
      margin-left: 0;
    }
    .cooperation-page .cooperation-4 ul::before {
      left: 30px;
    }
    .cooperation-page .cooperation-5 .list ul li {
      width: 100%;
    }
    .cooperation-page .cooperation-5 .list {
      margin: 0;
      padding: 15px;
    }
    .cooperation-page .cooperation-5 .list ul {
      -webkit-transform: translateY(0);
      -moz-transform: translateY(0);
      -ms-transform: translateY(0);
      transform: translateY(0);
    }
    .cooperation-page .cooperation-5 .list ul li + li {
      margin-top: 15px;
    }
    .cooperation-page .cooperation-5 {
      margin-bottom: 0;
    }
  }
  .news-list ul {
    margin: -60px -25px;
  }
  .news-list ul li {
    padding: 60px 25px;
  }
  
  .news-list ul li h4{
    min-height: 54px;
    line-height: 2;
  }
  
  .newdet-page .newdet-1 .title {
    border-bottom: 1px solid #dfdfdf;
  }
  .newdet-page .gal-img ul.grid-box {
    margin: 0 -15px;
  }
  .newdet-page .gal-img ul.grid-box li.column {
    padding: 0 15px;
  }
  .newdet-page .gal-img .slick-dots {
    margin-top: 50px;
  }
  .newdet-page .gal-img .slick-dots li {
    margin: 0 7px;
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: var(--index-main-color);
    opacity: .4;
  }
  .newdet-page .gal-img .slick-dots li button {
    display: none;
  }
  .newdet-page .gal-img .slick-dots li.slick-active {
    opacity: 1;
  }
  @media screen and (max-width: 1000px) {
    .news-list ul {
      margin: -15px;
    }
    .news-list ul li {
      padding: 15px;
    }
    .newdet-page .newdet-1 .content {
      font-size: 16px;
    }
  }
  .prodet-page {
    position: relative;
  }
  
  .prodet-page .prodet-1 .df{
    display: block;
  }
  .prodet-page .prodet-1 .box {
    margin: -15px;
    width: 78%;
    background: #f6f6f6;
    border-radius: 30px;
    margin-top: -80px;
  }
  .prodet-page .prodet-1 .recommended-left{
    width: 22%;
    padding-left: 2.5vw;
   position: sticky;
   top: 150px;
  }
  .prodet-page .prodet-1 .recommended-left .text-top{
    justify-content: space-between;
    align-items: center;
  }
  .prodet-page .prodet-1 .recommended-left .text-top .product-more{
    display: block;
    margin-left: 20px;
    margin-bottom: 0;
  }
  .prodet-page .prodet-1 .recommended-left ul li{
    margin-bottom: 25px;
  }
  .prodet-page .prodet-1 .recommended-left ul li .slide-box{
    /*padding: 0 15px 15px;*/
  }
  .prodet-page .prodet-1 .recommended-left a{
    display: block;
  }
  .prodet-page .prodet-1 .recommended-left .img{
    background-color: rgb(246, 246, 246);
    border-radius: 50px 0px 50px 50px;
    position: relative;
  }
  .prodet-page .prodet-1 .recommended-left .img .icon-plus {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 49px;
    height: 48px;
    background-color: var(--index-main-color);
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    transform-origin: right top;
    border-radius: 24px 0px 24px 24px;
    transition: 0.3s;
  }
  .prodet-page .prodet-1 .recommended-left li .slide-box:hover .img .icon-plus{
    transform: scale(1.306);
  }
  .prodet-page .prodet-1 .recommended-left li .slide-box:hover .title{
    color: var(--index-main-color);
  }
  .prodet-page .prodet-1 .recommended-left .title{
      display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .prodet-page .prodet-1 .recommended-left .title:hover{
    color: var(--index-main-color);
  }
  .prodet-page .prodet-1 .right {
    padding: 15px;
  }
  .prodet-page .prodet-1 .right .small{
    text-align: left;
    margin-top: 40px;
  }
  .prodet-page .prodet-1 .right .txtcontent ul li{
    padding: 20px 0;
  }
  
  .prodet-page .prodet-1 .right .txtcontent ul li.active em{
    display: block;
  }
  
  .prodet-page .prodet-1 .right .txtcontent ul li+li{
    border-top: 1px solid #000;
  }
  .prodet-page .prodet-1 .right .txtcontent ul li strong{
    display: block;
    font-size: 22px;
    font-family: arial;
    padding: 0 20px;
    position: relative;
    cursor: pointer;
  }
  
  .prodet-page .prodet-1 .right .txtcontent ul li strong::before{
    content: "\f105";
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    top: 0;
  }
  
  .prodet-page .prodet-1 .right .txtcontent ul li.active strong::before{
    content: "\f107";
  }
  
  .prodet-page .prodet-1 .right .txtcontent ul li em{
    font-size: 16px;
    margin-top: 15px;
    padding: 0 20px;
    display: none;
    line-height: 2;
  }
  
  .prodet-page .prodet-1 .left {
    padding: 15px;
  }
  .pr{
   border: solid 1px #dadada;
   border-radius:50px; 
  }
  
  .prodet-page .prodet-1 .small ul {
    margin: -10px;
  }
  .prodet-page .prodet-1 .small ul li {
    padding: 10px;
  }
  .prodet-page .prodet-1 .small ul .slick-track{
    margin-left: 0;
  }
  .prodet-page .prodet-1 .small img {
    border: 1px solid #dadada;
    cursor: pointer;
    border-radius:10px;
  }
  .prodet-page .prodet-1 a.contact {
    display: inline-block;
    width: 200px;
    line-height: 50px;
    text-align: center;
    color: #FFFFFF;
    background-color: var(--index-main-color);
    border-radius: 8px;
    margin-right: 35px;
    transition: .5s ease;
  }
  .prodet-page .prodet-1 a.contact:hover{
    box-shadow: 0 0 10px rebeccapurple;
  }
  .prodet-page .prodet-1 .share {
    display: inline-block;
  }
  .prodet-page .prodet-1 .share a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    font-size: 20px;
  }
  .prodet-page .prodet-1 .share a + a {
    margin-left: 15px;
  }
  .prodet-page .prodet-1 .share a:nth-child(1) {
    color: #FFFFFF;
    background-color: #00aced;
  }
  .prodet-page .prodet-1 .share a:nth-child(2) {
    color: #FFFFFF;
    background-color: #3b5999;
  }
  .prodet-page .prodet-1 .share a:nth-child(3) {
    color: #FFFFFF;
    background-color: #cb2027;
  }
  
  .prodet-page .prodet-2{ 
    margin: 20px 0;
  }
  .prodet-page .prodet-2 .box{
    background: #f7f7f7;
    padding: 20px;
    border-radius: 30px;
  }
  
  .prodet-page .prodet-2 .box .title{
    font-size: 24px;
    font-weight: bold;
    border-bottom: 1px dashed rgba(0,0,0,0.2);
    position: relative;
    padding-bottom: 10px;
  }
  .prodet-page .prodet-2 .box .title img{
    vertical-align: middle;
   
  }
  .prodet-page .prodet-2 .box .title::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100px;
    height: 4px;
    background: var(--index-main-color);
  }
  .prodet-page .prodet-2 .box .content{
    line-height: 2;
    color:#636363;
    font-size: 16px;
    padding-top: 24px;
  }
   .prodet-page .prodet-2 .box .content img{
     border-radius: 10px;
     width: 25%;
     /*margin-right:10%; */
   }

  .prodet-page .prodet-2 table tr:first-child{
    font-weight: bold;
    color: var(--index-main-color);
    font-size: 20px;
  }
    .prodet-page .prodet-3{
      display: none;
    }
  .prodet-page .prodet-3 ul {
    margin: -18px;
  }
  .prodet-page .prodet-3 ul li {
    padding: 18px;
  }
  .prodet-page .prodet-3 ul li h4{
    transition: .3s;
  }
  /*.prodet-page .prodet-3 img {
    border: 1px solid #dadada;
  }*/
  .prodet-page .prodet-3 .img{
    background-color: #f6f6f6;
    border-radius: 50px 0 50px 50px;
    position: relative;
  }
  .prodet-page .prodet-3 ul li:hover .img .icon-plus{
    transform: scale(1.306);
  }
  .prodet-page .prodet-3 ul li:hover h4{
    color: var(--index-main-color);
  }
   .prodet-page .prodet-3 .img .icon-plus{
      position: absolute;
      right: 0;
      top: 0;
      width: 49px;
      height: 48px;
      background-color: var(--index-main-color);
      border-radius: 24px 0 24px 24px;
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
      -moz-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -webkit-align-items: center;
      -moz-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-transition: .3s;
      -moz-transition: .3s;
      transition: .3s;
      -webkit-transform-origin: right top;
      -moz-transform-origin: right top;
      -ms-transform-origin: right top;
      transform-origin: right top;
   }
  .prodet-page .prodet-3 .arrow {
    font-size: 20px;
    width: 37px;
    height: 44px;
    line-height: 44px;
    background-color: #e3e3e3;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .prodet-page .prodet-3 .arrow_l {
    left: -60px;
  }
  .prodet-page .prodet-3 .arrow_r {
    right: -60px;
  }
  
  
  
  .prodet-page .prodet-4 .grid-box{
    margin: -15px;
  }
  .prodet-page .prodet-4 .left{
    padding: 15px;
  }
  
  .prodet-page .prodet-4 .right{
    padding: 15px;
  }
  
  .prodet-page .prodet-4 .right .text{
    margin-top: 50px;
  }
  
  .prodet-page .prodet-4 table td,
  .prodet-page .prodet-4 table th{
    border: none;
    padding: 15px 5px;
  }
  
  .prodet-page .prodet-4 table tr{
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
  }
  
  .prodet-page .prodet-4 table tr td:nth-child(1){
    width: 30%!important;
  }
  .prodet-page .prodet-4 table tr td:nth-child(2){
    width: 30%!important;
  }
  .prodet-page .prodet-4 table tr td:nth-child(3){
    width: 40%!important;
  }
  
  .prodet-page .prodet-5 video{
    width: 100%;
  }
  .prodet-page .prodet-5 .play {
    width: 96px;
    height: 96px;
    line-height: 96px;
    border-radius: 100%;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.71);
    cursor: pointer;
    cursor: hand;
  }
  .prodet-page .prodet-5 .play img {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    left: 5px;
  }
  .prodet-page .prodet-5 .play::before {
    width: 100%;
    height: 100%;
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: inherit;
    background: rgba(255, 255, 255, 0.25);
    -webkit-animation: ks 2s linear infinite;
    -moz-animation: ks 2s linear infinite;
    animation: ks 2s linear infinite;
    z-index: -1;
  }
  
  
  @media screen and (max-width: 1000px) {
    .prodet-page .prodet-1 .left {
      width: 100%!important;
    }
    .prodet-page .prodet-1 .right {
      width: 100%!important;
    }
    .prodet-page .prodet-1 a.contact {
      width: 150px;
      margin-right: 10px;
    }
    .prodet-page .prodet-1 .small ul {
      margin: -15px;
    }
    .prodet-page .prodet-1 .small ul li {
      padding: 15px;
    }
  
    .prodet-page .prodet-3 .arrow{
      display: none;
    }
  }
  .service-page h2 {
    line-height: 1.3;
  }
  .service-page .service-2::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 180px;
    bottom: 0;
    left: 0;
    background-color: #f2f2f2;
  }
  .service-page .service-2 ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin: -20px;
  }
  .service-page .service-2 ul li {
    width: 33.33%;
    padding: 20px;
  }
  .service-page .service-2 ul li .mml-text {
    height: 100%;
    padding: 60px 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    z-index: 1;
    background-color: #FFFFFF;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    border-radius: 2px;
    overflow: hidden;
  }
  .service-page .service-2 ul li .mml-text::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-image: url(../images/service-2-bg.jpg);
    opacity: 0;
    -webkit-transition: .5s ease;
    -moz-transition: .5s ease;
    transition: .5s ease;
  }
  .service-page .service-2 ul li .mml-text::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-radius: 50%;
    right: -30px;
    top: -50px;
    background-color: rgba(255, 255, 255, 0.1);
    -webkit-transition: .5s ease;
    -moz-transition: .5s ease;
    transition: .5s ease;
  }
  .service-page .service-2 ul li .mml-text h4 {
    -webkit-transition: .5s ease;
    -moz-transition: .5s ease;
    transition: .5s ease;
  }
  .service-page .service-2 ul li .mml-text p {
    -webkit-transition: .5s ease;
    -moz-transition: .5s ease;
    transition: .5s ease;
  }
  .service-page .service-2 ul li .mml-text i {
    margin: 0 auto;
    font-size: 50px;
    display: block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    color: #1d83e1;
    background-color: #e9f1fc;
    -webkit-transition: .5s ease;
    -moz-transition: .5s ease;
    transition: .5s ease;
  }
  .service-page .service-2 ul li .mml-text:hover::after {
    opacity: 1;
  }
  .service-page .service-2 ul li .mml-text:hover::before {
    width: 200px;
    height: 200px;
  }
  .service-page .service-2 ul li .mml-text:hover i {
    background-color: #FFFFFF;
  }
  .service-page .service-2 ul li .mml-text:hover h4 {
    color: #FFFFFF;
  }
  .service-page .service-2 ul li .mml-text:hover p {
    color: #FFFFFF;
  }
  .service-page .service-3 {
    background: url(../images/service-3-bg.jpg) no-repeat center;
    background-size: cover;
  }
  .service-page .service-3 .list {
    margin-top: 80px;
    margin-bottom: 40px;
  }
  .service-page .service-3 .list ul {
    margin: -40px;
  }
  .service-page .service-3 .list ul li {
    padding: 40px;
  }
  
  .service-page .service-3 .list .mml-text i img{
    transition: .5s ease;
  }
  
  .service-page .service-3 .list .mml-text:hover i img{
    transform: rotateY(180deg);
  }
  
  .service-page .service-3 .list .mml-text {
    padding-left: 80px;
    position: relative;
  }
  .service-page .service-3 .list .mml-text i {
    position: absolute;
    left: 0;
    top: 0;
  }
  .service-page .service-4 ul li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin: 35px;
  }
  .service-page .service-4 ul li:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -moz-box-orient: horizontal;
    -moz-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .service-page .service-4 ul li .img {
    width: 50%;
    padding: 25px;
  }
  .service-page .service-4 ul li .img img {
    border-radius: 4px;
    overflow: hidden;
  }
  .service-page .service-4 ul li .mml-text {
    width: 50%;
    padding: 25px;
  }
  .service-page .service-4 ul li .mml-text .text + .text {
    border-top: 1px solid #CCCCCC;
  }
  @media screen and (max-width: 1000px) {
    .service-page .service-2 ul {
      display: block;
    }
    .service-page .service-2 ul li {
      width: 100%;
    }
    .service-page .service-3 .list {
      margin-top: 40px;
    }
    .service-page .service-3 .list ul {
      margin: -15px;
    }
    .service-page .service-3 .list ul li {
      padding: 15px;
    }
    .service-page .service-3 .list .mml-text {
      padding: 0;
      text-align: center;
    }
    .service-page .service-3 .list .mml-text i {
      position: relative;
      left: auto;
      top: auto;
      height: 60px;
      display: block;
      margin-bottom: 20px;
    }
    .service-page .service-4 ul li {
      display: block;
      padding: 30px 0;
    }
    .service-page .service-4 ul li .img {
      width: 100%;
    }
    .service-page .service-4 ul li .mml-text {
      width: 100%;
    }
    .service-page .service-2 ul {
      margin: -15px;
    }
    .service-page .service-2 ul li {
      padding: 15px;
    }
    .service-page .service-4 ul li {
      margin: -15px;
    }
    .service-page .service-4 ul li .mml-text {
      padding: 15px;
    }
    .service-page .service-4 ul li .img {
      padding: 15px;
    }
  }
  .case-page .case-content ul{
    /*justify-content: space-between;*/
    display: flex;
    margin: 0 -15px;
    flex-wrap: wrap;
  }
  .case-page .case-content li{
    padding: 20px 15px;
    width: 25%;
  }
  .case-page .case-content li a{
    display:block;
  }
  .case-page .case-content li .img{
    position: relative;
    border-radius: 10px;
  }
 .case-page .case-content .play{
   display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, .6);
    border-radius: 50%;
    -webkit-animation: to-big 1s linear infinite alternate;
    -moz-animation: to-big 1s linear infinite alternate;
    animation: to-big 1s linear infinite alternate;
    /*display: none;*/
 }
 .case-page .case-content .play{
    color: var(--index-main-color);
    font-size: 30px
 }



  .case-page .case-nav ul {
    position: relative;
  }
  .case-page .case-nav ul::after {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    /*border-bottom: 1px solid #bcbcbc;*/
  }
  .case-page .case-nav ul li {
    width: auto!important;
    margin: 0 15px;
  }
  .case-page .case-nav ul li a {
    display: block;
    padding: 8px 10px;
    position: relative;
    border: 1px solid #222;
    border-radius: 5px;
  }
  .case-page .case-nav ul li.active a{
    color: var(--index-main-color);
    border-color: var(--index-main-color);
  }
  /*.case-page .case-nav ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
    background-color: transparent;
  }*/
  .case-page .case-nav ul li.active a::after {
    background-color: #df2323;
  }
  .case-page .case-list {
    margin-top: 90px;
  }
  .case-page .case-list ul {
    margin: -50px -15px;
  }
  .case-page .case-list ul li {
    padding: 50px 15px;
  }
  .case-page .case-list a.more {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #CCCCCC;
  }
  .case-page .case-list a.more:hover {
    color: #FFFFFF;
    background-color: var(--index-main-color);
  }
  
  
  .casedet-1 .videos ul{
    margin: -15px;
  }
  .casedet-1 .videos ul li{
    padding: 15px;
  }
  
  @media screen and (max-width: 1000px) {
    .case-page .case-nav {
      display: none;
    }
    .case-page .case-list {
      margin-top: 0;
    }
    .case-page .case-list ul {
      margin: -15px;
    }
    .case-page .case-list ul li {
      padding: 15px;
    }
  }
  .recruitment-page .recruitment-1 {
    background-image: url(../images/recruitment-1.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 600px;
  }
  .recruitment-page .recruitment-2 {
    margin-top: -160px;
  }
  .recruitment-page .recruitment-2 ul {
    margin: -20px;
  }
  .recruitment-page .recruitment-2 ul li {
    padding: 20px;
  }
  .recruitment-page .recruitment-2 ul li:nth-child(1) .mml-text {
    background: #FFFFFF url(../images/recruitment-1-icon1.jpg) no-repeat right 10% center;
  }
  .recruitment-page .recruitment-2 ul li:nth-child(2) .mml-text {
    background: #FFFFFF url(../images/recruitment-1-icon2.jpg) no-repeat right 10% center;
  }
  .recruitment-page .recruitment-2 .mml-text {
    padding: 60px 40px;
    -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  }
  .recruitment-page .recruitment-2 .mml-text p{
    min-height: 108px;
  }
  .recruitment-page .recruitment-2 .mml-text a.more {
    display: inline-block;
    color: var(--index-main-color);
    border: 1px solid var(--index-main-color);
    padding: 15px 50px;
    transition: .5s ease;
  }
  
  .recruitment-page .recruitment-2 .mml-text a.more:hover{
    color: #FFFFFF;
    background-color: var(--index-main-color);
  }
  
  .recruitment-page .recruitment-3 ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .recruitment-page .recruitment-3 ul li {
    position: relative;
    padding-left: 50px;
  }
  .recruitment-page .recruitment-3 ul li i {
    position: absolute;
    left: 0;
    top: 0;
  }
  .recruitment-page .recruitment-4 .list ul {
    margin: -10px;
  }
  .recruitment-page .recruitment-4 .list ul li {
    padding: 10px;
  }
  .recruitment-page .recruitment-4 .list .text {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 90px 20px;
    color: #FFFFFF;
  }
  .recruitment-page .recruitment-5 {
    position: relative;
    overflow: hidden;
  }
  .recruitment-page .recruitment-5::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    height: 35%;
    background-color: #f5f5f5;
  }
  .recruitment-page .recruitment-5 .list ul {
    margin: -25px;
  }
  .recruitment-page .recruitment-5 .list ul li {
    padding: 25px;
  }
  
  
  .recruitment-page .recruitment-5 .arrow {
    font-size: 20px;
    width: 37px;
    height: 44px;
    line-height: 44px;
    background-color: #e3e3e3;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .recruitment-page .recruitment-5 .arrow_l {
    left: 60px;
  }
  .recruitment-page .recruitment-5 .arrow_r {
    right: 60px;
  }
  
  
  @media screen and (max-width: 1000px) {
    .recruitment-page .recruitment-1 {
      height: 300px;
    }
    .recruitment-page .recruitment-2 ul li {
      width: 100%!important;
    }
    .recruitment-page .recruitment-3 ul {
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
    }
    .recruitment-page .recruitment-3 ul li {
      width: 50%;
      max-width: 100%;
      margin-bottom: 30px;
      padding-right: 15px;
    }
    .recruitment-page .recruitment-4 .list .text {
      padding: 40px 20px;
    }
    .recruitment-page .recruitment-2 ul {
      margin: -15px;
    }
    .recruitment-page .recruitment-2 ul li {
      padding: 15px;
    }
    .recruitment-page .recruitment-2 .mml-text {
      padding: 30px;
    }
    .font-24 {
      font-size: 20px;
      line-height: 2;
    }
    .recruitment-page .recruitment-5 .list ul {
      margin: -15px;
    }
    .recruitment-page .recruitment-5 .list ul li {
      padding: 15px;
    }
  }
  @media screen and (max-width: 700px) {
    .recruitment-page .recruitment-3 ul li {
      width: 100%;
    }
  }
  .jobs-page .job-search form input,
  .jobs-page .job-search form select,
  .jobs-page .job-search form button {
    width: 100%;
    height: 60px;
    font-family: arial;
  }
  .jobs-page .job-search form input,
  .jobs-page .job-search form select {
    border: 1px solid #c0c0c0;
    font-size: 16px;
    padding: 0 30px;
  }
  .jobs-page .job-search form button {
    font-size: 18px;
    font-weight: bold;
    border: none;
    color: #FFFFFF;
    background-color: var(--index-main-color);
  }
  .jobs-page .job-search form ul {
    margin: -10px;
  }
  .jobs-page .job-search form ul li {
    padding: 10px;
  }
  .jobs-page .job-search form ul li:nth-child(1) {
    width: 30%;
  }
  .jobs-page .job-search form ul li:nth-child(2) {
    width: 25%;
  }
  .jobs-page .job-search form ul li:nth-child(3) {
    width: 25%;
  }
  .jobs-page .job-search form ul li:nth-child(4) {
    width: 20%;
  }
  .jobs-page .job-list ul li {
    border-bottom: 1px solid #d1d1d1;
  }
  .jobs-page .job-list p,
  .jobs-page .job-list time {
    color: #717171;
  }
  .jobs-single h4 {
    border-bottom: 1px solid #d1d1d1;
  }
  .jobs-single a.apply {
    display: inline-block;
    line-height: 68px;
    color: #FFFFFF;
    background-color: var(--index-main-color);
    padding: 0 30px;
    transition: .5s ease;
  }
  .jobs-single a.apply:hover{
    background-color: #000000;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  }
  .jobs-single a.apply img {
    vertical-align: sub;
    margin-left: 15px;
  }
  .select-container {
    position: relative;
  }
  .select-btn {
    font-size: 16px;
    width: 100%;
    height: 60px;
    line-height: 60px;
    padding-left: 30px;
    background-color: #fff;
    color: #666666;
    border: 1px solid #c0c0c0;
    cursor: pointer;
    position: relative;
  }
  .select-btn::after {
    content: '';
    width: 15px;
    height: 10px;
    background: url(../images/arrow-down.png);
    position: absolute;
    right: 20px;
    top: 25px;
  }
  .options {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 100%;
    -webkit-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  }
  .options a {
    color: #666666;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
  }
  .options a:hover {
    color: #fff;
    background-color: var(--index-main-color);
  
  }
  .select-container:hover .options {
    display: block;
  }
  .select-container:hover .select-btn {
    border: 1px solid var(--index-main-color);
  }
  @media screen and (max-width: 1000px) {
    .jobs-page .job-search form ul li {
      width: 100%!important;
    }
    .options {
      /*display: block;*/
      position: relative;
    }
  }
  @media screen and (max-width: 700px) {
    .jobs-page .job-list ul li {
      padding: 30px 0;
    }
    .jobs-page .job-list ul li .fl,
    .jobs-page .job-list ul li .fr {
      float: none;
    }
    .jobs-page .job-list time {
      margin-top: 30px;
    }
  }
  
  
  .default-car{
      animation:defaultCar 0.8s 0s linear;
      animation-fill-mode: forwards;
  }
  
  @keyframes defaultCar {
      0% {
          right: 100%;
      }
      100% {
          right:0;
      }
  }
  
  
  
  .inner-page .m-page {
    text-align: right;
    float: none;
    margin: 80px -5px 0;
  }
  .inner-page .m-page a,
  .inner-page .m-page span {
    display: inline-block;
    text-align: center;
    width: 45px;
    height: 35px;
    font-size: 15px;
    line-height: 35px;
    border-radius: 5px;
    color: #111;
    font-weight: 500;
    -moz-box-shadow: 0 2px 10px 0 #d8dde6;
    -o-box-shadow: 0 2px 10px 0 #d8dde6;
    box-shadow: 0 2px 10px 0 #d8dde6;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    margin: 5px;
  }
  .inner-page .m-page span.current{
    background-color: var(--index-main-color);
    color: #fff;
  }
  .inner-page .m-page a:hover {
    background: var(--index-main-color) none repeat scroll 0 0;
    color: #fff;
  }
  
  
  .mc_e1_lisbox {
      position: relative;
      display: block;
      transition: all .36s;
  }
  .mc_e1_lisbox .img-box{
    border-radius: 10px;
  }
  
  .mc_e1_lisbox:hover {
      box-shadow: 0 5px 47px 4px rgba(214,211,211,.75);
  }
  .gallery-page .news-list{
    margin-top: 4vw;
  }
  .gallery-page .mc_e1_txtbox{
     padding: 18px 0 0;
  }
  .gallery-page .mc_e1_txtbox a{
    color: #222;
  }
  .gallery-page .news-list ul li h4{
    min-height: unset;
  }
  .gallery-page .mc_e1_lisbox:after,
  .gallery-page .mc_e1_lisbox:before{
     display: none;
  }
  .gallery-page .mc_e1_lisbox:hover{
    box-shadow: unset;
  }
  .gallery-page .news-list ul li{
    padding: 20px 25px 20px;
  }
  .mc_e1_txtbox time{
    opacity: 0;
  }
  .mc_e1_txtbox {
      padding: 18px 28px 38px;
  }
  .mc_e1_txtbox a{
    color: var(--index-main-color);
  }
  
  .mc_e1_lisbox::before {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      z-index: 1;
      width: 100%;
      height: 1px;
      background: #e2e0e0;
  }
  
  .mc_e1_lisbox::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      z-index: 1;
      width: 0;
      height: 1px;
      background: #df2323;
      transition: all .36s;
  }
  
  .mc_e1_lisbox:hover::after {
      width: 100%;
  }
  
  
  
  .geek_picking_goodstable {
      height: auto;
  }
  .mCSB_container {
    width: auto;
    margin-right: 40px;
    overflow: hidden;
  }
  
  
  .link_app{
    display: inline-block;
    color: #FFFFFF;
    background: var(--index-main-color);
    padding: 15px 55px;
  }
  
  
  @media screen and (max-width: 1000px) {
    .geek_picking_goodstable{
      height: auto;
    }
  
    table{
      height: 420px!important;
    }
  }
  
  
  
  
  /* banner3 */
  .banner3 {
    position: relative;
    overflow: hidden;
  }
  .banner3 .line{
    position: absolute;
    left: 0;
    top: 0;
  }
  .banner3 .title {
    position: absolute;
    left: 5%;
    top: 5%;
  }
  .banner3 .title h4 {
    color: #FFFFFF;
    font-size: 48px;
    font-weight: 900;
  }
  .banner3 .line-text {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .banner3 .line-text .txt {
    font-size: 16px;
    position: absolute;
    color: #FFFFFF;
  }
  .banner3 .line-text .txt:nth-child(1) {
    left: 12%;
    top: 78%;
  }
  .banner3 .line-text .txt:nth-child(2) {
    left: 44%;
    top: 86%;
  }
  .banner3 .line-text .txt:nth-child(3) {
    left: 49%;
    top: 78%;
  }
  .banner3 .line-text .txt:nth-child(4) {
    left: 61%;
    top: 71%;
  }
  .banner3 .line-text .txt:nth-child(5) {
    left: 71%;
    top: 61%;
  }
  .banner3 .line-text .txt:nth-child(6) {
    left: 76%;
    top: 22%;
  }
  .banner3 .line-text .txt:nth-child(7) {
    left: 70%;
    top: 12%;
  }
  .banner3 .line-text .txt:nth-child(8) {
    left: 60%;
    top: 5%;
  }
  .banner3 .line-text .txt:nth-child(9) {
    left: 51%;
    top: 8%;
  }
  .banner3 .line-text .txt:nth-child(10) {
    left: 43%;
    top: 5%;
  }
  .banner3 .line-text .txt:nth-child(11) {
    left: 28%;
    top: 26%;
  }
  .banner3 .tag {
    position: absolute;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
  }
  .banner3 .tag i {
    position: relative;
    z-index: 1;
    display: inline-block;
    width: 33px;
    height: 33px;
    background: url(../images/tag-icon.jpg) no-repeat center;
    background-size: cover;
  }
  .banner3 .tag.tag1 {
    left: 32%;
    top: 19%;
  }
  .banner3 .tag.tag2 {
    left: 24%;
    top: 58%;
  }
  .banner3 .tag.tag3 {
    left: 50%;
    top: 65%;
  }
  .banner3 .tag > div {
    line-height: 1.2;
    color: #2881b6;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    width: 90px;
    height: 33px;
    background-color: #FFFFFF;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }
  .banner3 .mml-text {
    position: absolute;
    right: 5%;
    bottom: 2%;
    max-width: 630px;
    width: 100%;
  }
  .banner3 .mml-text h5 {
    color: #FFFFFF;
  }
  .banner3 .mml-text span {
    color: #FFFFFF;
  }
  .banner3 .mml-text a.more {
    line-height: 30px;
    padding: 0 15px;
    display: inline-block;
    color: var(--index-main-color);
    background-color: #FFFFFF;
    -webkit-transition: .5s ease;
    -moz-transition: .5s ease;
    transition: .5s ease;
  }
  .banner3 .mml-text a.more:hover {
    color: #FFFFFF;
    background-color: var(--index-main-color);
  }
  
  
  
  #banner .slick-slide .title h4{
    transform: translateY(100%);
    opacity: 0;
    transition: .5s ease;
  }
  #banner .slick-active .title h4{
    transform: translateY(0);
    opacity: 1;
    transition-delay: 1.5s;
  }
  
  #banner .slick-slide .line-text .txt{
    transform: translateX(100%);
    opacity: 0;
    transition: .5s ease;
  }
  #banner .slick-active .line-text .txt{
    transform: translateX(0);
    opacity: 1;
    transition-delay: 1.5s;
  }
  
  
  #banner .slick-slide .tag>div{
    transform: translateX(-100%);
    opacity: 0;
    transition: .5s ease;
  }
  #banner .slick-active .tag>div{
    transform: translateX(0);
    opacity: 1;
    transition-delay: 1.5s;
  }
  
  
  #banner .slick-slide .mml-text{
    transform: translateY(100%);
    opacity: 0;
    transition: .5s ease;
  }
  #banner .slick-active .mml-text{
    transform: translateY(0);
    opacity: 1;
    transition-delay: 1.5s;
  }
  
  @media screen and (max-width: 1600px) {
    .banner3 .title h4{
      font-size: 36px;
    }
    
    .banner3 .line-text .txt{
      font-size: 12px;
    }
    
    .banner3 .mml-text{
      width: 100%;
      max-width: 300px;
      right: 0;
      bottom: 0;
      padding: 15px;
    }
  
    .banner3 .mml-text h5 br{
      display: none;
    }
  }
  
  @media screen and (max-width: 1200px) {
    .banner3 .title{
      display: none;
    }
    .banner3 .line{
      display: none;
    }
    .banner3 .line-text{
      display: none;
    }
    .banner3 .tag{
      display: none;
    }
  
    .banner3 .mml-text{
      max-width: 700px;
    }
  }
  
  
  @media screen and (max-width: 700px) {
    .banner3 .mml-text span{
      display: none;
    }
  }
  
  
  
  .case-banner .line {
    position: absolute;
    left: 0;
    top: 0;
  }
  .case-banner .line-text {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .case-banner .line-text .txt {
    font-size: 16px;
    position: absolute;
    color: #FFFFFF;
  }
  .case-banner .line-text .txt:nth-child(1) {
    left: 26%;
    top: 93%;
  }
  .case-banner .line-text .txt:nth-child(2) {
    left: 40.5%;
    top: 88%;
  }
  .case-banner .line-text .txt:nth-child(3) {
    left: 56%;
    top: 79%;
  }
  .case-banner .line-text .txt:nth-child(4) {
    left: 68%;
    top: 66%;
  }
  .case-banner .line-text .txt:nth-child(5) {
    left: 75%;
    top: 6%;
  }
  .case-banner .line-text .txt:nth-child(6) {
    left: 47%;
    top: 7.5%;
  }
  .case-banner .line-text .txt:nth-child(7) {
    left: 27%;
    top: 20%;
  }
  .case-banner .mml-text {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 750px;
    padding: 30px 60px;
  }
  .case-banner .mml-text h5 {
    color: #FFFFFF;
  }
  .case-banner .mml-text p {
    color: #FFFFFF;
  }
  
  @media screen and (max-width: 1600px) {
    .case-banner .line-text .txt{
      font-size: 12px;
    }
  
    .case-banner .mml-text {
        max-width: 350px;
        padding: 15px 15px;
    }
  }
  
  @media screen and (max-width: 1200px) {
    .case-banner .line{
      display: none;
    }
    .case-banner .line-text{
      display: none;
    }
    .case-banner .mml-text{
      max-width: 700px;
    }
    
  }
  
  @media screen and (max-width: 700px) {
    .case-banner .mml-text{
      display: none;
    }
  }
  
  
  
  /* download */
  .download-page ul{
      margin:-15px;
  }
  .download-page ul li{
      padding:15px;
  }
  
  .download-page ul li .box{
      background-color: #e9e9e9;
      padding:15px;
  }
  
  .download-page ul li .box .img{
      width:40%;
  }
  
  .download-page ul li .box .text{
      width:60%;
  }
  
  .download-page ul li .box .text p{
      margin-top: 10px;
      width: auto;
      height: 80px;
      line-height: 28px;
      position: relative;
      top: 0px;
      left: 0px;
  }
  
  .download-page ul li .box a{
      display: inline-block;
      padding:0 20px;
      height: 36px;
      color: #ffffff;
      font-size: 14px;
      text-align: center;
      line-height: 36px;
      background-color: var(--index-main-color);
  }
  
  .download-page ul li .box a:hover{
    background-color: #000000;
  }
  
  @media screen and (max-width: 1000px) {
    .download-page ul li{
      width: 100%!important;
    }
  }
  @media screen and (max-width: 500px) {
    .download-page ul li .box .img{
      width: 100%!important;
    }
    .download-page ul li .box .text{
      width: 100%!important;
      padding: 15px;
    }
  
    .download-page ul li .box .text p{
      height: auto;
    }
  }
  
  
  
  .tag-icon{
    width: 243px;
    height: 63px;
    background-image: url(../images/dacd.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    position: absolute;
    left: 0;
    top: 0;
  }
  /*product list*/
  .inner-page .sideLeft {
    width: 30%;
    padding-right: 30px;
    display: none;
  }
  .inner-page .sideLeft .box {
    padding: 30px;
    background: #f7f7f7;
    border-radius: 10px;
  }
  .inner-page .sideLeft .box h3 {
    display: block;
    padding: 40px 25px;
    background: var(--index-main-color);
    font-size: 28px;
    font-weight: bold;
    color: white;
    border-radius: 10px;
  }
  .inner-page .sideLeft .box .list ul li {
    margin-top: 6px;
    /*padding: 10px 20px;*/
    /*border-left: 4px solid var(--index-main-color);*/
    font-size: 18px;
    line-height: 32px;
    color: black;
    /*background: white;*/
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    position: relative;
  }
  .inner-page .sideLeft .box .list ul li>a{
    padding: 10px 20px;
    display: block;
    border-left: 4px solid var(--index-main-color);
    background: white;
    border-radius: 10px;
  }
  .inner-page .sideLeft .box .list ul li ul li>a{
    padding-left: 40px;
  }
  .inner-page .sideLeft .box .list ul li ul li{
    border-left: none;
    padding-left: 20px;
  }
  .inner-page .sideLeft .box .list ul li i{
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-content: center;
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 10px;
    cursor: point;
  }
  .inner-page .sideLeft .box .list ul li img {
      max-width: 80px;
      display: inline-block;
      vertical-align: middle;
      margin-right: 30px;
  }
  .inner-page .sideLeft .box .list ul li.active>a,
  .inner-page .sideLeft .box .list ul li:hover>a {
    background: var(--index-main-color);
    color: white;
  }
  .inner-page .sideLeft .img {
      display: block;
      margin-top: 40px;
      padding: 60px 5%;
      text-align: center;
      color: #fff;
      background-size: 100%;
      background-repeat: no-repeat;
      border-radius: 10px;
  }
  .inner-page .sideLeft .img h4 {
    display: block;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
  }
  .inner-page .sideLeft .img p {
    display: block;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    margin: 25px 0 45px;
  }
  .inner-page .sideLeft .img a.more {
    line-height: 36px;
    height: 36px;
    padding: 0 32px;
    border: 1px solid white;
    font-size: 14px;
    text-transform: uppercase;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    display: inline-block;
    color: #fff;
  }
  .inner-page .sideLeft .img a.more:hover {
    background: var(--index-main-color);
    color: white;
  }
  .inner-page .sideRight .category-list{
    flex-wrap: wrap;
    justify-content: center;
  }
  .inner-page .sideRight .category-list .item{
    color: #222;
    position: relative;
  }
  .inner-page .sideRight .category-list .item .category-name{
    padding: 4px 8px;
    margin: 16px 6px;
    border: 1px solid #7e7e7e;
    border-radius: 5px;
    display: block;
    transition: .3s;
  }
  .inner-page .sideRight .category-list .item.active .category-name{
    border-color:var(--index-main-color);
    background-color: var(--index-main-color);
    color: #fff;
  }
  .inner-page .sideRight .category-list .item .category-name:hover{
    border: 1px solid var(--index-main-color);
    background-color: var(--index-main-color);
    color: #fff;
  }
  .inner-page .sideRight .category-list .item .category-list1{
    position: absolute;
    left: 6px;
    top: 62px;
    background: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, .2);
    border-radius: 5px;
    z-index: -1;
    transform-origin: center top;
    transform: scaleY(0);
    transition: .3s;
  }
  .inner-page .sideRight .category-list .item:hover .category-list1{
    z-index: 2;
    transform: scaleY(1);
  }
  .inner-page .sideRight .category-list .item .category-list1 .item1{
    
  }
  .inner-page .sideRight .category-list .item .category-list1 .item1 .category-name1{
    display: block;
    margin-bottom: 0;
    padding: 4px 8px;
    transition: .3s;
  }
  .inner-page .sideRight .category-list .item .category-list1 .item1.active .category-name1{
    background: var(--index-main-color);
    color: #fff;
  }
  .inner-page .sideRight .category-list .item .category-list1 .item1 .category-name1:hover{
    background: var(--index-main-color);
    color: #fff;
  }

  .inner-page .sideRight {
    width: 100%;
  }
  .inner-page .sideRight .fenlei {
    color: var(--index-main-color);
    margin-top: 10px;
      line-height: 30px;
      margin-bottom: 10px;
      text-align: center;
      font-weight: 600;
  }
  .inner-page .sideRight .content {
    line-height: 2;
  }
  .product-page {
    padding: 90px 0 60px;
  }
  .product-page .productList {
    margin-bottom: 60px;
  }
  .product-page .productList ul {
    margin: -20px;
  }
  .product-page .productList ul li {
    padding: 20px;
    width: 50%;
  }
  .product-page .productList ul li a.more {
  line-height: 45px;
      height: 45px;
      padding: 0px 20px;
      border-radius: 4px;
      background: var(--index-main-color);
      color: #fff;
      font-size: 14px;
      font-weight: 700;
      display: inline-block;
      -webkit-transition: .5s;
      -moz-transition: .5s;
      transition: .5s;
  }
  .product-page .productList ul li a.more i {
    margin-left: 22px;
    font-size: 70%;
    transform: translateY(0);
  }
  .product-page .productList ul li a.more:hover {
    background: #111;
  }
  .productList ul {
    margin: -15px;
  }
  .productList ul li {
    padding: 15px;
  }
  /*.productList ul li .box2 {
    -o-box-shadow: 0 0 18px rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: 0 0 18px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.05);
    padding: 10px 20px;
    background: #f6f6f6;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
  }*/
  .productList ul li .box2{
    display: flex;
    background-color: rgb(246, 246, 246);
    border-radius: 20px;
    padding: 25px;
  }
  .productList ul li .box2 .box-right{
    max-width: 365px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  .productList ul li .box2 h5 {
    font-size: 18px;
    /*font-weight: bold;*/
    line-height: 32px;
    /*padding: 10px 10px;*/
    /*border-top: 2px solid #eee;*/
    -webkit-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    margin-bottom: 40px;
    
  }
  .productList ul li .box2 h5 a {
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp:unset;
  }
  .productList ul li:hover .box2 h5 {
    color: var(--index-main-color);
  }
  .productList ul li .box2 a.img {
    display: block;
    /*margin: 25px 0 20px;*/
    position: relative;
    /*background-color: rgb(246, 246, 246);*/
    /*border-radius: 50px 0px 50px 50px;*/
    max-width: 365px;
  }
  .productList ul li .box2 a.img .icon-plus{
      position: absolute;
      right: 0px;
      top: 0px;
      width: 49px;
      height: 48px;
      background-color: var(--index-main-color);
      display: flex;
      -webkit-box-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      align-items: center;
      transform-origin: right top;
      border-radius: 24px 0px 24px 24px;
      transition: 0.3s;
  }
   .productList ul li .box2 a.img .icon-plus img{
     width: auto;
   }
  .productList ul li:hover .box2 a.img .icon-plus{
    transform: scale(1.306);
  }



  .productList ul li .box2 a.img img {
    width: 100%;
  }
  .productList ul li .box2 .text {
    margin-bottom: 20px;
    font-size: 15px;
    color: #757575;
  }
  .productList ul li .box2 .text p {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
  }
  .productList ul li .box2 .text p:before {
    content: '';
    width: 16px;
    height: 16px;
    background: url("../images/icon-2-1.png") center center no-repeat;
    position: absolute;
    left: 0;
    top: 4px;
  }
  .productList ul li .box2 .text p:last-child {
    margin-bottom: 0;
  }
  .productList ul li .box2 a.more {
    line-height: 40px;
    height: 40px;
    padding-right: 20px;
    padding-left: 15px;
    font-size: 12px;
    /*margin-bottom: 25px;*/
    background: #2b3e4b;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
  }
  .productList ul li .box2 a.more:hover {
    background: var(--base-color);
  }
  .productList ul li .box2:after {
    content: '';
    width: 100%;
    bottom: -5px;
    right: -20px;
    height: 8px;
    display: block;
    position: absolute;
    border-top-left-radius: 4px;
    background: var(--base-color);
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
  }
  .productList ul li .box2:hover:after {
    bottom: 0;
  }
  .productList ul li .box2 .text{
        display: none;
  }
  
  
  /*.product-page .productList ul li a.more {
    display: none;
  }*/
  
  .productList ul li .box2:after{
      display: none;
  }
  .productList ul li .box2{
     transition: all .8s ease;
  }
  .productList ul li .box2 .p-logo {
      position: absolute;
      left: 0;
      top: 0;
      z-index: 2;
  }
  .product-page .productList ul li:hover .p-logo img {
      transform: scale3d(1,1,1);
      transition: all .8s ease;
  }
  .productList ul li .box2 .p-logo img {
      padding-top: 15px;
      padding-left: 15px;
      max-width: 150px;
  }
  @media screen and (max-width: 1600px) {
    .product-page {
      padding: 50px 0;
    }
    .inner-page .sideLeft .box h3 {
      padding: 30px 15px;
      font-size: 28px;
      line-height: 1;
    }
    .inner-page .sideLeft .box .list ul li img {
      margin-right: 10px;
    }
    .inner-page .sideLeft .box .list ul li {
      padding: 5px 10px;
      font-size: 16px;
    }
    .inner-page .sideLeft .box {
      padding: 10px;
    }
    .inner-page .sideLeft .img p {
      margin: 20px 0 30px;
    }
    .inner-page .sideLeft .img {
      padding: 40px 15px;
    }
    .product-page .productList ul li a.more,
    .newsList ul li .box a.more {
      line-height: 40px;
      height: 40px;
      padding: 0 20px;
    }
    .product-page .productList ul li {
      padding: 5px;
    }
    .product-page .productList ul {
      margin: -5px;
    }
    .inner-banner.about{
      height: 500px;
    }
    .about-page .about-2{
      height: auto;
      padding-top:40px;
      padding-bottom: 40px; 
    }
    .about-page .about-2 .ui.container ul.navlist{
    display: none;
  }
  }
  @media screen and (max-width: 1000px) {
     .productList ul li .box2 h5 {
      font-size: 16px;
      line-height: 30px;
    }
    .product-page .productList ul li a.more,
    .newsList ul li .box a.more {
      line-height: 34px;
      height: 34px;
      padding: 0 15px;
      font-size: 14px;
    }
    .inner-banner {
      height: 300px;
      padding-top: 60px;
  }
  .inner-banner h2{
    font-size: 30px;
  }
  .inner-banner.about{
    height: 400px;
    
  }
  
  .about-page .about-2 .ui.container ul.historylist li .item p{
    max-height: 300px;
    overflow: hidden;
  }
  .about-page .about-4{
    background-size: cover;
  }
  }
  @media screen and (max-width: 700px) {
     .product-page .productList .grid-box.three>.column{
      width: 100%;
    }
    .inner-banner h2{
    font-size: 16px;
    line-height: 30px;
  }
  .font-36 {
      font-size: 20px;
  }
  .prodet-page .prodet-1 .small ul li{
    width: 33.33%;
  }
  .inner-banner.about{
    height: 300px;
  }
  }
  @media screen and (max-width: 500px) {
   .inner-banner {
      height: 200px;
      padding-top: 40px;
  }
  }
  /*.product-page .productList ul li:hover img {
      transform: scale3d(1.05, 1.05, 1);
      transition: all .8s ease;
  }*/
  
  .productList ul li .box2 a.img img {
      width: 100%;
      transition: all .8s ease;
  }
  
  
  .productList ul li .box2 .text{
        display: none;
  }
  
  /*inner css end*/
  .hoveranimation[data-v-203185b2]{
    background: var(--base-color)!important;
  }
  .hoveranimation{
    background: var(--index-main-color);
  }
  @media screen and (max-width: 1200px) {
  .inner-page .sideLeft{
      display: none;
    }
    .inner-page .sideRight {
      width: 100%;
  }
  }
  .bankuai h2 {
      color: #212121;
      line-height: 1.5;
      margin-top: 20px;
      /* margin-bottom: 65px; */
      text-align: center;
  }
  .font-16 h1{
    display: inline;
  }
  a.foot-link.roadfinetech{
        width: 570px;
        white-space:nowrap;
        overflow:hidden;
        text-overflow:ellipsis;
        font-size: 16px;
        line-height: 30px;
        color: #7b7b7b;
        margin: 0 10px;
  }
  .font-16 {
      text-align: left;
      line-height: 1.875;
      color: #636363;
      margin-bottom: 25px;
  }
  .focus{
    width: 50%
  }
  .pt-70{
    padding-top: 70px;
  }
  @-webkit-keyframes sca_ani_2 {
    0% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
    100% {
      -webkit-transform: scale(2);
      transform: scale(2);
      opacity: 0;
    }
  }
  @-moz-keyframes sca_ani_2 {
    0% {
      -moz-transform: scale(1);
      transform: scale(1);
    }
    100% {
      -moz-transform: scale(2);
      transform: scale(2);
      opacity: 0;
    }
  }
  @-o-keyframes sca_ani_2 {
    0% {
      -o-transform: scale(1);
      transform: scale(1);
    }
    100% {
      -o-transform: scale(2);
      transform: scale(2);
      opacity: 0;
    }
  }
  @keyframes sca_ani_2 {
    0% {
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      -o-transform: scale(1);
      transform: scale(1);
    }
    100% {
      -webkit-transform: scale(2);
      -moz-transform: scale(2);
      -o-transform: scale(2);
      transform: scale(2);
      opacity: 0;
    }
  }
  .technology-page{
    padding: 80px 0 120px;
  }
  .technology-page .init-1 {
    text-align: center;
  }
  .technology-page .init-1 .container .tips { 
    font-weight: bold;
    text-transform: uppercase;
  }
  
  .technology-page .init-1 .center{
    font-size: 16px;
    text-align: center;
    color: #636363;
    margin-top: 20px;
  }
  
  .elevator-page  .center{
    font-size: 16px;
    text-align: center;
    color: #636363;
    margin-top: 20px;
  }
  
  .technology-page .init-1 .container .content {
    margin-top: 100px;
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
  }
  .technology-page .init-1 .container .content .list {
    position: relative;
    width: 20%;
  }
  .technology-page .init-1 .container .content .list .title_c {
    position: relative;
    width: 46px;
    height: 46px;
    margin: auto;
  }
  .technology-page .init-1 .container .content .list .title_c::after{
    content: "";
    position: absolute;
    left: 90px;
    top: 50%;
    width: 240px;
    height: 1px;
    border-top: 1px dashed #999;
  }
  .technology-page .init-1 .container .content .list:last-child .title_c::after{
    content: none;
  }
  .technology-page .init-1 .container .content .list .title_c .ling {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--index-main-color);
    border-radius: 50%;
    -webkit-animation: sca_ani_2 2s linear infinite;
    -moz-animation: sca_ani_2 2s linear infinite;
    -o-animation: sca_ani_2 2s linear infinite;
    animation: sca_ani_2 2s linear infinite;
  }
  .technology-page .init-1 .container .content .list .title_c .ling:nth-child(2) {
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    -o-animation-delay: 1s;
    animation-delay: 1s;
  }
  .technology-page .init-1 .container .content .list .title_c .cont {
    position: relative;
    z-index: 2;
    background-color: var(--index-main-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 46px; 
    font-weight: 600;
    color: #fff;
  }
  .technology-page .init-1 .container .content .list .des {
    margin-top: 40px;
    text-align: center;
  }
  
  .technology-page .init-1 .container .content .list2 .title_c::before {
    left: -330px;
  }
  .technology-page .init-2 .container .list .column {
    position: relative;
    z-index: 1;
    vertical-align: middle;
  }
  .technology-page .init-2 .container .list .left img {
    width: 100%;
    border-radius: 20px;
  }
  .technology-page .init-2 .container .list .right {
    padding-left: 60px;
  }
  .technology-page .init-2 .container .list .right .tips {
    font-weight: 600; 
    text-transform: uppercase;
  }
  .technology-page .init-2 .container .list .right .des {
    margin-top: 10px;
  }
  .technology-page .init-2 .container .list:nth-child(2n) .left {
    left: 50%;
  }
  .technology-page .init-2 .container .list:nth-child(2n) .right {
    left: -50%;
    padding-left: 0;
    padding-right: 60px;
  }
  @media (max-width: 1600px){
     .technology-page .init-1 .container .content .list .title_c::after{
       width: 180px;
     }
  }
  @media (max-width: 1400px){
     .technology-page .init-1 .container .content .list .title_c::after{
       width: 140px;
     }
  }
  @media (max-width: 1200px){
     .technology-page .init-1 .container .content .list .title_c::after{
       width: 100px;
     }
  }
  @media (max-width: 1000px){
     .technology-page .init-1 .container .content .list {
      width: 50%;
    }
    .technology-page .init-1 .container .content .list .title_c::after{
      display: none;
    }
    .technology-page .init-2 .container .list .left {
      width: 100%;
      padding: 0;
    }
    .technology-page .init-2 .container .list .right {
      width: 100%;
      padding: 0;
      text-align: center;
      margin-top: 20px;
    }
    .technology-page .init-2 .container .list:nth-child(2n) .left {
      left: 0;
    }
    .technology-page .init-2 .container .list:nth-child(2n) .right {
      left: 0;
      padding: 0;
    }
  }
  @media (max-width: 700px){
     .technology-page .init-1 .container .content {
      margin-top: 10px;
    }
    .technology-page .init-1 .container .content .list {
      width: 100%;
      margin: 40px 0 0;
    }
  }
  @media (max-width: 500px) {
    .technology-page .init-1 .container .content .list .des {
      margin-top: 20px;
    }
  }
  
  .elevator-page h2.title {
    font-size: 36px;
    line-height: 1.4;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  .elevator-page h2.dex  {
    font-size: 48px;
    line-height: 1.4;
    font-weight: bold;
    text-transform:uppercase;
  }
  
  .elevator-page .elevator-1 {
    padding: 55px 0;
    text-align: center;
  }
  .elevator-page .elevator-1 h2 small {
    display: block;
    font-size: 48%;
    font-weight: normal;
    margin-top: 1em;
  }
  .elevator-page .elevator-1 .text {
    font-weight: bold;
    font-size: 20px;
    line-height: 1.6;
    margin-top: 1.5em;
  }
  
  .whtie{
     color: white;
  }
  
  .elevator-page .elevator-2 {
    padding: 50px 0;
    background: url("../images/inner-CAPABILITIES-banner2.jpg");
    color: white;
  }
  .elevator-page .elevator-2 .left {
    margin-top: 1.5em;
    vertical-align: middle;
  }
  .elevator-page .elevator-2 .left .text {
    margin-top: 3em;
  }
  .elevator-page .elevator-2 .right {
    vertical-align: middle;
    padding-left: 4%;
  }
  .elevator-page .elevator-2 .right .img {
    height: 580px;
    background-size: cover;
    background-position: center center;
    display: block;
  }
  .elevator-page .elevator-3 {
    padding: 80px 0;
    text-align: center;
  }
  
  .elevator-page .elevator-5 {
    padding: 80px 0;
    text-align: center;
  }
  
  .elevator-page .elevator-3 h2 {
    padding: 0 5%;
  }
  .elevator-page .elevator-3 .img {
    margin: 20px 0;
    text-align: center;
  }
  .elevator-page .elevator-3 .img img {
    display: block;
    margin: 0 auto;
  }
  .elevator-page .elevator-3 .list ul {
    margin: -30px -15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .elevator-page .elevator-3 .list ul li {
    padding: 30px 15px;
  }
  .elevator-page .elevator-3 .list ul li .box {
    height: 100%;
    padding: 45px 30px;
    border-radius: 10px;
    border: 1px solid #979797;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
  }
  .elevator-page .elevator-3 .list ul li .box i {
    display: block;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
  }
  .elevator-page .elevator-3 .list ul li .box i img {
    display: block;
    margin: 0 auto;
  }
  .elevator-page .elevator-3 .list ul li .box h6 {
    display: block;
    font-size: 20px;
    font-weight: bold;
    margin: 1em 0;
  }
  .elevator-page .elevator-3 .list ul li .box .text{
    font-size: 18px;
  }
  .elevator-page .elevator-3 .list ul li .box:hover {
    background: var(--index-main-color);
    color: white;
  }
  .elevator-page .elevator-3 .list ul li .box:hover i {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
  }
  .elevator-page .elevator-4 {
    padding: 20px 0 100px;
    text-align: center;
    background: url("../images/elevator-4-bg.jpg") center center;
    background-size: cover;
    background-attachment: fixed;
  }
  .elevator-page .elevator-4 .list {
    margin-top: 70px;
  }
  .elevator-page .elevator-4 .list .slide {
    margin-top: 60px;
  }
  .elevator-page .elevator-4 .list .slide:first-child {
    margin-top: 0;
  }
  .elevator-page .elevator-4 .list .slide .left {
    vertical-align: middle;
    padding-right: 3%;
    position: relative;
  }
  .elevator-page .elevator-4 .list .slide .left .img {
    height: 320px;
    background-size: cover;
    background-position: center center;
    display: block;
  }
  .elevator-page .elevator-4 .list .slide .right {
    vertical-align: middle;
    padding-left: 3%;
    text-align: left;
    position: relative;
  }
  .elevator-page .elevator-4 .list .slide .right h3 {
    font-weight: bold;
    font-size: 30px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .elevator-page .elevator-4 .list .slide .right h3:after {
    content: '';
    width: 22%;
    height: 3px;
    background: var(--index-main-color);
    display: block;
  }
  .elevator-page .elevator-4 .list .slide .right .text {
    margin-top: 1.5em;
    font-weight: 300;
    max-height: 220px;
    overflow: auto;
  }
  .elevator-page .elevator-4 .list .slide:nth-child(even) .left {
    left: 50%;
    padding-left: 3%;
    padding-right: 0;
  }
  .elevator-page .elevator-4 .list .slide:nth-child(even) .right {
    padding-left: 0;
    padding-right: 3%;
    left: -50%;
  }
  @media screen and (max-width: 1700px){
    .elevator-page .elevator-1 .text,
    .elevator-page .elevator-3 .list ul li .box h6 {
      font-size: 18px;
    }
     .elevator-page .elevator-4 .list .slide .right h3 {
      font-size: 24px;
    }
    .elevator-page h2.title {
      font-size: 32px;
    }
    .elevator-page .elevator-2 .right .img {
      height: 480px;
    }
    .elevator-page .elevator-3 .img img {
      max-width: 70%;
    }
    .elevator-page .elevator-3 .list ul li .box {
      padding: 20px;
    }
    .elevator-page .elevator-3 .list ul li .box i {
      height: 40px;
    }
    .elevator-page .elevator-3 .list ul li .box i img {
      max-height: 100%;
    }
    .elevator-page .elevator-3 .list ul li {
      padding: 10px;
    }
    .elevator-page .elevator-3 .list ul {
      margin: -10px;
    }
    .elevator-page .elevator-4 .list .slide .left .img {
      height: 280px;
    }
  }
  @media screen and (max-width: 1500px){
     .elevator-page .elevator-1 .text,
    .elevator-page .elevator-3 .list ul li .box h6 {
      font-size: 16px;
    }
     .elevator-page h2.title {
      font-size: 28px;
    }
     .elevator-page .elevator-4 .list .slide .left .img {
      height: 240px;
    }
    .elevator-page .elevator-4 .list .slide .right h3 {
      font-size: 20px;
    }
  }
  @media screen and (max-width: 1250px){
     .elevator-page h2.title {
      font-size: 24px;
    }
    .elevator-page .elevator-1 .text,
    .elevator-page .elevator-3 .list ul li .box h6 {
      font-size: 14px;
    }
     .elevator-page .elevator-4 .list .slide .left .img {
      height: 200px;
    }
    .elevator-page h2.dex{
      font-size: 30px;
    }
  }
  @media screen and (max-width: 1000px){
    .elevator-page h2.title {
      font-size: 20px;
    }
    .elevator-page .elevator-4 .list .slide .right h3 {
      font-size: 18px;
    } 
    .elevator-page .elevator-4 .list .slide .left {
      width: 100%;
      padding: 0 !important;
      left: 0 !important;
    } 
    .elevator-page .elevator-4 .list .slide .right {
      width: 100% !important;
      left: 0 !important;
      padding: 20px 0 !important;
    }
    .elevator-page .elevator-2 .right {
      display: none;
    }
    .elevator-page .elevator-2 .left {
      width: 100%;
      padding-right: 0;
      margin-top: 0;
    }
    .elevator-page .elevator-3 {
      padding: 50px 0;
    }
    .elevator-page .elevator-3 .list ul li {
      width: 50%;
    }
    .elevator-page .elevator-4 .list .slide {
      margin-top: 0;
    }
    .elevator-page .elevator-4 .list {
      margin-top: 40px;
    }
    .elevator-page .elevator-4 {
      padding: 50px 0;
    }
  }
  @media screen and (max-width: 700px){
     .elevator-page .elevator-3 .img img {
      max-width: 100%;
    }
     .elevator-page .elevator-3 .list ul li {
      width: 100%;
    }
  }
  @media screen and (max-width: 500px){
    .elevator-page h2.dex {
      font-size: 22px;
    }
  }
  
  
  
  
  .seoPublic .title {
      font-size: 24px;
      font-weight: bold;
      line-height: 1.4;
      margin-bottom: 2em;
  }
  
  .seoPublic > div {
      padding: 60px 0;
  }
  
  .seoPublic > div:nth-child(odd) {
      background: #fafafa;
  }
  
  .seoPublic .Auxil-about .box {
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      display: flex;
  }
  
  .seoPublic .Auxil-about .box .left {
      width: 40%;
  }
  
  .seoPublic .Auxil-about .box .left .img {
      height: 100%;
      background-size: cover;
      background-position: center center;
      display: block;
  }
  
  .seoPublic .Auxil-about .box .right {
      width: 60%;
      padding-left: 5%;
      padding-top: 20px;
      padding-bottom: 20px;
  }
  
  .seoPublic .Auxil-about .box .right div.h3 {
      font-size: 24px;
      font-weight: normal;
      line-height: 1.2;
      margin-bottom: 1em;
  }
  
  .seoPublic .Auxil-about .box .right .text {
      font-size: 16px;
      line-height: 1.8;
      color: #666;
      max-height: 400px;
      overflow: auto;
  }
  
  .seoPublic .Auxil-honor .list ul {
      margin: -10px;
  }
  
  .seoPublic .Auxil-honor .list ul li {
      padding: 10px;
  }
  
  .seoPublic .Auxil-honor .list ul li a {
      display: block;
  }
  
  .seoPublic .Auxil-honor .list ul li a img {
      width: 100%;
  }
  
  .seoPublic .Auxil-news .list ul {
      margin: -13px;
  }
  
  .seoPublic .Auxil-news .list ul li {
      padding: 13px;
  }
  
  .seoPublic .Auxil-news .list ul li a.img-box {
      display: block;
      height: 240px;
      background-size: cover;
      background-position: center center;
  }
  
  .seoPublic .Auxil-news .list ul li .content {
      margin-top: 30px;
      margin-bottom: 50px;
  }
  
.seoPublic .Auxil-news .list ul li .content .img-box{
  display: block;
  overflow: hidden;
  border-radius: 20px;
}

  .seoPublic .Auxil-news .list ul li .content div.h6 {
      font-size: 22px;
      line-height: 1.4;
      -webkit-transition: .5s;
      -moz-transition: .5s;
      transition: .5s;
  }
  
  .seoPublic .Auxil-news .list ul li .content div.h6:hover {
      color: var(--index-main-color);
  }
  
  .seoPublic .Auxil-news .list ul li .content time {
      font-size: 14px;
      margin-top: .5em;
      display: block;
  }
  
  .seoPublic .Auxil-news .list ul li .content p {
      font-weight: 300;
      font-size: 16px;
      line-height: 30px;
      margin: 1em 0;
  }
  
  .seoPublic .Auxil-news .list ul li .content a.link {
      font-weight: 300;
      font-size: 16px;
      text-transform: uppercase;
      line-height: 1;
      -webkit-transition: .5s;
      -moz-transition: .5s;
      transition: .5s;
      border-bottom: 1px solid transparent;
      display: inline-block;
  }
  
  .seoPublic .Auxil-news .list ul li .content a.link:hover {
      border-color: var(--index-main-color);
      color: var(--index-main-color);
  }
  
  .seoPublic .Auxil-form .form ul {
      margin: -10px;
  }
  
  .seoPublic .Auxil-form .form ul li {
      padding: 10px;
  }
  
  .seoPublic .Auxil-form .form ul li input,
  .seoPublic .Auxil-form .form ul li textarea {
      display: block;
      width: 100%;
      border: 1px solid #eee;
      font-size: 16px;
      padding: 8px 15px;
      -webkit-transition: .5s;
      -moz-transition: .5s;
      transition: .5s;
  }
  
  .seoPublic .Auxil-form .form ul li textarea {
      height: 100px;
  }
  
  .seoPublic .Auxil-form .form ul li input:focus,
  .seoPublic .Auxil-form .form ul li textarea:focus {
      border-color: var(--index-main-color);
  }
  
  .seoPublic .Auxil-form .form ul li.wid-100 {
      width: 100%;
  }
  
  .seoPublic .Auxil-form .form ul li input[type="submit"] {
      width: auto;
      display: inline-block;
      padding-left: 25px;
      padding-right: 25px;
      background: var(--index-main-color);
      color: whitesmoke;
      border: none;
  }
  
  .seoPublic .Auxil-form .form ul li input[type="submit"]:hover {
      background: #222;
  }
  
  .seoPublic .seoIndustry .text {
      font-size: 16px;
      line-height: 1.8;
      color: #666;
      padding-bottom: 60px;
  }
  
  .seoPublic .text a {
      color: inherit;
  }
  
  .seoPublic .text a:hover {
      text-decoration: underline;
  }
  
  .seoPublic .Auxil-through {
      padding: 15px 0;
      background: none !important;
  }
  
  .seoPublic .Auxil-through a {
      display: inline-block;
      line-height: 40px;
      height: 40px;
      padding: 0 25px;
      font-size: 14px;
      color: black;
      border: 1px solid #eee;
      background: #f8f8f8;
      -webkit-transition: .5s;
      -moz-transition: .5s;
      transition: .5s;
  }
  
  .seoPublic .Auxil-through a:hover {
      background: var(--index-main-color);
      color: white;
  }
  
  .seoPublic .Auxil-related .list ul {
      margin: -20px -25px;
  }
  
  .seoPublic .Auxil-related .list ul li {
      padding: 20px 25px;
  }
  
  .seoPublic .Auxil-related .list ul li .box {
      display: block;
      background: white;
      -o-box-shadow: 0 0 12px rgba(125, 125, 125, 0.5);
      -webkit-box-shadow: 0 0 12px rgba(125, 125, 125, 0.5);
      box-shadow: 0 0 12px rgba(125, 125, 125, 0.5);
  }
  
  .seoPublic .Auxil-related .list ul li .box a.img-box {
      display: block;
  }
  
  .seoPublic .Auxil-related .list ul li .box .content {
      display: block;
      padding: 20px;
      text-align: center;
  }
  
  .seoPublic .Auxil-related .list ul li .box .content div.h3 {
      font-size: 22px;
      color: #111;
      font-weight: 500;
      -webkit-transition: .5s;
      -moz-transition: .5s;
      transition: .5s;
  }
  
  .seoPublic .Auxil-related .list ul li .box .content div.h3:hover {
      color: var(--index-main-color);
  }
  
  .seoPublic .Auxil-related .list ul li .box .content p {
      display: block;
      font-size: 16px;
      color: #888;
      line-height: 1.6;
      font-weight: 400;
      margin: .5em 0;
      height: 4.8em;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 3;
      overflow: hidden;
  }
  
  .seoPublic .Auxil-related .list ul li .box .content a.more {
      display: inline-block;
      vertical-align: middle;
      line-height: 40px;
      height: 40px;
      padding: 0 20px;
      /*border: 1px solid var(--index-main-color);*/
      font-size: 16px;
      font-weight: 700;
      -webkit-transition: .5s;
      -moz-transition: .5s;
      transition: .5s;
      /*color: var(--index-main-color);*/
  }
  
  .seoPublic .Auxil-related .list ul li .box .content a.more i {
      margin-left: 5px;
  }
  
  .seoPublic .Auxil-related .list ul li .box .content a.more:hover {
      color: white;
      background: var(--index-main-color);
  }
  
  @media screen and (max-width: 1400px) {
      .seoPublic .title {
          font-size: 28px;
          margin-bottom: 1.5em;
      }
  
      .seoPublic .Auxil-about .box .right div.title,
      .seoPublic .Auxil-related .list ul li .box .content div.h3 {
          font-size: 20px;
      }
  
      .seoPublic .Auxil-form .form ul li input,
      .seoPublic .Auxil-form .form ul li textarea,
      .seoPublic .Auxil-about .box .right .text,
      .seoPublic .Auxil-news .list ul li .content p,
      .seoPublic .seoIndustry .text,
      .seoPublic .Auxil-related .list ul li .box .content p {
          font-size: 14px;
      }
  
      .seoPublic .Auxil-news .list ul li .content div.h6 {
          font-size: 18px;
      }
  
      .seoPublic .Auxil-related .list ul li .box .content a.more {
          font-size: 14px;
          line-height: 34px;
          height: 34px;
          padding: 0 15px;
      }
  
      .seoPublic .Auxil-related .list ul li {
          padding: 15px;
      }
  
      .seoPublic .Auxil-related .list ul {
          margin: -15px;
      }
  }
  
  @media screen and (max-width: 1000px) {
      .seoPublic .title {
          font-size: 24px;
          margin-bottom: 1em;
      }
  
      #cp-Nav {
          display: block;
      }
  
      #cp-Nav .nav {
          padding: 0 15px;
      }
  
      #cp-Nav .nav div.title {
          font-size: 18px;
          font-weight: bold;
          padding: 8px 10px;
          background: var(--index-main-color);
          border-radius: 5px;
          color: white;
      }
  
      #cp-Nav .nav i.mask {
          width: 100%;
          height: 100%;
          position: fixed;
          top: 0;
          left: 0;
          z-index: 230;
          background: rgba(0, 0, 0, 0.2);
      }
  
      #cp-Nav .nav > ul {
          display: none;
      }
  
      #cp-Nav .nav ul {
          position: fixed;
          top: 10%;
          max-height: 80%;
          left: 5%;
          width: 90%;
          padding: 20px;
          border-radius: 5px;
          background: white;
          z-index: 300;
          font-size: 16px;
          overflow: auto;
      }
  
      #cp-Nav .nav ul ul {
          padding: 0 10px;
          font-size: 14px;
          position: static;
          max-height: none;
          width: 100%;
          margin: 10px 0;
      }
  
      #cp-Nav .nav ul li a {
          display: block;
          padding: 5px 0;
          line-height: 28px;
      }
  
      .seoPublic .Auxil-about .box {
          display: block;
      }
  
      .seoPublic .Auxil-about .box .right {
          width: 100%;
          padding: 0;
          margin-top: 20px;
      }
  
      .seoPublic .Auxil-about .box .left {
          width: 100%;
          padding: 0;
      }
  
      .seoPublic .Auxil-about .box .left .img {
          height: 300px;
      }
  
      .seoPublic .Auxil-about .box .right div.h3 {
          font-size: 18px;
      }
  
      .seoPublic > div {
          padding: 30px 0;
      }
      .seoPublic .Auxil-about .box .right .text {
          max-height: none;
      }
  }
  
  
  .side-ewm{
    position: fixed;
    right: 30px;
    bottom: 120px;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    background: var(--index-main-color);
    color: white;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
  }
  .side-ewm #ewm{
    width: 110px;
    height: 110px;
    border: 5px solid white;
    position: absolute;
    right: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%) scaleY(0);
    -moz-transform: translateY(-50%) scaleY(0);
    -ms-transform: translateY(-50%) scaleY(0);
    transform: translateY(-50%) scaleY(0);
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
  }
  .side-ewm:hover #ewm{
    -webkit-transform: translateY(-50%) scaleY(1);
    -moz-transform: translateY(-50%) scaleY(1);
    -ms-transform: translateY(-50%) scaleY(1);
    transform: translateY(-50%) scaleY(1);
  }
  @media screen and (max-width: 1000px){
  .seoIndustry.Auxil-industry {	
      display: none !important;
    }

  }
  .inner-page .content {
    line-height: 2;
    /*padding-bottom: 50px;*/
  }
  .inner-page .content h3 {
  font-size: 18px!important;
  line-height: 1.6!important;
  padding: 10px 5px!important;
  font-weight: 600!important;
  }
.inner-page .content p {
    font-size: 16px!important;
    color: #666!important;
    text-align: left!important;
    line-height: 2!important;
    height: auto!important;
}
.inner-page .content ul li {
    padding: 5px 10px!important;
    line-height: 2;
    font-size: 16px;
    color: #666!important;
}
.inner-page .content h2 {
  font-size: 20px;
  line-height: 1.6;
  padding: 10px 5px;
  font-weight: 600;
  color: #df2323;
}
.inner-page .content ol li,.inner-page .content ul li {
    list-style: disc;
    list-style-position: inside;
}
  .product-page .productList ul li {
    width: 50%!important;
  }
    @media screen and (max-width: 1000px){
        .product-page .productList ul li {
          width: 100%!important;
        }
        .prodet-page .prodet-1 .box{
          width: 100%!important;
        }
        .prodet-page .prodet-1 .recommended-left{
          display: none!important;
        }
        .prodet-page .prodet-3{
          display: block;
        }
        .contact-page .contact-1 .left input:nth-of-type(2n){
          margin-left: 0!important;
        } 
    }
    @media screen and (max-width: 500px){
        .productList ul li .box2{
          flex-wrap: wrap;
        }
        .contact-page .contact-1 .left input{
          width: 100%!important;
        }
        .contact-page .contact-1 .xiugai ul.df li{
           width: 100%!important;
        }
        .contact-page .contact-1 .left{
          padding: 15px;
        }
    }
.contact-page .contact-1 .left input{
  width: 48%;
}
.contact-page .contact-1 .left input:nth-of-type(2n){
  margin-left: 3.6%;
}

.prodet-page .prodet-2 .box,
.prodet-page .prodet-2 .box{
  width: 78%;
  margin-left: -15px;
  margin-right: -15px;
}
.prodet-page .prodet-1 .recommended-left{
  position: -webkit-sticky;
    position: sticky;
    top: 0;
    right: 0;
}
.prodet-page .prodet-1 .box,
.prodet-page .prodet-1 .recommended-left{
  display: inline-block;
  vertical-align: middle;
}
.content.font-18.wow.fadeInUp h1 {
    display: inline;
}
a.zhutiyejiao {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    width: 300px;
    vertical-align: middle;
}