@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Light.eot');
  src: url('../fonts/Poppins-Light.eot?#iefix') format('embedded-opentype'), url('../fonts/Poppins-Light.woff2') format('woff2'), url('../fonts/Poppins-Light.woff') format('woff'), url('../fonts/Poppins-Light.ttf') format('truetype');
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins.eot');
  src: url('../fonts/Poppins.eot?#iefix') format('embedded-opentype'), url('../fonts/Poppins.woff2') format('woff2'), url('../fonts/Poppins.woff') format('woff'), url('../fonts/Poppins.ttf') format('truetype');
  font-weight: bold;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Medium.eot');
  src: url('../fonts/Poppins-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/Poppins-Medium.woff2') format('woff2'), url('../fonts/Poppins-Medium.woff') format('woff'), url('../fonts/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.eot');
  src: url('../fonts/Poppins-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/Poppins-Regular.woff2') format('woff2'), url('../fonts/Poppins-Regular.woff') format('woff'), url('../fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/BarlowCondensed-Medium.eot');
  src: url('../fonts/BarlowCondensed-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/BarlowCondensed-Medium.woff2') format('woff2'), url('../fonts/BarlowCondensed-Medium.woff') format('woff'), url('../fonts/BarlowCondensed-Medium.ttf') format('truetype');
  font-weight: 200;
  font-display: swap;
}
.hidden{
  display: none;
}
#footer .line.hidden{
  display: none;
}
body {
  --color: #ce2027;
  max-width: 1920px;
  margin: 0 auto;
  font-family: 'Poppins';
  font-weight: 400;
}
.body-overflow-box {
  position: relative;
  left: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.container {
  padding: 0 15px;
  position: relative;
  width: 1720px;
  margin: 0 auto;
}
.more {
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  background-color: var(--color);
  color: #fff;
  border-radius: 6px;
  padding: 20px 39px 19px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent !important;
  -webkit-user-select: none !important;
  user-select: none !important;
  outline: none !important;
}
.more::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #005fad;
  -webkit-clip-path: inset(0 100% 0 100%);
  clip-path: inset(0 100% 0 100%);
  -webkit-transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.more:active::after,
.more:focus::after,
.more:hover::after {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}
.more:active {
  background-color: var(--color) !important;
  opacity: 1 !important;
}
.more[href]:active,
.more[target="_blank"]:active {
  background-color: var(--color) !important;
  background: var(--color) !important;
  opacity: 1 !important;
  -webkit-tap-highlight-color: transparent !important;
}
.more:focus {
  outline: none !important;
  box-shadow: none !important;
  background-color: var(--color) !important;
}
#header {
  z-index: 20;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header .nav {
  position: relative;
}
#header .nav .menu-box {
  margin: 0 auto;
}
#header .nav .menu-box ul.menu {
  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;
}
#header .nav .menu-box ul.menu > li {
  margin-right: 2.42em;
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  float: left;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: relative;
  text-transform: uppercase;
  color: #fff;
}
#header .nav .menu-box ul.menu > li > a {
  line-height: 1;
}
#header .nav .menu-box ul.menu > li > a i {
  position: absolute;
  right: 0;
  top: 30%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 18px;
}
#header .nav .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;
  z-index: 1;
  font-size: 15px;
  background: #fff;
  top: 130%;
  left: 0;
  width: auto;
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  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-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(--color);
  display: none \9;
}
#header .nav .menu-box ul.menu > li ul.sub-menu li {
  display: block;
  float: none;
  padding: 0 15px;
  line-height: 40px;
  color: black;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
  position: relative;
  white-space: nowrap;
}
#header .nav .menu-box ul.menu > li ul.sub-menu li a {
  display: block;
  background: none;
}
#header .nav .menu-box ul.menu > li ul.sub-menu li:hover {
  background: #ce2027;
  color: white;
}
#header .nav .menu-box ul.menu > li ul.sub-menu li:hover a {
  color: #fff;
}
#header .nav .menu-box ul.menu > li:hover ul.sub-menu {
  opacity: 1;
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .menu-box ul.menu > li:hover,
#header .nav .menu-box ul.menu > li.active {
  color: var(--color);
}
#header .nav .menu-box ul.menu > li:last-child {
  margin-right: 0;
}
#header .nav .menu-box ul.menu > li:first-child {
  display: none;
}
#header .nav .right {
  margin: 0 0 0 auto;
}
#header .nav .search {
  padding-right: 14px;
  position: relative;
}
#header .nav .search form {
  width: 165px;
  position: relative;
}
#header .nav .search form input[type="text"] {
  width: 100%;
  height: 28px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 17px;
  font-weight: 300;
  padding-right: 24px;
  color: #fff;
}
#header .nav .search form input[type="text"]::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
#header .nav .search form input[type="text"]:-moz-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
#header .nav .search form input[type="text"]::-moz-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
#header .nav .search form input[type="text"]:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
#header .nav .search form input[type="text"]::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
#header .nav .search form input[type="text"]:focus {
  border-color: #fff;
}
#header .nav .search form input[type="submit"] {
  position: absolute;
  right: 0;
  bottom: 2px;
  width: 22px;
  height: 22px;
  background: url(../images/search.png) no-repeat center;
  background-size: 100% 100%;
  border: 0;
}
#header .nav .search::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1px;
  height: 19px;
  background: rgba(255, 255, 255, 0.3);
}
#header .nav .yuy span {
  position: relative;
  color: #fff;
  line-height: 1;
}
#header .nav .yuy ul {
  left: initial;
  right: 0;
  z-index: 100;
}
#header .nav .msg,
#header111111 .nav .msg {
  font-size: 18px;
  font-weight: 300;
  background: var(--color);
  color: #fff;
  border-radius: 6px;
  line-height: 1;
  padding: 17px 23px 15px 35px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header .nav .msg img,
#header111111 .nav .msg img {
  margin-left: 18px;
}
#header .nav .msg::after,
#header111111 .nav .msg::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #005fad;
  -webkit-clip-path: inset(0 100% 0 100%);
  clip-path: inset(0 100% 0 100%);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header .nav .msg:hover,
#header111111 .nav .msg:hover {
  color: #fff;
}
#header .nav .msg:hover::after,
#header111111 .nav .msg:hover::after {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}
#header .nav .slide {
  width: 34px;
  height: 23px;
  position: relative;
  cursor: pointer;
}
#header .nav .slide i {
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: #fff;
  position: absolute;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header .nav .slide i.line1 {
  top: 0;
  left: 0;
}
#header .nav .slide i.line2 {
  top: 10px;
  right: 0;
}
#header .nav .slide i.line3 {
  bottom: 0;
  left: 0;
}
#header .nav .slide:hover i.line1,
#header .nav .slide:hover i.line3 {
  width: 80%;
}
#header .nav .slide:hover i.line2 {
  width: 80%;
}
#header .nav .logo .i2{
  display: none;
}
#header.active {
  top: -36px;
  -webkit-box-shadow: 0 0px 20px rgba(0, 0, 0, 0.4);
  box-shadow: 0 0px 20px rgba(0, 0, 0, 0.4);
}
#header.active .nav{
  padding: 10px 0;
  background: #fff;
}
#header.active .nav .menu-box ul.menu > li{
  color: #000;
}
#header.active .nav .menu-box ul.menu > li:hover,
#header.active .nav .menu-box ul.menu > li.active{
  color: var(--color);
}
#header.active .nav .slide i{
  background: #000;
}
#header.active .nav .logo .i1{
  display: none;
}
#header.active .nav .logo .i2{
  display: block;
}
.text-color {
  color: var(--color);
}
.wrapper_con {
  width: 27px;
  height: 54px;
  position: absolute;
  top: -2px;
  overflow: hidden;
  display: none;
}
.right {
  right: -2px;
}
.left {
  left: -2px;
}
.circleProgress {
  width: 54px;
  height: 54px;
  border: 1px solid transparent;
  border-radius: 50%;
  position: absolute;
  top: 0;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.rightcircle {
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  border-left: 1px solid rgba(255, 255, 255, 0.8);
  right: 0;
}
.leftcircle {
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  border-right: 1px solid rgba(255, 255, 255, 0.8);
  left: 0;
}
@-webkit-keyframes circleProgressLoad_right {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  50%,
  100% {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
  }
}
@-moz-keyframes circleProgressLoad_right {
  0% {
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  50%,
  100% {
    -moz-transform: rotate(225deg);
    transform: rotate(225deg);
  }
}
@keyframes circleProgressLoad_right {
  0% {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  50%,
  100% {
    -webkit-transform: rotate(225deg);
    -moz-transform: rotate(225deg);
    transform: rotate(225deg);
  }
}
@-webkit-keyframes circleProgressLoad_left {
  0%,
  50% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  100% {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
  }
}
@-moz-keyframes circleProgressLoad_left {
  0%,
  50% {
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  100% {
    -moz-transform: rotate(225deg);
    transform: rotate(225deg);
  }
}
@keyframes circleProgressLoad_left {
  0%,
  50% {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  100% {
    -webkit-transform: rotate(225deg);
    -moz-transform: rotate(225deg);
    transform: rotate(225deg);
  }
}
#banner {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#banner ul li {
  position: relative;
}
#banner ul li video{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#banner ul li > img {
  width: 100%;
}
#banner ul li .text {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #fff;
}
#banner ul li:first-child .right{
  opacity: 0 !important;
}
#banner ul li .text .left {
  width: 40.651%;
}
#banner ul li .text .left.filter{
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(0px);
}
#banner ul li .text .right {
  width: 47.0414%;
}
#banner ul li .text .title {
  line-height: 1.1;
  letter-spacing: -1px;
}
#banner ul li .text .more {
  font-weight: bold;
}
#banner ul li .text .more::after {
  background: #fff;
}
#banner ul li .text .more:hover {
  color: var(--color);
}
#banner ul li .text .title,
#banner ul li .text .btn,
#banner ul li .text .right {
  opacity: 0;
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner ul .swiper-slide-active .text .title,
#banner ul .swiper-slide-active .text .btn,
#banner ul .swiper-slide-active .text .right {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
#banner ul .swiper-slide-active .text .title {
  -webkit-transition-delay: .5s;
  -moz-transition-delay: .5s;
  transition-delay: .5s;
}
#banner ul .swiper-slide-active .text .btn {
  -webkit-transition-delay: .8s;
  -moz-transition-delay: .8s;
  transition-delay: .8s;
}
#banner ul .swiper-slide-active .text .right {
  -webkit-transition-delay: 1.1s;
  -moz-transition-delay: 1.1s;
  transition-delay: 1.1s;
}
#banner .swiper-pagination {
  font-size: 0;
  text-align: left;
  bottom: 10%;
  left: 5.74%;
}
#banner .swiper-pagination > span {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
#banner .swiper-pagination .swiper-pagination-bullet {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0);
  opacity: 1;
  color: transparent;
  position: relative;
  margin-right: 16px;
  cursor: pointer;
  background: transparent;
}
#banner .swiper-pagination .swiper-pagination-bullet::after {
  content: '';
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #fff;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner .swiper-pagination .swiper-pagination-bullet:last-child {
  margin-right: 0;
}
#banner .swiper-pagination .swiper-pagination-bullet-active::after {
  width: 19px;
  height: 19px;
  background: var(--color);
}
#banner .swiper-pagination .swiper-pagination-bullet-active .rightcircle {
  -webkit-animation: circleProgressLoad_right 6.5s linear infinite;
  -moz-animation: circleProgressLoad_right 6.5s linear infinite;
  animation: circleProgressLoad_right 6.5s linear infinite;
}
#banner .swiper-pagination .swiper-pagination-bullet-active .leftcircle {
  -webkit-animation: circleProgressLoad_left 6.5s linear infinite;
  -moz-animation: circleProgressLoad_left 6.5s linear infinite;
  animation: circleProgressLoad_left 6.5s linear infinite;
}
#banner .swiper-pagination .swiper-pagination-bullet-active .wrapper_con {
  display: block;
}
.tr_5 {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.font-16 {
  line-height: 1.8;
}
.font-14 {
  line-height: 2;
}
.font-30 {
  line-height: 1.2;
}
.title,
.i-title {
  font-weight: bold;
}
.i-tag {
  font-size: 20px;
  display: block;
}
.i-title {
  font-size: 48px;
  line-height: 1.2;
}
@-webkit-keyframes marquee {
  100% {
    -webkit-transform: translateX(-3015.91px);
    transform: translateX(-3015.91px);
  }
}
@-moz-keyframes marquee {
  100% {
    -moz-transform: translateX(-3015.91px);
    transform: translateX(-3015.91px);
  }
}
@keyframes marquee {
  100% {
    -webkit-transform: translateX(-3015.91px);
    -moz-transform: translateX(-3015.91px);
    transform: translateX(-3015.91px);
  }
}
@-webkit-keyframes marquee1 {
  0% {
    -webkit-transform: translateX(-2215.58px);
    transform: translateX(-2215.58px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-moz-keyframes marquee1 {
  0% {
    -moz-transform: translateX(-2215.58px);
    transform: translateX(-2215.58px);
  }
  100% {
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes marquee1 {
  0% {
    -webkit-transform: translateX(-2215.58px);
    -moz-transform: translateX(-2215.58px);
    transform: translateX(-2215.58px);
  }
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
}
.fw-500 {
  font-weight: 500;
}
.slickBtn div {
  background: rgba(195, 100, 84, 0.28);
  color: #333;
}
.slickBtn div:hover {
  background: var(--color);
  color: #fff;
}
#index-body .change .dots li {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 20px;
  margin-right: 20px;
  cursor: pointer;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  background: rgba(0,0,0,0.3);
}
#index-body .change .dots li button {
  display: none;
}
/*#index-body .change .dots li::before,
#index-body .change .dots li::after {
  content: '';
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}*/
/*#index-body .change .dots li::before {
  width: 0;
  height: 3px;
  background: #e90505;
}
#index-body .change .dots li::after {
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}*/
#index-body .change .dots li:last-child {
  margin-right: 0;
}
#index-body .change .dots li.slick-active{
  background: var(--color);
}
#index-body .change .dots li.slick-active::before {
  width: 100%;
}
#index-body .arrow a {
  font-size: 30px;
  width: 72px;
  height: 71px;
  border-radius: 50%;
  background: #e6e6e6;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .arrow a:hover {
  background: var(--color);
  color: #fff;
}
#index-body .i-category .header {
  max-width: 1000px;
  margin: 0 auto;
}
#index-body .i-category .content {
  width: 93.6vw;
}
#index-body .i-category .content ul .slick-list {
  padding-right: 510px;
}
#index-body .i-category .content ul li .img {
  display: block;
  position: relative;
  overflow: hidden;
}
#index-body .i-category .content ul li .img > img{
  margin-bottom: 30px;
}
#index-body .i-category .content ul li .img img{
  -webkit-transition: 1s ease;
  -moz-transition: 1s ease;
  transition: 1s ease;
}
#index-body .i-category .content .i1 {
  right: 42px;
  bottom: 0;
  width: 73.53%;
}
#index-body .i-solution .arrow a,
#index-body .i-category .arrow a{
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#index-body .i-solution .arrow a.prev{
  left: 0;
}
#index-body .i-category .arrow a.prev{
  left: -24px;
}
#index-body .i-solution .arrow a.next{
  right: 0;
}
#index-body .i-category .arrow a.next{
  right: -100px;
}
#index-body .i-category .content .i1 img {
  -webkit-box-reflect: below 0px -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 12%);
}
#index-body .i-category .content ul li .img:hover img{
  -webkit-transform: scale(1.05, 1.05);
  -moz-transform: scale(1.05, 1.05);
  -ms-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
}
#index-body .i-category .dots li{
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #e6e6e6;
}
#index-body .i-category .dots li.slick-active{
  background: var(--color);
}
#index-body .i-category .dots li::before,
#index-body .i-category .dots li::after{
  display: none;
}
#index-body .i-advantage {
  background-repeat: no-repeat;
}
#index-body .i-advantage .header p {
  line-height: 1.5;
  font-weight: 300;
}
#index-body .i-advantage .content ul {
  margin: -21px;
}
#index-body .i-advantage .content ul li {
  padding: 21px;
  height: auto;
}
#index-body .i-advantage .content ul li .ig {
  height: 100%;
  background: #fff;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-advantage .content ul li .ig .icon {
  height: 74px;
}
#index-body .i-advantage .content ul li .ig .tit {
  display: inline;
  font-weight: 300;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(65%, transparent), color-stop(0, rgba(255, 255, 255, 0.7)));
  background-image: -webkit-linear-gradient(top, transparent 65%, rgba(255, 255, 255, 0.7) 0);
  background-image: -moz-linear-gradient(top, transparent 65%, rgba(255, 255, 255, 0.7) 0);
  background-image: linear-gradient(180deg, transparent 65%, rgba(255, 255, 255, 0.7) 0);
  background-size: 0 40%;
  background-repeat: no-repeat;
  background-position: left 60%;
  -webkit-transition: background-size 0.9s ease;
  -moz-transition: background-size 0.9s ease;
  transition: background-size 0.9s ease;
}
#index-body .i-advantage .content ul li .ig .con {
  font-weight: 300;
}
#index-body .i-advantage .content ul li .ig .link {
  font-size: 36px;
}
#index-body .i-advantage .content ul li .ig .link img {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-advantage .content ul li .ig .link:hover img {
  -webkit-transform: translateX(6px);
  -moz-transform: translateX(6px);
  -ms-transform: translateX(6px);
  transform: translateX(6px);
}
#index-body .i-advantage .content ul li .ig:hover {
  background: #d70808;
  color: #fff;
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
}
#index-body .i-advantage .content ul li .ig:hover img {
  -webkit-filter: invert(1);
  filter: invert(1);
}
#index-body .i-advantage .content ul li .ig:hover .tit {
  background-size: 100% 40%;
}
#index-body .i-advantage .bottom .more {
  font-size: 18px;
  font-weight: 500;
  background: #000;
  color: #fa1515;
  padding: 14px 42px 13px 41px;
}
#index-body .i-advantage .bottom .more::after {
  background: var(--color);
}
#index-body .i-advantage .bottom .more:hover {
  color: #fff;
}
#index-body .i-advantage .bottom .desc {
  font-weight: 300;
  line-height: 1.5;
}
#index-body .i-advantage .bottom .desc .wz {
  color: #d70808;
  display: inline-block;
  position: relative;
}
#index-body .i-advantage .bottom .desc .wz::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: #b80e15;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-advantage .bottom .desc .wz:hover::after {
  width: 0;
}
#index-body .i-solution {
  background: url(../images/solution-line.png) no-repeat center -60px;
  background-size: 100% auto;
}
#index-body .i-solution .header .left {
  width: 50%;
}
#index-body .i-solution .header .left .i-tag {
  line-height: 1;
}
#index-body .i-solution .header .left .i-title {
  line-height: 1.4;
}
#index-body .i-solution .header .right {
  font-weight: 300;
  width: 38%;
}
#index-body .i-solution .content ul .slick-slide > div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
#index-body .i-solution .content ul li {
  height: 710px;
  width: 25%;
  -webkit-transition: .7s;
  -moz-transition: .7s;
  transition: .7s;
}
#index-body .i-solution .content ul li .img_box{
  display: block;
  position: relative;
  height: 100%;
  transform-origin: center center;
}
/*#index-body .i-solution .content ul li .img_box img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}*/
#index-body .i-solution .content ul li .text {
  bottom: 0;
  left: 0;
  right: 0;
  color: #fff;
  opacity: 0;
  z-index: 1;
  height: 100%;
}
#index-body .i-solution .content ul li .text::after{
  content: '';
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .6;
}
#index-body .i-solution .content ul li.active {
  width: 41% !important;
}
#index-body .i-solution .content ul li.active .img_box{
  width: 100%;
}
#index-body .i-solution .content ul li.active .text {
  opacity: 1;
}
/*#index-body .i-partner ul li img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}*/
#index-body .i-partner ul li:hover img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}
#index-body .i-partner ul li .img-box{
  overflow: unset;
}
#index-body .i-partner .slickDots li {
  width: 1.5em;
  height: 1.5em;
  background: rgba(0, 0, 0, 0.2);
  border: 0;
  margin: 0 1.75em;
}
#index-body .i-partner .slickDots li.slick-active {
  background-color: #c92f06;
}
#index-body .i-about .top {
  height: 679px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
