@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/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-SemiBold.eot');
  src: url('../fonts/Poppins-SemiBold.eot?#iefix') format('embedded-opentype'), url('../fonts/Poppins-SemiBold.woff2') format('woff2'), url('../fonts/Poppins-SemiBold.woff') format('woff'), url('../fonts/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
}
@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-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;
}
body {
  --color: #b40000;
  max-width: 1920px;
  margin: 0 auto;
  font-family: 'Poppins';
  font-weight: 400;
  color: #333;
}
.body-overflow-box {
  position: relative;
  right: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.container {
  padding: 0 15px;
  position: relative;
  width: 1630px;
  margin: 0 auto;
}
.more {
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  padding: 19px 27px 15px;
  border-radius: 32px;
  background: rgba(180, 0, 0, 0.8);
  color: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.more::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: #000;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.more:hover::after {
  width: 100%;
}
#header {
  z-index: 20;
  position: fixed;
  top: 20px;
  right: 0;
  width: 100%;
  -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 {
  font-weight: 600;
  margin-left: 3em;
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  float: right;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: relative;
  text-transform: capitalize;
  color: #fff;
}
#header .nav .menu-box ul.menu > li > a {
  line-height: 1;
}
#header .nav .menu-box ul.menu > li > a i {
  position: absolute;
  left: 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: right;
  position: absolute;
  z-index: 1;
  font-size: 14px;
  background: #fff;
  top: 130%;
  right: 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: #222;
  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-left: 0;
}
#header .nav .search {
  width: 30.4375%;
}
#header .nav .search form {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
#header .nav .search form input[type="search"] {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 51px;
  background: rgba(255, 255, 255, 0.4);
  border: 0;
  border: solid 1px rgba(102, 102, 102, 0.4);
  font-size: 18px;
  font-weight: 300;
  padding: 0 20px;
  color: #fff;
}
#header .nav .search form input[type="search"]::-webkit-input-placeholder {
  color: rgba(51, 51, 51, 0.3);
}
#header .nav .search form input[type="search"]:-moz-placeholder {
  color: rgba(51, 51, 51, 0.3);
}
#header .nav .search form input[type="search"]::-moz-placeholder {
  color: rgba(51, 51, 51, 0.3);
}
#header .nav .search form input[type="search"]:-ms-input-placeholder {
  color: rgba(51, 51, 51, 0.3);
}
#header .nav .search form input[type="search"]::placeholder {
  color: rgba(51, 51, 51, 0.3);
}
#header .nav .search form input[type="submit"] {
  width: 81px;
  height: 51px;
  background-image: url(../images/search.png);
  background-color: #b40000;
  border: 0;
  background-position: center center;
  background-repeat: no-repeat;
}
#header .nav .yuy span {
  position: relative;
  color: #fff;
  line-height: 1;
}
#header .nav .yuy span img {
  width: 30px;
}
#header .nav .yuy ul {
  right: initial;
  left: 0;
  z-index: 100;
}
#header.active,
#header.inner {
  top: 0;
  background: #000;
}
.text-color {
  color: var(--color);
}
#banner {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#banner ul li {
  position: relative;
}
#banner ul li > img {
  width: 100%;
}
#banner ul li .text {
  position: absolute;
  z-index: 1;
  top: 35%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  width: 100%;
  color: #fff;
  text-align: center;
}
#banner ul li .text .title {
  line-height: 1.3;
  font-weight: bold;
}
#banner ul li .text .more {
  font-weight: 600;
  padding: 15px 27px 11px;
}
#banner ul li .text .more:last-child {
  background: rgba(255, 255, 255, 0.8);
  color: #333;
}
#banner ul li .text .more:last-child:hover {
  color: #fff;
}
#banner ul li .text .title,
#banner ul li .text .desc,
#banner ul li .text .btn {
  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 .desc,
