@font-face {
  font-family: 'Rany';
  src: url('../fonts/RanyRegular.eot');
  src: url('../fonts/RanyRegular.eot?#iefix') format('embedded-opentype'), url('../fonts/RanyRegular.woff2') format('woff2'), url('../fonts/RanyRegular.woff') format('woff'), url('../fonts/RanyRegular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Rany';
  src: url('../fonts/RanyBold.eot');
  src: url('../fonts/RanyBold.eot?#iefix') format('embedded-opentype'), url('../fonts/RanyBold.woff2') format('woff2'), url('../fonts/RanyBold.woff') format('woff'), url('../fonts/RanyBold.ttf') format('truetype');
  font-weight: bold;
  font-display: swap;
}
@font-face {
  font-family: 'Rany';
  src: url('../fonts/RanyMedium.eot');
  src: url('../fonts/RanyMedium.eot?#iefix') format('embedded-opentype'), url('../fonts/RanyMedium.woff2') format('woff2'), url('../fonts/RanyMedium.woff') format('woff'), url('../fonts/RanyMedium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
}
body {
  --color: #09a9a7;
  max-width: 1920px;
  margin: 0 auto;
  font-family: 'Rany';
  font-weight: 400;
  color: #0e0e0e;
}
.body-overflow-box {
  position: relative;
  right: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.container {
  padding: 0 15px;
  position: relative;
  width: 1650px;
  margin: 0 auto;
}
.more {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  background-color: #09a9a7;
  border-radius: 15px;
  padding: 19px 31px 16px;
  color: #fff;
  line-height: 1;
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s;
}
.more::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 0%;
  top: 0;
  right: -40px;
  -webkit-transform: skewX(45deg);
  -moz-transform: skewX(45deg);
  -ms-transform: skewX(45deg);
  transform: skewX(45deg);
  background-color: #fff;
  z-index: -1;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s;
}
.more:hover {
  color: #09a9a7;
}
.more:hover::after {
  width: 160%;
}
#header {
  z-index: 20;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  right: 0;
  width: 100%;
  background: #0b0b0b;
}
#header .nav {
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header .nav .menu-box {
  margin: 0 auto 0 0;
}
#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 {
  color: #fff;
  font-weight: bold;
  margin-left: 2.22em;
  -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: uppercase;
}
#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: 100%;
  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 .h-search {
  cursor: pointer;
}
#header .nav .yuy ul {
  top: 100%;
  right: initial;
  left: 0;
  z-index: 100;
}
#header .nav .msg {
  font-weight: bold;
  border-radius: 15px;
  background: var(--color);
  color: #fff;
  position: relative;
  z-index: 1;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s;
  overflow: hidden;
}
#header .nav .msg i {
  font-weight: 400;
}
#header .nav .msg::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 0%;
  top: 0;
  right: -40px;
  -webkit-transform: skewX(45deg);
  -moz-transform: skewX(45deg);
  -ms-transform: skewX(45deg);
  transform: skewX(45deg);
  background-color: #fff;
  z-index: -1;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s;
}
#header .nav .msg:hover {
  color: var(--color);
}
#header .nav .msg:hover::after {
  width: 160%;
}
#header.inner {
  position: fixed;
  background: transparent;
}
#header.inner.active {
  background: #0b0b0b;
}
.text-color {
  color: var(--color);
}
#banner {
  position: relative;
  z-index: 1;
}
#banner ul li {
  position: relative;
}
#banner ul li > img {
  width: 100%;
}
#banner ul li .text {
  position: absolute;
  z-index: 3;
  top: 42%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  width: 100%;
  color: #fff;
}
#banner ul li .text .box {
  max-width: 890px;
}
#banner ul li .text .title {
  line-height: 1.25;
}
#banner ul li .text .title small {
  display: block;
}
#banner ul li .text .title,
#banner ul li .text .con,
#banner ul li .text .btn {
  opacity: 0;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner ul .swiper-slide-active .text .title,
#banner ul .swiper-slide-active .text .con,
#banner ul .swiper-slide-active .text .btn {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
#banner ul .swiper-slide-active .text .title {
  -webkit-transition-delay: .3s;
  -moz-transition-delay: .3s;
  transition-delay: .3s;
}
#banner ul .swiper-slide-active .text .con {
  -webkit-transition-delay: .6s;
  -moz-transition-delay: .6s;
  transition-delay: .6s;
}
#banner ul .swiper-slide-active .text .btn {
  -webkit-transition-delay: .9s;
  -moz-transition-delay: .9s;
  transition-delay: .9s;
}
#banner .bottom {
  bottom: 0;
  right: 0;
  width: 100%;
  padding-bottom: 6.146%;
  z-index: 2;
}
#banner .bottom .ig {
  max-width: 996px;
  height: 68px;
  margin: 0 auto;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.4);
  padding: 7px 0 8px 6px;
}
#banner .bottom .ig .item {
  height: auto;
}
#banner .bottom .ig .item span {
  color: #fff;
  font-weight: 500;
}
#banner .bottom .ig .item i {
  width: 25px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  font-size: 16px;
}
#banner .bottom .ig .item ul {
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  background: #fff;
  color: #000;
  padding: 10px;
  display: none;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
}
#banner .bottom .ig .item ul li {
  font-size: 16px;
  line-height: 1.8;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner .bottom .ig .item ul li:hover {
  color: var(--color);
}
#banner .bottom .ig .item:hover ul {
  display: block;
}
#banner .bottom .ig .item:first-child {
  width: 51.164%;
}
#banner .bottom .ig .item:nth-child(2) {
  width: 24.476%;
}
#banner .bottom .ig .item::after {
  content: '';
  position: absolute;
  top: -9px;
  left: 0;
  width: 1px;
  height: 46px;
  background-color: #ffffff;
  opacity: 0.4;
}
#banner .bottom .ig .search {
  width: 68.36%;
  font-weight: 500;
}
#banner .bottom .ig .search input[type="search"] {
  background: transparent;
  border: 0;
  color: #fff;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