#index-body .i-about .top .ig {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 100%;
}
#index-body .i-about .top .ig .left {
  width: 43.695%;
  background: rgba(255, 255, 255, 0.9);
  border-top: 8px solid var(--color);
}
#index-body .i-about .top .ig .left .title {
  line-height: 1.36;
}
#index-body .i-about .top .ig .left .con {
  font-weight: 300;
}
#index-body .i-about .top .ig .left .con h1 {
  display: inline;
}
#index-body .i-about .top .ig .left li i {
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #000000;
  opacity: 0.4;
  margin-right: 10px;
}
#index-body .i-about .top .ig .left li i:last-child {
  margin-right: 0;
}
#index-body .i-about .top .ig .right {
  width: 43%;
}
#index-body .i-about .top .ig .right .play {
  display: inline-block;
  width: 123px;
  height: 123px;
  border-radius: 50%;
  background-color: #b41d18;
}
#index-body .i-about .top .ig .right .play svg {
  font-size: 18px;
  -webkit-animation: xz 10s linear infinite;
  -moz-animation: xz 10s linear infinite;
  animation: xz 10s linear infinite;
}
#index-body .i-about .top .ig .right .play svg text {
  fill: #fff;
}
#index-body .i-about .top .ig .right .play i {
  position: absolute;
  top: 50%;
  left: 52%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-left: 30px solid white;
  border-top: 18.5px solid transparent;
  border-bottom: 18.5px solid transparent;
}
#index-body .i-about .bottom ul li .num {
  color: var(--color);
  font-weight: 200;
  line-height: 1;
  position: relative;
}
#index-body .i-about .bottom ul li .num sup {
  position: absolute;
  top: 9px;
  right: -25px;
}
#index-body .i-about .bottom ul li p {
  font-weight: 300;
  max-width: 170px;
  padding-bottom: 6px;
}
#index-body .i-about .bottom ul li:nth-child(3) p {
  max-width: 200px;
}
#index-body .i-case {
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
#index-body .i-case .header p {
  font-weight: 300;
}
#index-body .i-case ul li .img-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-case .list ul li .img-box::after{
  display: none;
}
#index-body .i-case ul .slick-current li .img-box::after {
  -webkit-clip-path: inset(100% 0 0 0);
  clip-path: inset(100% 0 0 0);
}
#index-body .i-case .content .slickBtn div {
  width: 2.85em;
  height: 2.85em;
  background-color: #000000;
}
#index-body .i-case .list .slickBtn div{
  font-size: 30px;
  background: var(--color);
  color: #fff;
}
#index-body .i-case .content .slickBtn div:hover {
  background: var(--color);
}
#index-body .i-case .content .slickBtn div.prev {
  right: initial;
  left: 27.5%;
}
#index-body .i-case .content .slickBtn div.next {
  left: initial;
  right: 27.5%;
}
#index-body .i-news .left {
  width: 28%;
}
#index-body .i-news .left .i-title {
  line-height: 1.3;
}
#index-body .i-news .left .con {
  line-height: 1.6;
  font-weight: 300;
  opacity: .75;
}
#index-body .i-news .left ul li:last-child {
  margin-bottom: 0;
}
#index-body .i-news .left .more {
  padding: 18px 42px 16px;
}
#index-body .i-news .right {
  width: 56.864%;
}
#index-body .i-news .right ul {
  display: block;
  /*border-bottom: 1px solid rgba(0, 0, 0, 0.2);*/
}
#index-body .i-news .right ul li .ig {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
#index-body .i-news .right ul li .ig .time img {
  -webkit-filter: brightness(0);
  filter: brightness(0);
}
#index-body .i-news .right ul li .ig .time p {
  line-height: 1.6;
  font-weight: 300;
  font-style: italic;
}
#index-body .i-news .right ul li .ig .text {
  width: 68.16%;
}
#index-body .i-news .right ul li .ig .text .tit {
  line-height: 1.3;
}
#index-body .i-news .right ul li .ig .text .con {
  font-weight: 300;
  opacity: .75;
}
#index-body .i-news .right ul li .ig .link span {
  width: 2.33em;
  height: 2.33em;
  border-radius: 50%;
  color: #000;
  font-weight: 500;
  border: 1px solid rgba(0, 0, 0, 0.2);
  position: relative;
}
#index-body .i-news .right ul li .ig .link span i {
  -webkit-transform: translateX(-56%);
  -moz-transform: translateX(-56%);
  -ms-transform: translateX(-56%);
  transform: translateX(-56%);
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-news .right ul li .ig .link span i:last-child {
  position: absolute;
  -webkit-transform: translate(-200%, 0);
  -moz-transform: translate(-200%, 0);
  -ms-transform: translate(-200%, 0);
  transform: translate(-200%, 0);
  opacity: 0;
}
#index-body .i-news .right ul li .ig:hover .time img {
  -webkit-filter: none;
  filter: none;
}
#index-body .i-news .right ul li .ig:hover .time p {
  color: #991419;
}
#index-body .i-news .right ul li .ig:hover .text .tit {
  color: var(--color);
}
#index-body .i-news .right ul li .ig:hover .link span {
  color: #fff;
  background: var(--color);
  border-color: var(--color);
}
#index-body .i-news .right ul li .ig:hover .link span i:first-child {
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  -moz-transition: transform 0.3s ease-in-out, -moz-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out, -moz-transform 0.3s ease-in-out;
  -webkit-transform: translate(150%, 0);
  -moz-transform: translate(150%, 0);
  -ms-transform: translate(150%, 0);
  transform: translate(150%, 0);
  opacity: 0;
}
#index-body .i-news .right ul li .ig:hover .link span i:last-child {
  -webkit-transition: -webkit-transform 0.3s ease-in-out 0.1s;
  transition: -webkit-transform 0.3s ease-in-out 0.1s;
  -moz-transition: transform 0.3s ease-in-out 0.1s, -moz-transform 0.3s ease-in-out 0.1s;
  transition: transform 0.3s ease-in-out 0.1s;
  transition: transform 0.3s ease-in-out 0.1s, -webkit-transform 0.3s ease-in-out 0.1s, -moz-transform 0.3s ease-in-out 0.1s;
  opacity: 1;
  -webkit-transform: translate(0);
  -moz-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
}
#index-body .i-download {
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 1;
}
#index-body .i-download .box {
  padding-right: 11.54%;
}
#index-body .i-download .box .left {
  width: 53%;
}
#index-body .i-download .box .left .i-title {
  line-height: 1.4;
}
#index-body .i-download .box .left p {
  font-weight: 300;
}
#index-body .i-download .box .more {
  font-size: 18px;
  font-weight: 400;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 12px 26px 10px 31px;
}
#footer {
  background: url(../images/fbg.png) no-repeat center top;
  color: #fff;
  position: relative;
  z-index: 1;
  background-size: cover;
}
#footer .f-header .i-title {
  width: 31%;
  color: transparent;
  -webkit-text-stroke: 1px #999;
  font-size: 35px;
}
#footer .f-header .i-title em {
  color: #fff;
  -webkit-text-stroke: 1px transparent;
}
#footer .f-header .form {
  width: 66.45%;
}
#footer .f-header .form ul {
  margin: -8px;
}
#footer .f-header .form ul li {
  padding: 8px;
}
#footer .f-header .form ul li input {
  width: 100%;
  height: 55px;
  border-radius: 3px;
  border: 1px solid #5c5c5c;
  font-size: 16px;
  color: #fff;
  padding-right: 10px;
}
#footer .f-header .form ul li input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.4);
}
#footer .f-header .form ul li input:-moz-placeholder {
  color: rgba(255, 255, 255, 0.4);
}
#footer .f-header .form ul li input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.4);
}
#footer .f-header .form ul li input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.4);
}
#footer .f-header .form ul li input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
#footer .f-header .form ul li input:focus {
  border-color: #fff;
}
#footer .f-header .form ul li button {
  border: 0;
  width: 100%;
  height: 55px;
  padding: 0;
  text-align: center;
  font-weight: 500;
}
#footer .f-header .form ul li button::after {
  background: #fff;
}
#footer .f-header .form ul li button:hover {
  color: #000;
}
#footer .f-header .form ul li:first-child {
  width: 22.652%;
}
#footer .f-header .form ul li:first-child input {
  padding-left: 45px;
  background: url(../images/user.png) no-repeat 15px center rgba(255, 255, 255, 0.2);
}
#footer .f-header .form ul li:nth-child(2) {
  width: 26.691%;
}
#footer .f-header .form ul li:nth-child(2) input {
  padding-left: 57px;
  background: url(../images/yx.png) no-repeat 20px center rgba(255, 255, 255, 0.2);
}
#footer .f-header .form ul li:nth-child(3) {
  width: 32.046%;
}
#footer .f-header .form ul li:nth-child(3) input {
  padding-left: 44px;
  background: url(../images/message.png) no-repeat 18px center rgba(255, 255, 255, 0.2);
}
#footer .f-header .form ul li:last-child {
  width: 18.611%;
}
#footer .line {
  display: block;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}