#banner ul .swiper-slide-active .text .btn {
  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 .desc {
  -webkit-transition-delay: .8s;
  -moz-transition-delay: .8s;
  transition-delay: .8s;
}
#banner ul .swiper-slide-active .text .btn {
  -webkit-transition-delay: 1.1s;
  -moz-transition-delay: 1.1s;
  transition-delay: 1.1s;
}
.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-18 {
  line-height: 1.6;
}
.font-16 {
  line-height: 1.8;
}
.font-14 {
  line-height: 2;
}
.font-30 {
  line-height: 1.2;
}
.title,
.i-title {
  font-weight: 600;
}
.i-tag {
  font-size: 20px;
  display: block;
  color: var(--color);
}
.i-title {
  font-size: 48px;
  line-height: 1.2;
}
@-webkit-keyframes scroll-left {
  0% {
    -webkit-transform: translateX(-0.0);
    transform: translateX(-0.0);
  }
  100% {
    -webkit-transform: translateX(36.0%);
    transform: translateX(36.0%);
  }
}
@-moz-keyframes scroll-left {
  0% {
    -moz-transform: translateX(-0.0);
    transform: translateX(-0.0);
  }
  100% {
    -moz-transform: translateX(36.0%);
    transform: translateX(36.0%);
  }
}
@keyframes scroll-left {
  0% {
    -webkit-transform: translateX(-0.0);
    -moz-transform: translateX(-0.0);
    transform: translateX(-0.0);
  }
  100% {
    -webkit-transform: translateX(36.0%);
    -moz-transform: translateX(36.0%);
    transform: translateX(36.0%);
  }
}
@-webkit-keyframes scroll-right {
  0% {
    -webkit-transform: translateX(-0.0);
    transform: translateX(-0.0);
  }
  100% {
    -webkit-transform: translateX(-64.0%);
    transform: translateX(-64.0%);
  }
}
@-moz-keyframes scroll-right {
  0% {
    -moz-transform: translateX(-0.0);
    transform: translateX(-0.0);
  }
  100% {
    -moz-transform: translateX(-64.0%);
    transform: translateX(-64.0%);
  }
}
@keyframes scroll-right {
  0% {
    -webkit-transform: translateX(-0.0);
    -moz-transform: translateX(-0.0);
    transform: translateX(-0.0);
  }
  100% {
    -webkit-transform: translateX(-64.0%);
    -moz-transform: translateX(-64.0%);
    transform: translateX(-64.0%);
  }
}
#index-body .i-category {
  padding-top: 4.792%;
  background-color: #f7f7f7;
}
#index-body .i-category ul {
  position: relative;
}
#index-body .i-category ul li .ig {
  color: #fff;
}
#index-body .i-category ul li .ig .top {
  z-index: 1;
  top: 36px;
  right: 0;
  width: 100%;
  padding: 0 16.32653% 0 0;
}
#index-body .i-category ul li .ig .top .more {
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-category ul li .ig .bottom {
  padding: 0 16.32653% 4.08163% 0;
  font-weight: 600;
  bottom: 0;
  right: 0;
  width: 100%;
  z-index: 1;
}
#index-body .i-category ul li .ig .bottom span {
  display: inline-block;
  line-height: 1;
  border-bottom: 1px solid #fff;
  margin-left: 4px;
}
#index-body .i-category ul li .ig .bottom span:last-child {
  margin-left: 0;
}
#index-body .i-category ul li .ig:hover .top {
  color: var(--color);
}
#index-body .i-category ul li .ig:hover .top .more {
  opacity: 1;
}
#index-body .i-category ul li .ig::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
}
#index-body .i-category ul li:nth-child(odd) {
  width: 51.04167%;
}
#index-body .i-category ul li:nth-child(even) {
  width: 48.95833%;
}
#index-body .i-category ul li:nth-child(even) .ig .top {
  padding: 0 4.5745% 0 0;
}
#index-body .i-category ul li:nth-child(even) .ig .bottom {
  padding: 0 4.5745% 3.61702% 0;
}
#index-body .i-category ul li:last-child {
  position: absolute;
  bottom: 0;
  right: 0;
}
#index-body .i-about {
  background-color: #f7f7f7;
  padding: 4.84375% 0 41px;
}
#index-body .i-about .middle {
  padding: 0 6.5% 0 8.0625%;
}
#index-body .i-about .middle .text {
  width: 56%;
}
#index-body .i-about .middle .text h1 {
  display: inline;
}
#index-body .i-about .play {
  width: 4.55em;
  height: 4.55em;
}
#index-body .i-about .play i {
  border-right: 1.05em solid white;
  border-top: .6em solid transparent;
  border-bottom: .6em solid transparent;
}
#index-body .i-advantage {
  color: #fff;
  padding: 10% 0 4.79167%;
  background-position: center 62px;
  background-repeat: no-repeat;
  overflow: hidden;
  background-color: #f7f7f7;
}
#index-body .i-advantage .i-tag {
  color: #fff;
}
#index-body .i-advantage .box {
  position: relative;
  z-index: 1;
}
#index-body .i-advantage .left {
  width: 21%;
}
#index-body .i-advantage .right {
  width: 79%;
}
#index-body .i-advantage .right ul {
  margin: 0 -20px;
}
#index-body .i-advantage .right ul li {
  padding: 35px 20px 24px;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}