#banner .bottom .ig .search input[type="search"]::-webkit-input-placeholder {
  color: #fff;
}
#banner .bottom .ig .search input[type="search"]:-moz-placeholder {
  color: #fff;
}
#banner .bottom .ig .search input[type="search"]::-moz-placeholder {
  color: #fff;
}
#banner .bottom .ig .search input[type="search"]:-ms-input-placeholder {
  color: #fff;
}
#banner .bottom .ig .search input[type="search"]::placeholder {
  color: #fff;
}
#banner .bottom .ig .search input[type="submit"] {
  background-color: #212121;
  border-radius: 15px;
  border: 0;
  color: #fff;
  padding: 13px 33px 12px;
  letter-spacing: 1px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner .bottom .ig .search input[type="submit"]:hover {
  background: #09a9a7;
}
.title,
.i-title {
  font-weight: bold;
}
.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;
}
.i-title {
  font-size: 50px;
  line-height: 1.4;
}
#index-body .i-category {
  padding: 5.9375% 0 5.625%;
}
#index-body .i-category ul {
  margin: -9px -10.5px;
}
#index-body .i-category ul li {
  padding: 9px 10.5px;
  height: auto;
}
#index-body .i-category ul li .ig {
  height: 100%;
  background-color: #e3e3e3;
  border-radius: 15px;
  overflow: hidden;
  padding-bottom: 142px;
}
#index-body .i-category ul li .ig .text {
  max-width: 300px;
  position: relative;
  z-index: 2;
}
#index-body .i-category ul li .ig .title {
  line-height: 1.2;
}
#index-body .i-category ul li .ig .con {
  color: #212121;
}
#index-body .i-category ul li .ig .link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #212121;
  color: #fff;
  font-size: 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#index-body .i-category ul li .ig .link::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-category ul li .ig .img {
  width: 49.812%;
  left: 22px;
  top: 60px;
  z-index: 1;
}
#index-body .i-category ul li .ig .bg {
  top: 0;
  right: 0;
  width: 66.162%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .i-category ul li .ig:hover .link::after {
  width: 100%;
}
#index-body .i-category ul li .ig:hover .bg {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}
#index-body .i-category ul li:nth-child(4) {
  width: 44.8766%;
}
#index-body .i-category ul li:nth-child(4) .ig {
  padding-bottom: 100px;
}
#index-body .i-category ul li:nth-child(4) .ig .img {
  width: 35%;
}
#index-body .i-category ul li:nth-child(4) .ig .bg {
  width: 73.162%;
}
#index-body .i-category ul li:last-child {
  width: 55.1234%;
}
#index-body .i-category ul li:last-child .ig {
  padding-bottom: 68px;
  overflow: unset;
}
#index-body .i-category ul li:last-child .ig .link {
  position: absolute;
  top: 50%;
  left: -24px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#index-body .i-advantage {
  padding: 59px 0 7.96875%;
  z-index: 1;
}
#index-body .i-advantage .box {
  max-width: 1050px;
  margin: 0 auto 0 0;
}
#index-body .i-advantage .box .con {
  color: #212121;
}
#index-body .i-advantage .box ul {
  margin: 0 0 -42px -53px;
}
#index-body .i-advantage .box ul li {
  padding: 3px 59px 42px 53px;
  position: relative;
}
#index-body .i-advantage .box ul li .title {
  line-height: 1.36;
}
#index-body .i-advantage .box ul li .con {
  line-height: 1.6;
}
#index-body .i-advantage .box ul li::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 37px;
  height: 31px;
  background: url(../images/ad-icon.png) no-repeat center;
  background-size: cover;
}
#index-body .i-advantage .icon {
  z-index: -1;
  top: 0;
  right: 47px;
  width: 30.78125%;
}
#index-body .i-about {
  z-index: 1;
  color: #fff;
  padding-bottom: 7.65625%;
}
#index-body .i-about .top {
  padding-bottom: 42px;
}
#index-body .i-about .top .honor {
  bottom: 0;
  left: 73px;
  width: 394px;
}
#index-body .i-about .middle .left .con {
  color: #d5d5d5;
  line-height: 1.56;
}
#index-body .i-about .middle .left .con h1 {
  display: inline;
  color: var(--color);
}
#index-body .i-about .middle .right ul {
  text-align: right;
  margin: -31px 0;
}
#index-body .i-about .middle .right ul li {
  padding: 31px 0;
}
#index-body .i-about .middle .right ul li .num {
  line-height: 1;
}
#index-body .i-about .middle .right ul li p {
  line-height: 1.2;
}
#index-body .i-about .middle .right ul li:hover .num {
  opacity: 1;
  color: var(--color);
}
#index-body .i-about .list {
  display: inline-block;
  padding: 132px 0 0 133px;
  margin-top: 163px;
  margin-right: 33px;
}
#index-body .i-about .list .ig .left {
  width: 54px;
}
#index-body .i-about .list .ig .left i {
  display: block;
  width: 2px;
  height: 391px;
  background: var(--color);
  margin: 0 auto;
}
#index-body .i-about .list .ig .left 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: 54px;
  height: 54px;
  border-radius: 50%;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1px;
  background: #000;
  border: solid 2px var(--color);
}
#index-body .i-about .list .ig .right {
  margin-right: -11px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