#footer .f-box .title {
  font-size: 24px;
  line-height: 1;
  margin-bottom: 25px;
}
#footer .f-box .left {
  width: 25.5%;
}
#footer .f-box .left p {
  font-weight: 300;
  max-width: 299px;
}
#footer .f-box .left .share a {
  width: 39px;
  height: 39px;
  border-radius: 50%;
  border: 1px solid #fff;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 16px;
  margin-right: 11px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#footer .f-box .left .share a:last-child {
  margin-right: 0;
}
#footer .f-box .left .share a:hover {
  background: var(--color);
  border-color: var(--color);
}
#footer .f-box .right {
  width: 73.5%;
}
#footer .f-box ul li {
  font-size: 18px;
  opacity: .8;
  font-weight: 300;
}
#footer .f-box ul li a {
  display: inline-block;
  position: relative;
}
#footer .f-box ul li a::after {
  content: '';
  position: absolute;
  bottom: 7px;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#footer .f-box ul li a:hover::after {
  width: 100%;
}
#footer .f-box ul li i {
  width: 32px;
}
#footer .f-box ul li .text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: 400;
}
#footer .f-box ul li ul {
  display: none;
}
#footer .f-box .f-product ul li {
  margin-bottom: 3px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#footer .f-box .f-product ul li:last-child {
  margin-bottom: 0;
}
#footer .f-box .f-product ul li:hover {
  opacity: 1;
}
#footer .f-box .f-contact {
  max-width: 400px;
}
#footer .f-box #ewm {
  width: 125px;
  border-radius: 5px;
  border: 6px solid #fff;
}
#footer .f-copy {
  font-size: 18px;
  line-height: 1.6;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  color: #606060;
}
#footer .f-copy a {
  color: var(--color);
  font-weight: 500;
}
#footer svg {
  max-height: 1.7em;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  fill: #606060;
}
#footer svg text {
  fill: #606060;
}
#footer svg:hover {
  fill: #fff;
}
#footer svg:hover text {
  fill: #fff;
}
@media (max-width: 1700px) {
  #index-body .i-category .content {
    width: 95.6vw;
  }
  #index-body .i-category .content ul .slick-list {
    padding-right: 380px;
  }
  #index-body .i-solution .content ul li {
    height: 610px;
  }
  #index-body .i-about .bottom {
    padding: 60px 30px 0;
  }
  #index-body .i-download .box .left {
    width: 56%;
  }
}
@media (max-width: 1450px) {
  .i-title{
    font-size: 36px;
  }
  #banner ul li .text .left {
    width: 50%;
  }
  #banner .swiper-pagination {
    bottom: 3%;
  }
  #index-body .i-category .content ul .slick-list {
    padding-right: 280px;
  }
  #index-body .i-solution .content ul li {
    height: 510px;
  }
  #index-body .i-about .top .list {
    zoom: .8;
  }
  #index-body .i-about .bottom ul li .num em {
    font-size: 60px;
  }
  #index-body .i-about .bottom ul li .num sup {
    top: -1px;
    right: -17px;
    font-size: 20px;
  }
  #index-body .i-about .bottom ul li p {
    max-width: 140px;
    padding-bottom: 1px;
  }
  #index-body .i-news .left {
    width: 32%;
  }
  #footer .f-header .i-title {
    font-size: 35px;
  }
  #footer .f-box .left {
    width: 27%;
  }
  #footer .f-box .right {
    width: 73%;
  }
  #footer .f-box ul li {
    font-size: 16px;
  }
  .fixed-toolbar {
    right: 10px;
  }
}
@media (max-width: 1250px) {
  #banner .swiper-pagination {
    zoom: .5;
  }
  .i-tag {
    font-size: 18px;
  }
  .i-title {
    font-size: 36px;
  }
  #index-body .i-category .content ul .slick-list {
    padding-right: 100px;
  }
  #index-body .change .dots li {
    width: 100px;
  }
  #index-body .arrow a {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }
  #footer .f-header .i-title {
    width: 100%;
  }
  #footer .f-header .form {
    width: 100%;
    margin-top: 20px;
  }
  #footer .f-box .right {
    zoom: .8;
  }
}
@media (max-width: 1000px) {
  #banner ul li .text .box {
    zoom: .7;
  }
  .font-24 {
    font-size: 20px;
  }
  #index-body .change .dots li {
    width: 70px;
  }
  #index-body .arrow a {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  #index-body .i-category .content {
    width: 100%;
  }
  #index-body .i-category .content ul .slick-list {
    padding-right: 0;
  }
  #index-body .i-category .content ul li dd {
    width: 100%;
  }
  #index-body .i-category .content .change {
    padding-right: 0;
  }
  #index-body .i-advantage .content ul {
    margin: -10px;
  }
  #index-body .i-advantage .content ul li {
    padding: 10px;
  }
  #index-body .i-solution .content ul li {
    height: 410px;
  }
  #index-body .i-about .top {
    height: 500px;
  }
  #index-body .i-about .top .ig .left {
    width: 50%;
  }
  #index-body .i-about .top .ig .left .list {
    display: none;
  }
  #index-body .i-about .bottom {
    padding: 30px 0 0 0;
  }
  #index-body .i-case .content .slickBtn div.prev {
    left: 22%;
  }
  #index-body .i-case .content .slickBtn div.next {
    right: 22%;
  }
  #index-body .i-news .left {
    width: 100%;
  }
  #index-body .i-news .left ul {
    display: none;
  }
  #index-body .i-news .right {
    width: 100%;
    margin-top: 20px;
  }
  #index-body .i-download .box {
    padding-right: 0;
  }
  #footer .f-header .form ul li {
    width: 50% !important;
  }
  #footer .f-header .form ul li:nth-child(3) {
    width: 100% !important;
  }
  #footer .f-header .form ul li:last-child {
    width: 25% !important;
  }
  #footer .f-box .left {
    width: 35%;
  }
  #footer .f-box .right {
    width: 60%;
    zoom: 1;
  }
  #footer .f-box .right .f-product,
  #footer .f-box .right .f-code {
    display: none;
  }
  #footer .f-copy {
    font-size: 16px;
  }
  #footer .f-copy p {
    display: inline;
  }
  #footer .f-copy .container {
    display: block;
  }
}
@media (max-width: 700px) {
  .more {
    padding: 10px 20px 9px !important;
  }
  .i-tag {
    font-size: 16px;
  }
  .i-title {
    font-size: 30px;
  }
  .font-28 {
    font-size: 20px;
  }
  .font-24 {
    font-size: 18px;
  }
  .flex-4 > * {
    width: 50%;
  }
  #index-body .i-solution .content ul li .text {
    opacity: 1;
  }
  #index-body .i-solution .change .container {
    display: block;
  }
  #index-body .i-about .top {
    height: auto;
    padding: 30px 0;
  }
  #index-body .i-about .top .ig {
    position: initial;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  #index-body .i-about .top .ig .left {
    width: 100%;
  }
  #index-body .i-about .top .ig .left .title {
    font-size: 24px;
  }
  #index-body .i-about .top .ig .right {
    display: none;
  }
  #index-body .i-about .bottom ul li {
    width: 50%;
  }
  #index-body .i-about .bottom ul li .num {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  #index-body .i-about .bottom ul li .num em {
    font-size: 40px;
  }
  #index-body .i-about .bottom ul li .num sup {
    position: initial;
  }
  #index-body .i-about .bottom ul li p {
    font-size: 14px;
    max-width: 100%;
  }
  #index-body .i-news .left .more {
    margin-top: 20px;
  }
  #footer .f-header .form ul li:last-child {
    width: 32% !important;
  }
  #footer .f-box .left,
  #footer .f-box .right {
    width: 100%;
  }
  #footer .f-box .left p {
    max-width: 100%;
  }
  #footer .f-box .f-contact {
    max-width: 100%;
  }
  .fixed-toolbar {
    bottom: 16%;
  }
}
@media (max-width: 500px) {
  #banner ul li .text {
    bottom: 40px;
  }
  #banner ul li .text .box .left {
    width: 100%;
  }
  #banner ul li .text .box .right {
    display: none;
  }
  .i-tag {
    font-size: 14px;
    line-height: 2;
  }
  .i-title {
    font-size: 24px;
    line-height: 1.5;
  }
  .flex-4 > * {
    width: 100%;
  }
  #index-body .i-category .change .dots {
    display: none;
  }
  #index-body .i-advantage .bottom .desc {
    padding: 6px 0 0 0;
  }
  #index-body .i-solution .change .dots {
    display: none;
  }
  #index-body .i-about .top .ig {
    padding: 0 15px;
  }
  #index-body .i-about .bottom ul li {
    width: 100%;
  }
  #index-body .i-case .content {
    padding: 0 15px;
  }
  #index-body .i-case .content .slickBtn div.prev {
    left: 15px;
  }
  #index-body .i-case .content .slickBtn div.next {
    right: 15px;
  }
  #index-body .i-news .right ul li .ig .time {
    width: 100%;
    margin-bottom: 10px;
  }
  #index-body .i-news .right ul li .ig .text {
    width: 72%;
  }
  #index-body .i-download .box .left {
    width: 100%;
  }
  #index-body .i-download .box .right {
    width: 100%;
    text-align: left;
    margin-top: 20px;
  }
  #footer .f-header .i-title {
    font-size: 30px;
  }
  #footer .f-header .form ul li {
    width: 100% !important;
  }
  #footer .f-header .form ul li:last-child {
    width: 52% !important;
  }
  #footer .f-box ul li {
    font-size: 14px;
    line-height: 2;
  }
  #footer .f-copy {
    font-size: 14px;
  }
}
#pups_shadow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.6;
  z-index: 21;
  display: none;
}
#pups_from {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-height: 80%;
  width: 500px;
  max-width: 90%;
  -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 22;
  background: white;
  padding: 30px;
  overflow: auto;
}
#pups_from h4 {
  font-size: 18px;
  color: #222;
  text-transform: capitalize;
  line-height: 1;
  font-weight: 600;
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  padding: 15px 20px;
  background: #f5f5f5;
  -o-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
#pups_from form {
  margin-top: 40px;
}
#pups_from i.close {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 10px;
  right: 10px;
  background: #eee;
  cursor: pointer;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#pups_from i.close::after,