#index-body .i-advantage .right ul li i {
  display: block;
  line-height: 62px;
}
#index-body .i-advantage .right ul li p {
  line-height: 1.6;
  max-width: 274px;
  margin-right: auto;
  margin-left: auto;
}
#index-body .i-advantage .right ul li:last-child {
  border-left: 0;
}
#index-body .i-advantage .right ul li:last-child p {
  max-width: 260px;
}
#index-body .i-advantage .icon {
  right: 23px;
  bottom: -42px;
  width: 12.5521%;
}
#index-body .i-custom {
  background-color: #ececec;
  padding: 10.833% 0 9.0625%;
}
#index-body .i-custom .left {
  width: 30.25%;
  text-align: center;
}
#index-body .i-custom .right {
  width: 69.75%;
}
#index-body .i-custom .right .title {
  line-height: 1;
  color: #171717;
}
#index-body .i-custom .right .title a {
  position: absolute;
  top: -82px;
  left: 83px;
  width: 111px;
  height: 111px;
  border-radius: 50%;
  background-color: #c90000;
  -webkit-box-shadow: 0px 7px 10px 0px rgba(35, 35, 35, 0.51);
  box-shadow: 0px 7px 10px 0px rgba(35, 35, 35, 0.51);
  color: #fff;
  font-size: 60px;
}
#index-body .i-custom .right .title a i {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-custom .right .title a:hover i {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#index-body .i-custom .right .item {
  width: 73%;
  color: #171717;
}
#index-body .i-custom .right .item .desc {
  padding-left: 9%;
}
#index-body .i-custom .right .item .tit {
  line-height: 1;
  font-weight: 600;
}
#index-body .i-custom .right .item .tit span {
  opacity: 0.3;
}
#index-body .i-custom .right .item .top ul li {
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-custom .right .item .top ul li span::before {
  content: '';
  width: 63px;
  height: 2px;
  background-color: #171717;
  display: inline-block;
  vertical-align: middle;
  margin-left: 12px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-custom .right .item .top ul li:last-child {
  margin-left: 0;
}
#index-body .i-custom .right .item .top ul li.active {
  color: var(--color);
}
#index-body .i-custom .right .item .top ul li.active span::before {
  background: var(--color);
}
#index-body .i-custom .right .item .bottom ul li {
  text-align: center;
  margin-left: 59px;
  cursor: pointer;
}
#index-body .i-custom .right .item .bottom ul li span {
  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: 53px;
  height: 53px;
  border-radius: 50%;
  border: solid 2px transparent;
  background: transparent;
  text-align: center;
  position: relative;
  z-index: 1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-custom .right .item .bottom ul li span i {
  display: block;
  width: 37px;
  height: 37px;
  border-radius: 50%;
}
#index-body .i-custom .right .item .bottom ul li span::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: -5px;
  right: -5px;
  bottom: -5px;
  left: -5px;
  width: 63px;
  height: 63px;
  border-radius: 50%;
  background: url(../images/cus-circle.png) no-repeat center;
  background-size: cover;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-custom .right .item .bottom ul li p {
  font-size: 20px;
  margin-top: 11px;
}
#index-body .i-custom .right .item .bottom ul li.active span {
  background: #fff;
  border-color: #8e8e8e;
}
#index-body .i-custom .right .item .bottom ul li.active span::after {
  opacity: 1;
}
#index-body .i-custom .right .item .btn a {
  display: inline-block;
  background: #a5a5a5;
  color: #fff;
  font-weight: 600;
  letter-spacing: 3px;
  line-height: 1;
  text-transform: uppercase;
  padding: 1.1875em 6.1em 1.125em 6.1em;
  position: relative;
  z-index: 1;
}
#index-body .i-custom .right .item .btn a i {
  letter-spacing: 0;
  margin-right: 9px;
}
#index-body .i-custom .right .item .btn a::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: var(--color);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-custom .right .item .btn a:hover::after {
  width: 100%;
}
#index-body .i-news {
  padding: 3.90625% 0 4.792%;
}
#index-body .i-news ul li {
  margin-bottom: 36px;
}
#index-body .i-news ul li .box {
  z-index: 1;
}
#index-body .i-news ul li .box .left {
  width: 72%;
}
#index-body .i-news ul li .box .left time {
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  color: #fff;
  background: var(--color);
  padding: 27px 66px 24px 65px;
}
#index-body .i-news ul li .box .left .title {
  opacity: .5;
  line-height: 1.3;
}
#index-body .i-news ul li .box .left .con {
  line-height: 1.5;
  width: 88%;
}
#index-body .i-news ul li .box .right span {
  color: #ff0000;
  line-height: 1;
  font-weight: 600;
}
#index-body .i-news ul li .box .icon {
  font-size: 24px;
  width: 4.875em;
  height: 4.875em;
  border-radius: 50%;
  background: var(--color);
  color: #fff;
  left: -49px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-news ul li .box .icon i {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-news ul li .box .icon:hover i {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#index-body .i-news ul li .box .bg {
  z-index: -1;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  -webkit-clip-path: inset(100% 0 0 0);
  clip-path: inset(100% 0 0 0);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-news ul li .line {
  display: block;
  width: 93.25%;
  height: 1px;
  background: rgba(0, 0, 0, 0.3);
  margin-top: 38px;
  position: relative;
}
#index-body .i-news ul li .line::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 1px;
  background: var(--color);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-news ul li:last-child {
  margin-bottom: 0;
}
#index-body .i-news ul li:last-child .line {
  display: none;
}
#index-body .i-news ul li.active .box .xs {
  display: block;
}
#index-body .i-news ul li.active .box .left .title {
  opacity: 1;
}
#index-body .i-news ul li.active .box .bg {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}
#index-body .i-news ul li.active .box .right {
  display: none;
}
#index-body .i-news ul li.active .box .icon {
  opacity: 1;
}
#index-body .i-news ul li.active .line {
  margin-top: 0;
}
#index-body .i-news ul li.active .line::after {
  width: 100%;
}
#index-body .i-contact {
  padding: 8.5% 0 8.7% 0;
  background-repeat: no-repeat;
  color: #fff;
  z-index: 1;
  background-size: 100% 100%;
}
#index-body .i-contact .more {
  padding: 34px 104px 32px 105px;
  border-radius: 48px;
}
#index-body .i-contact .more::after {
  background: #fff;
}
#index-body .i-contact .more:hover {
  color: var(--color);
}
#index-body .i-contact::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
#footer {
  background-color: #333333;
  color: #fff;
  overflow: hidden;
}
#footer .f-nav {
  padding: 0 30px;
}
#footer .f-nav ul {
  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;
}
#footer .f-nav ul li {
  font-size: 24px;
  margin-left: 45px;
}
#footer .f-nav ul li a {
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#footer .f-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  right: 0;
  width: 0;
  height: 1px;
  background: #d6000f;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#footer .f-nav ul li a:hover {
  color: #d6000f;
}
#footer .f-nav ul li a:hover::after {
  width: 100%;
}
#footer .f-nav ul li ul {
  display: none;
}
#footer .f-nav ul li:last-child {
  margin-left: 0;
}
#footer .f-box .ig {
  padding: 47px 14.676% 59px 5.7143%;
  background: var(--color);
  border-radius: 21px;
  color: #f8f8f8;
}
#footer .f-box .ig .title {
  font-size: 16px;
  margin-bottom: 11px;
}
#footer .f-box .ig .f-info .mail {
  line-height: 1;
  border-bottom: 1px solid #f8f8f8;
}
#footer .f-box .ig .f-add {
  width: 24%;
}
#footer .f-box .ig .f-add p {
  line-height: 1.5;
}
#footer .f-copy {
  font-size: 16px;
}
#footer svg {
  max-height: 1.7em;
  width: auto;
  display: inline-block;
  fill: white;
}
@media (max-width: 1700px) {
  #index-body .i-advantage .right ul li {
    width: 25%;
  }
  #index-body .i-news ul li .box .icon {
    left: -39px;
  }
}
@media (max-width: 1450px) {
  #header .nav .search {
    width: 25%;
  }
  #index-body .i-about .middle .img {
    zoom: .7;
  }
  #index-body .i-custom .right .item {
    width: 90%;
    margin-right: 60px;
  }
  #index-body .i-custom .right .title a {
    left: -20px;
  }
}
@media (max-width: 1250px) {
  .more {
    font-size: 18px;
  }
  #index-body .i-category ul li .ig .top {
    top: 18px;
  }
  #index-body .i-custom .right .title {
    font-size: 60px;
  }
  #index-body .i-custom .right .title a {
    width: 90px;
    height: 90px;
    font-size: 40px;
    top: -70px;
  }
  #index-body .i-custom .right .item {
    width: 100%;
    margin-right: 0;
    padding-right: 30px;
  }
  #index-body .i-news ul li .box .icon {
    left: -30px;
    width: 4em;
    height: 4em;
  }
  #footer .f-box .ig {
    padding: 47px 10.676% 59px 5.7143%;
  }
  .fixed-toolbar ul li {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
  }
}
@media (max-width: 1000px) {
  .i-tag {
    font-size: 18px;
  }
  .i-title {
    font-size: 40px;
  }
  .more {
    font-size: 16px;
    padding: 10px 14px 6px;
  }
  #index-body .i-category ul li .ig .bottom {
    display: none;
  }
  #index-body .i-about .middle {
    padding: 0;
  }
  #index-body .i-about .middle .text {
    width: 100%;
  }
  #index-body .i-about .middle .img {
    display: none;
  }
  .font-24 {
    font-size: 20px;
  }
  #index-body .i-advantage .left {
    width: 30%;
  }
  #index-body .i-advantage .right {
    width: 70%;
  }
  #index-body .i-advantage .right ul li {
    width: 50%;
  }
  #index-body .i-advantage .icon {
    display: none;
  }
  #index-body .i-custom .left {
    width: 100%;
  }
  #index-body .i-custom .right {
    width: 100%;
    margin-top: 20px;
  }
  #index-body .i-custom .right .title a {
    left: -15px;
  }
  #index-body .i-news ul li .box .icon {
    left: -15px;
    width: 3em;
    height: 3em;
  }
  #index-body .i-custom .right .item .bottom ul li {
    margin-left: 36px;
  }
  #index-body .i-custom .right .item .bottom ul li p {
    font-size: 18px;
  }
  #index-body .i-contact .more {
    padding: 17px 52px 16px 53px;
  }
  #footer .f-nav ul li {
    font-size: 18px;
    margin-left: 40px;
  }
  #footer .f-box .ig {
    padding: 30px 15px;
  }
  #footer .f-copy {
    display: block;
  }
  #footer .f-copy p {
    display: inline;
  }
}
@media (max-width: 700px) {
  .i-tag {
    font-size: 16px;
  }
  .i-title {
    font-size: 36px;
  }
  #banner ul li .text {
    top: 50%;
  }
  #index-body .i-category ul li .ig .top .more {
    margin-top: 6px;
  }
  #index-body .i-custom .right .title {
    font-size: 40px;
  }
  #index-body .i-custom .right .title a {
    width: 80px;
    height: 80px;
    top: -61px;
  }
  #index-body .i-custom .right .item .tit {
    font-size: 24px;
  }
  #index-body .i-custom .right .item .top ul {
    font-size: 20px;
  }
  #index-body .i-custom .right .item .top ul li span::before {
    width: 40px;
  }
  #index-body .i-custom .right .item .bottom ul li {
    margin-left: 16px;
  }
  #footer .f-nav {
    display: none;
  }
  #footer .f-box .ig .f-logo {
    width: 100%;
    margin-bottom: 30px;
  }
  #footer .f-box .ig .f-info {
    width: 50%;
  }
  #footer .f-box .ig .f-add {
    width: 50%;
  }
  #footer svg {
    vertical-align: middle;
    margin-top: -2px;
  }
}
@media (max-width: 500px) {
  .more {
    font-size: 14px;
  }
  #banner ul li .text .title {
    font-size: 20px;
  }
  #banner ul li .text .desc {
    display: none;
  }
  #banner ul li .text .btn {
    margin-top: 6px;
  }
  #banner ul li .text .more {
    padding: 8px 14px 6px;
  }
  #banner ul li .text .more:last-child {
    margin-right: 0;
  }
  .i-tag {
    font-size: 14px;
  }
  .i-title {
    font-size: 30px;
  }
  #index-body .i-category ul li {
    width: 100% !important;
  }
  #index-body .i-category ul li:last-child {
    position: static;
  }
  #index-body .i-about .play {
    zoom: .7;
  }
  #index-body .i-advantage {
    background-position: center top;
  }
  #index-body .i-advantage .left {
    width: 100%;
  }
  #index-body .i-advantage .right {
    width: 100%;
    margin-top: 20px;
  }
  #index-body .i-custom .right .title {
    font-size: 29px;
  }
  #index-body .i-custom .right .title a {
    width: 70px;
    height: 70px;
    top: -61px;
    font-size: 30px;
  }
  #index-body .i-custom .right .item {
    padding-right: 0;
  }
  #index-body .i-news ul li .box {
    padding: 0;
  }
  #footer .f-box {
    padding: 0;
  }
  #footer .f-box .ig .f-info {
    width: 100%;
  }
  #footer .f-box .ig .f-add {
    width: 100%;
    margin-top: 10px;
  }
  #footer .f-copy {
    padding: 20px 0 10px;
  }
}
.baseBtn:hover {
  background-color: var(--color);
}
.about-1 .Tit {
  line-height: 1;
}
.about-1 .Tit span {
  font-size: 2.4em;
}
.about-1 .left .tit {
  line-height: 1.16666667;
}
.about-2 {
  padding-top: 40%;
  background-position: center;
  background-repeat: no-repeat;
}
.about-3 .Tit {
  line-height: 1.16666667;
}
.about-4 {
  background-color: #f5f5f5;
}
.about-4 .Tit {
  line-height: 1.16666667;
}
.about-4 .right a span {
  vertical-align: text-bottom;
  border-bottom: 1px solid currentColor;
}
.about-4 .slick-list {
  overflow: visible;
}
.about-5 .Tit {
  line-height: 1.16666667;
}
.about-5 .list li {
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}
.about-5 .list li .text {
  color: #878787;
}
.about-5 .list li a span {
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
  background: -webkit-gradient(linear, left top, right top, from(currentcolor), to(currentcolor)) 0px 100% / 0px 1px no-repeat;
  background: -webkit-linear-gradient(right, currentcolor 0%, currentcolor 100%) 0px 100% / 0px 1px no-repeat;
  background: -moz-linear-gradient(right, currentcolor 0%, currentcolor 100%) 0px 100% / 0px 1px no-repeat;
  background: linear-gradient(to left, currentcolor 0%, currentcolor 100%) 0px 100% / 0px 1px no-repeat;
}
.about-5 .list li a:hover span {
  background-size: 100% 1px;
}
.fw-600{
  font-weight: 600;
}
.fw-500{
  font-weight: 500;
}
.home-4 {
  background-color: #f5f5f5;
}
.home-4 .img {
  width: 140%;
  margin-right: -40%;
}
.home-4 .Tit {
  display: inline;
  line-height: 1.16666667;
}
.home-4 .btns {
  display: inline;
}
.home-4 .btns span {
  vertical-align: text-bottom;
  border-bottom: 1px solid currentColor;
}
.home-4 .text {
  line-height: 32px;
}
.home-4 .list li > div {
  background-color: #FFFFFF;
}
.home-4 .list li > div:last-of-type {
  min-height: 245px;
}
.home-4 .list li > div p {
  line-height: 2;
  min-height: 4.5em;
  color: #878787;
}
.home-5 {
  color: #FFFFFF;
}
.home-5 .form input,
.home-5 .form textarea {
  font-weight: 500;
  width: 100%;
  padding: 1.75em 1.5em;
  border: 0;
  background-color: #fff;
  color: #000;
}
.home-5 .form input::-webkit-input-placeholder, .home-5 .form textarea::-webkit-input-placeholder {
  color: #000;
}
.home-5 .form input:-moz-placeholder, .home-5 .form textarea:-moz-placeholder {
  color: #000;
}
.home-5 .form input::-moz-placeholder, .home-5 .form textarea::-moz-placeholder {
  color: #000;
}
.home-5 .form input:-ms-input-placeholder, .home-5 .form textarea:-ms-input-placeholder {
  color: #000;
}
.home-5 .form input::placeholder,
.home-5 .form textarea::placeholder {
  color: #000;
}
.home-5 .form input[type="submit"] {
  padding: 1.25em;
  background-color: #000000;
  color: #fff;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.home-5 .form input[type="submit"]:hover{
  background: #fff;
  color: #000;
}
.home-5 .form textarea {
  height: 10em;
}
.home-5 .left .box {
  background-color: var(--color);
  margin-bottom: -20%;
}
.home-5 .left .Tit {
  line-height: 1.22222222;
}
.home-5 .right li > div {
  padding-right: 50px;
}
.home-5 .right li i {
  right: 0;
  top: 0;
}
.home-5 .right li .name {
  line-height: 1.28571429;
}
.home-6 {
  background-color: #242424;
  color: #6d6d6d;
}
.honour-1 .Tit {
  line-height: 1.16666667;
}
.honour-2 .list a {
  text-align: center;
}
.honour-2 .list a.active,
.honour-2 .list a:hover {
  background-color: var(--color);
}
.m-page a,
.m-page span {
  display: inline-block;
  width: 3em;
  height: 3em;
  border-radius: 5px;
  background-color: #000000;
  color: #FFFFFF;
  line-height: 3em;
  text-align: center;
  margin: 0 5px;
}
.m-page span {
  background-color: var(--color);
}
.news-1 .Tit {
  line-height: 1;
}
.news-2 .box {
  border-top: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
}
.news-2 .list a {
  display: block;
  background-color: #f5f5f5;
  padding: .75em 1em;
  min-width: 250px;
  text-align: center;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.news-2 .list a.active,
.news-2 .list a:hover {
  background-color: var(--color);
  color: #FFFFFF;
}
.news-2 .search input,
.news-2 .search button {
  border: 0;
  background-color: transparent;
}
.news-3 .list li .name {
  line-height: 1.5;
  min-height: 4.5em;
}
@media (max-width: 1000px) {
  .news-2 .list a {
    min-width: auto;
  }
}
.newdet-1 .Tit {
  line-height: 1.25;
}
.newdet-1 .date {
  color: #878787;
}
.newdet-1 .m-link a {
  padding: 1.25em;
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.newdet-1 .m-link a:hover {
  background-color: var(--color);
}
.newdet-1 .search {
  background-color: #f5f5f5;
  padding: 1.4em;
}
.newdet-1 .search input {
  width: 100%;
  background-color: transparent;
  border: 0;
}
.newdet-1 .search button {
  background-color: transparent;
  border: 0;
}
.newdet-1 .info {
  border: 1px solid #f5f5f5;
}
.newdet-1 .info img{
  -webkit-filter: invert(1);
  filter: invert(1);
}
.newdet-1 .cate .list a {
  background-color: #f5f5f5;
  padding: 1em 1.5em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.newdet-1 .cate .list a:hover {
  background-color: var(--color);
  color: #FFFFFF;
}
@media (max-width: 1000px) {
  .baseBtn {
    min-width: auto;
    padding: 1em 2em;
  }
  .about-1 .Tit span {
    font-size: 2em;
  }
  .home-4 .img {
    width: 100%;
    margin-right: 0;
  }
  .home-5 {
    overflow: hidden;
  }
  .home-5 .left .box {
    margin-bottom: 0;
  }
  .home-5 .form input,
  .home-5 .form textarea {
    padding: 1em;
  }
  .home-5 .form input[type="submit"] {
    padding: 1em;
  }
  .hide-1000 {
    display: none;
  }
}
@media (max-width: 500px) {
  .home-4 .list li > div:last-of-type {
    min-height: auto;
  }
}
.faq-page .faq-1 .list ul li {
  border: 1px solid #dcdcdc;
  padding: 1.33333333em 2.3em;
}
.faq-page .faq-1 .list ul li i {
  cursor: pointer;
  font-size: 1.2em;
  line-height: 1;
}
.faq-page .faq-1 .list ul li .text {
  line-height: 2;
}
.faq-page .faq-1 .list ul li.active {
  background-color: var(--color);
  color: white;
}
.faq-page .faq-1 .list ul li.active i {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.faq-page .faq-2 .form form {
  height: 4.375em;
  border-radius: 2.1875em;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  border-radius: 3em;
  padding: .8em 3em .8em 2em;
  border: 1px solid #dcdcdc;
  background-color: transparent;
}
.faq-page .faq-2 .form form .logo2 {
  max-width: 60px;
}
.faq-page .faq-2 .form form .logo2 a {
  height: 100%;
}
.faq-page .faq-2 .form form .logo2 a img {
  height: inherit;
}
.faq-page .faq-2 .form form .logo2,
.faq-page .faq-2 .form form button {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.faq-page .faq-2 .form form button {
  width: 4.375em;
  height: 4.375em;
  border: none;
  color: var(--color);
  background-color: transparent;
}
.faq-page .faq-2 .form form button i {
  font-size: 2em;
}
.faq-page .faq-2 .form form ul {
  width: 100%;
  padding: 0 .5%;
}
.faq-page .faq-2 .form form ul li {
  width: 100%;
}
.faq-page .faq-2 .form form ul li input {
  width: 100%;
  border: none;
  background-color: transparent;
  padding: .4em 1.2em;
  border-right: 1px solid #d2d2d2;
}
.faq-page .faq-2 .form form ul li:first-child input {
  border-right: none;
}
.faq-page .faq-2 .text a {
  color: var(--color);
  text-decoration: underline;
}
@media screen and (max-width: 700px) {
  .faq-page .faq-2 .form form {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: auto;
  }
  .faq-page .faq-2 .form form ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .faq-page .faq-2 .form form ul li {
    width: 100%;
    margin: .5em 0;
  }
  .faq-page .faq-2 .form form ul li:first-child input {
    border-right: 1px solid #d2d2d2;
  }
  .faq-page .faq-2 .form form button {
    height: 3em;
    width: 3em;
  }
  .faq-page .faq-2 .form form {
    padding: 1em;
    border-radius: .5em;
  }
}
@media screen and (max-width: 500px) {
  .faq-page .faq-1 .list ul li {
    padding: 5%;
  }
}
.contact-1 .Tit {
  line-height: 1.06666667;
}
.contact-1 .Tit img {
  width: 1.3em;
}
.contact-2 .list a {
  background-color: #f5f5f5;
  padding: 1em 2.3em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.contact-2 .list a:hover {
  background-color: var(--color);
  color: #FFFFFF;
}
.contact-3 .form {
  background-color: #f5f5f5;
}
.contact-3 .form ul {
  margin: -0.5em -1em;
}
.contact-3 .form li {
  padding: .5em 1em;
}
.contact-3 .form input,
.contact-3 .form textarea {
  padding: 12px 0;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #dfdfdf;
  background-color: transparent;
}
.contact-3 .form textarea {
  height: 6em;
}
.contact-3 .form input[type="submit"] {
  padding: 1.25em 1em;
  width: auto;
  border: 0;
  background-color: var(--color);
  color: #FFFFFF;
}
.contact-3 .form input[type="submit"]:hover {
  background-color: #000000;
}
@media (max-width: 500px) {
  .contact-3 .form li {
    width: 100%;
  }
}
.product2-page .container .product_left {
    width: 30%;
    position: sticky;
    top: 100px;
}
.product2-page .container .product_left .search_cont {
    position: relative;
}
.product2-page .container .product_left .search_cont .text {
    width: 100%;
    border-radius: 72px;
    border: 1px solid #eee;
    padding: 20px 30px;
    padding-left: 80px;
    color: #000;
    line-height: 1;
}
.product2-page .container .product_left .search_cont .btn {
    width: 62px;
    height: 62px;
    left: 1px;
    position: absolute;
    top: 1px;
    border: none;
    background-color: rgba(0, 0, 0, 0);
}
.product2-page .container .product_left .item {
    margin-top: 30px;
    border: 1px solid #eee;
    padding: 40px;
}
.product2-page .container .product_left .item .tips {
    font-weight: bold;
}
.product2-page .container .product_left .item .nav_cont {
    margin-top: 26px;
}
.product2-page .container .product_left .item .nav_cont li {
    margin-top: 10px;
}
.product2-page .container .product_left .item .nav_cont li:first-child {
    margin-top: 0;
}
.product2-page .container .product_left .item .nav_cont li a {
    display: block;
    padding: 18px 20px 18px 45px;
    background: #f1f1f1;
    font-size: 18px;
    color: #7a7777;
    line-height: 32px;
    /*text-transform: uppercase;*/
    position: relative;
}
.product2-page .container .product_left .item .nav_cont li a i {
    position: absolute;
    left: 20px;
    top: 19px;
    display: inline-block;
}
.product2-page .container .product_left .item .nav_cont li a i.active {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}
.product2-page .container .product_left .item .nav_cont li a:hover,
.product2-page .container .product_left .item .nav_cont li a.active {
    color: #fff;
    background-color: var(--color);
}
.product2-page .container .product_left .item .nav_cont li .nav_cont_item {
    display: none;
    padding-right: 20px;
}
.product2-page .container .product_left .item .nav_cont li .nav_cont_item.active{
    display: block;
}
.product2-page .container .product_left .item .nav_cont li .nav_cont_item li {
    margin-top: 10px;
}
.product2-page .container .product_left .item .nav_cont li .nav_cont_item li a {
    padding: 6px 20px;
}
.product2-page .container .product_left .item .contact_cont {
    margin-top: 30px;
}
.product2-page .container .product_left .item .contact_cont li {
    margin-top: 20px;
    padding: 20px;
    -webkit-box-shadow: 0 0 20px 0 rgba(61, 40, 40, 0.05);
    box-shadow: 0 0 20px 0 rgba(61, 40, 40, 0.05);
}
.product2-page .container .product_left .item .contact_cont li .img {
    width: 34px;
    height: 34px;
}
.product2-page .container .product_left .item .contact_cont li .text {
    width: -webkit-calc(66%);
    width: -moz-calc(66%);
    width: calc(100% - 34px);
    padding-right: 15px;
    margin-top: 4px;
}
.product2-page .container .product_left .item .contact_cont li:first-child {
    margin-top: 0;
}
.product2-page .container .product_right {
    width: 70%;
    padding-right: 60px;
}
.product2-page .container .product_right .top {
  padding: 20px;
  position: relative;
  color: white;
}
.product2-page .container .product_right .top:before {
  content: '';
  width: 120%;
  height: 100%;
  border-radius: 0 10px 10px 0;
  z-index: -1;
  background-image: linear-gradient(to right,black,var(--color));
  position: absolute;
  right: 0;
  top: 0;
}
.product2-page .container .product_right .cat_name {
    font-weight: bold;
}
.product2-page .container .product_right .cat_des {
    margin: 20px 0 20px 0;
    color: rgba(0, 0, 0, 0.7);
}
.product2-page .container .product_right .content ul {
    margin: 0 -10px;
}
.product2-page .container .product_right .content ul > p{
    font-size: 16px;
    letter-spacing: 0;
    margin-top: 20px;
}
.product2-page .container .product_right .content ul li {
    padding: 0 10px;
    margin-top: 40px;
}
.product2-page .container .product_right .content ul li .box{
    border: 1px solid #eee;
}
.product2-page .container .product_right .content ul li .box a {
    display: block;
}
.product2-page .container .product_right .content ul li .box a img {
    width: 100%;
}
.product2-page .container .product_right .content ul li .box .img img {
    width: 100%;
}
.product2-page .container .product_right .content ul li .box .cont {
    position: relative;
    border-top: 1px solid #eee;
    background: #fff;
    padding: 15px 15px 20px;
}
.product2-page .container .product_right .content ul li .box .cont .title {
    font-weight: 600;
    text-transform: capitalize;
    /*text-transform: uppercase;*/
}
.product2-page .container .product_right .content ul li .box .cont .des {
    margin-top: 10px;
}
.product2-page .container .product_right .content ul li .box .cont .line {
    width: 20px;
    height: 1px;
    background: #000;
    margin-top: 4px;
}
.product2-page .container .product_right .content ul li .box:hover .cont {
    background-color: var(--color);
    color: #fff;
}
.product2-page .container .product_right .content ul li .box:hover .cont .line {
    background-color: #fff;
}
#index-body .init-4 .box .img {
  height: 100%;
}
#index-body .init-4 .box .text {
  line-height: 1.6;
}
.prodet-page .prodet-2 .options {
  background-color: #f6f6f6;
}
.prodet-page .prodet-2 .options span {
  padding: 1.8em;
  border-bottom-right-radius: 2em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  cursor: pointer;
}
.prodet-page .prodet-2 .options span:before {
  content: '';
  width: .5em;
  height: .5em;
  border-radius: 100%;
  background-color: var(--color);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.prodet-page .prodet-2 .options span:hover,
.prodet-page .prodet-2 .options span.active {
  background-color: var(--color);
  color: white;
}
.prodet-page .prodet-2 .options span:hover:before,
.prodet-page .prodet-2 .options span.active:before {
  background-color: white;
}
.prodet-page .prodet-2 .form input,
.prodet-page .prodet-2 .form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #a1a1a1;
  padding: .5em 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.prodet-page .prodet-2 .form input:focus,
.prodet-page .prodet-2 .form textarea:focus {
  border-bottom-color: var(--color);
}
.prodet-page .prodet-2 .form textarea {
  height: 120px;
}
.prodet-page .prodet-2 .form button {
  border: none;
}
.prodet-page .prodet-4 {
  background-color: #f6f6f6;
}
.prodet-page .prodet-4 .left {
  direction: ltr;
}
.prodet-page .prodet-4 .img {
  height: 100%;
  width: 125%;
}
.prodet-page .prodet-4 .right {
  padding: 5%;
  padding-left: 0;
}
.prodet-page .prodet-6 {
  background-color: #f8f8f8;
}
.prodet-page .prodet-6 li {
  padding: 14% 7% 0;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 1em;
}
.prodet-page .prodet-6 li a.link {
  width: 2em;
  height: 2em;
  line-height: 1;
  border-radius: 100%;
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -ms-transform: translateY(50%);
  transform: translateY(50%);
  background-color: white;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding-top: 1.5em;
  margin: 0 auto;
  color: var(--color);
}
.prodet-page .prodet-6 li a.link i {
  font-size: 3em;
  line-height: .1;
  display: block;
}
#index-body .init-6 .list .box {
  padding: 7% 10% 10%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#index-body .init-6 .list .box:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background-color: #f5f5f7;
  z-index: -1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .init-6 .list .box hr {
  background-color: #929292;
}
#index-body .init-6 .list .box span.h6 {
  line-height: 1.2;
}
#index-body .init-6 .list .box:hover:before {
  opacity: 0;
}
.service-page {
  background-color: #f6f6f7;
}
.service-page .service-1 .ui.container {
  width: 100%;
  padding: 0;
}
.service-page .service-1 .left {
  width: 58%;
}
.service-page .service-1 .right {
  width: 42%;
}
.service-page .service-2 ul li {
  margin-bottom: 30px;
}
.service-page .service-2 ul li .box {
  padding: 38px 45px;
  background-color: white;
  min-height: 250px;
  height: 100%;
}
.service-page .service-2 ul li .box .icon {
  -webkit-box-flex: 0;
  -webkit-flex: none;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 245px;
  padding-right: 40px;
}
.service-page .service-2 ul li .box .h5 em {
  color: var(--color);
  font-weight: normal;
}
.service-page .service-2 ul li .box .num {
  position: absolute;
  left: 20px;
  bottom: 20px;
  color: #f6f6f7;
  line-height: 0.5;
}
.service-page .service-3 .top ul li {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  position: relative;
  padding: 6px 0;
}
.service-page .service-3 .top ul li .arrow {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.service-page .service-3 .top ul li::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #898989;
}
.service-page .service-3 .top ul li::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: var(--color);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  z-index: 3;
}
.service-page .service-3 .top ul li:hover {
  color: var(--color);
}
.service-page .service-3 .top ul li:hover::after {
  width: 100%;
}

.service-page .service-3 .bottom .left {
  width: 43%;
}
.faq-page.service-page .service-3 .bottom .left{
  position: sticky;
  top: 150px;
}
.service-page .service-3 .bottom .right {
  width: 57%;
}
.service-page .service-3 .bottom ul li .h5 {
  border-bottom: 1px solid black;
  padding-bottom: 6px;
}
.service-page .service-3 .bottom ul li .txt {
  margin-top: 14px;
}
.service-page .service-3 .bottom ul li:last-child {
  margin-bottom: 0;
}
@-webkit-keyframes scroll_Up {
  0% {
    -webkit-transform: translateY(0) rotate3d(1, 0, 0, 15deg);
    transform: translateY(0) rotate3d(1, 0, 0, 15deg);
  }
  100% {
    -webkit-transform: translateY(-100%) rotate3d(1, 0, 0, 15deg);
    transform: translateY(-100%) rotate3d(1, 0, 0, 15deg);
  }
}
@-moz-keyframes scroll_Up {
  0% {
    -moz-transform: translateY(0) rotate3d(1, 0, 0, 15deg);
    transform: translateY(0) rotate3d(1, 0, 0, 15deg);
  }
  100% {
    -moz-transform: translateY(-100%) rotate3d(1, 0, 0, 15deg);
    transform: translateY(-100%) rotate3d(1, 0, 0, 15deg);
  }
}
@keyframes scroll_Up {
  0% {
    -webkit-transform: translateY(0) rotate3d(1, 0, 0, 15deg);
    -moz-transform: translateY(0) rotate3d(1, 0, 0, 15deg);
    transform: translateY(0) rotate3d(1, 0, 0, 15deg);
  }
  100% {
    -webkit-transform: translateY(-100%) rotate3d(1, 0, 0, 15deg);
    -moz-transform: translateY(-100%) rotate3d(1, 0, 0, 15deg);
    transform: translateY(-100%) rotate3d(1, 0, 0, 15deg);
  }
}
.i-form {
  background: url(/cn-laituo/2026/05/13/form-bg.jpg) no-repeat right;
}
.i-form .i-top .right {
  margin-right: 30%;
}
.i-form .wrap {
  width: 66%;
}
.i-form .wrap form li {
  position: relative;
}
.i-form .wrap form input {
  width: 100%;
  border: none;
  border-bottom: 1px solid black;
  height: 45px;
  font-size: 16px;
}
.i-form .wrap form em {
  position: absolute;
  left: 40px;
  color: var(--color);
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 22px;
}
.i-form .wrap form input[type="submit"] {
  border: none;
  width: auto;
  min-width: 220px;
  text-align: center;
  border: 1px solid transparent;
  height: 58px;
}
.i-form .wrap form input[type="submit"]:hover {
  background: #000;
  color: #fff;
}
.i-form .wrap form p {
  color: #161616;
  opacity: 0.35;
}
@media (max-width: 1700px) {
  .service-page .service-2 ul li .box .icon {
    width: 190px;
  }
}
@media (max-width: 1450px) {
  .service-page .service-2 ul li .box .icon {
    width: 120px;
    padding-right: 0;
  }
}
@media (max-width: 1250px) {
  .product2-page .container .product_right {
    width: 100%;
    padding-right: 0;
  }
  .product2-page .container .product_left {
    display: none;
  }
  .i-form {
    background-size: contain;
  }
  .service-page .service-1 {
    padding-top: 50px;
  }
}
@media (max-width: 1000px) {
   #index-body .init-4 .box .img {
    height: 300px;
  }
  .prodet-page .prodet-4 {
    padding: 10% 0;
  }
  .prodet-page .prodet-4 .img {
    height: 50vw;
    width: 100%;
  }
  .i-form {
    background: white;
  }
  .i-form .wrap {
    width: 100%;
  }
  .i-form .i-top .right {
    margin-right: 42%;
  }
  .service-page .service-1 .left {
    width: 100%;
    padding: 0;
  }
  .service-page .service-1 .right {
    width: 100%;
    margin-top: 20px;
  }
  .service-page .service-1 .ui.container {
    padding: 0 20px;
  }
  .service-page .service-2 ul li .box {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .service-page .service-2 ul li .box .icon {
    margin-bottom: 20px;
  }
  .service-page .service-3 .top ul li {
    padding-left: 60px;
  }
}
@media (max-width: 700px) {
   #index-body .init-4 .box .img {
    height: 240px;
  }
  #index-body .init-6 .list .box {
    padding: 5%;
  }
   .i-form .i-top .right {
    margin-right: 0;
  }
   .service-page .service-2 ul li {
    width: 100%;
  }
  .service-page .service-3 .bottom .left {
    width: 100%;
    padding: 0;
  }
  .faq-page.service-page .service-3 .bottom .left{
    position: relative;
    top: 0;
  }
  .service-page .service-3 .bottom .right {
    width: 100%;
    margin-top: 30px;
  }
}
@media (max-width: 500px) {
  .i-form .wrap form li {
    width: 100%;
  }
  .i-form .wrap form em {
    left: 20px;
  }
  .service-page .service-2 ul li .box {
    padding: 20px 15px;
  }
}
#pups_shadow {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.6;
  z-index: 21;
  display: none;
}
#pups_from {
  position: fixed;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50.0%,-50%);
  -moz-transform: translate(50.0%,-50%);
  -ms-transform: translate(50.0%,-50%);
  transform: translate(50.0%,-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;
  right: 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;
  left: 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%;
  right: 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-left: 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;
}