#index-body .i-about .list .ig .right .con {
  line-height: 1.6;
  letter-spacing: 1px;
  color: #d5d5d5;
}
#index-body .i-about .list ul li {
  width: 28%;
  z-index: 1;
}
#index-body .i-about .list ul li:first-child {
  bottom: 32px;
  right: 14px;
}
#index-body .i-about .list ul li:nth-child(2) {
  top: 0;
  right: 39.5%;
}
#index-body .i-about .list ul li:nth-child(2) .ig .left i {
  height: 373px;
}
#index-body .i-about .list ul li:last-child {
  top: 25.5%;
  left: -2%;
}
#index-body .i-about .list ul li:last-child .ig .left i {
  height: 357px;
}
#index-body .i-about .bottom {
  margin-top: -4.6%;
}
#index-body .i-about .bottom .title {
  line-height: 1;
}
#index-body .i-about::after {
  content: '';
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 87.954%;
  background: url(../images/abg.jpg) no-repeat center top;
  background-size: cover;
}
#index-body .i-news {
  background-position: center top;
  background-color: #fff;
  padding: 7.34375% 0 12.6042%;
}
#index-body .i-news .box {
  max-width: 1407px;
}
#index-body .i-news .box ul li .icon {
  top: 0;
  right: 0;
  width: 7.95%;
}
#index-body .i-news .box ul li .con {
  color: #212121;
}
#index-body .i-news .box ul li time {
  color: #4a4a4a;
  line-height: 1.6;
}
#index-body .i-news .box ul li .title {
  line-height: 1.54;
  max-width: 663px;
  margin: 0 auto;
}
#index-body .i-news .box .slickDots li {
  width: 12px;
  height: 12px;
  background-color: #d9d9d9;
  border: 0;
  margin: 0 7px;
}
#index-body .i-news .box .slickDots li.slick-active {
  background: var(--color);
}
#index-body .i-exhb {
  padding: 6.51042% 0 14px;
}
#index-body .i-exhb .header {
  max-width: 939px;
  margin: 0 auto;
}
#index-body .i-exhb .header .con {
  color: #212121;
}
#footer {
  background-color: #0a0a0a;
  color: #fff;
}
#footer .f-content .title {
  font-size: 26px;
  line-height: 1;
  margin-bottom: 55px;
  text-transform: uppercase;
}
#footer .f-content ul li {
  font-size: 18px;
  line-height: 2;
}
#footer .f-content ul li a {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: relative;
}
#footer .f-content ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 1px;
  background: #fff;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#footer .f-content ul li a:hover::after {
  width: 100%;
}
#footer .f-content ul li ul {
  display: none;
}
#footer .f-content .f-contact {
  max-width: 355px;
}
#footer .f-content .f-contact ul li {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
}
#footer .f-content .f-contact ul li img {
  width: 24px;
}
#footer .f-content .f-contact ul li span {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
#footer .f-content .f-nav ul li,
#footer .f-content .f-product ul li {
  margin-bottom: 3px;
}
#footer .f-content .f-nav ul li:last-child,
#footer .f-content .f-product ul li:last-child {
  margin-bottom: 0;
}
#footer .f-content .f-form {
  max-width: 360px;
}
#footer .f-content .f-form p {
  line-height: 1.7;
  color: #d5d5d5;
}
#footer .f-content .f-form form {
  position: relative;
}
#footer .f-content .f-form form input {
  width: 100%;
  height: 49px;
  background-color: #ffffff;
  border-radius: 15px;
  border: 0;
  font-size: 14px;
  padding: 0 23px;
  color: #4c4c4c;
  margin-bottom: 12px;
}
#footer .f-content .f-form form input::-webkit-input-placeholder {
  color: #4c4c4c;
}
#footer .f-content .f-form form input:-moz-placeholder {
  color: #4c4c4c;
}
#footer .f-content .f-form form input::-moz-placeholder {
  color: #4c4c4c;
}
#footer .f-content .f-form form input:-ms-input-placeholder {
  color: #4c4c4c;
}
#footer .f-content .f-form form input::placeholder {
  color: #4c4c4c;
}
#footer .f-content .f-form form input:last-child {
  margin-bottom: 0;
  padding-left: 50px;
}
#footer .f-content .f-form form button {
  position: absolute;
  border: 0;
  left: 23px;
  bottom: 16px;
  font-size: 23px;
  color: var(--color);
  background: transparent;
}
#footer .f-content .f-form form button i {
  display: inline-block;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#footer .f-content .f-form form button:hover i {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#footer .f-content .f-form .share dd {
  margin-left: 10px;
}
#footer .f-content .f-form .share dd:last-child {
  margin-left: 0;
}
#footer .f-content .f-form .share 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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 16px;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#footer .f-content .f-form .share a:hover {
  background: var(--color);
  color: #fff;
}
#footer .f-copy {
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
#footer svg {
  max-height: 26px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  fill: #fff;
}
@media (max-width: 1700px) {
  #index-body .i-advantage .box {
    max-width: 910px;
  }
}
@media (max-width: 1450px) {
  #header .nav .menu-box ul.menu > li {
    margin-left: 1.2em;
  }
  #header .nav .h-search {
    margin-right: 20px;
  }
  .i-title {
    font-size: 42px;
  }
  #index-body .i-advantage .box {
    max-width: 770px;
  }
  #index-body .i-about .list .ig .left i {
    height: 360px;
  }
  #index-body .i-about .list ul li:nth-child(2) .ig .left i {
    height: 316px;
  }
  #index-body .i-about .list ul li:last-child .ig .left i {
    height: 300px;
  }
  .fixed-toolbar {
    left: 10px;
  }
}
@media (max-width: 1250px) {
  #banner .bottom {
    padding-bottom: 3%;
  }
  .i-title {
    font-size: 36px;
  }
  #index-body .i-advantage .icon {
    right: 0;
  }
  #index-body .i-advantage .box {
    max-width: 660px;
  }
  #index-body .i-about .list ul li:first-child {
    bottom: 47px;
  }
  #index-body .i-about .list ul li:nth-child(2) {
    top: -12%;
  }
  #index-body .i-about .list .ig .left i {
    height: 330px;
  }
  #footer .f-content {
    zoom: .8;
  }
}
@media (max-width: 1000px) {
  #banner ul li .text {
    top: 50%;
  }
  #banner .bottom {
    display: none;
  }
  .font-26 {
    font-size: 22px;
  }
  .font-22 {
    font-size: 20px;
  }
  .font-18 {
    font-size: 16px;
  }
  #index-body .i-category ul li {
    width: 50% !important;
  }
  #index-body .i-category ul li .ig {
    padding-bottom: 71px;
  }
  #index-body .i-category ul li .ig .img {
    width: 42% !important;
  }
  #index-body .i-category ul li:last-child {
    width: 100% !important;
  }
  #index-body .i-category ul li:last-child .ig .link {
    left: -15px;
  }
  #index-body .i-advantage {
    padding-top: 0;
  }
  #index-body .i-advantage .icon {
    display: none;
  }
  #index-body .i-about .top .honor {
    width: 300px;
  }
  #index-body .i-about .middle {
    padding: 30px 0 0 0;
  }
  #index-body .i-about .list {
    display: none;
  }
  #index-body .i-about .bottom {
    margin-top: 20px;
  }
  #footer .f-content {
    zoom: 1;
  }
  #footer .f-content .f-contact {
    max-width: 327px;
  }
  #footer .f-content .f-form {
    max-width: 330px;
  }
  #footer .f-content .f-nav,
  #footer .f-content .f-product {
    display: none;
  }
}
@media (max-width: 700px) {
  .more {
    font-size: 16px;
    padding: 12px 16px 10px;
  }
  #banner ul li .text .title {
    font-size: 27px;
  }
  #banner ul li .text .con {
    width: 100%;
    font-size: 14px;
    margin-top: 6px;
  }
  #banner ul li .text .btn {
    margin-top: 12px;
  }
  .i-title {
    font-size: 30px;
  }
  #index-body .i-category ul li .ig {
    padding-bottom: 30px !important;
  }
  #index-body .i-category ul li .ig .con {
    width: 100%;
  }
  #index-body .i-category ul li .ig .img {
    display: none;
  }
  #index-body .i-advantage .box ul {
    margin: 0 0 -21px -20px;
  }
  #index-body .i-advantage .box ul li {
    padding: 3px 43px 42px 20px;
  }
  #index-body .i-about .top .honor {
    left: 30px;
  }
  #index-body .i-about .middle .right {
    margin-top: 20px;
    text-align: right;
  }
  #index-body .i-news ul.slick li {
    padding-right: 40px;
  }
  #footer .f-content .f-contact {
    max-width: 100%;
  }
  #footer .f-content .f-contact ul li {
    font-size: 18px;
  }
  #footer .f-content .f-form {
    max-width: 100%;
  }
  #footer .f-content .f-form .title {
    margin: 20px 0;
  }
}
@media (max-width: 500px) {
  .more {
    font-size: 14px;
  }
  #banner ul li .text .con {
    display: none;
  }
  .flex-2 > * {
    width: 100%;
  }
  .i-title {
    font-size: 25px;
  }
  .font-22 {
    font-size: 18px;
  }
  #index-body .i-category ul li {
    width: 100% !important;
  }
  #index-body .i-category ul li:last-child .ig {
    padding: 20px 15px;
  }
  #index-body .i-about .top .honor {
    left: 15px;
    width: 200px;
  }
  #index-body .i-about .middle .right ul li {
    width: 50%;
  }
  #index-body .i-about .middle .right ul li p {
    font-size: 14px;
  }
  #index-body .i-about .bottom .title {
    font-size: 23px;
  }
  #index-body .i-about::after {
    height: 96%;
  }
  #index-body .i-news .box {
    padding-right: 0;
  }
  #index-body .i-news .box ul.slick li {
    padding-right: 26px;
  }
  #index-body .i-news .box ul li .title {
    font-size: 20px;
  }
  #footer .f-content .f-contact ul li {
    font-size: 16px;
  }
}
.inner-banner {
  height: 467px;
  position: relative;
  color: #fff;
}
.inner-banner .text {
  position: absolute;
  top: 54.6%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  width: 100%;
}
.inner-banner .text .title {
  line-height: 1.4;
}
.inner-banner .text .mbx {
  font-weight: 500;
  letter-spacing: 1px;
}
.about-page .about-1 {
  padding: 6.25% 0;
}
.about-page .about-1 .top {
  padding: 6.9136% 0 0 0;
}
.about-page .about-1 .top .title {
  max-width: 1033px;
  line-height: 1.3;
}
.about-page .about-1 .top .title em {
  color: var(--color);
}
.about-page .about-1 .top .content .data {
  width: 32%;
}
.about-page .about-1 .top .content .data ul {
  margin: -32px 0;
}
.about-page .about-1 .top .content .data ul li {
  padding: 32px 0;
}
.about-page .about-1 .top .content .data .num {
  line-height: 1;
}
.about-page .about-1 .top .content .data .num sup {
  color: #8a8a8a;
}
.about-page .about-1 .top .content .data p {
  max-width: 100px;
  color: #1b1b1b;
  line-height: 1.2;
}
.about-page .about-1 .top .content .con {
  width: 60.2%;
  color: #212121;
}
.about-page .about-1 .bottom {
  padding-top: 7.1%;
}
.about-page .about-1 .bottom ul {
  margin: -20px;
}
.about-page .about-1 .bottom ul li {
  padding: 20px;
}
.about-page .about-1 .bottom ul li .ig {
  background-color: #1a1a1a;
  border: solid 1px #282828;
  color: #fff;
}
.about-page .about-1 .bottom ul li .ig .con {
  height: 115px;
  overflow-y: auto;
}
.about-page .about-1 .bottom ul li .ig .db .title {
  line-height: 1;
  border-radius: 15px;
  border: 1px solid var(--color);
}
.about-page .about-1 .bottom ul li .ig .db .num {
  font-weight: 500;
  color: #4e4e4e;
  line-height: 1;
}
.about-page .about-2 {
  padding: 5.4167% 0 5.15625%;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  color: #fff;
}
.about-page .about-2 .left {
  width: 42.255%;
}
.about-page .about-2 .right {
  width: 53.735%;
}
.about-page .about-2 .right .list {
  border-top: 1px solid #888;
}
.about-page .about-2 .right .list ul li .top {
  border-bottom: 1px solid #888;
}
.about-page .about-2 .right .list ul li .bottom {
  border-bottom: 1px solid #888;
}
.about-page .about-2 .right .list ul li i {
  color: var(--color);
  font-size: 22px;
  font-weight: bold;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  cursor: pointer;
}
.about-page .about-2 .right .list ul li i.active {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.about-page .about-3 {
  padding: 6.25% 0;
}
.about-page .about-3 ul li {
  padding-bottom: 7.41%;
}
.about-page .about-3 ul li .img {
  width: 62.038%;
}
.about-page .about-3 ul li .text {
  width: 34.012346%;
}
.about-page .about-3 ul li .text .con {
  color: #212121;
}
.about-page .about-3 ul li:last-child {
  padding-bottom: 0;
}
.about-page .about-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;
}
.about-page .about-4 {
  background-color: #f5f5f5;
  padding: 5.4167% 0 6.25%;
}
.about-page .about-4 .header {
  max-width: 1066px;
  margin: 0 auto;
}
.about-page .about-4 .header .title {
  line-height: 1.2;
}
.about-page .about-4 .header .con {
  color: #212121;
}
.about-page .about-5 {
  padding: 34px 0 34px;
}
.about-page .about-5 .box .left {
  width: 32.96875%;
}
.about-page .about-5 .box .right {
  width: 67.03125%;
}
.about-page .about-5 .box .right .title {
  line-height: 1.3;
  width: 70%;
}
.about-page .about-5 .box .right .more::after {
  background: #000;
}
.about-page .about-5 .box .right .top {
  padding-bottom: 8.86%;
}
.about-page .about-5 .box .right .bottom {
  background-color: #202020;
  color: #fff;
}
.about-page .about-5 .box .right .bottom .text {
  width: 50.194%;
}
.about-page .about-5 .box .right .bottom .img {
  width: 49.806%;
}
.strength-page .strength-1 {
  padding-top: 5.3646%;
}
.strength-page .strength-1 .header {
  max-width: 1226px;
  margin: 0 auto;
}
.strength-page .strength-1 .header .i-title {
  width: 80%;
  margin: 0 auto;
}
.strength-page .strength-1 .header .con {
  color: #212121;
}
.strength-page .strength-1 ul {
  margin: -21px;
}
.strength-page .strength-1 ul li {
  padding: 21px;
}
.strength-page .strength-1 ul li .img {
  color: #fff;
}
.strength-page .strength-1 ul li .img img {
  width: 100%;
}
.strength-page .strength-1 ul li .img .title {
  z-index: 1;
}
.strength-page .strength-1 ul li .img::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.strength-page .strength-2 {
  padding-top: 6.25%;
}
.strength-page .strength-2 ul .slick-slide > div {
  height: 100%;
}
.strength-page .strength-2 ul li {
  height: 100%;
}
.strength-page .strength-2 ul li .ig {
  height: 100%;
  background-color: #e3e3e3;
}
.strength-page .strength-2 ul li .ig .title {
  line-height: 1.36;
}
.strength-page .strength-2 ul li .ig .con {
  line-height: 1.6;
  color: #212121;
}
.strength-page .strength-3 {
  padding: 5.625% 0 5.9896% 0;
}
.strength-page .strength-3 .title {
  max-width: 1088px;
  margin: 0 auto;
  line-height: 1.4;
}
.strength-page .strength-3 .title em {
  display: inline-block;
}
.strength-page .strength-3 .title em::after {
  content: '';
  width: 100%;
  height: 2px;
  background: var(--color);
  display: block;
  margin-top: -7px;
}
.strength-page .strength-3 .more::after {
  background: #000;
}
.product-page .product-1 {
  padding-top: 6.97531%;
  position: relative;
  z-index: 1;
}
.product-page .product-1 .con {
  color: #212121;
  max-height: 324px;
  overflow-y: auto;
}
.product-page .product-1 .bottom .ig {
  max-width: 996px;
  height: 68px;
  margin: 0 auto;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.4);
  padding: 7px 0 8px 6px;
}
.product-page .product-1 .bottom .ig .item {
  height: auto;
  border: 1px solid #212121;
  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;
}
.product-page .product-1 .bottom .ig .item span {
  color: #212121;
  font-weight: 500;
}
.product-page .product-1 .bottom .ig .item i {
  width: 25px;
  height: 24px;
  border-radius: 50%;
  background: #212121;
  text-align: center;
  color: #fff;
  font-size: 16px;
}
.product-page .product-1 .bottom .ig .item ul {
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  background: #fff;
  color: #000;
  padding: 10px;
  display: none;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
}
.product-page .product-1 .bottom .ig .item ul li {
  font-size: 16px;
  line-height: 1.8;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.product-page .product-1 .bottom .ig .item ul li:hover {
  color: var(--color);
}
.product-page .product-1 .bottom .ig .item:hover ul {
  display: block;
}
.product-page .product-1 .bottom .ig .item:first-child {
  width: 51.164%;
}
.product-page .product-1 .bottom .ig .item:nth-child(2) {
  width: 24.476%;
}
.product-page .product-1 .bottom .ig .search {
  width: 68.36%;
  font-weight: 500;
  border: 1px solid #212121;
  border-top-left-radius: 15px;
  border-bottom-right-radius: 15px;
}
.product-page .product-1 .bottom .ig .search input[type="search"] {
  background: transparent;
  border: 0;
  color: #212121;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.product-page .product-1 .bottom .ig .search input[type="search"]::-webkit-input-placeholder {
  color: #212121;
}
.product-page .product-1 .bottom .ig .search input[type="search"]:-moz-placeholder {
  color: #212121;
}
.product-page .product-1 .bottom .ig .search input[type="search"]::-moz-placeholder {
  color: #212121;
}
.product-page .product-1 .bottom .ig .search input[type="search"]:-ms-input-placeholder {
  color: #212121;
}
.product-page .product-1 .bottom .ig .search input[type="search"]::placeholder {
  color: #212121;
}
.product-page .product-1 .bottom .ig .search input[type="submit"] {
  background-color: #212121;
  border-radius: 10px;
  border: 0;
  color: #fff;
  padding: 10px 33px 12px;
  letter-spacing: 1px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.product-page .product-1 .bottom .ig .search input[type="submit"]:hover {
  background: #09a9a7;
}
.product-page .product-1::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  right: 30.5%;
  width: 197px;
  height: 120px;
  /*background-color: #fcd20b;*/
}
.product-page .product-2 {
  padding-bottom: 7.3457%;
  border-bottom: 2px solid #bfbfbf;
}
.product-page .product-2 ul.list {
  margin: -12.5px -7.5px;
}
.product-page .product-2 ul.list li {
  padding: 12.5px 7.5px;
}
.product-page .product-2 ul.list li .img-box {
  border: solid 1px #bfbfbf;
}
.product-page .product-2 ul.list li .img-box::after {
  content: '';
  position: absolute;
  bottom: -3px;
  right: 0;
  width: 0;
  height: 9px;
  background: var(--color);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.product-page .product-2 ul.list li .tit {
  font-weight: 500;
}
.product-page .product-2 ul.list li:hover .img-box {
  border-color: #fff;
  -webkit-box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.19);
  box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.19);
}
.product-page .product-2 ul.list li:hover .img-box::after {
  width: 100%;
}
.product-page .product-2 ul.list li:hover .tit {
  color: var(--color);
}
.seoBox .seo-about {
  padding-top: 6.25%;
}
.seoBox .seo-about .text {
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  max-width: 1278px;
  margin: -23% auto 0 0;
  position: relative;
  z-index: 1;
}
.seoBox .seo-about .text .con {
  font-weight: 500;
}
.seoBox .seo-about .text ul li .num {
  line-height: 1;
}
.seoBox .seo-about .text ul li p {
  line-height: 1.2;
}
.seoBox .seo-about .text ul li:hover .num {
  color: var(--color);
}
.seoBox .seo-honor {
  padding-top: 5.3646%;
}
.seoBox .seo-news {
  padding: 5.3646% 0 6.25% 0;
}
.seoBox .seo-news ul li time {
  line-height: 1.6;
  font-style: italic;
  color: #4a4a4a;
}
.seoBox .seo-news ul li .title {
  line-height: 1.36;
}
.seoBox .seo-news ul li .con {
  color: #212121;
  line-height: 1.6;
}
.seoBox .seo-news ul li i {
  display: block;
  position: relative;
  height: 3px;
  background-color: #282828;
}
.seoBox .seo-news ul li i::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: var(--color);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.seoBox .seo-news ul li:hover .title {
  color: var(--color);
}
.seoBox .seo-news ul li:hover i::after {
  width: 100%;
}
.seoBox .seo-industry {
  padding: 5.3125% 0 6.25%;
  background-color: #f5f5f5;
}
dialog {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(29, 29, 29, 0.4);
  z-index: -2;
  opacity: 0;
  padding: 0;
  border: none;
}
dialog .box {
  background-color: white;
  width: 1050px;
  max-width: 80%;
  max-height: 80%;
  overflow: auto;
  position: relative;
  z-index: 20;
}
dialog .box .img .big {
  border: solid 1px #bfbfbf;
}
dialog .box .right .desc {
  font-weight: 500;
}
dialog .box .right .title {
  line-height: 1.3;
}
dialog .box .right .text table tbody {
  min-width: 100%;
}
dialog .box .right .text table td {
  border: 0;
}
dialog .box .right .more::after {
  background: #0e0e0e;
}
dialog .box .right .small ul li a {
  display: block;
  border: solid 1px #bfbfbf;
}
dialog .box span.close {
  width: 2em;
  height: 2em;
  background-color: #eee;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  z-index: 2;
}
dialog .box span.close:hover {
  background: var(--color);
  color: #fff;
}
dialog.active {
  z-index: 22;
  opacity: 1;
}
.m-page {
  text-align: center;
  padding-top: 1.6173%;
}
.m-page a,
.m-page span {
  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: 20px;
  font-weight: bold;
  width: 3em;
  height: 3em;
  border-radius: 50%;
  border: solid 1px #bebebe;
  margin: .25em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.m-page a:hover,
.m-page span {
  background: var(--color);
  border-color: var(--color);
  color: #fff;
}
@media (max-width: 1450px) {
  .m-page a,
  .m-page span {
    font-size: 16px;
  }
  .seoBox .seo-about .text {
    max-width: 1000px;
  }
}
@media (max-width: 1250px) {
  .about-page .about-5 .box .right .title {
    width: 91%;
  }
  .about-page .about-5 .box .right .bottom .text {
    padding: 30px 15px;
  }
  .seoBox .seo-about .text {
    max-width: 900px;
  }
}
@media (max-width: 1000px) {
  .about-page .about-1 .top .content .data ul li {
    width: 25%;
  }
  .about-page .about-1 .top .content .con {
    margin-top: 20px;
  }
  .about-page .about-3 ul li .text {
    margin-top: 20px;
  }
  .about-page .about-5 .box .left {
    display: none;
  }
  .strength-page .strength-1 ul li .img .title {
    right: 0;
    width: 100%;
    -webkit-transform: translate(-0.0%,-50%);
    -moz-transform: translate(-0.0%,-50%);
    -ms-transform: translate(-0.0%,-50%);
    transform: translate(-0.0%,-50%);
  }
  .product-page .product-1 .bottom,
  .product-page .product-1::after {
    display: none;
  }
  .flex-4 > * {
    width: 33.3333%;
  }
  .seoBox .seo-about .img {
    padding-left: 0;
  }
  .seoBox .seo-about .text {
    margin: 0;
  }
  .seoBox .seo-industry {
    display: none;
  }
}
@media (max-width: 700px) {
  .font-36 {
    font-size: 26px;
  }
  .about-page .about-1 .top .content .data p {
    font-size: 14px;
  }
  .about-page .about-1 .bottom ul {
    margin: -10px;
  }
  .about-page .about-1 .bottom ul li {
    padding: 10px;
  }
  .about-page .about-1 .bottom ul li .ig {
    padding: 15px;
  }
  .about-page .about-2 .box {
    padding: 0;
  }
  .about-page .about-5 {
    padding: 30px 0;
  }
  .about-page .about-5 .box .right .title {
    width: 100%;
  }
  .about-page .about-5 .box .right .bottom .text,
  .about-page .about-5 .box .right .bottom .img {
    width: 100%;
  }
  .strength-page .strength-1 .header .i-title {
    width: 100%;
  }
  .strength-page .strength-1 ul {
    margin: -10px;
  }
  .strength-page .strength-1 ul li {
    padding: 10px;
  }
  .strength-page .strength-2 ul li .ig .title {
    font-size: 18px;
  }
  .strength-page .strength-2 ul li .ig .con {
    max-height: 270px;
    overflow-y: auto;
  }
  .seoBox .seo-about .text {
    padding: 20px 15px;
  }
  .seoBox .seo-about .text ul li {
    width: 25%;
  }
  .seoBox .seo-about .text ul li p {
    font-size: 14px;
  }
  .flex-4 > * {
    width: 50%;
  }
}
@media (max-width: 500px) {
  .font-36 {
    font-size: 24px;
  }
  .about-page .about-1 .top .content .data ul {
    margin: -12px 0;
  }
  .about-page .about-1 .top .content .data ul li {
    width: 50%;
    padding: 12px 0;
  }
  .about-page .about-1 .bottom ul li .ig .con {
    height: auto;
  }
  .about-page .about-4 .header .title {
    font-size: 18px;
  }
  .about-page .about-5 .box .right .top {
    padding-right: 0;
  }
  .flex-4 > * {
    width: 100%;
  }
  .seoBox .seo-about .text ul li {
    width: 50%;
    padding: 6px 0;
  }
  .seoBox .seo-about .text ul li p {
    width: 60%;
  }
}
.factory-page {
    padding: 6.25% 0;
}
.factory-page .gallery-list ul {
    margin: -15px;
}
.factory-page .gallery-list ul>p {
    font-size: 16px;
    letter-spacing: 0;
    margin: 20px;
}
.factory-page .gallery-list ul li {
    padding: 15px;
}
.factory-page .gallery-list ul li .box {
    -webkit-box-shadow: 0 0 10px rgba(72, 73, 121, 0.3);
    box-shadow: 0 0 10px rgba(72, 73, 121, 0.3);
    padding: 10px;
    border-radius: 5px;
}
.factory-page .gallery-list ul li .box a.img-box {
    margin-bottom: 10px;
    display: block;
}
.factory-page .gallery-list ul li .box h5 {
    display: block;
    color: #111;
    font-size: 18px;
    padding: 5px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    text-align: center;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.factory-page .gallery-list ul li .box:hover h5 {
    background: var(--color);
    color: white;
}
.honor-page .init-1 .container .left {
    width: 230px;
}
.honor-page .init-1 .container .left .listC .list {
    cursor: pointer;
    margin-top: 80px;
    color: #777777;
}
.honor-page .init-1 .container .left .listC .list .num {
    line-height: 1;
}
.honor-page .init-1 .container .left .listC .list .text {
    margin-top: 10px;
}
.honor-page .init-1 .container .left .listC .list .line {
    height: 5px;
    width: 100%;
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: right;
    -moz-transform-origin: right;
    -ms-transform-origin: right;
    transform-origin: right;
    background-color: var(--color);
    margin-top: 10px;
}
.honor-page .init-1 .container .left .listC .list:hover,
.honor-page .init-1 .container .left .listC .list.active {
    color: var(--color);
}
.honor-page .init-1 .container .left .listC .list:hover .line,
.honor-page .init-1 .container .left .listC .list.active .line {
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}
.honor-page .init-1 .container .left .listC .list:first-child {
    margin-top: 0;
}
.honor-page .init-1 .container .right {
    width: -webkit-calc(100% - 230px);
    width: -moz-calc(100% - 230px);
    width: calc(100% - 230px);
    padding-right: 120px;
}
.honor-page .init-1 .container .right .list {
    display: none;
    width: 100%;
}
.honor-page .init-1 .container .right .list .listC {
    width: 100%;
    position: relative;
}
.honor-page .init-1 .container .right .list .imgC {
    padding-left: 70px;
    width: -webkit-calc(-150%);
    width: -moz-calc(-150%);
    width: calc(100% - 250px);
    position: relative;
}
.honor-page .init-1 .container .right .list .imgC ul .slick-track {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 0;
}
.honor-page .init-1 .container .right .list .imgC ul .slick-slide {
    height: auto;
}
.honor-page .init-1 .container .right .list .imgC ul .slick-slide>div {
    height: 100%;
}
.honor-page .init-1 .container .right .list .imgC ul .slick-list {
    height: 100%;
}
.honor-page .init-1 .container .right .list .imgC ul li {
    height: 100%;
    padding: 90px 0;
    width: 30%;
    display: inline-block;
    position: relative;
    z-index: 1;
}
.honor-page .init-1 .container .right .list .imgC ul li .box {
    height: 100%;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 0.4;
    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;
}
.honor-page .init-1 .container .right .list .imgC ul li .box .img img {
    width: 100%;
}
.honor-page .init-1 .container .right .list .imgC ul .slick-current li {
    z-index: 2;
}
.honor-page .init-1 .container .right .list .imgC ul .slick-current li .box {
    -webkit-transform: scale(1.4);
    -moz-transform: scale(1.4);
    -ms-transform: scale(1.4);
    transform: scale(1.4);
    z-index: 2;
    opacity: 1;
}
.honor-page .init-1 .container .right .list .galleryC {
    width: 250px;
    text-align: center;
    padding: 40px 0;
    position: relative;
}
.honor-page .init-1 .container .right .list .galleryC i {
    font-size: 30px;
    position: absolute;
    bottom: 0;
    right: 50%;
    -webkit-transform: translateX(50.0%);
    -moz-transform: translateX(50.0%);
    -ms-transform: translateX(50.0%);
    transform: translateX(50.0%);
    z-index: 2;
    cursor: pointer;
}
.honor-page .init-1 .container .right .list .galleryC i:hover {
    color: var(--color);
}
.honor-page .init-1 .container .right .list .galleryC .prev {
    top: 0;
    bottom: unset;
}
.honor-page .init-1 .container .right .list .galleryC ul li {
    padding: 10px 0;
}
.honor-page .init-1 .container .right .list .galleryC ul li .box {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    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;
    border-radius: 10px;
    height: 100px;
    cursor: pointer;
    font-size: 16px;
}
.honor-page .init-1 .container .right .list .galleryC ul li .box p {
    overflow-y: auto;
    padding-left: 4px;
    max-height: 100px;
}
.honor-page .init-1 .container .right .list .galleryC ul .slick-current li .box {
    background-color: var(--color);
    color: #fff;
}
.honor-page .init-1 .container .right .list.active {
    display: block;
}
.honor-page .init-1 .container .right .list.active .listC .imgC {
    -webkit-animation: fadeInLeftSmall 0.5s linear;
    -moz-animation: fadeInLeftSmall 0.5s linear;
    animation: fadeInLeftSmall 0.5s linear;
}
.honor-page .init-1 .container .right .list.active .listC .galleryC {
    -webkit-animation: fadeInRightSmall 0.5s linear;
    -moz-animation: fadeInRightSmall 0.5s linear;
    animation: fadeInRightSmall 0.5s linear;
}
@media (max-width: 1250px) {
    .honor-page .init-1 .container .left {
        width: 150px;
    }
    .honor-page .init-1 .container .right {
        width: -webkit-calc(100% - 250px);
        width: -moz-calc(100% - 250px);
        width: calc(100% - 250px);
        padding-right: 20px;
    }
    .honor-page .init-1 .container .right .list .imgC {
        padding-left: 20px;
    }
}
@media (max-width: 1000px) {
    .honor-page .init-1 .container .left {
        width: 100%;
    }
    .honor-page .init-1 .container .left .listC {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .honor-page .init-1 .container .left .listC .list {
        margin: 20px 15px 0;
        text-align: center;
    }
    .honor-page .init-1 .container .left .listC .list:first-child {
        margin-top: 20px;
    }
    .honor-page .init-1 .container .right {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    .honor-page .init-1 .container .right .list .imgC {
        width: 100%;
    }
    .honor-page .init-1 .container .right .list .galleryC {
        width: 100%;
    }
    .honor-page .init-1 .container .right .list .galleryC ul li .box {
        height: auto;
        padding: 16px;
    }
    .honor-page .init-1 .container .right .list .imgC {
        padding-left: 0;
    }
}
@media (max-width: 500px) {
    .honor-page .init-1 .container .right .list .imgC ul .slick-current li .box {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
    .honor-page .init-1 .container .right .list .imgC ul li {
        padding: 40px 5px;
        padding-top: 20px;
    }
}
.faq-page .faq-2 .list ul li {
    padding: 30px;
    position: relative;
    z-index: 2;
}
.faq-page .faq-2 .list ul li span.h6 {
    font-size: 24px;
    color: #303030;
    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: 500;
    line-height: 1.6;
}
.faq-page .faq-2 .list ul li span.h6 i.iconfont {
    width: 2em;
    height: 2em;
    border-radius: 100%;
    background-color: #cfcfcf;
    color: white;
    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;
    margin-left: .5em;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.faq-page .faq-2 .list ul li span.h6 i.iconfont-xiajiantou1 {
    margin-left: 0;
    margin-right: auto;
    cursor: pointer;
}
.faq-page .faq-2 .list ul li span.h6.active i.iconfont {
    background-color: var(--color);
}
.faq-page .faq-2 .list ul li span.h6.active i.iconfont-xiajiantou1 {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.faq-page .faq-2 .list ul li .text {
    color: #a8a8a8;
    margin-top: 1.3em;
    padding-top: 1.3em;
    border-top: 1px solid #e0e0e0;
    display: none;
    line-height: 2;
}
.faq-page .faq-2 .list ul li:nth-child(odd) {
    background-color: #f8f8f8;
}
@media (max-width: 1800px) {
    .faq-page .faq-2 .list ul li .text {
        font-size: 16px;
    }
    .faq-page .faq-2 .list ul li span.h6 {
        font-size: 24px;
    }
}
@media (max-width: 1450px) {
    .faq-page .faq-2 .list ul li span.h6 {
        font-size: 20px;
    }
    .faq-page .faq-2 .list ul li {
        padding: 30px;
    }
}
@media (max-width: 1250px) {
    .faq-page .faq-2 .list ul li span.h6 {
        font-size: 18px;
    }
    .faq-page .faq-2 .list ul li .text {
        font-size: 16px;
    }
}
@media (max-width: 700px) {
    .faq-page .faq-2 .list ul li {
        padding: 15px;
    }
    .faq-page .faq-2 .list ul li span.h6 {
        font-size: 16px;
    }
    .faq-page .faq-2 .list ul li .text {
        font-size: 14px;
    }
}
.news-page .news-tab ul {
  margin: -6px;
}
.news-page .news-tab ul li {
  padding: 6px;
}
.news-page .news-tab ul li a {
  display: inline-block;
  background: #fff;
  font-size: 20px;
  line-height: 1.8;
  padding: 9px 23px 8px;
  border-radius: 6px;
}
.news-page .news-tab ul li a:hover,
.news-page .news-tab ul li a.active {
  background: var(--color);
  color: #fff;
}
.news-page .news-list {
  margin-top: 70px;
}
.news-page .news-list ul li .img-box {
  border-radius: 15px 15px 0 0;
}
.news-page .news-list ul li .text {
  background: #f6f7f9;
  border-radius: 10px;
  padding: 30px;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  font-size: 14px;
  line-height: 2;
  height: 100%;
}
.news-page .news-list ul li .text .top span {
  font-size: 14px;
  background: var(--color);
  color: #fff;
  display: inline-block;
  padding: 0 22px;
  line-height: 36px;
  border-radius: 6px;
}
.news-page .news-list ul li .text .top time {
  font-size: 16px;
  line-height: 30px;
  color: #4B4B4B;
}
.news-page .news-list ul li .text .tit {
  font-weight: bold;
  line-height: 1.6;
  margin-top: 20px;
  color: #151515;
}
.news-page .news-list ul li .text .tit:hover {
  color: var(--color);
}
.news-page .news-list ul li .text .more2 {
  display: block;
  background-color: var(--color);
  position: absolute;
  bottom: 30px;
  left: 30px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  opacity: 0;
  overflow: hidden;
}
.news-page .news-list ul li .text .more2 span {
  display: block;
  width: 100%;
  height: 100%;
  background: url(/green-ohm/2026/03/09/arrow.png) center center no-repeat;
  background-size: 100%;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}
.news-page .news-list ul li .text .more2::after {
  content: "";
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
  border-radius: 100%;
  opacity: 0;
  -webkit-transform: translate(-0.0,100);
  -moz-transform: translate(-0.0,100);
  -ms-transform: translate(-0.0,100);
  transform: translate(-0.0,100);
  -webkit-transition: opacity 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), border-radius 0s 0.45s, -webkit-transform 0s 0.45s;
  transition: opacity 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), border-radius 0s 0.45s, -webkit-transform 0s 0.45s;
  -moz-transition: opacity 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), border-radius 0s 0.45s, transform 0s 0.45s, -moz-transform 0s 0.45s;
  transition: opacity 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), border-radius 0s 0.45s, transform 0s 0.45s;
  transition: opacity 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), border-radius 0s 0.45s, transform 0s 0.45s, -webkit-transform 0s 0.45s, -moz-transform 0s 0.45s;
}
.news-page .news-list ul li .text .more2:hover::after {
  opacity: 1;
  border-radius: 0;
  -webkit-transform: translate(0);
  -moz-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
  -webkit-transition: border-radius 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: border-radius 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: border-radius 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), -moz-transform 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: border-radius 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: border-radius 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), -moz-transform 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.news-page .news-list ul li:hover .text {
  background: #f4f9ff;
}
.news-page .news-list ul li:hover .text .more2 {
  opacity: 1;
}
.newdet-page .sideBox .sideLeft {
  width: 27%;
  position: -webkit-sticky;
  position: sticky;
  top: 145px;
  right: 0;
}
.newdet-page .sideBox .sideLeft .back .pageBackbtn {
  display: inline-block;
  background-color: var(--color);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  vertical-align: top;
  position: relative;
}
.newdet-page .sideBox .sideLeft .back .pageBackbtn span {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/fh.png) center center no-repeat;
  background-size: 100%;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}