#pups_from i.close::before {
  content: '';
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  width: 70%;
  height: 2px;
  margin-top: -1px;
  background: black;
  position: absolute;
  top: 50%;
  left: 15%;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#pups_from i.close::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#pups_from i.close:hover {
  background: var(--color);
}
#pups_from i.close:hover::before,
#pups_from i.close:hover::after {
  background: white;
}
#pups_from ul li {
  margin-bottom: 10px;
  position: relative;
}
#pups_from ul li label {
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
}
#pups_from ul li label em {
  color: red;
  margin-right: 2px;
}
#pups_from ul li input,
#pups_from ul li textarea {
  width: 100%;
  line-height: 24px;
  padding: 6px 15px;
  border: 1px solid #eee;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  font-size: 16px;
}
#pups_from ul li input:focus,
#pups_from ul li textarea:focus {
  border-color: var(--color);
}
#pups_from ul li textarea {
  height: 80px;
}
#pups_from ul li input[type="submit"] {
  width: auto;
  padding: 6px 40px;
  display: inline-block;
  background: var(--color);
  color: white;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#pups_from ul li input[type="submit"]:hover {
  opacity: 0.7;
}
#pups_from ul li:last-child {
  margin-bottom: 0;
}
.inner-banner2{
  padding: 20px 0;
  box-shadow: 0 0 .63rem 0 rgba(6,0,1,.23);
  border-top: 1px solid #bac4d4;
}
.inner-banner2 .ui.container > .flex{
  -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.inner-banner2 ul li{
  margin-left: 40px;
  font-size: 18px;
  font-weight: 500;
  transition: 0.5s;
}
.inner-banner2 ul li:first-child{
  margin-left: 0;
}
.inner-banner2 ul li a{
  position: relative;
}
.inner-banner2 ul li a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--color);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  opacity: 0;
}
.inner-banner2 ul li.active,
.inner-banner2 ul li:hover{
  color: var(--color);
}
.inner-banner2 ul li.active a::after,
.inner-banner2 ul li:hover a::after{
  opacity: 1;
}
.inner-banner2 .mbx{
  position: relative;
  font-weight: 500;
  width: 40%;
}
.inner-banner2 .mbx::before{
  content: "\e8c6";
  font-family: "iconfont";
  font-size: 18px;
  color: var(--color);
  margin-right: 4px;
}
.about-page .about-1 {
  margin-top: 100px;
  margin-bottom: 100px;
}
.about-page .about-1 .content .con {
    width: 60%;
    font-size: 18px;
    font-weight: 400;
    color: #282727;
    line-height: 1.8;
    max-height: 408px;
    overflow-y: scroll;
}
.about-page .about-1 .content .right {
    width: 40%;
}
.about-page .about-1 .left {
  vertical-align: bottom;
  padding-right: 27px;
  margin-bottom: 15px;
  width: 100%;
  margin-top: 30px;
}
.about-page .about-1 .left .con {
  font-size: 18px;
  color: #2e2e2e;
  line-height: 32px;
  margin-top: 30px;  
}
.about-page .about-1 .img-box:hover img{
  -webkit-transform: scale(1.05, 1.05);
  -moz-transform: scale(1.05,1.05);
  -ms-transform: scale(1.05,1.05);
  transform: scale(1.05, 1.05);
}
.about-page .about-1 .play{
  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;
  border-radius: 100%;
  text-align: center;
  line-height: 80px;
  cursor: pointer;
  background: var(--color);
  color: white;
  font-size: 30px;
  transition: .5s
}
.about-page .about-1 .play i{
  position: relative;
  left: 3px;
}
.about-page .about-1 .right .data {
  margin-top: 46px;
  border-top: 1px solid #d1d1d1;
  border-bottom: 1px solid #d1d1d1;
  padding: 20px 0;
}
.about-page .about-1 .right .data ul {
  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;
}
.about-page .about-1 .right .data ul li {
  display: inline-block;
    /*font-weight: 500;*/
    color: #101010;
    font-size: 16px;
    line-height: 2;
    width: 50%;
}
.about-page .about-1 .right .data ul li span {
  /*line-height: 32px;*/
}
.about-page .about-1 .right .data ul li .num {
      font-size: 50px;
    line-height: 1.6;
    transition: .5s;
    font-weight: 700;
    color: var(--color);
    margin-bottom: 20px;
    margin-top: 10px;
}
.about-page .about-1 .right .data ul li:hover .num{
  color: #151515
}
.about-page .about-1 .right .data ul li p {
  margin-top: 12px;
}
.about-page .about-6 ul{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-bottom: 20px;
}
.about-page .about-6 ul li{
  width: 33%;
  position: relative;
}
.about-page .about-6 ul li img{
  min-height: 500px;
  object-fit: cover;
  padding: 10px;
}
.about-page .about-6 ul li .text{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 60px ;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.about-page .about-6 ul li .text .box{
  flex: 1;
  display: flex;
  line-height: 2;
    flex-direction: column;
  justify-content: center;
  margin-bottom: 10px;
}
.about-page .about-6 ul li .text .box .cont{
  display: none;
  line-height: 2;
}
.about-page .about-11{
  background: #f5f5f5;
}
.about-page .about-11 ul .slick-slide > div{
  height: auto !important;
}
.about-page .about-11 ul li .box{
  background: white;
  /*border-radius: 10px;*/
  height: 100%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.about-page .about-11 ul li .box .des{
  max-height: 216px;
  overflow: auto;
  min-height: 150px;
}
.about-page .about-11 ul li .box .icon img{
  margin-right: 25px;
}
.about-page .about-4 .box {
    background: var(--color);
}
.about-page .about-4 .box .left {
    vertical-align: middle;
    color: white;
    padding-left: 80px;
}
.about-page .about-4 .box .left .tit {
    font-size: 36px;
    line-height: 1.3;
    font-weight: bold;
}
.about-page .about-4 .box .left .con {
    font-size: 18px;
    line-height: 1.8;
    margin-top: 26px;
    width: 76%;
}
.about-page .about-4 .box .left .more {
    background: white;
    color: var(--color);
    margin-top: 72px;
}
.about-page .about-4 .box .left .more::after {
    background: #005fad;
}
.about-page .about-4 .box .left .more:hover {
    color: white;
}
.about-page .about-4 .box .right {
    vertical-align: middle;
}
.about-page .about-4 .box .right ul {
    /*max-width: 602px;*/
    margin: 0 0 0 auto;
}
.about-page .about-4 .box .right ul li {
    line-height: 234px;
    text-align: center;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.about-page .about-4 .box .right ul li img {
    display: inline-block;
    vertical-align: middle;
}
.about-page .about-4 .box .right ul li:first-child,
.about-page .about-4 .box .right ul li:last-child {
    background-color: #a3282c;
}
.about-page .about-4 .box .right ul li:hover {
    -webkit-box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.23);
    box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.23);
}
.about-page .init-50 .container .tipsTitleC {
    color: var(--color)
}
.about-page .init-50 .container .content .left {
    width: 40%;
    -webkit-box-shadow: 0 0 20px rgba(0,0,0,.1);
    box-shadow: 0 0 20px rgba(0,0,0,.1);
    padding: 50px 40px;
    text-align: center
}
.about-page .init-50 .container .content .left .title {
    max-width: 350px;
    font-weight: 600;
    margin: auto
}
.about-page .init-50 .container .content .left .des {
    color: #666;
    margin-top: 20px
}
.about-page .init-50 .container .content .left .more {
    margin: 30px auto 0;
}
.about-page .init-50 .container .content .right {
    width: 60%;
    padding-left: 30px
}
.about-page .init-50 .container .content .right img {
    width: 100%
}
.about-page .init-50 .container .content2 {
    position: relative;
    margin-top: 10px
}
.about-page .init-50 .container .content2 .btn {
    position: absolute;
    width: 60px;
    height: -webkit-calc(60%);
    height: -moz-calc(60%);
    height: calc(100% - 40px);
    top: 20px;
    right: -80px;
    background-color: #cbcbcb;
    cursor: pointer;
    z-index: 2;
    font-size: 50px;
    font-weight: 700;
    color: #fff
}
.about-page .init-50 .container .content2 .btn:hover {
    background-color: var(--color)
}
.about-page .init-50 .container .content2 .prev {
    right: unset;
    left: -80px
}
.about-page .init-50 .container .content2 .swiper {
    margin: 0 -20px
}
.about-page .init-50 .container .content2 ul li {
    height: auto;
    padding: 20px
}
.about-page .init-50 .container .content2 ul li .box {
    height: 100%;
    -webkit-box-shadow: 0 0 20px rgba(0,0,0,.1);
    box-shadow: 0 0 20px rgba(0,0,0,.1)
}
.about-page .init-50 .container .content2 ul li .box .img {
    display: block
}
.about-page .init-50 .container .content2 ul li .box .img img {
    width: 100%
}
.about-page .init-50 .container .content2 ul li .box .text {
    text-align: center;
    font-weight: 400;
    padding: 18px
}
@media screen and (max-width: 1700px) {
  .about-page .about-1 .right .data {
    padding: 24px 29px 13px;
  }
  .about-page .about-6 ul li .text{
    padding: 80px 
  }
  .about-page .init-50 .container .content2 .btn {
    width: 50px;
    right: -50px;
  }
  .about-page .init-50 .container .content2 .prev {
    left: -50px;
  }
  .about-page .about-1 .right .data ul li .num{
    font-size: 40px;
  }
}
@media screen and (max-width: 1440px) {
  .about-page .about-1 .right .data ul li .num {
    font-size: 36px;
    line-height: 1;
  }
  .about-page .about-6 ul li .text{
    padding: 80px 60px 
  }
}
@media screen and (max-width: 1280px) {
  .about-page .about-1 .left {
    padding-right: 0;
  }
  .about-page .about-1 .right {
    padding-left: 30px;
  }
  .about-page .about-1 .right .data {
    padding: 24px 15px 13px;
  }
  .about-page .about-6 ul li .text{
    padding: 80px 40px 
  }
  .inner-banner2 ul li{
      font-size: 16px;
      margin-left: 20px;
    }
    .about-page .about-4 .box .left {
        padding-left: 50px;
    }
    .about-page .about-4 .box .left .con {
        width: 92%;
    }
    .about-page .about-4 .box .left .more {
        margin-top: 50px;
    }
    .about-page .init-50 .container .content .left {
        width: 100%
    }

    .about-page .init-50 .container .content .right {
        width: 100%;
        padding-left: 0;
        margin-top: 20px
    }

    .about-page .init-50 .container .content2 .btn {
        display: none !important;
    }
}
@media screen and (max-width: 1100px) {
  .about-page .about-1 .left .con {
    margin-top: 30px;
  }
    .about-page .about-6 ul li .text{
    padding: 80px 20px 
  }
}
@media screen and (max-width: 1000px) {
   .inner-banner2{
    padding: 10px 0;
  }
    .inner-banner2 .ui.container > .flex > ul{
      display: none;
    }
  .about-page .about-1 {
    margin-top: 50px;
  }
  .about-page .about-1 .left {
    width: 100%;
  }
  .about-page .about-1 .right {
    display: none;
  }
  .about-page .about-6 ul li{
    width: 50%
  }
  .about-page .about-4 .box .left {
        padding-left: 20px;
    }
}
@media screen and (max-width: 700px) {
  .about-page .about-6 {
    display: none
  }
  .about-page .about-4 .box .left {
        width: 100%;
        padding: 20px 15px;
    }
    .about-page .about-4 .box .right {
        width: 100%;
    }
    .about-page .about-4 .box .right ul li {
        line-height: 200px;
    }
}
@media screen and (max-width: 500px) {
  .about-page .about-4 .box .left .tit {
        font-size: 32px;
    }
    .about-page .about-4 .box .left .con {
        width: 100%;
        font-size: 14px;
        line-height: 2;
        margin-top: 10px;
    }
    .about-page .about-4 .box .left .more {
        margin-top: 20px;
    }
    .about-page .about-4 .box .right ul li {
        line-height: 150px;
    }
    .about-page .init-50 .container .content .left {
        padding: 20px 10px
    }

    .about-page .init-50 .container .content .left .des {
        margin-top: 10px
    }

    .about-page .init-50 .container .content .left .more {
        margin-top: 10px
    }
}
.advantage .pr {
  position: relative;
}
.advantage .top .btn {
  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;
}
.advantage .top .btn .more {
  position: relative;
}
.advantage .top .btn .m1 {
  -webkit-transform: translateX(30px);
  -moz-transform: translateX(30px);
  -ms-transform: translateX(30px);
  transform: translateX(30px);
}
.advantage .header {
  text-align: left;
}
.advantage .header .title {
  color: #030303;
  line-height: 1;
  font-weight: 700;
  margin-top: 5px;
}
.advantage .content ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: -20px;
}
.advantage .content ul li {
  padding-right: 20px;
  width: 12%;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
}
.advantage2 .content ul li {
  width: 20%
}
.advantage .content ul li .ig {
  border: solid 1px var(--color);
  padding: 40px 60px 37px;
  height: 440px;
  background: #fff;
}
.advantage .content ul li .ig i {
  display: block;
}
.advantage .content ul li .ig .tit {
  position: absolute;
  text-transform: uppercase;
  -webkit-transform: rotate(90deg) translate(-50px, 50%);
  -moz-transform: rotate(90deg) translate(-50px, 50%);
  -ms-transform: rotate(90deg) translate(-50px, 50%);
  transform: rotate(90deg) translate(-50px, 50%);
  -webkit-transform-origin: 0 100%;
  -moz-transform-origin: 0 100%;
  -ms-transform-origin: 0 100%;
  transform-origin: 0 100%;
  bottom: auto;
  left: 50%;
  font-weight: 500;
  line-height: 36px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  white-space: nowrap;
}
.advantage .content ul li .ig .box {
  line-height: 1.8;
  opacity: 0;
  -webkit-transition: opacity 0.1s ease-out, -webkit-transform 0.4s ease-out, -webkit-clip-path 0.6s cubic-bezier(0.25, 0.59, 0.29, 0.96);
  transition: opacity 0.1s ease-out, -webkit-transform 0.4s ease-out, -webkit-clip-path 0.6s cubic-bezier(0.25, 0.59, 0.29, 0.96);
  -moz-transition: opacity 0.1s ease-out, transform 0.4s ease-out, clip-path 0.6s cubic-bezier(0.25, 0.59, 0.29, 0.96), -moz-transform 0.4s ease-out;
  transition: opacity 0.1s ease-out, transform 0.4s ease-out, clip-path 0.6s cubic-bezier(0.25, 0.59, 0.29, 0.96);
  transition: opacity 0.1s ease-out, transform 0.4s ease-out, clip-path 0.6s cubic-bezier(0.25, 0.59, 0.29, 0.96), -webkit-transform 0.4s ease-out, -moz-transform 0.4s ease-out, -webkit-clip-path 0.6s cubic-bezier(0.25, 0.59, 0.29, 0.96);
  transition: opacity 0.1s ease-out, transform 0.4s ease-out, clip-path 0.6s cubic-bezier(0.25, 0.59, 0.29, 0.96), -webkit-transform 0.4s ease-out, -webkit-clip-path 0.6s cubic-bezier(0.25, 0.59, 0.29, 0.96);
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  -webkit-transform: translateX(50px);
  -moz-transform: translateX(50px);
  -ms-transform: translateX(50px);
  transform: translateX(50px);
}
.advantage .content ul li .ig .num {
  position: absolute;
  bottom: 30px;
  right: 35px;
  color: #666666;
}
.advantage .content ul li.active {
  width: 60%;
}
.advantage .content ul li.active .box .t1 {
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 700;
}
.advantage .content ul li.active .box {
  opacity: 1;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  -webkit-transition-delay: 0.4s;
  -moz-transition-delay: 0.4s;
  transition-delay: 0.4s;
  -webkit-transform: translate(0);
  -moz-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
}
.advantage .content ul li.active .tit {
  opacity: 0;
}
@media screen and (max-width: 1450px) {
  .advantage .content ul li .ig {
    padding: 40px 30px 30px;
  }
}
@media screen and (max-width: 1250px) {
  .advantage .content ul li .ig {
    padding: 40px 20px 30px;
  }
}
@media screen and (max-width: 1000px) {
  .advantage .top .btn {
    -webkit-box-pack: end;
    -webkit-justify-content: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    margin-top: 20px;
  }
  .advantage .content ul li .ig .tit {
    display: none;
  }
  .advantage .content ul li .ig .num {
    bottom: 20px;
  }
  .advantage .content ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: -10px;
  }
  .advantage .content ul li {
    width: 50%;
    margin-bottom: 10px;
  }
  .advantage .content ul li.active {
    width: 50%;
  }
  .advantage .content ul li .ig .box {
    opacity: 1;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    -webkit-transition-delay: 0.4s;
    -moz-transition-delay: 0.4s;
    transition-delay: 0.4s;
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
  }
  .advantage .content ul li .ig {
    padding: 30px 20px 50px;
    height: 100%;
  }
  .advantage .content ul li .box {
    opacity: 1;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    -webkit-transition-delay: 0.4s;
    -moz-transition-delay: 0.4s;
    transition-delay: 0.4s;
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
  }
  .advantage .content ul li .box .t1 {
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 700;
  }
}
@media screen and (max-width:700px) {
  .advantage .content ul li,
  .advantage .content ul li.active {
    width: 100%;
  }
  .advantage .content ul li .ig {
    height: auto;
  }
}
@media screen and (max-width: 500px) {
  .advantage .content ul li,
  .advantage .content ul li.active {
    width: 100%;
  }
  .advantage .content ul li .ig {
    height: auto;
    padding: 20px 15px 50px;
  }
  .advantage .content ul li .ig .tit {
    line-height: 1.5;
  }
  .advantage .content ul li .ig .box {
    line-height: 1.8;
  }
}
.m-page {
  margin-top: 40px;
  text-align: center;
}
.m-page a,
.m-page span {
  display: inline-block;
  margin-right: 10px;
  width: 35px;
  height: 35px;
  border-radius: 5px;
  text-align: center;
  line-height: 35px;
  background: #222;
  color: white;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  font-size: 16px;
}
.m-page a:hover,
.m-page span {
  background: var(--color);
}
.faq-page {
    padding-bottom: 110px;
    background: #f9f9f9;
}
.faq-page .container .tips_title {
    font-weight: bold;
    padding-left: 60px;
    font-weight: 700;
    padding-right: 25px;
    display: inline-block;
    position: relative;
    line-height: 1;
    z-index: 2;
}
.faq-page .container .tips_title::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 16px;
    bottom: 0;
    left: 0;
    background-color: var(--color)1f;
    z-index: -1;
}
.faq-page .container .content {
    margin-top: 60px;
}
.faq-page .container .content ul {
    border-top: 1px solid #e5e8ec;
    border-left: 1px solid #e5e8ec;
    border-right: 1px solid #e5e8ec;
}
.faq-page .container .content ul li {
    border-bottom: 1px solid #e5e8ec;
    position: relative;
    cursor: pointer;
}
.faq-page .container .content ul li > i {
    position: absolute;
    top: 24px;
    right: 24px;
    line-height: 1;
    font-size: 30px;
    width: 30px;
    height: 30px;
    text-align: center;
    color: var(--color);
}
.faq-page .container .content ul li .title {
    font-weight: bold;
    position: relative;
    padding: 20px 60px;
    font-size: 26px;
}
.faq-page .container .content ul li .title::before{
    display: none;
}
.faq-page .container .content ul li .des {
    display: none;
    padding: 20px 60px;
}
.faq-page .container .content ul li.active .title {
    background-color: var(--color);
    color: #fff;
}
.faq-page .container .content ul li.active > i {
    color: #fff;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}
@media (max-width: 1000px) {
    .faq-page {
        text-align: center;
    }
    .faq-page .container .tips_title {
        padding-left: 20px;
        padding-right: 20px;
    }
    .faq-page .container .content ul {
        text-align: left;
    }
    .faq-page .container .content {
        text-align: left;
    }
}
@media (max-width: 500px) {
    .faq-page .container .content {
        margin-top: 30px;
    }
    .faq-page .container .content ul li .title {
        padding: 20px 30px 20px 16px;
    }
    .faq-page .container .content ul li > i {
        font-size: 20px;
        width: 20px;
        height: 20px;
        right: 2px;
        top: 28px;
    }
    .faq-page .container .content ul li .des {
        padding: 20px 16px;
    }
}
.news-page .marginBox {
  padding: 90px 0 70px 0;
}
.news-page .sideBarLeft .list ul li a.img-box time {
  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;
  font-size: 16px;
  color: #8e8e8e;
  margin-top: 1.2em;
}
.news-page .sideBarLeft .list ul li a.img-box time em {
  font-size: 14px;
  padding: .3em 1em;
  border-radius: 1.5em;
  background: var(--color);
  color: white;
  text-transform: uppercase;
  margin-left: 1em;
}
.news-page .sideBarLeft .list ul li a.img-box:hover {
  border-color: var(--color);
}
.news-page .sideBarLeft .list ul{
  margin: -10px;
}
.news-page .sideBarLeft .list ul li {
  /*border-bottom: 1px solid #000;*/
 padding: 10px;
  /*background: #f5f5f5;*/
}
.news-page .sideBarLeft .list ul li .content {
  padding: 20px 0;
  /*padding: 30px 0 60px;*/
  font-size: 16px;
}
.news-page .sideBarLeft .list ul li .content span.h1 {
  transition: .5s;
}
.news-page .sideBarLeft .list ul li .content span.h1:hover {
  color: var(--color);
}
.news-page .sideBarLeft .list ul li .content span.h3 {
  font-weight: bold;
  font-size: 28px;
  color: #242424;
  line-height: 2;
  display: block;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.news-page .sideBarLeft .list ul li .content span.h3:hover {
  color: var(--color);
}
.news-page .sideBarLeft .list ul li .content .text {
  font-size: 18px;
  color: #8e8e8e;
  line-height: 32px;
  margin: 1em 0;
}
.news-page .sideBarLeft .list ul li .content a.link {
  font-size: 18px;
  display: inline-block;
  position: relative;
  line-height: 1;
  border-bottom: 1px solid var(--color);
  color: var(--color);
}
.news-page .sideBarLeft .list ul li .content a.link:after {
  content: '';
  border: 4px solid var(--color);
  border-radius: 100%;
  position: absolute;
  top: -2px;
  left: 105%;
}
.inner-page .sideBarBox .sideBarLeft {
  width: 70%;
  padding-right: 3%;
}
.inner-page .sideBarBox .sideBarRight {
  width: 30%;
  padding: 25px;
  background: #f3f3f3;
  position: sticky;
  top: 100px;
}
.inner-page .sideBarBox .sideBarRight span.h5 {
  font-size: 30px;
  font-weight: bold;
  text-transform: uppercase;
  color: #242424;
  line-height: 36px;
  margin-bottom: .2em;
  display: block;
  margin-top: 1.5em;
}
.inner-page .sideBarBox .sideBarRight span.h5:first-child {
  margin-top: 0;
}
.inner-page .sideBarBox .sideBarRight form.search {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 50px;
  height: 50px;
  border: 1px solid #bfbfbf;
  background-color: white;
  font-size: 18px;
  color: #8e8e8e;
  padding: 0 .7em;
}
.inner-page .sideBarBox .sideBarRight form.search input {
  border: none;
  background-color: transparent;
  width: 100%;
}
.inner-page .sideBarBox .sideBarRight form.search input[type="submit"] {
  width: 30px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: url("../images/search.png") center center no-repeat;
  -webkit-filter: brightness(0);
  filter: brightness(0);
}
.inner-page .sideBarBox .sideBarRight .nav ul li {
  font-size: 18px;
  line-height: 32px;
  color: #8e8e8e;
  padding: .5em 0;
  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;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page .sideBarBox .sideBarRight .nav ul li:before {
  content: '';
  border: 3px solid var(--color);
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: .5em;
  border-radius: 100%;
}
.inner-page .sideBarBox .sideBarRight .nav ul li:hover {
  color: var(--color);
}
.inner-page .sideBarBox .sideBarRight .newsList 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;
  padding: 20px 0;
  border-bottom: 1px solid #bfbfbf;
}
.inner-page .sideBarBox .sideBarRight .newsList ul li a.img-box {
  margin-right: 15px;
  height: 80px;
  background-size: cover;
  background-position: center center;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.inner-page .sideBarBox .sideBarRight .newsList ul li .content time {
  display: block;
  font-size: 16px;
  color: #8e8e8e;
  line-height: 2;
}
.inner-page .sideBarBox .sideBarRight .newsList ul li .content span.h6 {
  font-size: 18px;
  color: #242424;
  font-weight: 500;
  line-height: 32px;
  margin-top: .3em;
  display: block;
}
.inner-page .sideBarBox .sideBarRight .newsList ul li .content span.h6:hover {
  color: var(--color);
}
.inner-page .sideBarBox .sideBarRight .imgBox {
  margin-top: 30px;
  height: 460px;
  background-size: cover;
  background-position: center center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.inner-page .sideBarBox .sideBarRight .imgBox .text {
  font-size: 16px;
  color: white;
  line-height: 2;
  padding: 2em;
}
.newdet-page .marginBox {
  padding: 90px 0%;
}
.newdet-page .sideBarLeft time {
  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;
  font-size: 16px;
  color: #8e8e8e;
  margin-top: 1.2em;
}
.newdet-page .sideBarLeft time em {
  font-size: 14px;
  padding: .5em 1em;
  border-radius: 6px;
  background: var(--color);
  color: white;
  text-transform: uppercase;
  margin-left: 1em;
}
.newdet-page .sideBarLeft h1 {
  font-weight: bold;
  font-size: 28px;
  text-transform: uppercase;
  color: #242424;
  line-height: 1.6;
  display: block;
  margin: 2em 0 1em;
}
.newdet-page .sideBarLeft .content {
  font-size: 18px;
  color: #8e8e8e;
  line-height: 32px;
  padding: 1.5em 0;
  border-top: 1px solid #bfbfbf;
  border-bottom: 1px solid #bfbfbf;
}
.newdet-page .sideBarLeft .content a strong {
  font-weight: 500;
  color: black;
}
.newdet-page .sideBarLeft .share {
  font-size: 24px;
  color: #bfbfbf;
  line-height: 44px;
  margin-top: 1em;
  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;
}
.newdet-page .sideBarLeft .share a {
  margin-left: 1em;
  font-size: 80%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.newdet-page .sideBarLeft .share a:hover {
  color: var(--color);
}
.newdet-page .sideBarLeft .m-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin: 50px 0 80px;
}
.newdet-page .sideBarLeft .m-link .prev {
  margin-right: 20px;
  width: 100%;
}
.newdet-page .sideBarLeft .m-link .prev a.link img {
  margin-right: .5em;
}
.newdet-page .sideBarLeft .m-link .next {
  margin-left: 20px;
  width: 100%;
}
.newdet-page .sideBarLeft .m-link .next a.link {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.newdet-page .sideBarLeft .m-link .next a.link img {
  margin-left: .5em;
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.newdet-page .sideBarLeft .m-link a.link {
  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;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 36px;
  color: #242424;
  margin-bottom: .5em;
}
.newdet-page .sideBarLeft .m-link .btnBox {
  padding: 20px;
  background: #eee;
  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;
}
.newdet-page .sideBarLeft .m-link .btnBox a.img {
  width: 35%;
  height: 80px;
  background-size: cover;
  background-position: center center;
}
.newdet-page .sideBarLeft .m-link .btnBox .text {
  margin-left: 15px;
}
.newdet-page .sideBarLeft .m-link .btnBox .text time {
  font-size: 16px;
  color: #8e8e8e;
  margin: 0;
}
.newdet-page .sideBarLeft .m-link .btnBox .text span.h6 {
  font-size: 18px;
  color: #242424;
  line-height: 2;
  margin-top: .1em;
  display: block;
}
.newdet-page .sideBarLeft .publicForm span.h6 {
  font-weight: bold;
  font-size: 36px;
  text-transform: uppercase;
  color: #242424;
  line-height: 2;
  margin-bottom: 1em;
  display: block;
}
.newdet-page .form ul {
  margin: -15px -7px;
}
.newdet-page .form ul li {
  padding: 15px 7px;
}
.newdet-page .form ul li input,
.newdet-page .form ul li textarea {
  display: block;
  width: 100%;
  font-size: 18px;
  line-height: 32px;
  padding: .6em 1em;
  border: 1px solid #bfbfbf;
}
.newdet-page .form ul li input::-webkit-input-placeholder,
.newdet-page .form ul li textarea::-webkit-input-placeholder {
  color: #8e8e8e;
}
.newdet-page .form ul li input:-moz-placeholder,
.newdet-page .form ul li textarea:-moz-placeholder {
  color: #8e8e8e;
}
.newdet-page .form ul li input::-moz-placeholder,
.newdet-page .form ul li textarea::-moz-placeholder {
  color: #8e8e8e;
}
.newdet-page .form ul li input:-ms-input-placeholder,
.newdet-page .form ul li textarea:-ms-input-placeholder {
  color: #8e8e8e;
}
.newdet-page .form ul li input::placeholder,
.newdet-page .form ul li textarea::placeholder {
  color: #8e8e8e;
}
.newdet-page .form ul li textarea {
  height: 150px;
}
.newdet-page .form ul li input[type="submit"] {
  border: none;
  background: var(--color);
  color: white;
  font-weight: bold;
  font-size: 18px;
  text-transform: uppercase;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.newdet-page .form ul li input[type="submit"]:hover {
  background: #242424;
}
.newdet-page .form ul li.wid-100 {
  width: 100%;
}
@media screen and (max-width: 1600px) {
  .news-page .sideBarLeft .list ul li .content .text,
  .news-page .sideBarLeft .list ul li .content a.link {
    font-size: 16px;
    line-height: 30px;
  }
  .news-page .sideBarLeft .list ul li .content a.link:after {
    border-width: 2px;
  }
  .newdet-page .sideBarLeft h1 {
    font-size: 24px;
    line-height: 44px;
    margin: 1em 0;
  }
  .newdet-page .sideBarLeft .content {
    font-size: 16px;
    line-height: 30px;
  }
  .newdet-page .sideBarLeft .share {
    font-size: 20px;
    line-height: 36px;
  }
  .newdet-page .sideBarLeft .m-link a.link,
  .newdet-page .sideBarLeft .m-link .btnBox .text span.h6 {
    font-size: 16px;
    line-height: 30px;
  }
  .newdet-page .sideBarLeft .m-link .btnBox {
    padding: 10px;
  }
  .newdet-page .sideBarLeft .m-link .btnBox .text time {
    font-size: 14px;
  }
  .newdet-page .sideBarLeft .m-link {
    margin: 30px 0 40px;
  }
  .newdet-page .sideBarLeft .publicForm span.h6 {
    font-size: 24px;
  }
}
@media screen and (max-width: 1250px) {
  .news-page .sideBarLeft .list ul li .content span.h3 {
    font-size: 20px;
  }
  .news-page .sideBarLeft .list ul li .content {
    padding: 20px 0 30px;
  }
  .newdet-page .sideBarLeft h1,
  .newdet-page .sideBarLeft .publicForm span.h6 {
    font-size: 20px;
    line-height: 36px;
  }
}
@media screen and (max-width: 1000px) {
  .news-page .sideBarLeft .list ul li .content span.h3 {
    font-size: 18px;
  }
  .inner-page .sideBarBox .sideBarLeft {
    width: 100%;
    padding-right: 0;
  }
  .inner-page .sideBarBox .sideBarRight {
    display: none;
  }
  .newdet-page .form ul li input,
  .newdet-page .form ul li textarea,
  .newdet-page .form ul li input[type="submit"] {
    font-size: 14px;
    padding: .5em;
  }
  .newdet-page .marginBox {
    padding: 50px 0;
  }
}
@media screen and (max-width: 700px) {
  .newdet-page .form ul li {
    width: 100%;
  }
  .news-page .sideBarLeft .list ul li a.img-box time {
    font-size: 14px;
  }
  .news-page .sideBarLeft .list ul li a.img-box time em {
    font-size: 14px;
  }
  .news-page .sideBarLeft .list ul li .content .text,
  .news-page .sideBarLeft .list ul li .content a.link {
    font-size: 14px;
    line-height: 2;
  }
  .news-page .sideBarLeft .list ul li .content span.h3 {
    font-size: 16px;
    line-height: 30px;
  }
  .newdet-page .sideBarLeft .m-link .btnBox .text {
    margin-left: 0;
    width: 100%;
  }
  .newdet-page .sideBarLeft .m-link .btnBox a.img {
    display: none;
  }
  .newdet-page .sideBarLeft .m-link a.link,
  .newdet-page .sideBarLeft .m-link .btnBox .text span.h6 {
    font-size: 14px;
    line-height: 2;
  }
}
@media screen and (max-width: 500px) {
  .newdet-page .sideBarLeft .m-link .prev {
    margin-right: 10px;
  }
  .newdet-page .sideBarLeft .m-link .next {
    margin-left: 10px;
  }
  .newdet-page .sideBarLeft time {
    margin-top: 0;
    font-size: 14px;
    line-height: 2;
  }
  .newdet-page .sideBarLeft time em {
    font-size: 14px;
    line-height: 2;
  }
}
.contact-page {
  padding-top: 60px;
  background: #f9f9f9;
}
.contact-page .contact-1 .left form ul {
  margin: 0 -30px -37px 0;
}
.contact-page .contact-1 .left form ul li {
  padding: 0 30px 37px 0;
}
.contact-page .contact-1 .left form ul li .box {
  position: relative;
  width: 100%;
  border-bottom: 1px solid #d1d0c8;
}
.contact-page .contact-1 .left form ul li .box input,
.contact-page .contact-1 .left form ul li .box textarea {
  width: 100%;
  background: transparent;
  border: none;
  padding: 13px 0 13px 26px;
  font-size: 18px;
  font-weight: 300;
  line-height: 30px;
  color: #919191;
}
.contact-page .contact-1 .left form ul li .box input::-webkit-input-placeholder,
.contact-page .contact-1 .left form ul li .box textarea::-webkit-input-placeholder {
  color: #919191;
}
.contact-page .contact-1 .left form ul li .box input:-moz-placeholder,
.contact-page .contact-1 .left form ul li .box textarea:-moz-placeholder {
  color: #919191;
}
.contact-page .contact-1 .left form ul li .box input::-moz-placeholder,
.contact-page .contact-1 .left form ul li .box textarea::-moz-placeholder {
  color: #919191;
}
.contact-page .contact-1 .left form ul li .box input:-ms-input-placeholder,
.contact-page .contact-1 .left form ul li .box textarea:-ms-input-placeholder {
  color: #919191;
}
.contact-page .contact-1 .left form ul li .box input::placeholder,
.contact-page .contact-1 .left form ul li .box textarea::placeholder {
  color: #919191;
}
.contact-page .contact-1 .left form ul li .box i {
  position: absolute;
  left: 0;
  top: 13px;
  font-size: 20px;
}
.contact-page .contact-1 .left form ul li .box::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--black);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.contact-page .contact-1 .left form ul li .more {
  padding: 18px 30px 18px 29px;
  vertical-align: middle;
}
.contact-page .contact-1 .left form ul li .more i {
  margin-right: 6px;
  display: inline-block;
}
.contact-page .contact-1 .left form ul li p {
  display: inline-block;
  vertical-align: middle;
  padding-left: 26px;
  font-size: 14px;
  color: #919191;
}
.contact-page .contact-1 .left form ul li p span {
  display: inline-block;
  vertical-align: middle;
  padding-left: 5px;
}
.contact-page .contact-1 .left form ul li:hover .box::before,
.contact-page .contact-1 .left form ul li.active .box::before {
  width: 100%;
}
.contact-page .contact-1 .left form ul li.wid-100 {
  width: 100% !important;
}
.contact-page .contact-1 .left form ul li input[type="submit"] {
  width: auto;
  background: var(--color);
  color: white;
  border: none;
  padding: 0 40px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  font-size: 18px;
  height: 50px;
  border-radius: 6px;
}
.contact-page .contact-1 .left form ul li input[type="submit"]:hover {
  background: #005fad;
}
.contact-page .contact-1 .right {
  padding-left: 6%;
}
.contact-page .contact-1 .right p {
  font-size: 18px;
  line-height: 30px;
  font-weight: 300;
  color: #919191;
  margin-top: 7px;
}
.contact-page .contact-1 .right .list {
  margin-top: 22px;
}
.contact-page .contact-1 .right .list ul li {
  font-size: 18px;
  color: #919191;
  line-height: 1.6;
  margin-bottom: 10px;
}
.contact-page .contact-1 .right .list ul li i {
  display: inline-block;
  vertical-align: top;
  font-size: 20px;
  width: 20px;
  text-align: center;
  margin-top: 5px;
}
.contact-page .contact-1 .right .list ul li span {
  display: inline-block;
  vertical-align: top;
  width: 90%;
  font-weight: 500;
  padding-top: 4px;
  padding-left: 20px;
}
.contact-page .contact-1 .right .list ul li:last-child {
  margin-bottom: 0;
}
.contact-page .contact-2 {
  padding-top: 120px;
}
.contact-page .contact-2 .map {
  height: 520px;
}
.contact-page .contact-2 .map iframe{
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
@media screen and (max-width: 1280px) {
  .contact-page .contact-1 .right {
    padding-left: 5.65%;
  }
}
@media screen and (max-width: 1000px) {
  .contact-page {
    padding-top: 60px;
  }
  .contact-page .contact-1 .left {
    width: 100%;
  }
  .contact-page .contact-1 .right {
    width: 100%;
    padding: 30px 0 0 0;
  }
  .contact-page .contact-2 {
    padding-top: 60px;
  }
  .contact-page .contact-2 .map {
    height: 360px;
  }
}
@media screen and (max-width: 700px) {
  .contact-page {
    padding-top: 30px;
  }
  .contact-page .contact-1 .left form ul li .more {
    padding: 18px 20px;
  }
  .contact-page .contact-2 {
    padding-top: 30px;
  }
}
@media screen and (max-width: 500px) {
  .contact-page .contact-1 .left form ul li .more {
    padding: 10px 12px;
  }
  .contact-page .contact-1 .left form ul li p {
    display: block;
    padding: 10px 0 0 0;
  }
  .contact-page .contact-1 .left form ul {
    margin-bottom: -20px;
  }
  .contact-page .contact-1 .left form ul li {
    padding-bottom: 20px;
    width: 100%;
  }
  .contact-page .contact-1 .left form ul li .box input,
  .contact-page .contact-1 .left form ul li .box textarea {
    padding: 10px 0 10px 36px;
  }
  .contact-page .contact-1 .right p {
    font-size: 16px;
    line-height: 30px;
  }
  .contact-page .contact-1 .right .list ul li {
    font-size: 16px;
  }
  .contact-page .contact-2 .map {
    height: 260px;
  }
}
.inner-page .sideBox .sidebar-left {
  /*position: sticky;
  top: 140px;*/
  width: 26%;
  padding: 40px 20px;
}
.inner-page .sideBox .sidebar-left .inner .inner-title {
  font-size: 27px;
  line-height: 1.5;
  color: #000;
  text-transform: uppercase;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #e7e7e7;
  font-weight: bold;
}
.inner-page .sideBox .sidebar-left .inner .inner-search {
  margin-bottom: 2rem;
}
.inner-page .sideBox .sidebar-left .inner .inner-search form {
  width: 100%;
  position: relative;
}
.inner-page .sideBox .sidebar-left .inner .inner-search form input[type="text"] {
  width: 100%;
  height: 43px;
  border: 1px solid #eee;
  padding: 10px 20px;
  padding-right: 5rem;
  font-size: 16px;
  color: #555555;
  font-weight: 500;
}
.inner-page .sideBox .sidebar-left .inner .inner-search form input[type="submit"] {
  position: absolute;
  width: 43px;
  height: 43px;
  border: none;
  background: url(../images/search.png) no-repeat center center var(--color);
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
}
.inner-page .sideBox .sidebar-left .inner .inner-cat {
  margin-bottom: 2rem;
}
.inner-page .sideBox .sidebar-left .inner .inner-cat ul>li {
  padding: 8px 8px;
  font-size: 16px;
  position: relative;
  color: #000000;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
}
.inner-page .sideBox .sidebar-left .inner .inner-cat ul>li ul {
  margin-top: 16px;
}
.inner-page .sideBox .sidebar-left .inner .inner-cat ul>li ul li a{
  padding-right: 0;
  font-size: 17px;
  color: #333;
  position: relative;
}
.inner-page .sideBox .sidebar-left .inner .inner-cat ul>li{
  border: 1px solid #E2E2E2;
  border-radius: 5px;
}
.inner-page .sideBox .sidebar-left .inner .inner-cat ul>li i {
  font-size: 20px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -16px;
  font-weight: 700;
  cursor: pointer;
   -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page .sideBox .sidebar-left .inner .inner-cat ul>li i.active{
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.inner-page .sideBox .sidebar-left .inner .inner-cat ul>li a {
  padding-right: 20px;
  font-size: 17px;
  line-height: 1.7;
  position: relative;
  display: block;
  padding: 3px 15px;
}
.inner-page .sideBox .sidebar-left .inner .inner-cat ul>li a span {
  color: #aaa;
}
.inner-page .sideBox .sidebar-left .inner .inner-cat ul>li ul li{
  border: 0;
}
.inner-page .sideBox .sidebar-left .inner .inner-cat ul>li ul li a::before{
  content: '●';
  display: inline-block;
  font-size: 18px;
  vertical-align: middle;
}
.inner-page .sideBox .sidebar-left .inner .inner-cat ul>li a:hover,
.inner-page .sideBox .sidebar-left .inner .inner-cat ul>li a.active {
  background: var(--color);
  color: #fff;
}
.inner-page .sideBox .sidebar-left .inner .inner-cat ul>li ul li a:hover,
.inner-page .sideBox .sidebar-left .inner .inner-cat ul>li ul li a.active{
  background: rgba(206,32,39,.6);
}
/*.inner-page .sideBox .sidebar-left .inner .inner-cat ul>li:first-child {
  padding-top: 0;
}*/
.inner-page .sideBox .sidebar-left .inner .inner-cat ul>li:last-child {
  padding-bottom: 0;
}
.inner-page .sideBox .sidebar-left .inner .inner-recent {
  margin-bottom: 2rem;
}
.inner-page .sideBox .sidebar-left .inner .inner-recent ul li {
  padding: 0.75rem 0;
}
.inner-page .sideBox .sidebar-left .inner .inner-recent ul li a {
  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;
}
.inner-page .sideBox .sidebar-left .inner .inner-recent ul li a .r-img {
  margin-right: 1rem;
}
.inner-page .sideBox .sidebar-left .inner .inner-recent ul li a .r-img img {
  height: 80px;
  max-width: 100px;
  display: block;
  object-fit: cover;
}
.inner-page .sideBox .sidebar-left .inner .inner-recent ul li a .r-text p {
  color: #000;
  font-size: 17px;
  line-height: 2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: .4rem;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
}
.inner-page .sideBox .sidebar-left .inner .inner-recent ul li a .r-text p:hover {
  color: var(--color);
}
.inner-page .sideBox .sidebar-left .inner .inner-recent ul li a .r-text span {
  color: var(--color);
  display: block;
  font-size: 14px;
  line-height: 1;
}
.inner-page .sideBox .sidebar-left .inner .inner-recent ul li:first-child {
  padding-top: 0;
}
.inner-page .sideBox .sidebar-left .inner .inner-recent ul li:last-child {
  padding-bottom: 0;
}
.inner-page .sideBox .sidebar-left .inner .inner-contact {
  background: url(../images/pro-01.jpg) no-repeat center center;
  padding: 10.75rem 2rem 5.75rem;
  color: #fff;
  background-size: cover;
  position: relative;
}
.inner-page .sideBox .sidebar-left .inner .inner-contact h5 {
  font-size: 20px;
  line-height: 1;
  text-transform: capitalize;
  font-weight: bold;
}
.inner-page .sideBox .sidebar-left .inner .inner-contact h6 {
  font-size: 16px;
  line-height: 1.8;
  margin-top: 1.1rem;
  text-transform: capitalize;
}
.inner-page .sideBox .sidebar-left .inner .inner-contact a {
  display: inline-block;
  font-size: 14px;
  color: var(--color);
  text-transform: capitalize;
  background: #fff;
  padding: 8px 12px;
  position: relative;
  -webkit-transform: skewX(-10deg) skewY(0);
  -moz-transform: skewX(-10deg) skewY(0);
  -ms-transform: skewX(-10deg) skewY(0);
  transform: skewX(-10deg) skewY(0);
  margin-left: 5px;
  margin-top: 1.3rem;
}
.inner-page .sideBox .sidebar-left .inner .inner-contact a span {
  display: inline-block;
  position: relative;
  -webkit-transform: skewX(10deg) skewY(0);
  -moz-transform: skewX(10deg) skewY(0);
  -ms-transform: skewX(10deg) skewY(0);
  transform: skewX(10deg) skewY(0);
  z-index: 2;
}
.inner-page .sideBox .sidebar-left .inner .inner-contact a::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 100%;
  background: var(--color);
  left: 0;
  top: 0;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
  z-index: 1;
}
.inner-page .sideBox .sidebar-left .inner .inner-contact a:hover {
  color: #fff;
}
.inner-page .sideBox .sidebar-left .inner .inner-contact a:hover::after {
  width: 100%;
}
.inner-page .sideBox {
  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-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.inner-page .sideBox .sidebar-left .inner .inner-contact:after {
  content: '';
  z-index: 9;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0.5)));
  background: -webkit-linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5));
  background: -moz-linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5));
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5));
}
.inner-page .sideBox .sidebar-left .inner .inner-contact .c-box {
  z-index: 99;
  position: relative;
}
.inner-page .sideBox .sidebar-left{
  background: #f5f5f5;
}
.inner-page .sideBox .sidebar-right {
  width: 72%;
  padding-bottom: 40px;
  background: #f5f5f5;
}
.product-list02 li .box span.h6 {
  font-size: 16px;
  display: block;
  transition: .5s;
  -o-box-shadow: 0 5px 10px rgba(0, 0, 0, 0);
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0);
}
.product-list02 li .box:hover{
  -o-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.product-list02 li .box a.img {
  display: block;
  text-align: center;
}
.product-list02 li .box {
  font-size: 10px;
  background-color: #fff;
  padding: 25px;
  height: 100%;
}
.product-list02 li .box .text a{
  min-height: 63px;
  display: block;
}
.product-list02 li .box .more{
  background: transparent;
  border: 1px solid var(--color);
  color: var(--color);
}
.product-list02 li .box .more::after{
  background: var(--color);
}
.product-list02 li .box .more:hover{
  color: #fff;
}
.product-list02 ul {
  margin: -15px;
}
.product-list02 li {
  padding: 15px;
  height: auto;
}
@media screen and (max-width: 1450px) {
  .product-list02 li .box .text a{
    min-height: 80px;
  }
}
@media screen and (max-width: 1250px) {
  .product-list02 li {
    width: 50%;
  }
  .product-list02 li .box .more {
    padding: 10px 20px;
  }
  .inner-page .sideBox .sidebar-left .inner .inner-title {
    font-size: 20px;
  }
}
@media screen and (max-width: 1000px) {
  .inner-page .sideBox .sidebar-left {
    display: none;
  }
  .inner-page .sideBox .sidebar-right {
    width: 100%;
  }
  .product-list02 li {
    width: 50%;
  }
  .product-list02 li .box .text {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .product-list02 li {
    width: 100%;
  }
  .product-list02 li .box .text a{
    min-height: 100%;
  }
  .flex-2 > * {
    width: 100%;
  }
}
.related_det .list .img-box {
  position: relative;
  border: 1px solid #d9d9d9;
}
.related_det .list .img-box .des {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(206,32,39, 0.87);
  color: white;
  line-height: 1.9;
  padding: 25px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
}
.related_det .list li:hover .img-box .des {
  opacity: 1;
}
.related_det .list li:hover .title {
  color: var(--color)
}
.prodet-page {
  padding: 100px 0;
}
.prodet-page i.tag {
  display: block;
  font-size: 16px;
  font-weight: 300;
  color: var(--color);
  line-height: 30px;
}
.prodet-page h2,
.prodet-page h1 {
  font-size: 30px;
  font-weight: bold;
  line-height: 2;
}
.prodet-page .prodet-1 .left {
  background: #f6f6f6;
  background-size: cover;
  padding: 20px;
  text-align: center;
  vertical-align: middle;
  position: relative;
  width: 40%;
}
.prodet-page .prodet-1 .left .big img {
  width: 100%;
}
.prodet-page .prodet-1 .right .proview-img ul {
  margin: -10px;
}
.prodet-page .prodet-1 .right .proview-img li {
  padding: 10px;
}
.prodet-page .prodet-1 .right .proview-img li a{
  display: block;
  border: 1px solid #ccc;
}
.prodet-page .prodet-1 .left img {
  display: block;
  margin: 0 auto;
}
.prodet-page .prodet-1 .left i.block {
  width: 25%;
  height: 30%;
  position: absolute;
  background: #eee;
  z-index: -1;
  left: -12%;
  top: 20%;
}
.prodet-page .prodet-1 .right {
  padding-left: 5%;
  vertical-align: middle;
  width: 60%;
}
.prodet-page .prodet-1 .right h1 {
  font-size: 36px;
  text-transform: uppercase;
  line-height: 1;
}
.prodet-page .prodet-1 .right .grid-box {
  width: 100%;
}
.prodet-page .prodet-1 .right .content {
  display: block;
  padding: 10px 0 10px;
  font-size: 18px;
  /*font-weight: 500;*/
  color: #7e7e7e;
  line-height: 1.8;
}
.prodet-page .prodet-1 .right .content h6 {
  font-size: 18px;
  text-transform: uppercase;
  text-decoration: underline;
  display: block;
  margin-bottom: 10px;
  color: var(--color);
  font-weight: bold;
}
.prodet-page .prodet-1 .right .btn {
  padding: 20px 0;
}
.prodet-page .prodet-1 .right .share {
  margin-top: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.prodet-page .prodet-1 .right .share h6 {
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  text-transform: capitalize;
}

.prodet-page .prodet-1 .right .share ul {
  /*display: inline-block;*/
  vertical-align: middle;
  padding: 3px 0px;
}

.prodet-page .prodet-1 .right .share ul li {
  width: auto;
  margin-left: 15px;
  color: #666;
  font-size: 14px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.prodet-page .prodet-1 .right .share ul li:hover {
  color: var(--color);
}
.prodet-page .prodet-1 .right .proview-img .slick-arrow{
  position: absolute;
  cursor: pointer;
  width: 19px;
  height: 35px;
  background: rgba(0, 0, 0, 0.5) url(../images/banner-btn-l.png) no-repeat center;
  background-size: 80%;
  left: 20px;
  top: 50%;
  z-index: 8;
  color: rgba(255, 255, 255, 0);
  border: none;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.prodet-page .prodet-1 .right .proview-img .slick-next{
  background: rgba(0, 0, 0, 0.5) url(../images/banner-btn-r.png) no-repeat center;
  background-size: 80%;
  left: auto;
  right: 20px;
}
.dt-01 .dt-box {
  /*display: flex;
  align-items: center;*/
  background: #f7f7f7;
  padding: 70px 60px;
}
.dt-01 .dt-box .left {
  color: var(--color);
  font-size: 42px;
  font-weight: bold;
}
.dt-01 .dt-box .right {
  text-align: left;
  font-size: 18px;
  width: 100%;
}
.dt p {
  font-size: 17px;
  padding: 5px 0;
}
@media screen and (max-width: 1500px) {
  .prodet-page {
    padding: 80px 0;
  }
  .prodet-page .prodet-1 .right h1 {
    font-size: 40px;
  }
  .prodet-page .prodet-1 .right .content {
    padding: 30px 0 50px;
  }
  .prodet-page .prodet-1 .right h1 {
    font-size: 32px;
  }
}
@media screen and (max-width: 1250px) {
  .prodet-page .prodet-1 .right h1,
  .prodet-page h2 {
    font-size: 28px;
  }
  .prodet-page .prodet-1 .left {
    position: sticky;
    top: 120px;
  }
}
@media screen and (max-width: 1000px) {
  .prodet-page .prodet-1 .right h1,
  .prodet-page h2 {
    font-size: 24px;
  }
  .prodet-page .prodet-1 .right {
    width: 100%;
    padding-left: 0;
    padding-top: 20px;
  }
  .prodet-page .prodet-1 .left {
    width: 100%;
    position: relative;
    top: 0;
  }
  .prodet-page .prodet-1 .right .content h6 {
    font-size: 16px;
  }
  .prodet-page .prodet-1 .right .content {
    font-size: 16px;
    line-height: 2;
  }
  .prodet-page .prodet-1 .right .content {
    padding: 15px 0;
  }
  .prodet-page .prodet-1 .right .btn {
    padding: 20px 0;
  }
  .prodet-page .prodet-1 .right .share {
    margin-top: 10px;
  }
  .prodet-page {
    padding: 60px 0 30px;
  }
}
@media screen and (max-width: 500px) {
  .prodet-page .prodet-1 .right h1,
  .prodet-page h2 {
    font-size: 20px;
    line-height: 1.8;
  }
}
.oem-page .init-1 .container .left {
  width: 44%;
}
.oem-page .init-1 .container .left img {
  width: 100%;
}
.oem-page .init-1 .container .right {
  width: 56%;
  padding-left: 60px;
}
.oem-page .init-1 .container .right .tipsTitle {
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}
.oem-page .init-1 .container .right .tipsDes {
  font-weight: 500;
  color: var(--color);
}
.oem-page .init-1 .container .right .content ul li .box {
  position: relative;
}
.oem-page .init-1 .container .right .content ul li .box .title {
  padding: 16px 60px 16px 30px;
  position: relative;
  font-weight: 500;
  cursor: pointer;
}
.oem-page .init-1 .container .right .content ul li .box .title i {
  position: absolute;
  top: 16px;
  right: 10px;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -ms-transform-origin: center center;
  -o-transform-origin: center center;
  transform-origin: center center;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.oem-page .init-1 .container .right .content ul li .box .des {
  border-top: 1px solid #dedade;
  color: #666666;
  padding: 20px 50px;
  line-height: 1.8;
  /*background-color: #f0efeb;*/
  display: none;
}
.oem-page .init-1 .container .right .content ul li.active .box .title {
  /*background-color: #f0efeb;*/
}
.oem-page .init-1 .container .right .content ul li.active .box .title i {
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
}
@media (max-width: 1000px) {
  .oem-page .init-1 .container .left {
    width: 100%;
  }
  .oem-page .init-1 .container .right {
    width: 100%;
    padding: 0;
    margin-top: 20px;
  }
  .oem-page .init-1 .container .right .content ul li .box .title i {
    top: 18px;
    width: 20px;
    height: 20px;
    line-height: 20px;
  }
  .oem-page .init-1 .container .right .content ul li .box .title {
    padding: 16px 30px 16px 16px;
  }
  .oem-page .init-1 .container .right .content ul li .box .des {
    padding: 16px;
  }
}
#index-body{
  background: #efefef;
}
#index-body .i-case .i1{
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.tc{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: rgba(0,0,0,0.8);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-align: center;
  z-index: -1;
}
.tc i.iconfont-close{
  position: absolute;
  top: -10%;
  right: -3%;
  width: 60px;
  height: 60px;
  font-size: 30px;
  line-height: 60px;
  border-radius: 50%;
  background: var(--color);
  color: #fff;
  cursor: pointer;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.tc i.iconfont-close:hover{
  background: #fff;
  color: #000;
}
.tc ul{
  height: 100%;
}
.tc ul li{
  display: none;
}
.tc .img-box img{
  width: auto;
}
.tc .small{
  margin-top: 20px;
}
.tc .small dl{
  margin: 0 -10px;
}
.tc .small dl .slick-slide{
  height: auto;
}
.tc .small dd{
  padding: 0 10px;
  height: 100%;
}
.tc .small dd .img-box{
  height: 100%;
}
.tc .small .slickBtn div{
  background: var(--color);
  color: #fff;
}
.tc .small .slickBtn div.prev{
  right: 98%;
}
.tc .small .slickBtn div.next{
  left: 98%;
}
.tc .big,
.tc .small{
  width: 48.23%;
  margin-left: auto;
  margin-right: auto;
}
.tc.active{
  opacity: 1;
  z-index: 999;
}
.mana-page .mana-1 {
  padding-top: 4.688%;
}
.mana-page .mana-1 .left {
  vertical-align: middle;
  padding-right: 3.5%;
}
.mana-page .mana-1 .left .title::before {
  display: none;
}
.mana-page .mana-1 .left .con {
  font-size: 18px;
  line-height: 1.7;
  margin-top: 30px;
  color: #484848;
}
.mana-page .mana-1 .right {
  vertical-align: middle;
}
.mana-page .mana-2 {
  padding-top: 3.386%;
}
.mana-page .mana-2 .top .left {
  width: 50%;
  padding-right: 7%;
}
.mana-page .mana-2 .top .left .title::before {
  display: none;
}
.mana-page .mana-2 .top .right {
  width: 50%;
  font-size: 18px;
  line-height: 1.8;
  margin-top: 150px;
}
.mana-page .mana-2 .top .right p {
  margin-top: 25px;
}
.mana-page .mana-2 .top .right p:first-child {
  margin-top: -65px;
}
.mana-page .mana-2 .bottom {
  /*background: url(../images/mana2.jpg) no-repeat center top;*/
  background-size: 100% 100%;
  color: #000;
  margin-top: 89px;

}
.mana-page .mana-2 .bottom .title {
  color: #000;
}
.mana-page .mana-2 .bottom .title::before {
  display: none;
}
.mana-page .mana-2 .bottom .ig {
  background: rgba(255, 255, 255, 0.04);
  /*max-width: 1230px;*/
  /*margin: 24px 0 0 8.593%;*/
  /*padding: 40px  6.50vw ;*/
}
.mana-page .mana-2 .bottom .ig ul li {
  position: relative;
   padding: 10px;
   margin-bottom: 10px;
}
.mana-page .mana-2 .bottom .ig ul li i {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  /*height: 160px;*/
  /*border-radius: 50%;*/
  text-align: center;
  line-height: 80px;
  /*background: var(--color);*/
 
}
.mana-page .mana-2 .bottom .ig ul li i img {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  object-fit: cover;
}
.mana-page .mana-2 .bottom .ig ul li .text {
  display: inline-block;
  width: 82%;
  padding-left: 38px;
}
.mana-page .mana-2 .bottom .ig ul li .text span {
  font-size: calc(0.315vw + 14px) !important;
  line-height: 1.3; 
  font-weight: bold;
}
.mana-page .mana-2 .bottom .ig ul li .text p {
  font-size: 16px;
  line-height: 1.8;
  margin-top: 27px;
}
.mana-page .mana-2 .bottom .ig ul li::after {
  content: '';
  position: absolute;
  top: 0;
  display: none;
  right: 0;
  width: 38px;
  height: 31px;
  background: url(../images/mana-icon.png) no-repeat;
}
.mana-page .mana-2 .bottom .ig ul.slick-dots {
  position: absolute;
  z-index: 2;
  right: -20%;
  top: 45%;
}
.mana-page .mana-2 .bottom .ig ul.slick-dots li {
  width: 18px;
  height: 18px;
  background: transparent;
  padding: 0;
  margin-bottom: 4px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  cursor: pointer;
}
.mana-page .mana-2 .bottom .ig ul.slick-dots li::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  width: 8px;
  height: 8px;
  background: var(--color);
}
.mana-page .mana-2 .bottom .ig ul.slick-dots li button {
  display: none;
}
.mana-page .mana-2 .bottom .ig ul.slick-dots li:last-child {
  margin-bottom: 0;
}
.mana-page .mana-2 .bottom .ig ul.slick-dots li.slick-active {
  background: rgba(255, 255, 255, 0.77);
}
.mana-page .mana-3 {
  padding-top: var(-px70);
}
.mana-page .mana-3 ul li {
  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-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 100px;
}
.mana-page .mana-3 ul li .img {
  width: 46.2%
}
.mana-page .mana-3 ul li .text {
  width: 53.8%;
  padding-left: 41px;
}
.mana-page .mana-3 ul li .text .title::before {
  display: none;
}
.mana-page .mana-3 ul li .text .title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background-color: #c2c0c3;
  margin-top: 9px;
}
.mana-page .mana-3 ul li .text .con {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(40, 39, 39, 0.87);
  margin-top: 20px;
}
.mana-page .mana-3 ul li .text dl {
  margin-top: 47px;
}
.mana-page .mana-3 ul li .text dl dd {
     font-size: 17px; 
    /* font-weight: 500; */
    line-height: 1.6;
    padding-left: 65px;
    position: relative;
    margin-bottom: 11px;
}
.mana-page .mana-3 ul li .text dl dd::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 32px;
  height: 26px;
  background: url(../images/mana-check.png) no-repeat;
}
.mana-page .mana-3 ul li .text dl dd:last-child {
  margin-bottom: 0;
}
.mana-page .mana-3 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;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.mana-page .mana-3 ul li:nth-child(even) .text {
  padding: 0 60px 0 0;
}
.mana-page .mana-3 ul li:nth-child(even) .img {
  padding: 0 0 79px 0;
}
.mana-page .mana-3 ul li:last-child {
  margin-bottom: 0;
}
.mana-page .mana-4 {
  padding: 0 0 5.886%;
}
.mana-page .mana-4 .header {
  background: var(--color);
  padding: 30px 0 28px;
}
.mana-page .mana-4 .header .title {
  color: #ffffff;
}
.mana-page .mana-4 .header .title::before {
  background: #ffffff;
  top: 38px;
}
.mana-page .mana-4 .content {
  margin-top: 80px;
}
.mana-page .mana-4 .content ul {
  margin: 0 -36px -60px 0;
}
.mana-page .mana-4 .content ul li {
  padding: 0 36px 60px 0;
}
.mana-page .mana-4 .content ul li .img-box img {
  width: 100%;
}
.mana-page .no_bg_src .cont{
  font-size: 17px;
    line-height: 1.7;
    color: rgba(40, 39, 39, 0.87);
    margin-top: 40px;
}
@media screen and (max-width: 1700px) {
  .mana-page .mana-1 .left .con {
    font-size: 16px;
    margin-top: 15px;
  }
}
@media screen and (max-width: 1450px) {
  .mana-page .mana-2 .top .left {
    padding-right: 2%;
  }
  .mana-page .mana-2 .bottom .ig {
    margin: 26px auto 0;
  }
  .mana-page .mana-2 .bottom .ig ul.slick-dots {
    right: -11%;
  }
  .mana-page .mana-3 ul li:nth-child(even) .text {
    padding: 0 50px 0 0;
  }
  .mana-page .mana-3 ul li .text dl dd {
    font-size: 17px;
  }
  .mana-page .mana-2 .top .right {
    font-size: 16px;
    line-height: 1.8;
    margin-top: 120px;
  }
  .mana-page .mana-3 ul li .text .con {
    font-size: 16px;
  }
}
@media screen and (max-width: 1250px) {
  .mana-page .mana-1 .left {
    padding-right: 4%;
  }

  .mana-page .mana-3 ul li .text .title {
  
    line-height: 1.4;
  }
  .mana-page .mana-3 ul li:nth-child(even) .text {
    padding: 0 30px 0 0;
  }
  .mana-page .mana-3 ul li .text dl dd {
    font-size: 20px;
    padding-left: 45px;
  }
  .mana-page .mana-3 ul li .text dl dd::before {
    top: 0;
  }
  .mana-page .mana-2 .top{
    align-items: flex-end;
  }
  .mana-page .mana-2 .top .right {
    margin-top: 30px;
    max-height: 260px;
    overflow-y: auto;
    padding-right: 15px;
  }
  .mana-page .mana-1 .left .con{
    max-height: 220px;
    overflow-y: auto;
    padding-right: 15px;
  }
  .mana-page .mana-3 ul li .text .con{
    max-height: 220px;
    overflow-y: auto;
    padding-right: 15px;
  }
  .mana-page .mana-2 .top .right p:first-child {
    margin-top: 0;
  }
}
.mana-page .slice-picture{
  position: relative;
  user-select: none;
  padding-bottom: 80px;

}
  .mana-page .slice-picture__box1{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  clip-path: inset(0% 100% 0% 0%);
  
}
  .mana-page .slice-picture__dragger{
  position: absolute;
  height: 100%;
  width: 1px;
  background: #fff;
  cursor: col-resize;
  top: 0;
  left: 0;
}
  .mana-page .slice-picture__handle{
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  box-shadow: 0 0 10px rgba(0,0,0,0.2) ;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: col-resize;
}
@media screen and (max-width: 1100px) {
  .mana-page .mana-1 .left {
    padding-right: 2%;
  }
  .mana-page .mana-1 .left .con {
    margin-top: 10px;
  }
}
@media screen and (max-width: 1000px) {
  .mana-page .mana-1 .left {
    width: 100%;
    padding-right: 0;
  }
  .mana-page .mana-1 .right {
    width: 100%;
    padding: 20px 0 0 0;
  }
  .mana-page .mana-2 .top .left {
    width: 100%;
    padding-right: 0;
  }
  .mana-page .mana-2 .top .right {
    width: 100%;
    padding: 20px 0 0 0;
  }
  .mana-page .mana-2 .bottom {
    margin-top: 40px;
  }
  .mana-page .mana-2 .bottom .ig {
    padding: 20px 0 40px;
  }
  .mana-page .mana-2 .bottom .ig ul li .text {
    padding-left: 20px;
  }
  .mana-page .mana-2 .bottom .ig ul.slick-dots {
    right: -5%;
  }
  .mana-page .mana-3 ul li {
    margin-bottom: 30px;
  }
  .mana-page .mana-3 ul li .img {
    width: 100%;
  }
  .mana-page .mana-3 ul li .text {
    width: 100%;
    padding: 20px 0 0 0;
  }
  .mana-page .mana-3 ul li .text .con,
  .mana-page .mana-3 ul li .text dl {
    margin-top: 20px;
  }
  .mana-page .mana-3 ul li:nth-child(even) .text {
    padding: 20px 0 0 0;
  }
  .mana-page .mana-3 ul li:nth-child(even) .img {
    padding:  0;
  }
  .mana-page .mana-4 .content {
    margin-top: 40px;
  }
  .mana-page .mana-4 .content ul {
    margin: 0 -15px -25px 0;
  }
  .mana-page .mana-4 .content ul li {
    padding: 0 15px 25px 0;
  }
  .mana-page .mana-2 .top .right {
    max-height: unset;
    overflow-y: unset;
    padding-right: 0;
  }
  .mana-page .mana-1 .left .con{
    max-height: unset;
    overflow-y: unset;
    padding-right: 0;
  }
  .mana-page .mana-3 ul li .text .con{
    max-height: unset;
    overflow-y: unset;
    padding-right: 0;
  }
}
@media screen and (max-width: 700px) {

  .mana-page .mana-2 .top .right {
    padding: 10px 0 0 0;
    margin-top: 0;
  }
  .mana-page .mana-2 .bottom {
    margin-top: 20px;
  }
  .mana-page .mana-2 .bottom .ig ul li .text {
    width: 100%;
    padding: 20px 0 0 0;
  }
  .mana-page .mana-2 .bottom .ig ul li .text p {
    margin-top: 10px;
  }
  .mana-page .title {
    font-size: 24px;
  }
  .mana-page .mana-3 ul li:nth-child(even) .img {
    padding: 0;
  }
  .font-48{
    font-size: 22px;
  }
  .flex-3 > *{
    width: 50%;
  }
  .news-page .marginBox{
    padding: 30px 0;
  }
}
@media screen and (max-width: 500px) {
  .flex-3 > *{
    width: 100%;
  }
  .mana-page .mana-1 .left .con {
    font-size: 14px;
    line-height: 2;
  }
  .mana-page .mana-2 .top .right {
    font-size: 14px;
    line-height: 2;
  }
  .mana-page .mana-2 .bottom .ig {
    padding: 0;
  }
  .mana-page .mana-2 .bottom .ig ul li .text p {
    font-size: 14px;
    line-height: 2;
  }
  .mana-page .mana-3 ul li .text .con {
    font-size: 14px;
    line-height: 2;
  }
}
.seoPublic .Auxil-about .box .left {
    width: 50%;
  }
  .seoPublic .Auxil-about .box .right {
    width: 50%;
    padding-left: 5%;
    padding-top: 20px;
    padding-bottom: 20px;
  }
.download-page{
  background: #f2f2f2;
}  
.download-page .bgfull {
    color: black;
}
.download-page .bgfull:before {
    background-color: #dfe5ee !important;
    background-image: url("../images/1c44bfe3-9c4c-4432-8321-51a7a97c3b7d.png");
}
.download-page .bgfull:after {
    background-color: var(--color) !important;
    background-image: unset !important;
    bottom: -1px !important;
}
.download-page .list .h6 {
    margin-top: 1em;
}
.download-page .list .h6 i {
    font-size: 1.5em;
    color: var(--color2);
    line-height: 1;
}
.related_det{
  background: #ebebeb;
  padding-top: 5%;
}
.related_det .list .img-box{
  background: #fff;
  border: 0;
}
.fancybox-can-drag .fancybox-content{
  background: #fff;
}
.related_det .list .more{
  background: transparent;
  border: 1px solid var(--color);
  color: var(--color);
}
.related_det .list .title{
  min-height: 51px;
}
.related_det .list .more::after{
  background: var(--color);
}
.related_det .list .more:hover{
  color: #fff;
}

.nav-bg{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
}
/*.nav-bg::before{
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: url(../images/nav-bg.jpg) no-repeat center top;
  background-size: auto 100%;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  -moz-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}*/
.nav-bg .nav-container{
  position: absolute;
  display: table;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}
.nav-bg .wbg{
  top: 0px;
  left: auto;
  right: 0%;
  width: 0%;
  overflow: hidden;
  position: absolute;
  height: 100%;
  background: #e7e7e7;
  background: url(../images/nav-bg.jpg) no-repeat center top;
  background-size: 100% 100%;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.nav-bg .btn{
  position: absolute;
  top: 62px;
  right: 57px;
  z-index: 1;
  width: 100%;
  height: 100px;
  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;
  -webkit-box-pack: end;
  -webkit-justify-content: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  padding: 0 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.nav-bg .container1{
  max-width: 1640px;
  padding: 0 15px;
  margin: 0 auto;
}
.nav-bg .btn a{
  position: relative;
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  float: left;
  width: 50px;
  height: 50px;
  text-align: center;
  background-color: var(--color);
  border-radius: 50%;
}
.nav-bg .btn a span{
  position: relative;
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 22px;
  height: 22px;
}
.nav-bg .btn a span i{
  position: absolute;
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  height: 100%;
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.nav-bg .btn a span i:first-child{
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.nav-bg .btn a span i::before,
.nav-bg .btn a span i::after{
  content: "";
  position: absolute;
  margin-top: -2px;
  width: 11px;
  height: 4px;
  border-radius: 2px;
  background-color: #fff;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.nav-bg .btn a span i::before{
  left: 0;
  top: 50%;
}
.nav-bg .btn a span i::after{
  right: 0;
  top: 50%;
}
.nav-bg .content{
  position: relative;
  /*display: table-cell;
  vertical-align: middle;*/
  padding: 47px 0;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease 0s;
  -moz-transition: opacity 0.5s ease 0s;
  transition: opacity 0.5s ease 0s;
}
.nav-bg .content .box{
  position: relative;
  max-width: 1027px;
  margin: 0 auto 0 0;
}
.nav-bg .content .box .top{
  border-bottom: 1px dashed rgba(0,0,0,0.2);
}
.nav-bg .content .box .bottom .item{
  border-bottom: 1px dashed rgba(0,0,0,0.2);
}
.nav-bg .content .box .bottom .item:nth-child(2) ul{
  max-width: 486px;
}
.nav-bg .content .box .bottom ul li a{
  display: inline-block;
  font-weight: 500;
  line-height: 1.4;
}
.nav-bg .content .box .bottom ul li:last-child{
  margin-bottom: 0;
}
.nav-bg .content .box .list ul li a{
  display: block;
  overflow: hidden;
  padding: 8.5px 0;
  font-size: 18px;
  line-height: 1.3;
  text-transform: capitalize;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.nav-bg .content .box .list ul li a:hover{
  color: var(--color);
}
.nav-bg.open{
  opacity: 1;
  visibility: visible;
}
.nav-bg.open::before{
  opacity: .5;
}
.nav-bg.open .wbg{
  width: 100%;
}
.nav-bg.open .content{
  opacity: 1;
  -webkit-transition-delay: 0.4s;
  -moz-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.soludet-page .container{
  width: 100%;
  max-width: 1480px;
}
.soludet-page .soludet-1 .left {
    vertical-align: middle;
    max-height: 600px;
    overflow: hidden;
}
/*.soludet-page .soludet-1 .left img{
  max-height: 600px;
}*/
.soludet-page .soludet-1 .right {
    padding-left: 30px;
    vertical-align: middle
}
.soludet-page .soludet-1 .right h1 {
    font-size: 26px;
    font-weight: 600
}
.soludet-page .soludet-1 .right .content {
    font-size: 18px;
    line-height: 1.8;
    margin-top: 30px
}
.soludet-page .soludet-3 table,
.soludet-page .soludet-3 table tr td{
    border: 1px solid #ccc;
}
.soludet-page .soludet-3 table tr:nth-child(even){
    background: transparent;
}
.soludet-page h4 {
    font-size: 28px;
    font-weight: 700
}
.soludet-page .soludet-3 ul {
    margin: -15px
}
.soludet-page .soludet-3 ul li {
    padding: 15px
}
.soludet-page .soludet-3 ul li a {
    display: block
}
.soludet-page .soludet-3 ul li a.img-box{
  background: #fff;
}
.soludet-page .soludet-3 ul li:nth-child(10)~li {
    display: none
}
.soludet-page .soludet-3 .content.active ul li {
    display: inline-block !important
}
.soludet-page .soludet-3 .content.active+.txt-center {
    display: none
}
.soludet-page .soludet-4 ul{
  margin: -15px;
}
.soludet-page .soludet-4 ul li{
  padding: 15px;
}
.soludet-page .soludet-4 ul li img{
  width: 100%;
}
.soludet-page .soludet-5{
  background: #efefef;
}
@media (max-width: 1000px) {
  .seoPublic .Auxil-about .box .left{
    width: 100%;
  }
  .seoPublic .Auxil-about .box .right{
    width: 100%;
    padding-left: 0;
  }
  .dt-01 .dt-box{
    padding: 30px 20px;
  }
  .inner-banner2 .mbx{
    width: 100%;
  }
}

/*********2026.6.3************/
.soludet-3 .content .dets strong span{
  display: block;
  padding: 10px 15px;
  color: #fff;
}