.newdet-page .sideBox .sideLeft .back .pageBackbtn::after {
  content: "";
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
  border-radius: 100%;
  opacity: 0;
  -webkit-transform: translate(-0.0,100);
  -moz-transform: translate(-0.0,100);
  -ms-transform: translate(-0.0,100);
  transform: translate(-0.0,100);
  -webkit-transition: opacity 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), border-radius 0s 0.45s, -webkit-transform 0s 0.45s;
  transition: opacity 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), border-radius 0s 0.45s, -webkit-transform 0s 0.45s;
  -moz-transition: opacity 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), border-radius 0s 0.45s, transform 0s 0.45s, -moz-transform 0s 0.45s;
  transition: opacity 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), border-radius 0s 0.45s, transform 0s 0.45s;
  transition: opacity 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), border-radius 0s 0.45s, transform 0s 0.45s, -webkit-transform 0s 0.45s, -moz-transform 0s 0.45s;
}
.newdet-page .sideBox .sideLeft .back .pageBackwz {
  display: inline-block;
  font-size: 20px;
  color: #000000;
  line-height: 46px;
  vertical-align: top;
  margin-right: 14px;
}
.newdet-page .sideBox .sideLeft .back:hover .pageBackbtn::after {
  opacity: 1;
  border-radius: 0;
  -webkit-transform: translate(0);
  -moz-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
  -webkit-transition: border-radius 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: border-radius 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: border-radius 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), -moz-transform 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: border-radius 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: border-radius 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), -moz-transform 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.newdet-page .sideBox .sideRight {
  width: 73%;
}
.newdet-page .sideBox .sideRight .category {
  background: var(--color);
  text-align: center;
  display: inline-block;
  font-size: 20px;
  color: #fff;
  line-height: 46px;
  border-radius: 45px;
  padding: 0 23px;
  margin-bottom: 64px;
}
.newdet-page .sideBox .sideRight h1 {
  font-size: 36px;
  line-height: 1.4;
}
.newdet-page .sideBox .sideRight time {
  display: block;
  font-size: 16px;
  line-height: 30px;
  color: #4B4B4B;
  margin: 30px 0 30px;
}
.newdet-page .sideBox .sideRight .content {
  font-size: 20px;
  color: #333;
  line-height: 1.8;
}
.recommended-product {
  background-color: #f9f9f9;
}
.recommended-product ul {
  margin: 60px -24px 0;
}
.recommended-product ul li {
  padding: 0 24px;
  widows: 25%;
}
.recommended-product ul li .img_box {
  width: 100%;
  display: block;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid transparent;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
}
.recommended-product ul li .img_box:hover .icon {
  opacity: 1;
}
.recommended-product ul li .img_box .icon {
  position: absolute;
  right: 50%;
  top: 50%;
  -webkit-transform: translate(50.0%,-50%);
  -moz-transform: translate(50.0%,-50%);
  -ms-transform: translate(50.0%,-50%);
  transform: translate(50.0%,-50%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 0;
}
.recommended-product ul li .img_box .icon a {
  margin: 0 4px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: white;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.recommended-product ul li .img_box .icon a img {
  -webkit-filter: invert(0);
  filter: invert(0);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.recommended-product ul li .img_box .icon a:hover {
  background-color: var(--color);
}
.recommended-product ul li .img_box .icon a:hover img {
  -webkit-filter: invert(1);
  filter: invert(1);
}
.recommended-product ul li .img_box .img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.recommended-product ul li h4 {
  font-size: 24px;
    line-height: 1.6;
  text-align: center;
  padding: 0 25px;
  margin-top: 15px;
}
@media screen and (max-width: 1250px) {
  .news-page .news-list ul li .text {
    padding: 30px 15px;
  }
  .news-page .news-list ul li .text .more2 {
    left: 15px;
  }
}
@media screen and (max-width: 1000px) {
  .news-page .news-list {
    margin-top: 30px;
  }
  .newdet-page .sideBox .sideLeft {
    width: 15%;
  }
  .newdet-page .sideBox .sideLeft .back .pageBackwz {
    display: none;
  }
  .newdet-page .sideBox .sideRight {
    width: 85%;
  }
}
@media screen and (max-width: 700px) {
  .news-page .news-tab {
    display: none;
  }
  .news-page .news-list {
    margin-top: 0;
  }
  .news-page .news-list ul li .text .top time {
    display: block;
    margin-top: 10px;
  }
  .news-page .news-list ul li .text .tit {
    margin-top: 16px;
  }
  .news-page .news-list ul li .text .more2 {
    position: initial;
    margin-top: 20px;
    display: none;
  }
  .newdet-page .sideBox .sideLeft {
    display: none;
  }
  .newdet-page .sideBox .sideRight {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .newdet-page .sideBox .sideRight .category {
    margin-bottom: 30px;
  }
  .newdet-page .sideBox .sideRight h1 {
    font-size: 24px;
    line-height: 44px;
  }
  .newdet-page .sideBox .sideRight time {
    margin: 30px 0;
  }
  .newdet-page .sideBox .sideRight .content {
    font-size: 16px;
    line-height: 30px;
  }
  .recommended-product ul{
    margin-top: 30px;
  }
  .recommended-product ul li h4{
    font-size: 18px;
    line-height: 1.8;
  }
}
.contact-page .contact-1 .header .con {
  font-size: 20px;
  line-height: 1.8;
  max-width: 820px;
  color: #4B4B4B;
}
.contact-page .contact-1 .content {
  margin-top: 64px;
}
.contact-page .contact-1 .content ul {
  margin: -15px;
}
.contact-page .contact-1 .content ul li {
  padding: 15px;
}
.contact-page .contact-1 .content ul li .ig {
  background-color: #f6f7f9;
  position: relative;
  cursor: pointer;
  font-size: 20px;
  line-height: 1.6;
  border-radius: 15px;
  min-height: 250px;
  padding: 0 40px 0 30px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.contact-page .contact-1 .content ul li .ig .info {
  padding: 35px 0 100px;
  font-size: 20px;
  line-height: 1.8;
}
.contact-page .contact-1 .content ul li .ig .tit {
  position: absolute;
  bottom: 30px;
  right: 40px;
  font-size: 38px;
  line-height: 60px;
  height: 60px;
  font-weight: 600;
}
.contact-page .contact-1 .content ul li .ig::after {
  content: '';
  display: block;
  background: url(../images/contact-icon1.png) center center no-repeat var(--color);
  background-size: 100%;
  border-radius: 50%;
  position: absolute;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.contact-page .contact-1 .content ul li .ig:hover {
  background: var(--color);
  color: #fff;
}
.contact-page .contact-1 .content ul li .ig:hover::after {
  background-color: #141414;
}
.contact-page .contact-1 .content ul li:nth-child(2) .ig::after {
  background-image: url(../images/contact-icon4.png);
}
.contact-page .contact-1 .content ul li:nth-child(3) .ig::after {
  background-image: url(../images/contact-icon2.png);
}
.contact-page .contact-1 .content ul li:nth-child(4) .ig::after {
  background-image: url(../images/contact-icon3.png);
}
.contact-page .contact-2 {
  padding-top: 6%;
  background: #f6f7f9;
}
.contact-page .contact-2 .box {
  background: #fff;
  padding: 50px;
  border-radius: 20px;
}
.contact-page .contact-2 .box .form {
  margin-top: 42px;
}
.contact-page .contact-2 .box .form ul {
  margin: -13px -25px;
}
.contact-page .contact-2 .box .form ul li {
  padding: 13px 25px;
}
.contact-page .contact-2 .box .form ul li label {
  display: block;
  line-height: 2;
  font-size: 20px;
  margin-bottom: 6px;
}
.contact-page .contact-2 .box .form ul li input,
.contact-page .contact-2 .box .form ul li textarea {
  width: 100%;
  height: 50px;
  border-radius: 5px;
  background: #f6f6f6;
  font-size: 14px;
  line-height: 2;
  border: 0;
  padding: 4px 3% 4px 3%;
}
.contact-page .contact-2 .box .form ul li textarea {
  padding: 10px 1.5% 10px 1.5%;
  height: 150px;
}
.contact-page .contact-2 .box .form ul li.wid-100 {
  width: 100%;
}
.contact-page .contact-2 .box .form ul li button{
  border: 0;
}
.contact-page .contact-2 .box .form ul li button::after{
  background: #000;
}
.contact-page .contact-3 {
  padding-top: 6%;
}
.contact-page .contact-3 iframe {
  display: block;
  border: 0;
}
@media screen and (max-width: 1700px) {
  .contact-page .contact-1 .content ul li .ig{
    padding: 0 20px;
  }
  .contact-page .contact-1 .content ul li .ig::after{
    left: 20px;
  }
  .contact-page .contact-1 .content ul li .ig .tit{
    right: 20px;
  }
}
@media screen and (max-width: 1450px) {
  .contact-page .contact-1 .content ul li .ig{
    padding: 0 15px;
  }
  .contact-page .contact-1 .content ul li .ig .info{
    font-size: 18px;
  }
  .contact-page .contact-1 .content ul li .ig::after{
    left: 15px;
  }
  .contact-page .contact-1 .content ul li .ig .tit{
    right: 15px;
    font-size: 26px;
  }
}
@media screen and (max-width: 1250px) {
  .contact-page .contact-1 .content ul li{
    width: 50%;
  }
}
@media screen and (max-width: 1000px) {
  .contact-page .contact-1 .header .con {
    max-width: 300px;
  }
  .contact-page .contact-1 .content {
    margin-top: 20px;
  }
  .contact-page .contact-1 .content ul li {
    width: 50%;
  }
  .contact-page .contact-1 .content ul li .ig {
    padding: 0 20px;
  }
  .contact-page .contact-1 .content ul li .ig .tit {
    right: 20px;
  }
  .contact-page .contact-1 .content ul li .ig::after {
    left: 20px;
  }
  .contact-page .contact-2 .box {
    padding: 30px;
  }
  .contact-page .contact-3 iframe {
    height: 400px;
  }
  .contact-page .contact-1 .content ul li .ig .info{
    font-size: 16px;
  }
  .contact-page .contact-1 .content ul li .ig .tit{
    font-size: 30px;
  }
}
@media screen and (max-width: 700px) {
  .contact-page .contact-1 .header .con {
    max-width: 100%;
    margin-top: 20px;
  }
  .contact-page .contact-1 .content ul {
    margin: -7px;
  }
  .contact-page .contact-1 .content ul li {
    padding: 7px;
  }
  .contact-page .contact-1 .content ul li .ig {
    min-height: 300px;
    font-size: 16px;
    line-height: 1.8;
  }
  .contact-page .contact-1 .content ul li .ig .tit {
    font-size: 22px;
    bottom: 16px;
    height: 50px;
    line-height: 50px;
  }
  .contact-page .contact-1 .content ul li .ig::after {
    width: 50px;
    height: 50px;
    bottom: 20px;
  }
  .contact-page .contact-2 .box {
    padding: 20px 15px;
  }
  .contact-page .contact-2 .box .form {
    margin-top: 30px;
  }
  .contact-page .contact-2 .box .form ul {
    margin: -6px -12px;
  }
  .contact-page .contact-2 .box .form ul li {
    padding: 6px 12px;
  }
}
@media screen and (max-width: 500px) {
  .contact-page .contact-1 .content ul li {
    width: 100%;
  }
  .contact-page .contact-1 .content ul li .ig {
    min-height: 160px;
  }
  .contact-page .contact-2 .form ul li textarea {
    height: 130px;
  }
  .contact-page .contact-3 iframe {
    height: 300px;
  }
}
#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;
  cursor: hand;
  -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;
}
.oxy-nav-menu .mb2-search input[type='submit']{
  background-image: url(../images/icon-search-white.png);
}