@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Regular.eot');
  src: url('../fonts/Montserrat-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/Montserrat-Regular.woff2') format('woff2'), url('../fonts/Montserrat-Regular.woff') format('woff'), url('../fonts/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-ExtraBold.eot');
  src: url('../fonts/Montserrat-ExtraBold.eot?#iefix') format('embedded-opentype'), url('../fonts/Montserrat-ExtraBold.woff2') format('woff2'), url('../fonts/Montserrat-ExtraBold.woff') format('woff'), url('../fonts/Montserrat-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Bold.eot');
  src: url('../fonts/Montserrat-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/Montserrat-Bold.woff2') format('woff2'), url('../fonts/Montserrat-Bold.woff') format('woff'), url('../fonts/Montserrat-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}
body {
  font-family: "Montserrat";
  max-width: 1920px;
  --color: #fed721;
  font-weight: normal;
  margin: 0 auto;
}
.container {
  width: 1570px;
}
.body-overflow-box {
  position: relative;
  left: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header {
  z-index: 21;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#header .h-top {
  background-color: var(--color);
  height: 50px;
  line-height: 50px;
  max-width: 1920px;
  margin: auto;
}
#header .nav {
  max-width: 1920px;
  margin: auto;
  background-color: white;
  padding: 22px 0;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#header .nav .ui.menu {
  margin: 0 auto;
  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;
}
#header .nav .ui.menu .logo {
  display: inline-block;
  margin-left: 0;
  margin-right: auto;
  vertical-align: middle;
}
#header .nav .ui.menu .menu-box {
  display: inline-block;
  vertical-align: middle;
  margin-left: auto;
  margin-right: 0;
}
#header .nav .ui.menu .menu-box > div {
  height: 100%;
}
#header .nav .ui.menu .menu-box ul.menu {
  height: 100%;
  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 .ui.menu .menu-box ul.menu > li {
  font-size: 18px;
  margin: 0 36px;
  font-weight: bold;
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  float: left;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover {
  color: var(--color);
}
#header .nav .ui.menu .menu-box ul.menu > li > a {
  height: 100%;
  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;
  position: relative;
}
#header .nav .ui.menu .menu-box ul.menu > li > a::after {
  content: "\e768";
  position: absolute;
  left: -webkit-calc(100% + 2px);
  left: -moz-calc(100% + 2px);
  left: calc(100% + 2px);
  font-family: 'iconfont';
  top: 2px;
  opacity: 0;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu {
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  text-align: left;
  position: absolute;
  font-size: 14px;
  background: #fff;
  top: 100%;
  left: 0px;
  min-width: 180px;
  white-space: nowrap;
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  -ms-transform: rotate3d(1, 0, 0, -90deg);
  -o-transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
  transition: opacity 0.3s, -webkit-transform 0.5s;
  -moz-transition: transform 0.5s, opacity 0.3s, -moz-transform 0.5s;
  transition: transform 0.5s, opacity 0.3s;
  transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s, -moz-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.3s;
  -moz-transition: -moz-transform 0.5s, opacity 0.3s;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid var(--color);
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li {
  display: block;
  float: none;
  padding: 8px 15px;
  color: black;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
  position: relative;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li a {
  display: block;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li ul {
  position: absolute;
  left: 100%;
  top: 0;
  /*width: 100%;*/
  display: none;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li:hover {
  background: #222;
  color: white;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li:hover > ul {
  display: block;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover ul.sub-menu {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  -ms-transform: rotate3d(0, 0, 0, 0);
  -o-transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .ui.menu .menu-box ul.menu > li.menu-item-has-children > a::after {
  opacity: 1;
}
#header .nav .ui.menu .inquiry {
  display: inline-block;
  background-color: var(--color);
  font-size: 18px;
  height: 50px;
  font-weight: bold;
  padding: 0 30px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
  line-height: 50px;
}
#header .nav .ui.menu .inquiry:hover {
  background-color: black;
  color: white;
}
#header .nav .ui.menu .h-search {
  display: inline-block;
  vertical-align: middle;
  margin-left: 40px;
  margin-right: 30px;
  cursor: pointer;
  cursor: hand;
}
#header .nav .ui.menu .yuy span img {
  width: 30px;
  vertical-align: middle;
}
#header .nav .ui.menu .yuy span i {
  font-size: 20px;
  vertical-align: middle;
}
#header .nav .ui.menu .yuy ul {
  left: auto;
  right: 0;
}
#header.active {
  top: -50px;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
#header.active .nav {
  padding: 10px 0;
}
#header .nav .search-box {
  line-height: normal;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: none;
}
#header .nav .search-box form {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 60%;
  margin-left: -30%;
}
#header .nav .search-box form input {
  background: none;
  outline: none;
  border: none;
}
#header .nav .search-box form input[type="text"] {
  width: 100%;
  border-bottom: 1px solid #e1e1e1;
  font-size: 26px;
  color: #000;
  padding: 10px 0;
}
#header .nav .search-box form input[type="submit"] {
  width: 22px;
  height: 22px;
  background: url(../images/tc-zoom.png) no-repeat;
  position: absolute;
  right: 15px;
  top: 20px;
}
#header .nav .search-box form input[type="submit"]:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}
#header .nav .search-box .close {
  width: 30px;
  height: 30px;
  background: url(../images/close.png) no-repeat;
  position: absolute;
  right: 25px;
  top: 15px;
  cursor: pointer;
}
#banner .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50px;
  height: 80px;
  color: transparent;
  border: none;
  z-index: 1;
  outline: none;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  opacity: 0;
}
#banner .slick-arrow:hover {
  background-color: var(--color);
}
#banner:hover .slick-arrow {
  opacity: 1;
}
#banner .slick-prev {
  background: url("../images/banner-btn-l.png") no-repeat center center rgba(0, 0, 0, 0.3);
  left: 15px;
}
#banner .slick-next {
  background: url("../images/banner-btn-r.png") no-repeat center center rgba(0, 0, 0, 0.3);
  right: 15px;
}
#banner ul.slick-dots {
  position: absolute;
  bottom: 5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#banner ul.slick-dots li {
  width: 30px;
  height: 30px;
  display: inline-block;
  margin: 0 10px;
  border-radius: 100%;
  border: 6px solid white;
  background-color: var(--color);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner ul.slick-dots li button {
  display: none;
}
#banner ul.slick-dots li.slick-active {
  border-color: var(--color);
  background-color: white;
}
#banner .slick-slide .content {
  display: none;
}
#banner .slick-active .content {
  display: block;
}
.wpulike.wpulike-default {
  display: none;
}
.prodet-page .wpulike.wpulike-default,
.newdet-page .wpulike.wpulike-default {
  display: inline-block;
}
.post-views-box {
  position: relative;
  margin-left: 20px;
}
.post-views-box .wp_ulike_btn.wp_ulike_put_image:after {
  background-image: url(../images/fw.png) !important;
  -webkit-filter: none;
  filter: none;
}
.wpulike {
  z-index: 10;
}
.wpulike.post-views-box {
  z-index: 5;
}
#banner .nivo-directionNav a {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.3);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  color: transparent;
  overflow: hidden;
  text-indent: -999em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner .nivo-directionNav a {
  opacity: 0;
}
#banner:hover .nivo-directionNav a {
  opacity: 1;
}
#banner .nivo-directionNav a:hover {
  background-color: var(--color);
}
#banner .nivo-directionNav a.nivo-prevNav {
  background-image: url(../images/banner-btn-l.png);
  left: 40px;
}
#banner .nivo-directionNav a.nivo-nextNav {
  background-image: url(../images/banner-btn-r.png);
  right: 40px;
}
#banner .theme-default .nivo-controlNav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: auto !important;
}
#banner .theme-default .nivo-controlNav a {
  width: 25px  !important;
  height: 25px !important;
  background: #fff !important;
  border: 7px solid #7d7d7d !important;
  border-radius: 100% !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  margin: 0 8px !important;
}
#banner .theme-default .nivo-controlNav a.active {
  border-color: var(--color) !important;
}
#spotlight.show {
  display: inline-block;
  background: rgba(0, 0, 0, 0.3) !important;
}
#spotlight .scene img {
  border: 10px solid white !important;
  border-radius: 10px;
}
#spotlight .header {
  background: black !important;
}
.fw-800 {
  font-weight: 800;
}
.more {
  font-size: 20px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  display: inline-block;
  height: 70px;
  line-height: 70px;
  background-color: #b22123;
  color: white;
  padding: 0 70px;
  font-weight: bold;
}
.more:hover {
  background-color: var(--color);
  color: black;
}
#banner {
  margin-top: 157px;
}
#banner li {
  position: relative;
  text-align: center;
  color: white;
}
#banner li video {
  width: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}
#banner li .content {
  position: absolute;
  left: 0;
  width: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#banner li .content .left {
  width: 80%;
  margin: auto;
}
#banner li .content h2 {
  line-height: 1.2;
}
#index-body .i-category ul li .text {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: white;
}
#index-body .i-category ul li .text .title {
  line-height: 1.2;
}
#index-body .i-category ul li .text span {
  position: relative;
  display: inline-block;
  line-height: 1;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#index-body .i-category ul li .text span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.5);
}
#index-body .i-category ul li .text span:hover {
  color: var(--color);
}
#index-body .i-category ul li .text span:hover::after {
  background-color: var(--color);
}
#index-body .i-product {
  overflow: hidden;
}
#index-body .i-product .swiper {
  overflow: visible;
}
#index-body .i-product ul li .img-box .tag {
  position: absolute;
  left: 20px;
  top: 20px;
  font-size: 16px;
  padding: 2px 15px;
  color: white;
}
#index-body .i-product ul li .img-box .tag.hot {
  background-color: #b22123;
}
#index-body .i-product ul li .img-box .tag.new {
  background-color: var(--color);
}
#index-body .i-product ul li .img-box{
  background: #f9f9f9;
}
#index-body .i-product ul li .des {
  line-height: 28px;
}
#index-body .i-product ul li .star {
  color: var(--color);
}
#index-body .i-init3 {
  background-color: var(--color);
  position: relative;
}
#index-body .i-init3 .left {
  width: 55%;
}
#index-body .i-init3 .left .i-title {
  line-height: 1.2;
}
#index-body .i-init3 .left p {
  line-height: 1.4;
}
#index-body .i-init3 .left .more {
  width: 65%;
  text-align: center;
}
#index-body .i-init3 .left .more:hover {
  background-color: #222;
  color: white;
}
#index-body .i-init3 .right {
  position: absolute;
  right: 0;
  top: 37%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 43%;
}
#index-body .i-init3 .right li {
  position: absolute;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: #b22123;
}
#index-body .i-init3 .right li .content {
  background-color: white;
  border-radius: 10px;
  position: absolute;
  right: 100%;
  top: 0;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  display: none;
  width: 350px;
}
#index-body .i-init3 .right li::after {
  content: "+";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 31px;
  color: white;
}
#index-body .i-init3 .right li.active::after {
  content: "-";
}
#index-body .i-init3 .right li:nth-child(1) {
  left: 43%;
  top: 22%;
}
#index-body .i-init3 .right li:nth-child(2) {
  left: 16%;
  top: 78%;
}
#index-body .i-init3 .right li:nth-child(3) {
  left: 81%;
  top: 54%;
}
#index-body .i-init3 .right li:nth-child(4) {
  left: 72%;
  top: 74%;
}
#index-body .i-init3 .right li:hover .content {
  display: block;
}
#index-body .i-about .title {
  line-height: 1.2;
}
#index-body .i-about .title em {
  color: var(--color);
}
#index-body .i-about .left {
  width: 55%;
}
#index-body .i-about .right {
  width: 40%;
}
#index-body .i-about .left video{
  display: block;
  width: 100%;
}
#index-body .i-about .right .des {
  line-height: 28px;
}
#index-body .i-about .box1 .title {
  max-width: 500px;
  margin: auto;
}
#index-body .i-why .i-title em {
  color: var(--color);
}
#index-body .i-why ul li {
  text-align: center;
}
#index-body .i-why ul li .des {
  line-height: 28px;
}
#index-body .i-why ul li:nth-child(2) {
  grid-area: 1 / 3 / 1 / 4;
}
#index-body .i-why ul li:nth-child(3) {
  grid-area: 2 / 2 / 2 / 3;
}
#index-body .i-news {
  background-color: #fffaf4;
}
#index-body .i-news .i-title em {
  color: var(--color);
}
#index-body .i-news ul li {
  text-align: center;
}
#index-body .i-news ul li .title {
  line-height: 28px;
}
#footer {
  background-color: #212121;
  color: white;
}
#footer .one {
  max-width: 460px;
}
#footer .one form {
  position: relative;
}
#footer .one form input {
  width: 100%;
  background-color: white;
  border: none;
  font-size: 16px;
  height: 63px;
  padding: 0 15px;
  color: black;
}
#footer .one form input[type="submit"] {
  position: absolute;
  right: 7px;
  bottom: 6px;
  height: 50px;
  background-color: var(--color);
  color: white;
  width: auto;
  padding: 0 30px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#footer .one form input[type="submit"]:hover {
  background: #222;
}
#footer .one .share a {
  margin-right: 20px;
  position: relative;
}
#footer .one .share a #ewm {
  position: absolute;
  left: 100%;
  top: 0;
  width: 120px;
  height: 120px;
  border: 5px solid white;
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#footer .one .share a:hover #ewm {
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
}
#footer .two {
  max-width: 335px;
}
#footer .two .msg {
  cursor: pointer;
}
#footer .two .msg span {
  position: relative;
}
#footer .two .msg span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  height: 1px;
  background-color: white;
}
#footer .f-copy {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  padding: 15px 0;
}
#footer .f-copy svg {
  width: auto;
  height: 27px;
  fill: white;
  vertical-align: middle;
}
.totop {
  width: 50px;
  height: 50px;
  background-color: var(--color);
  color: white;
  cursor: pointer;
  text-align: center;
  line-height: 50px;
  font-size: 31px;
  border-radius: 50%;
  position: fixed;
  right: 35px;
  bottom: 40px;
  z-index: 5;
}
.totop i {
  display: block;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
@media screen and (max-width: 1450px) {
  #header .nav .ui.menu .menu-box ul.menu > li {
    font-size: 16px;
    margin: 0 20px;
  }
  .font-40 {
    font-size: 26px;
  }
  #footer .one {
    max-width: 350px;
  }
}
@media screen and (max-width: 1250px) {
  #innerMobileBanner{
    margin-top: 60px;
  }
  #banner {
    margin-top: 60px;
  }
  .font-40 {
    font-size: 22px;
  }
  #footer .three,
  #footer .four {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  .font-60 {
    font-size: 28px;
  }
  .more {
    font-size: 15px;
    height: 45px;
    line-height: 45px;
    padding: 0 25px;
    font-weight: normal;
  }
  #index-body .i-why ul li:nth-child(2),
  #index-body .i-why ul li:nth-child(3) {
    grid-area: unset;
  }
  #index-body .i-why ul li:nth-child(3) {
    width: 100%;
  }
  #footer .wrap {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #footer .wrap .one {
    max-width: 100%;
  }
  #footer .wrap .two {
    width: 100%;
    max-width: 100%;
    margin-top: 30px;
  }
}
@media screen and (max-width: 700px) {
  #banner li .content .left {
    width: 100%;
  }
  .font-60 {
    font-size: 22px;
  }
  #index-body .i-init3 .right li .content {
    width: 280px;
    z-index: 3;
  }
}
@media screen and (max-width: 500px) {
  #banner li > img {
    min-height: 270px;
    -o-object-fit: cover;
    object-fit: cover;
  }
  #index-body .i-init3 .left {
    width: 100%;
  }
  #index-body .i-init3 .right {
    width: 100%;
    position: relative;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  #index-body .i-init3 .right li:nth-child(1) .content {
    left: 50%;
    top: 100%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  #index-body .i-init3 .right li:nth-child(2) .content {
    left: 0;
    top: 100%;
  }
  #index-body .i-init3 .right li:nth-child(4) .content {
    left: auto;
    top: 100%;
    right: 0;
  }
}



.inner-banner {
  position: relative;
  color: white;
}
.inner-banner .content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.inner-banner .content h3 {
  font-size: 30px;
  font-family: 'Montserrat-Black';
  text-align: center;
  text-transform: uppercase;
}
.inner-banner .content h3 em {
  color: var(--color);
}
.inner-banner .content p {
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
  margin-top: 5px;
}
.inner-banner .mbx {
  position: absolute;
  bottom: 10%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 14px;
  padding-left:20px;
  line-height: 28px;

}
.inner-banner .mbx a:first-child{
  color: transparent;
  width:11px;
  height: 11px;
  background: url('../images/home.png')no-repeat; 
  position: absolute;
  top:50%;
  transform: translateY(-50%);
  left:0;
}
@media (max-width: 1000px) {
  .inner-banner {
    margin-top: 120px;
  }
  .inner-banner .content h3 {
    font-size: 40px;
  }
}
@media (max-width: 700px){
  .inner-banner > img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    position: absolute;
    top: 0;
    height: 100%;
    left: 0;
  }
  .inner-banner {
    padding: 60px 0;
  }
  .inner-banner .content {
    position: relative;
    -webkit-transform: unset;
    -moz-transform: unset;
    -ms-transform: unset;
    transform: unset;
    z-index: 5;
    left: unset;
    top: unset;
  }
  .inner-banner .mbx {
    -webkit-transform: unset;
    -moz-transform: unset;
    -ms-transform: unset;
    transform: unset;
    z-index: 5;
    left: unset;
    top: unset;
    position: relative;
    text-align: center;
    padding: 0 15px;
    margin-top: 20px;
    width: fit-content;
  }
  .inner-banner .content h3 {
    font-size: 20px;
  }
  .inner-banner .content p {
    display: none;
  }
}

.about-page .about-1 .top .img {
  position: relative;
  border-radius: 10px;
}
.about-page .about-1 .top .img .lazy {
  
  /*border-radius: 15px;*/
}
.about-page .about-1 .top .img .play {
  position: absolute;
  right: 36px;
  bottom: 115px;
  display: inline-block;
  padding: 50px 50px 50px 60px;
  background: var(--color);
  border-radius: 50%;
  z-index: 1;
}
.about-page .about-1 .top .img .play::before,
.about-page .about-1 .top .img .play::after {
  content: '';
  position: absolute;
  z-index: -1;
  left: -15px;
  top: -15px;
  right: -15px;
  bottom: -15px;
  background: rgba(0, 100, 40, 0.5);
  border-radius: 50%;
  -webkit-animation: ks 2s linear infinite;
  -moz-animation: ks 2s linear infinite;
  animation: ks 2s linear infinite;
}
.about-page .about-1 .top .img .play::before {
  -webkit-animation: ks 2s linear infinite;
  -moz-animation: ks 2s linear infinite;
  animation: ks 2s linear infinite;
}
.about-page .about-1 .top .text {
  max-width: 1400px;
  width: 100%;
  margin: -150px auto 0;
  background: #fff;
  -webkit-box-shadow: 0px 9px 38px 0px rgba(0, 0, 0, 0.07);
  box-shadow: 0px 9px 38px 0px rgba(0, 0, 0, 0.07);
  position: relative;
  z-index: 1;
  padding: 50px;
  /*border-radius: 10px;*/
}
.about-page .about-1 .top .text .title{
  line-height: 1.2;
  /*text-transform:uppercase;*/
}
.about-page .about-1 .top .text .con {
  margin-top: 26px;
  font-size: 18px;
    line-height: 1.8;
    color: #7b7b7b;
}
.about-page .about-1#index-body .top .text ul.data{
  margin: 0 -20px;
}
.about-page .about-1#index-body .top .text ul.data li{
  padding: 0 80px;
}
.about-page .about-1 .bottom {
  max-width: 1215px;
  width: 100%;
  margin: 111px auto 0;
}
.about-page .about-1 .bottom ul {
  margin-right: -70px;
}
.about-page .about-1 .bottom ul li {
  padding-right: 70px;
}
.about-page .about-1 .bottom ul li .data {
  font-weight: bold;
  padding-bottom: 26px;
  border-bottom: 1px solid #58596c;
}
.about-page .about-1 .bottom ul li .data em {
  font-size: 68px;
  line-height: 1.2;
  color: #000;
  display: inline-block;
  vertical-align: bottom;
}
.about-page .about-1 .bottom ul li .data sub {
  font-size: 22px;
  color: var(--color);
  display: inline-block;
  vertical-align: bottom;
  line-height: 1;
  text-transform: capitalize;
  margin: 0 0 9px 7px;
}
.about-page .about-1 .bottom ul li .text .tit {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
  line-height: 2;
  margin-top: 23px;
}
.about-page .about-1 .bottom ul li .text p {
font-size: 18px;
    line-height: 1.8;
    color: #7b7b7b;
}
.about-page .about-2 {
  margin-top: 137px;
}
.about-page .about-2 .box {
  padding: 12px 0 122px 0;
  position: relative;
  z-index: 1;
}
.about-page .about-2 .box .img {
  width: 50.06%;
  vertical-align: middle;
  border-radius: 10px;
}
.about-page .about-2 .box .img img {
  width: 100%;
  /*border-top-right-radius: 10px;
   border-bottom-right-radius: 10px;*/
}
.about-page .about-2 .box .text {
  width: 49.94%;
  max-width: 670px;
  padding-left: 64px;
  vertical-align: middle;
  color: #111;
}
.about-page .about-2 .box .text .header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding-right: 24px;
}
.about-page .about-2 .box .text .header .left{
  width: 100%;
}
.about-page .about-2 .box .text .header .title {
  margin-top: 12px;
  line-height: 1.2;
  /*text-transform:uppercase;*/
}
.about-page .about-2 .box .text .header .more {
  color: #000;
  margin-bottom: 10px;
  background: #fff;
}
.about-page .about-2 .box .text .header .more span {
  text-decoration: none;
}
.about-page .about-2 .box .text .con {
  font-size: 18px;
  line-height: 1.8;
  margin-top: 41px;
  color: #666;
}
.about-page .about-2 .box .text .list {
  margin-top: 29px;
}
.about-page .about-2 .box .text .list ul {
  margin-bottom: -25px;
}
.about-page .about-2 .box .text .list ul li {
  position: relative;
  padding-left: 47px;
  font-size: 20px;
  line-height: 1.5;
  padding-bottom: 25px;
}
.about-page .about-2 .box .text .list ul li::before {
  content: '';
  position: absolute;
  top: 13px;
  left: 0;
  width: 30px;
  height: 2px;
  background: white;
}
.about-page .about-2 .box::after {
  content: '';
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  width: 84.5%;
  height: 100%;
  background: #fff;
  /*border-radius: 15px;*/
}
.about-page .about-3 {
  background-color: #f2f2f2;
  padding: 12% 0 7%;
  margin-top: -122px;
}
.about-page .about-3 .header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-bottom: 63px;
  border-bottom: 1px solid #b8b8bc;
}
.about-page .about-3 .header .left {
  width: 50%;
}
.about-page .about-3 .header .left span.tag {
  color: var(--color);
}
.about-page .about-3 .header .left .title {
  margin-top: 12px;
  line-height: 1.2;
}
.about-page .about-3 .header .right {
  width: 50%;
    font-size: 18px;
    line-height: 1.8;
    color: #7b7b7b;
    padding: 0 0 0 20px;
}
.about-page .about-3 .content {
  margin-top: 88px;
}
.about-page .about-3 .content ul {
  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-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin: 0 -37px -37px 0;
}
.about-page .about-3 .content ul li {
  margin: 0 37px 37px 0;
  background: #fff;
  padding: 39px 35px 0;
  width: 30.3%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  color: #121212;
  height: 400px;
  border-radius: 6px;
}
.about-page .about-3 .content ul li .tit {
  font-size: 24px;
  font-weight: 700;
  line-height: 2;
  margin-top: 15px;
}
.about-page .about-3 .content ul li p {
  font-size: 18px;
  line-height: 1.8;
  color: #7b7b7b;
}
.about-page .about-3 .content ul li:hover {
  background: var(--color); 
}
.about-page .about-3 .content ul li:hover i img {
  -webkit-filter: grayscale(100%) brightness(300);
  filter: grayscale(100%) brightness(300);
}
.about-page .about-3 .content ul li:hover .tit,
.about-page .about-3 .content ul li:hover p{
  color: white;
}
.about-page .about-3 .list {
  margin-top: 151px;
}
.about-page .about-3 .list .img-box {
  display: block;
}
.about-page .about-3 .list .img-box img {
  width: 100%;
}
.about-page .about-3 .list .slick-dots {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: -54px;
  width: 100%;
  margin: 0;
  text-align: right;
  padding-right: 22px;
}
.about-page .about-3 .list .slick-dots li {
  width: 14px;
  height: 14px;
  background-color: #fff;
  display: inline-block;
  border-radius: 50%;
  margin-right: 14px;
  cursor: pointer;
  -webkit-transition: .5;
  -moz-transition: .5;
  transition: .5;
  padding: 0;
}
.about-page .about-3 .list .slick-dots li:last-child {
  margin-right: 0;
}
.about-page .about-3 .list .slick-dots li button {
  display: none;
}
.about-page .about-3 .list .slick-dots li.slick-active {
  background: var(--color);
}
.about-page .about-4 {
  background: var(--color);
  padding: 68px 0 70px;
  max-width: 959px;
  width: 100%;
  margin-top: -17%;
  position: relative;
  z-index: 1;
  color: #fff;
}
.about-page .about-4 .box {
  max-width: 507px;
  margin: 0 94px 0 auto;
}
.about-page .about-4 .box .title {
  margin-top: 27px;
}
.about-page .about-4 .box .con {
  font-size: 16px;
  line-height: 1.8;
  margin-top: 27px;
}
.about-page .about-4 .box .info {
  margin-top: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 30px;
  border-bottom: 1px solid #fff;
}
.about-page .about-4 .box .info .tit {
  font-size: 20px;
  line-height: 1.5;
}
.about-page .about-4 .box .info p {
  font-size: 16px;
  line-height: 1.8;
}
.about-page .about-4 .box .more {
  margin-top: 36px;
  background: #000;
}
.about-page .about-4 .box .more:hover {
  background: #fff;
  color: var(--color);
}
.about-page .about-5 {
  padding: 120px 0 180px;
}
.about-page .about-5 .header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding-bottom: 45px;
  border-bottom: 1px solid #b8b8bc;
}
.about-page .about-5 .header .right{
      width: 51%;
    font-size: 18px;
    line-height: 1.8;
    color: #7b7b7b;
    padding: 0 0 0 20px;
}
.about-page .about-5 .header span.tag {
  color: var(--color);
}
.about-page .about-5 .header .title {
  margin-top: 12px;
  line-height: 1.2;
}
.about-page .about-5 .header .more {
  background: var(--color);
  margin-bottom: 4px;
}
.about-page .about-5 .header .more:hover {
  background: #000;
}
.about-page .about-5 .content {
  margin-top: 47px;
}
.about-page .about-5 .content ul {
  margin-right: -42px;
}
.about-page .about-5 .content ul li {
  padding-right: 66px;
}
.about-page .about-5 .content ul li .img-box {
  display: block;
}
.about-page .about-5 .content ul li .img-box img {
  width: 100%;
}
.about-page .about-5 .content ul .slick-dots {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: -54px;
  width: 100%;
  margin: 0;
  text-align: center;
}
.about-page .about-5 .content ul .slick-dots li {
  width: 14px;
  height: 14px;
  background-color: #d2d2d2;
  display: inline-block;
  border-radius: 50%;
  margin-right: 14px;
  cursor: pointer;
  -webkit-transition: .5;
  -moz-transition: .5;
  transition: .5;
  padding: 0;
}
.about-page .about-5 .content ul .slick-dots li:last-child {
  margin-right: 0;
}
.about-page .about-5 .content ul .slick-dots li button {
  display: none;
}
.about-page .about-5 .content ul .slick-dots li.slick-active {
  background: var(--color);
}
@media screen and (max-width: 1440px) {
  .about-page .about-4 .box {
    margin: 0 auto;
  }
}
@media screen and (max-width: 1280px) {
   
  .about-page .about-1 .top .img .play {
    padding: 30px 30px 30px 40px;
  }
  .about-page .about-2 .box .text {
    padding: 0 15px 0 30px;
  }
  .about-page .about-3 .content ul li {
    width: 29.9%;
    padding: 39px 15px;
  }
  .about-page .about-3 .content ul li .tit {
    font-size: 22px;
  }
  .about-page .about-4 {
    max-width: 800px;
  }
}
@media screen and (max-width: 1100px) {
   
  .about-page .about-1 .top .text {
    padding: 70px 50px 90px;
  }
  .about-page .about-1 .bottom ul {
    margin-right: -40px;
  }
  .about-page .about-1 .bottom ul li {
    padding-right: 40px;
  }
  .about-page .about-3 .content ul {
    margin: 0 -20px -20px 0;
  }
  .about-page .about-3 .content ul li {
    margin: 0 20px 20px 0;
    width: 31.3%;
  }
  .about-page .about-4 {
    max-width: 700px;
  }
}
@media screen and (max-width: 1000px) {
  
  .about-page .about-1 .top .text {
    padding: 50px 30px;
  }
  .about-page .about-1 .top .text .con {
    font-size: 18px;
  }
  .about-page .about-1 .bottom {
    margin: 60px auto 0;
  }
  .about-page .about-1 .bottom ul {
    margin-right: -20px;
  }
  .about-page .about-1 .bottom ul li {
    padding-right: 20px;
  }
  .about-page .about-1 .bottom ul li .data em {
    font-size: 50px;
  }
  .about-page .about-1 .bottom ul li .text .tit {
    font-size: 20px;
    line-height: 1.8;
  }
  .about-page .about-1 .bottom ul li .text p {
    font-size: 16px;
line-height: 30px;
  }
  .about-page .about-2 {
    margin-top: 47px;
  }
  .about-page .about-2 .box {
    padding: 0 0 60px;
  }
  .about-page .about-2 .box .img {
    width: 100%;
  }
  .about-page .about-2 .box .text {
    width: 100%;
    margin-top: 20px;
  }
  .about-page .about-2 .box::after {
    width: 100%;
  }
  .about-page .about-3 {
    margin-top: 0;
    padding: 60px 0;
  }
  .about-page .about-3 .header {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 30px;
  }
  .about-page .about-3 .header .left {
    width: 100%;
  }
  .about-page .about-3 .header .right {
    width: 100%;
    padding: 20px 0 0 0;
  }
  .about-page .about-3 .content {
    margin-top: 30px;
  }
  .about-page .about-3 .content ul li {
    width: 47%;
  }
  .about-page .about-3 .list {
    margin-top: 60px;
  }
  .about-page .about-3 .list .slick-dots {
    bottom: -40px;
  }
  .about-page .about-4 {
    max-width: 680px;
    margin-top: 0;
  }
  .about-page .about-5 {
    padding: 60px 0 11.05%;
  }
  .about-page .about-5 .header {
    padding-bottom: 30px;
  }
  .about-page .about-5 .header .left {
    width: 52%;
  }
  .about-page .about-5 .content ul {
    margin-right: -20px;
  }
  .about-page .about-5 .content ul li {
    padding-right: 20px;
  }
}
@media screen and (max-width: 700px) {
   
  .about-page .about-1 .top .img .play {
    padding: 20px 20px 20px 30px;
    bottom: 20px;
  }
  .about-page .about-1 .top .text {
    margin-top: 0;
    padding: 30px 15px;
  }
  .about-page .about-1 .top .text .con {
    margin-top: 20px;
  }
  .about-page .about-1 .bottom ul li .data {
    padding-bottom: 0;
  }
  .about-page .about-1 .bottom {
    margin: 30px auto 0;
  }
  .about-page .about-2 .box .text .con {
    margin-top: 20px;
  }
  .about-page .about-2 {
    margin-top: 30px;
  }
  .about-page .about-3 {
    padding: 30px 0;
  }
  .about-page .about-3 .content ul li {
    width: 45.9%;
  }
  .about-page .about-3 .content ul li .tit {
    font-size: 20px;
    line-height: 1.8;
  }
  .about-page .about-3 .content ul li p {
    font-size: 17px;
    margin-top: 10px;
  }
  .about-page .about-3 .list {
    margin-top: 30px;
  }
  .about-page .about-4 {
    padding: 30px 15px;
  }
  .about-page .about-5 {
    padding: 30px 0;
  }
  .about-page .about-5 .header {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 20px;
  }
  .about-page .about-5 .header .left {
    width: 100%;
  }
  .about-page .about-5 .header .left .title {
    margin-top: 15px;
  }
  .about-page .about-5 .header .right {
    margin-top: 20px;
  }
  .about-page .about-5 .content {
    margin-top: 20px;
  }
  .about-page .about-5 .content ul .slick-dots {
    bottom: -25px;
  }
}
@media screen and (max-width: 500px) {
   
  .about-page .about-1 .top .img .play {
    padding: 0;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
  }
  .about-page .about-1 .top .img .play img {
    width: 20px;
    margin: 0 auto;
    display: inline-block;
    vertical-align: middle;
  }
  .about-page .about-1 .top .text .con {
    font-size: 16px;
    line-height: 30px;
  }
  .about-page .about-1 .bottom ul {
    margin: 0 0 -20px 0;
  }
  .about-page .about-1 .bottom ul li {
    padding: 0 0 20px 0;
  }
  .about-page .about-1 .bottom ul li .data em {
    font-size: 40px;
  }
  .about-page .about-2 .box {
    padding-bottom: 30px;
  }
  .about-page .about-2 .box .text .header {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .about-page .about-2 .box .text .header .left {
    width: 100%;
  }
  .about-page .about-2 .box .text .header .left .title {
    margin-top: 10px;
  }
  .about-page .about-2 .box .text .header .right {
    padding: 20px 0 0;
  }
  .about-page .about-2 .box .text .con {
    font-size: 16px;
    margin-top: 10px;
    line-height: 30px;
  }
  .about-page .about-2 .box .text .list ul li {
    font-size: 16px;
    line-height: 1.8;
  }
  .about-page .about-3 .header {
    padding-bottom: 10px;
  }
  .about-page .about-3 .header .left .title {
    margin-top: 10px;
  }
  .about-page .about-3 .header .right {
    font-size: 16px;
    line-height:30px;
  }
  .about-page .about-3 .content ul {
    margin: 0 0 -20px 0;
  }
  .about-page .about-3 .content ul li {
    margin: 0 0 20px 0;
    width: 100%;
  }
  .about-page .about-3 .content ul li p {
    font-size: 16px;
    line-height: 30px;
  }
  .about-page .about-4 .box .title {
    margin-top: 10px;
  }
  .about-page .about-4 .box .con {
    margin-top: 10px;
  }
  .about-page .about-4 .box .info {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 10px;
  }
  .about-page .about-4 .box .info p {
    font-size: 14px;
    line-height: 2;
  }
  .about-page .about-4 .box .info .left {
    width: 100%;
  }
  .about-page .about-4 .box .info .right {
    width: 100%;
    margin-top: 20px;
  }
  .about-page .about-4 .box .more {
    margin-top: 20px;
  }
  .about-page .about-5 .header .left .title {
    margin-top: 10px;
  }
}

.factory-page .factory-1 .top .navlist {
  margin-top: 55px;
  width: 100%;
}
.factory-page .factory-1 .top .navlist ul {
  width: 100%;
  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-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.factory-page .factory-1 .top .navlist ul li {
  width: 245px;
  height: 50px;
  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-top: 2px solid #d1d1d1;
  margin-right: 35px;
}
.factory-page .factory-1 .top .navlist ul li.active {
  color: var(--color);
}
.factory-page .factory-1 .top .navlist ul li:last-child {
  margin-right: 0;
}
.factory-page .factory-1 .content {
  margin-top: 50px;
}
.factory-page .factory-1 .content ul {
  margin: 0 -5px;
}
.factory-page .factory-1 .content ul li {
  padding: 0 5px;
  margin-bottom: 10px;
}
.factory-page .factory-1 .content ul li a.img {
  width: 100%;
  display: block;
}
.factory-page .factory-1 .content ul li a.img img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.faq-page .ui.container ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.faq-page .ui.container ul li .text {
  width: -webkit-calc(100% - 85px);
  width: -moz-calc(100% - 85px);
  width: calc(100% - 85px);
  background-color: #f9f9f9;
  padding: 30px 35px;
}
@media (max-width: 1000px){
  .factory-page .factory-1 .content ul li{
    width: 50%;
  }
}
@media (max-width: 700px){
  .factory-page .factory-1 .top .con {
    width: 100%;
    margin-top: 50px;
  }
  .factory-page .factory-1 .top .navlist ul li {
    width: 50%;
    margin-right: 0;
  }
}
@media (max-width: 500px) {
  .factory-page .factory-1 .top .navlist ul li {
    width: 100%;
    margin-bottom: 20px;
  }
  .factory-page .factory-1 .top .navlist ul li:last-child {
    margin-bottom: 0;
  }
  .factory-page .factory-1 .content ul li{
    width: 100%;
  }
}
.m-page a,
.m-page span{
  font-size: 16px; 
  margin: 0 5px;
  width: 30px;
  height: 30px;
  color: white;
  text-align: center;
  line-height: 30px;
  background: #efb42b;
  transition: 0.5s;
  display: inline-block;
}
.m-page a:hover,
.m-page span{
  background: var(--color);
}
.product-y-page .product-y-1 .content {
  margin: 25px 0 60px;
  /*font-size: 14px;*/
  line-height: 1.5;
}
.product-y-page .product-y-1 .categorie-box {
  margin: 55px 0 25px;
}
.product-y-page .product-y-1 .categorie-box ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.product-y-page .product-y-1 .categorie-box ul li {
  width: 120px;
  height: 425px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.product-y-page .product-y-1 .categorie-box ul li.active {
  width: -webkit-calc(-webkit-calc(100% - 125px * 3 ));
  width: -moz-calc(-moz-calc(100% - 125px * 3 ));
  width: calc(calc(100% - 125px * 3 ));
}
.product-y-page .product-y-1 .categorie-box ul li.active .box .img::before {
  opacity: 0;
}
.product-y-page .product-y-1 .categorie-box ul li.active .box .title {
  opacity: 0;
}
.product-y-page .product-y-1 .categorie-box ul li.active .box .text {
  bottom: 0;
}
.product-y-page .product-y-1 .categorie-box ul li .box {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.product-y-page .product-y-1 .categorie-box ul li .box .img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.product-y-page .product-y-1 .categorie-box ul li .box .img::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #313131;
  opacity: 0.8;
}
.product-y-page .product-y-1 .categorie-box ul li .box .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.product-y-page .product-y-1 .categorie-box ul li .box .title {
  white-space: nowrap;
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  left: 60px;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  top: 30px;
  -webkit-transform-origin: left;
  -moz-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
  color: white;
  z-index: 5;
}
.product-y-page .product-y-1 .categorie-box ul li .box .text {
  position: absolute;
  bottom: -100%;
  padding: 75px 40px 75px 75px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  width: 100%;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.product-y-page .product-y-1 .categorie-box ul li .box .text::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: -webkit-gradient(linear, left bottom, left top, from(var(--color)), to(rgba(89, 155, 51, 0)));
  background: -webkit-linear-gradient(bottom, var(--color) 0%, rgba(89, 155, 51, 0) 100%);
  background: -moz-linear-gradient(bottom, var(--color) 0%, rgba(89, 155, 51, 0) 100%);
  background: linear-gradient(to top, var(--color) 0%, rgba(89, 155, 51, 0) 100%);
}
.product-y-page .product-y-1 .categorie-box ul li .box .text .tit {
  color: white;
  max-width: 450px;
  position: relative;
  z-index: 5;
}
.product-y-page .product-y-1 .categorie-box ul li .box .text .tit .con {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-y-page .product-y-1 .categorie-box ul li .box .text .btn {
  padding: 0 25px;
  height: 50px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: white;
  display: block;
  line-height: 50px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  color: var(--color);
  -webkit-transition: all  0.5s;
  -moz-transition: all  0.5s;
  transition: all  0.5s;
  position: relative;
  z-index: 5;
}
.product-y-page .product-y-1 .categorie-box ul li .box .text .btn:hover {
  background-color: var(--color);
  color: white;
}
.product-y-page .product-y-1 .product-box ul {
  margin: 0px -10px;
}
.product-y-page .product-y-1 .product-box ul li {
  padding: 0px 10px;
}
.product-y-page .product-y-1 .product-box ul li:hover .img .btn {
  opacity: 1;
}
.product-y-page .product-y-1 .product-box ul li .img {
  border: 1px solid rgba(0, 0, 0, 0.2);
  width: 100%;
  /*height: 205px;*/
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.product-y-page .product-y-1 .product-box ul li .img .btn {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  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;
  opacity: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.product-y-page .product-y-1 .product-box ul li h4 {
  padding: 0 15px;
}
@media (max-width: 1000px) {
  .product-y-page .product-y-1 .categorie-box ul{
    flex-wrap: wrap;
  }
  .product-y-page .product-y-1 .categorie-box ul li {
    width: 50%;
  }
  .product-y-page .product-y-1 .categorie-box ul li.active{
    width: 50%;
  }
  .product-y-page .product-y-1 .categorie-box ul li .box .text{
    padding: 75px 30px;
    flex-wrap: wrap;
  }
  .product-y-page .product-y-1 .categorie-box ul li .box .text .tit{
    margin-bottom: 30px;
  }
}
@media (max-width: 500px){
  .product-y-page .product-y-1 .categorie-box ul li {
    width: 100%;
  }
  .product-y-page .product-y-1 .categorie-box ul li.active{
    width: 100%;
  }
}

.product-page {
  background-color: #f2f2f2;
}
.product-page .init-1 .containerC .cateCont {
  width: 440px;
  background-color: white;
  padding: 70px 20px 70px 50px;
  position: -webkit-sticky;
  position: sticky;
  top: 140px;
}
.product-page .init-1 .containerC .cateCont .tipsTitle {
  font-weight: bold;
  margin-bottom: 30px;
}
.product-page .init-1 .containerC .cateCont ul li {
  margin-top: 10px;
}
.product-page .init-1 .containerC .cateCont ul li .first {
  position: relative;
  color: #343639;
  display: block;
  font-size: 18px;
  font-weight: bold;
  padding-right: 30px;
}
.product-page .init-1 .containerC .cateCont ul li .first span {
  position: relative;
}
.product-page .init-1 .containerC .cateCont ul li .first span::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 10px;
  left: 0;
  background-color: var(--color);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
}
.product-page .init-1 .containerC .cateCont ul li .first i {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 0;
  right: 0;
  text-align: center;
  line-height: 20px;
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -ms-transform-origin: center center;
  -o-transform-origin: center center;
  transform-origin: center center;
}
.product-page .init-1 .containerC .cateCont ul li .first i.active {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.product-page .init-1 .containerC .cateCont ul li .first:hover {
  color: var(--color);
}
.product-page .init-1 .containerC .cateCont ul li .first.active {
  color: var(--color);
}
.product-page .init-1 .containerC .cateCont ul li .first.active span::before {
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform: scaleX(1);
}
.product-page .init-1 .containerC .cateCont ul li ul {
  display: none;
}
.product-page .init-1 .containerC .cateCont ul li.active ul{
  display: block;
}
.product-page .init-1 .containerC .cateCont ul li ul li {
  margin-top: 24px;
  padding-left: 10px;
}
.product-page .init-1 .containerC .cateCont ul li ul li a {
  color: #838383;
  font-size: 16px;
}
.product-page .init-1 .containerC .cateCont ul li ul li a:hover,
.product-page .init-1 .containerC .cateCont ul li ul li a.active {
  color: var(--color);
}
.product-page .init-1 .containerC .cateCont ul li ul li:last-child {
  margin-bottom: 24px;
}
.product-page .init-1 .containerC .cateCont .more {
  width: 100%;
}
.product-page .init-1 .containerC .listContC {
  width: -webkit-calc(-340%);
  width: -moz-calc(-340%);
  width: calc(100% - 440px);
  padding-left: 70px;
}
.product-page .init-1 .containerC .listContC .titleC {
  border-bottom: 1px solid #cfcfcf;
}
.product-page .init-1 .containerC .listContC .titleC .cat {
  font-weight: bold;
  padding-right: 20px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-top: 14px;
}
.product-page .init-1 .containerC .listContC .titleC form .text {
  width: 350px;
  background-color: #e9e9e9;
  border: none;
  padding: 10px 16px;
}
.product-page .init-1 .containerC .listContC .titleC form .submit {
  background-color: black;
  color: #fff;
  border: none;
  width: 140px;
  margin-left: 10px;
  transition: all .5s;
}
.product-page .init-1 .containerC .listContC .titleC form .submit:hover{
  background: var(--color);
}
.product-page .init-1 .containerC .listContC .content {
  padding-top: 20px;
}
.product-page .init-1 .containerC .listContC .content ul li {
  margin-top: 40px;
}
.product-page .init-1 .containerC .listContC .content ul li .box .topC {
  background-color: white;
}
.product-page .init-1 .containerC .listContC .content ul li .box .topC .img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.product-page .init-1 .containerC .listContC .content ul li .box .topC .img img {
  width: auto;
}
.product-page .init-1 .containerC .listContC .content ul li .box .topC .cont {
  padding: 10px 30px;
}
.product-page .init-1 .containerC .listContC .content ul li .box .topC .cont .type {
  font-weight: bold;
    overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.product-page .init-1 .containerC .listContC .content ul li .box .topC .cont .title {
  display: block;
  font-weight: bold;
    overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.product-page .init-1 .containerC .listContC .content ul li .box .topC .cont .title:hover {
  color: var(--color);
}
.product-page .init-1 .containerC .listContC .content ul li .box .topC .cont .des {
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.product-page .init-1 .containerC .listContC .content ul li .box .bottomC {
  padding: 6px 6px;
  background-color: white;
}
.product-page .init-1 .containerC .listContC .content ul li .box .bottomC .more {
  font-weight: bold;
  /*padding: 10px 30px;*/
}
/*.product-page .init-1 .containerC .listContC .content ul li .box .bottomC .more:hover {
  color: var(--color);
}*/
.product-page .init-1 .containerC .listContC .content ul li .box .bottomC .shop {
  width: 100px;
  margin-left: auto;
  border-left: 1px solid #ededed;
  border-right: 1px solid #ededed;
  padding: 16px 0;
  cursor: pointer;
}
.product-page .init-1 .containerC .listContC .content ul li .box .bottomC .shop .shopImg {
  width: 24px;
  height: 22px;
  -webkit-filter: grayscale(1) brightness(0);
  filter: grayscale(1) brightness(0);
}
.product-page .init-1 .containerC .listContC .content ul li .box .bottomC .shop:hover .shopImg {
  -webkit-filter: grayscale(0) brightness(1);
  filter: grayscale(0) brightness(1);
}
.product-page .init-1 .containerC .listContC .content ul li .box .bottomC .see {
  width: 100px;
  /*border-left: 1px solid #ededed;
  border-right: 1px solid #ededed;*/
  padding: 16px 0;
  cursor: pointer;
}
.product-page .init-1 .containerC .listContC .content ul li .box .bottomC .see .seeImg {
  width: 24px;
  height: 17px;
  -webkit-filter: grayscale(1) brightness(0);
  filter: grayscale(1) brightness(0);
}
.product-page .init-1 .containerC .listContC .content ul li .box .bottomC .see:hover .seeImg {
  -webkit-filter: grayscale(0) brightness(1);
  filter: grayscale(0) brightness(1);
}
.product-page .init-1 .containerC .catDes {
  line-height: 2;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 4px;
}
@media (max-width: 1700px) {
  .product-page .init-1 .containerC .listContC .content ul li .box .bottomC .more {
    width: 100%;
  }
}
@media (max-width: 1450px) {
  .product-page .init-1 .containerC .listContC .titleC form {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -moz-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    margin-left: auto;
  }
  .product-page .init-1 .containerC .listContC .titleC .cat {
    width: 100%;
    -webkit-box-flex: unset;
    -webkit-flex: unset;
    -moz-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    margin-top: 40px;
  }
  .product-page .init-1 .containerC .listContC .content ul li {
    width: 50%;
  }
}
@media (max-width: 1250px) {
  .product-page .init-1 .containerC .cateCont {
    display: none;
  }
  .product-page .init-1 .containerC .listContC {
    width: 100%;
    padding-left: 30px;
  } 
}
@media (max-width: 1000px) {
  .product-page .init-1 .containerC .listContC {
    padding-left: 26px;
  } 
}
@media (max-width: 700px) {
  .product-page .init-1 .containerC .listContC {
    padding-left: 22px;
  } 
}
@media (max-width: 500px) {
  .product-page .init-1 .containerC .listContC {
    padding-left: 16px;
  }
  .product-page .init-1 .containerC .listContC .content ul li {
    width: 100%;
  } 
}

.agent-page .agent-1 ul {
  margin: 80px -20px 0;
}
.agent-page .agent-1 ul li {
  padding: 40px 20px;
}
.agent-page .agent-1 ul li .box {
  text-align: center;
}
.agent-page .agent-1 ul li .box .img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: var(--color);
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
  overflow: hidden;
}
.agent-page .agent-1 ul li .box .img::after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px dashed var(--color);
}
.agent-page .agent-1 ul li .box h4 {
  color: var(--color);
}
.agent-page .trusted-page .trusted-1 {
  padding: 80px 0 40px;
}
.agent-page .trusted-page .trusted-1 .img {
  margin: 20px auto 0;
  text-align: center;
}
.agent-page .trusted-page .bottom {
  height: 265px;
  background-color: var(--color);
  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;
}
.agent-page .trusted-page .bottom .more2 {
  background-color: #000;
}
.agent-page .agent-2 {
  padding-top: 80px;
}
.agent-page .agent-2 ul {
  margin-top: 60px;
}
.agent-page .agent-2 ul li {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -moz-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.agent-page .agent-2 ul li .img {
  width: 50%;
}
.agent-page .agent-2 ul li .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.agent-page .agent-2 ul li .text {
  width: 50%;
  padding-left: 50px;
}
.agent-page .agent-2 ul li .text .con {
  /*font-family: Montserrat-Medium;*/
}
.agent-page .agent-2 ul li .text h4 {
  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;
  color: var(--color);
  margin-top: 15px;
}
.agent-page .agent-2 ul li .text h4::before {
  content: "";
  width: 25px;
  height: 2px;
  background-color: var(--color);
  display: block;
  margin-right: 10px;
}
.agent-page .agent-2 ul .slick-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.agent-page .agent-2 ul .slick-dots li {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #e1e1e1;
  margin: 0 8px;
}
.agent-page .agent-2 ul .slick-dots li.slick-active {
  background-color: var(--color);
}
.agent-page .agent-2 ul .slick-dots li button {
  display: none;
}
@media (max-width: 1000px){
   .agent-page .trusted-page .bottom h3 {
    font-size: 24px;
  }
  .agent-page .agent-2 ul li {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .agent-page .agent-2 ul li .img {
    width: 100%;
  }
  .agent-page .agent-2 ul li .text {
    width: 100%;
    padding-left: 0;
    margin-top: 30px;
  }
  .agent-page .agent-1 ul li{
    width: 50%;
  }
}
@media (max-width: 700px){
   .agent-page .trusted-page .bottom .container {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .agent-page .trusted-page .bottom .container h3 {
    margin-bottom: 30px;
  }
}
@media (max-width: 500px){
  .agent-page .agent-1 ul li{
    width: 100%;
  }
}

.contact-page {
  padding-bottom: 0;
}
.contact-page .contact-1 {
  margin-bottom: 100px;
}
.contact-page .contact-1 .top .left {
  padding-right: 10%;
}
.contact-page .contact-1 .top .left .con{
  line-height: 2;
}
.contact-page .contact-1 .top .right ul li {
  width: 48%;
  margin: 15px 0;
}
.contact-page .contact-1 .top .right ul li.wid-100{
  width: 100%;
}
.contact-page .contact-1 .top .right ul li:nth-child(3n){
  margin-right: 0;
}
.contact-page .contact-1 .top .right ul li h5 {
  font-size: 20px;
  font-weight: bold;
  border-bottom: 1px solid #d1d1d1;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.contact-page .contact-1 .top .right ul li span {
  font-size: 16px;
  line-height: 30px;
}
.contact-page .contact-form {
  width: 985px;
  height: 780px;
  background-color: #333333;
  margin: 0 auto;
  -webkit-transform: translateY(-175px);
  -moz-transform: translateY(-175px);
  -ms-transform: translateY(-175px);
  transform: translateY(-175px);
  color: white;
  padding: 60px 75px;
}
.contact-page .contact-form h3 {
  font-size: 34px;
  font-weight: bold;
}
.contact-page .contact-form h3 span {
  color: var(--color);
}
.contact-page .contact-form form {
  margin-top: 90px;
}
.contact-page .contact-form form ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.contact-page .contact-form form ul li {
  width: 48%;
  margin-bottom: 35px;
}
.contact-page .contact-form form ul li:nth-child(n + 5) {
  width: 100%;
}
.contact-page .contact-form form ul li:nth-child(1) input {
  background-image: url('../images/c-name.png');
  background-position: right 5px;
  background-repeat: no-repeat;
}
.contact-page .contact-form form ul li:nth-child(2) input {
  background-image: url('../images/c-email.png');
  background-position: right 5px;
  background-repeat: no-repeat;
}
.contact-page .contact-form form ul li:nth-child(3) input {
  background-image: url('../images/c-phone.png');
  background-position: right 5px;
  background-repeat: no-repeat;
}
.contact-page .contact-form form ul li:nth-child(4) input {
  background-image: url('../images/c-subject.png');
  background-position: right 5px;
  background-repeat: no-repeat;
}
.contact-page .contact-form form ul li:nth-child(5) textarea {
  background-image: url('../images/c-message.png');
  background-position: right 5px;
  background-repeat: no-repeat;
}
.contact-page .contact-form form ul li:last-child {
  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;
  align-items: flex-start;
}
.contact-page .contact-form form ul li:last-child p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  max-width: 50%;
}
.contact-page .contact-form form ul li label {
  font-size: 14px;
  color: white;
  margin-bottom: 20px;
  display: inline-block;
  text-transform: uppercase;
}
.contact-page .contact-form form ul li .more{
  cursor: pointer;
}
.contact-page .contact-form form ul li input[type='text'] {
  width: 100%;
  padding-bottom: 20px;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  background-color: transparent;
  color: white;
  font-size: 14px;
}
.contact-page .contact-form form ul li input[type='submit'] {
  width: 160px;
  height: 50px;
  line-height: 50px;
  background-color: var(--color);
  border: none;
  text-align: center;
  font-size: 16px;
  color: white;
  font-weight: bold;
  border-radius: 5px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
  text-transform: uppercase;
}
.contact-page .contact-form form ul li input[type='submit']:hover {
  background-color: black;
}
.contact-page .contact-form form ul li textarea {
  width: 100%;
  padding-bottom: 20px;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: white;
  font-size: 14px;
  height: 100px;
}
.contact-page .contact-form form ul li input::-webkit-input-placeholder,
.contact-page .contact-form form ul li textarea::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 1250px) {
  .contact-page .contact-1 .top .right ul li:nth-child(2n){
    margin-right: 0;
  }
  .contact-page .contact-1 .top .right ul li:nth-child(3n){
    margin-right: 30px;
  }
}
@media (max-width: 1000px){
  .contact-page .contact-1 .top .right ul li{
    margin-right: 0;
  }
  .contact-page .contact-1 .top .right ul li {
    max-width: 100% !important;
    width: 100%;
    margin-top: 30px !important;
  }
  .contact-page .contact-1 .top .right ul li:first-child {
    margin-top: 0 !important;
  }
  .contact-page .contact-1 .top .right ul li span {
    display: block;
  }
  .contact-page .contact-form {
    width: -webkit-calc(100% - 30px);
    width: -moz-calc(100% - 30px);
    width: calc(100% - 30px);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    height: auto;
    margin: 40px auto;
  }
}
@media (max-width: 700px){
  .contact-page .contact-1 .top .left {
    padding-right: 0;
    width: 100%;
  }
  .contact-page .contact-1 .top .right {
    width: 100%;
    margin-top: 60px;
  }
  .contact-page .contact-form form ul li {
    width: 100%;
  }
  .contact-page .contact-form {
    padding: 60px 30px;
  }
  .contact-page .contact-form form ul li:last-child p {
    display: none;
  }
  .contact-page .contact-form h3 {
    font-size: 24px;
  }
}
@media (max-width: 500px){
  .contact-page .contact-form form{
    margin-top: 40px;
  }
}
.news-page .sidebar-right ul{
  margin: -15px;
}
.news-page .sidebar-right ul li{
  padding: 15px;
}
.news-page .sidebar-right ul li .cat_name{
      background-color: #262626;
    display: inline-block;
    color: white;
    font-size: 14px;
    line-height: 2;
    padding: 8px 18px 7px 17px;
    margin-top: 20px;
}
.news-page .sidebar-right ul li .title{
      font-size: 20px;
      font-weight: bold;
    line-height: 36px;
    margin-top: 21px; 
    min-height: 5.6em;
}
.news-page .sidebar-right ul li .des{
      font-size: 16px;
    color: #7b7b7b;
    line-height: 30px;
    margin-top: 6px;
}
.news-page .sidebar-right ul li .time{
      font-size: 16px;
    line-height: 30px;
    color: var(--color);
    display: inline-block;
    margin-top: 2px;
}
.inner-page .sidebar-box .sidebar-left {
  width: 28%;
   position: sticky;
  top: 160px;
  padding-right: 45px;
}
.inner-page .sidebar-box .sidebar-left .inner {
  max-width: 375px;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-title {
  font-size: 20px;
  line-height: 2;
  color: #000;
  text-transform: capitalize;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e7e7e7;
  font-weight: bold;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-search {
  margin-bottom: 40px;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-search form {
  width: 100%;
  position: relative;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-search form input[type="text"] {
  width: 100%;
  height: 43px;
  border: 1px solid #eee;
  padding: 10px 20px;
  padding-right: 50px;
  font-size: 14px;
  color: #555555;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-search form input[type="submit"] {
  position: absolute;
  width: 43px;
  height: 43px;
  border: none;
  background: url(../images/icon-search-black.png) no-repeat center center;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-cat {
  margin-bottom: 40px;
  /*max-height: 3300px;
  overflow-y: auto;*/
  padding-right: 5px;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul li a {
  padding: 8px 0;
  font-size: 16px;
  font-weight: bold;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
  line-height: 2;
  word-break: break-all;
  position: relative;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul li a i{
  float: right;
  position: relative;
  top: 1px;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul li a span {
  color: #aaa;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul li a:hover,
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul li a.active {
  color: var(--color);
}
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul li.active > a {
  color: var(--color);
}
 
/*.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul > li > ol{
  display: none;
}*/
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul li.active > ol{
  display: block;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul > li > ol > li {
  /*list-style-type: disc;*/
  margin-left: 10px;
  color: #7b7b7b;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul > li > ol > li a {
  font-size: 16px;
  line-height: 40px;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-recent {
  margin-bottom: 40px;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li {
  padding: 15px 0;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-img {
  margin-right: 20px;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-img img {
  height: 80px;
  max-width: 100px;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-text span {
  color: #aaa;
  display: block;
  font-size: 14px;
  line-height: 2;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-text p {
  color: #000;
  font-weight: bold;
  font-size: 16px;
  display: -webkit-box;
  margin-bottom: 8px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-text p:hover {
  color: var(--color);
}
.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li:first-child {
  padding-top: 0;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li:last-child {
  padding-bottom: 0;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-contact {
  background: url(../images/about.jpg) no-repeat center center;
  padding: 215px 40px 30px;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-contact h5 {
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  line-height: 2;
  margin-bottom: 20px;
  font-weight: bold;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-contact h6 {
  font-size: 18px;
  line-height: 32px;
  color: #fff;
  margin-bottom: 20px;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-contact h6 span {
  display: block;
}

.inner-page .sidebar-box .sidebar-right {
  width: 72%;
}
.newdet-page {
  padding: 0 0 10px;
}
.newdet-page .header {
  max-width: 1520px;
  width: 100%;
  padding: 55px;
  background: #fff;
  margin: 0 auto;
  text-align: center;
}
.newdet-page .header .categoty {
  display: inline-block;
    font-size: 16px;
    color: #fff;
    background: var(--color);
    padding: 5px 15px;
  text-transform: uppercase;
}
.newdet-page .header h1 {
  font-size: 48px;
  line-height: 1.4;
  margin: 20px 71px 0;
}
.newdet-page .header .post_meta {
  margin-top: 26px;
}
.newdet-page .header .post_meta span {
  display: inline-block;
  vertical-align: middle;
}
.newdet-page .header .post_meta .post_author_avatar {
  margin-right: 11px;
}
.newdet-page .header .post_meta .photo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.newdet-page .header .post_meta .post_author_name {
  font-size: 16px;
  line-height: 1;
}
.newdet-page .header .post_meta .post_author {
  display: inline-block;
  vertical-align: middle;
}
.newdet-page .header .post_meta .post_author::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 5px;
  height: 5px;
  background:#7b7b7b;
  border-radius: 50%;
  margin: 0 10px 0;
}
.newdet-page .header .post_meta .post_date {
    font-size: 16px;
    color: #7b7b7b;
}
.newdet-page .header .post_meta .post_date::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 5px;
  height: 5px;
  /*background: #83827F;*/
  border-radius: 50%;
  margin: -6px 10px 0;
}
.newdet-page .header .post_meta .post_meta_number {
  font-size: 14px;
  color: #83827F;
}
.newdet-page .content {
  margin-top: 40px;
  font-size: 18px;
  line-height: 32px;
  color: #7b7b7b;
}
.newdet-page .share {
  max-width: 1520px;
  width: 100%;
  margin: 40px auto 0;
  padding: 28px 0;
  border-top: 1px solid #d1d0c8;
  border-bottom: 1px solid #d1d0c8;
  text-align: right;
}
.newdet-page .share a {
  display: inline-block;
  vertical-align: middle;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  line-height: 48px;
  font-size: 20px;
  background: #fff;
  margin: 3px 0 3px 7px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  transition: all .3s ease;
}
.newdet-page .share a:first-child {
  margin-left: 0;
}
.newdet-page .share a:nth-child(1) {
  background: #48bde9;
  color: #fff;
}
.newdet-page .share a:nth-child(2) {
  background: #4f5fbf;
  color: #fff;
}
.newdet-page .share a:nth-child(3) {
  background: #7a7e83;
  color: #fff;
}
.newdet-page .share a:nth-child(4) {
  background: var(--color);
  color: #fff;
}
.newdet-page .share a:nth-child(5) {
  background: var(--color);
  color: #fff;
}
.newdet-page .share a:hover {
  margin-top: -3px;
}
.newdet-page .m-link {
  /*max-width: 1060px;*/
  margin: 40px auto 0;
}
.newdet-page .m-link a {
  display: inline-block;
  vertical-align: top;
  width: 49%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.newdet-page .m-link a em {
    display: block;
    font-size: 18px;
    line-height: 32px;
    color: #7b7b7b;
}
.newdet-page .m-link a:first-child i {
  margin-right: 10px;
}
.newdet-page .m-link a:last-child {
  text-align: right;
}
.newdet-page .m-link a:last-child i {
  margin-left: 10px;
}
.newdet-page .m-link a span {
    font-size: 18px;
    line-height: 32px;
  font-weight: bold;
}
.newdet-page .m-link a:hover {
  color: #000;
}
.newdet-page .prodet-page {
  padding: 0;
}
.newdet-page .prodet-2 {
  max-width: 1520px;
  width: 100%;
  margin: 0 auto;
}
.newdet-b .prodet-2 .ret .slide .con .right {
  padding: 0;
}
.newdet-page .prodet-3 {
  margin: 60px auto 0;
}
@media screen and (max-width: 1250px){
  .inner-page .sidebar-box .sidebar-left{
    display: none;
  }
   .inner-page .sidebar-box .sidebar-right{
    width: 100%;
  }
  .news-page .sidebar-right ul li{
    width: 50% !important;
  }
   .newdet-page .header h1 {
    font-size: 50px;
    margin: 20px 40px 0;
  }
}
@media screen and (max-width:1000px){
  .newdet-page {
    padding: 60px 0;
  }
  .newdet-page .header h1 {
    font-size: 40px;
    margin: 20px 27px 0;
  }
}
@media screen and (max-width: 700px){
  .news-page .sidebar-right ul li{
    width: 100% !important;
  }
  .newdet-page {
    padding: 30px 0;
  }
  .newdet-page .header {
    padding: 30px 20px;
  }
  .newdet-page .header h1 {
    font-size: 34px;
    margin: 20px 20px 0;
  }
  .newdet-page .content {
    margin-top: 20px;
  }
  .newdet-page .share {
    margin: 20px auto 0;
  }
  .newdet-page .m-lin {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .news-page .sidebar-right ul li{
    width: 100% !important;
  }
  .newdet-page .header h1 {
    font-size: 24px;
    margin: 20px 0px 0;
  }
  .newdet-page .content {
    font-size: 16px;
    line-height: 30px;
  }
  .newdet-page .m-link a {
    display: block;
    width: 100%;
  }
  .newdet-page .m-link a:last-child {
    text-align: left;
    margin-top: 20px;
  }
}
.prodet-page {
  background: #fffaf4;
}
.prodet-page .prodet-1 .left {
  position: sticky;
  top: 140px;
}
.prodet-page .prodet-1 .left ul li a{
  display: block;
  background: #f6f6f6;
}
.prodet-page .prodet-1 .right .cat_name{
  color: rgba(0,0,0,0.4);
  padding-left: 20px;
  position: relative;
}
.prodet-page .prodet-1 .right .cat_name::after{
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 15px;
  height: 15px;
  border-radius: 3px;
  background: #efb42b;
}
.prodet-page .prodet-1 .right .content{
  line-height: 28px;
}
.prodet-page .prodet-1 .right .line{
  width: 100%;
  height: 1px;
  background: #c4c4c4;
}
.prodet-page .prodet-1 form input{
  width: 100%;
  height: 40px;
  border-radius: 5px;
  background: white;
  border: none; 
  padding: 0 15px;
}
.prodet-page .prodet-1 form p{
  margin: 10px 0;
}
.prodet-page .prodet-1 form input[type="submit"]{
  background: #efb42b;
  color: white;
  margin-top: 22px;
}
.prodet-page .prodet-1 .right .product_list ul li .arrow{
  display: inline-block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #efb42b;
  color: white;
  font-size: 22px;
  text-align: center;
  line-height: 48px;
  margin-left: auto;
}
.prodet-page .prodet-1 .right .product_list ul li .img-box{
  width: 130px;
}
.prodet-page .prodet-2 ul.options{
  border-bottom: 1px solid #cbcbcb;
}
.prodet-page .prodet-2 ul.options li{
  cursor: pointer;
}
.prodet-page .prodet-2 ul.options li.active{
  color: #efb42b;
}

@media screen and (max-width:1000px){
  .prodet-page .prodet-1 .left{
    width: 100%;
    padding: 0;
    position: relative;
    top: 0;
  }
  .prodet-page .prodet-1 .right{
    width: 100%;
    padding: 0;
    margin-top: 20px;
  }
}

.product2-page .sideBarLeft {
    width: 75%;
}
.product2-page .sideBarLeft .blueshipcatintro{
    font-size: 16px;
    line-height: 30px;
    margin-top: 10px;
}
.product2-page .sideBarRight {
    width: 25%;
    padding-left: 2%;
    position: -webkit-sticky;
    position: sticky;
    top: 20px;
}
.product2-page .sideBarRight h3.title {
    font-size: 25px;
    line-height: 36px;
    color: #373330;
    /*text-transform: uppercase;
    letter-spacing: 3px;*/
    font-weight: bold;
    margin-bottom: 15px;
}
.product2-page .sideBarRight form {
    position: relative;
}
.product2-page .sideBarRight form input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #373330;
    font-size: 18px;
    color: black;
    background: transparent;
    padding: 4px 0;
}
.product2-page .sideBarRight form input::-webkit-input-placeholder {
    color: #989898;
}
.product2-page .sideBarRight form input:-moz-placeholder {
    color: #989898;
}
.product2-page .sideBarRight form input::-moz-placeholder {
    color: #989898;
}
.product2-page .sideBarRight form input:-ms-input-placeholder {
    color: #989898;
}
.product2-page .sideBarRight form input::placeholder {
    color: #989898;
}
.product2-page .sideBarRight form input[type="submit"] {
    width: 30px;
    background: url("../images/icon-search.png") center center no-repeat;
    position: absolute;
    right: 0;
    top: 0;
}
.product2-page .sideBarRight > div {
    margin-top: 80px;
}
.product2-page .sideBarRight .list ul {
    margin: -5px;
}
.product2-page .sideBarRight .list ul li {
    padding: 5px;
}
.product2-page .sideBarRight .nav ul li {
    font-size: 16px;
    line-height: 30px;
    color: #5b5b5b;
    margin-bottom: 8px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s; 
}
.product2-page .sideBarRight .nav ul li a{
  position: relative;
  display: block;
  padding-right: 20px;
}
.product2-page .sideBarRight .nav ul li a i{
  position: absolute;
  right: 0;
  top: 0;
}
.product2-page .sideBarRight .nav ul li:last-child {
    margin-bottom: 0;
}
.product2-page .sideBarRight .nav ul li:hover,
.product2-page .sideBarRight .nav ul li a.active {
    color: #b22123;
}
.product2-page .sideBarRight .nav ul li.active ul{
  display: block;
}
.product2-page .sideBarRight .nav ul li a i.active,
.product2-page .sideBarRight .nav ul li.active > a i{
   -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.product2-page .sideBarRight .share ul li {
    width: auto;
    margin-right: 15px;
    color: #5b5b5b;
    font-size: 16px;
    line-height: 30px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.product2-page .sideBarRight .share ul li:hover {
    color: #b22123;
}
.product2-page .product-1 {
    padding: 80px 0 120px;
}
.product2-page .product-1 .ui.container h1.catphintro{
    font-size: 30px;
    line-height: 1.4;
    margin-bottom: 10px;
    font-weight: 600;
}
.product2-page .sideBarLeft .desc{
  color: #fff;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  height: 370px;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}
.product2-page .sideBarLeft .desc::after{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}
.product2-page .sideBarLeft .desc .nr{
  position: absolute; 
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  z-index: 3;
}
.product2-page .sideBarLeft .desc .nr .con{
  font-size: 16px;
  line-height: 1.8;
  max-height: 90px;
  overflow-y: auto;
}
.product2-page .product-1 {
    padding: 80px 0 120px;
}
.product2-page .product-1 .ui.container h1.catphintro{
    font-size: 30px;
    line-height: 1.4;
    margin-bottom: 10px;
    font-weight: 600;
}
.product2-page .sideBarLeft .desc{
  color: #fff;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  height: 370px;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}
.product2-page .sideBarLeft .desc .nr{
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
}
.product2-page .sideBarLeft .desc .nr .con{
  font-size: 16px;
  line-height: 1.8;
  max-height: 90px;
  overflow-y: auto;
}
.product2-page .product-1 .sideBarLeft .list ul {
    margin: -25px -20px 0;
}
.product2-page .product-1 .sideBarLeft .list ul li {
    padding: 25px 20px;
}
.product2-page .product-1 .sideBarLeft .list ul li a.img-box {
    display: block;
}
.product2-page .product-1 .sideBarLeft .list ul li a.img-box img {
    display: block;
    width: 100%;
}
.product2-page .product-1 .sideBarLeft .list ul li a.img-box img.op2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: .5s;
    opacity: 0;
    z-index: 1;
}
.product2-page .product-1 .sideBarLeft .list ul li a.img-box:hover img.op2 {
    opacity: 1;
}
.product2-page .product-1 .sideBarLeft .list ul li .ig .cart{
  width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: #b22123;
    top: 0;
    right: 0;
    cursor: pointer;
    position: absolute;
    text-align: center;
    z-index: 1;
}
.product2-page .product-1 .sideBarLeft .list ul li .ig .cart img{
  width: auto;
  display: inline-block;
  vertical-align: middle;
}
.product2-page .product-1 .sideBarLeft .list ul li a.img-box span {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    opacity: 0;
    z-index: 2;
}
.product2-page .product-1 .sideBarLeft .list ul li a.img-box span img{
  width: auto;
}
.product2-page .product-1 .sideBarLeft .list ul li h6 {
    margin-top: 20px;
    font-size: 18px;
    color: #373330;
    font-weight: 700;
    line-height: 1.5;
    text-transform: capitalize;
    text-align: center;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.product2-page .product-1 .sideBarLeft .list ul li .rating {
    margin-top: 15px;
    text-align: center;
    line-height: 1;
    letter-spacing: 3px;
}
.product2-page .product-1 .sideBarLeft .list ul li .rating:after {
    font-family: "FontAwesome";
    color: #b22123;
    font-size: 18px;
}
.product2-page .product-1 .sideBarLeft .list ul li .rating.one:after {
    content: "\f005 \f006 \f006 \f006 \f006";
}
.product2-page .product-1 .sideBarLeft .list ul li .rating.two:after {
    content: "\f005 \f005 \f006 \f006 \f006";
}
.product2-page .product-1 .sideBarLeft .list ul li .rating.three:after {
    content: "\f005 \f005 \f005 \f006 \f006";
}
.product2-page .product-1 .sideBarLeft .list ul li .rating.four:after {
    content: "\f005 \f005 \f005 \f005 \f006";
}
.product2-page .product-1 .sideBarLeft .list ul li .rating.five:after {
    content: "\f005 \f005 \f005 \f005 \f005";
}
.product2-page .product-1 .sideBarLeft .list ul li:hover a.img-box span {
    bottom: 5%;
    opacity: 1;
}
.product2-page .product-1 .sideBarLeft .list ul li:hover h6 {
    color: #b22123;
}
@media screen and (max-width: 1500px){
   .product2-page .product-1 {
    padding-top: 50px;
  }
   .product2-page .sideBarRight {
     padding-left: 5%;
  }
  .product2-page .sideBarRight > div {
     margin-top: 40px;
  }
  .product2-page .sideBarRight h3.title {
     font-size: 18px;
     margin-bottom: 5px;
  }
}
@media screen and (max-width: 1450px){
   .product2-page .product-1 .sideBarLeft .list ul li h6{
    font-size: 21px;
  }
}
@media screen and (max-width: 1250px){
   .product2-page .product-1 .sideBarLeft .list ul li {
     padding: 10px;
  }
  .product2-page .product-1 .sideBarLeft .list ul {
     margin: -10px;
  }
  .product2-page .product-1 .sideBarLeft .list ul li .rating:after {
     font-size: 16px;
  }
}
@media screen and (max-width: 1000px){
   .product2-page .product-1 .sideBarLeft .list ul li h6 {
     font-size: 16px;
     line-height: 1.8;
   }
   .product2-page .product-1 {
        padding-bottom: 50px;
    }
    .product2-page .product-1 .ui.container h1.catphintro{
      font-size: 26px;
      line-height: 1.6;
    }
    .product2-page .sideBarRight {
        display: none;
    }
    .product2-page .sideBarLeft {
        width: 100%;
    }
}
@media screen and (max-width: 700px){
   .product2-page .product-1{
      padding: 20px 0;
    }
     .product2-page .sideBarLeft .desc{
      height: 300px;
    }
    .product2-page .sideBarLeft .desc::after{
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(225,16,82,0.6);
   }
}
@media screen and (max-width: 500px) {
  .product2-page .sideBarLeft .desc .nr .con{
    font-size: 14px;
    line-height: 2;
  }
}

.prodet2-page .prodet-1 .left{
  position: sticky;
  top: 120px;
}
.prodet2-page .prodet-1 .left a{
  display: block;
  background: #f6f6f6;
  text-align: center;
}
.prodet2-page .prodet-1 .right .desc{
  color: #b22123;
}
.prodet2-page .prodet-1 .right h1{
  line-height: 1.2;
}
.prodet2-page .prodet-1 .right .more{
    width: 72%;
    text-align: center;
}
.prodet2-page .prodet-1 .right .Auxil-through a{
  display: inline-block;
  background: #fafafa;
  padding: 2px 15px;
  margin-bottom: 10px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.prodet2-page .prodet-1 .right .Auxil-through a:hover{
  background: var(--color);
  color: white;
}
.prodet2-page .prodet-1 .right .content .title{
  position: relative;
  padding-left: 50px;
}
.prodet2-page .prodet-1 .right .content .title i{
  position: absolute;
  left: 0;
  top: 4px;
  width: 30px;
  height: 30px; 
  cursor: pointer;
}
.prodet2-page .prodet-1 .right .content .title i::after{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  height: 4px;
  background: var(--color);
   -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.prodet2-page .prodet-1 .right .content .title i::before{
  content: "";
  position: absolute;
  left: 50%;
  top: 0%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: var(--color);
   -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.prodet2-page .prodet-1 .right .content .item.active .title i::before{
  opacity: 0;
}
.prodet2-page .prodet-1 .right .content .des{
  line-height: 2;
}
.prodet2-page .prodet-1 .right .content .line{
  width: 100%;
  height: 1px;
  background: #f6f6f6;
}
.prodet2-page .prodet-2 table,
.prodet2-page .prodet-2 table tr td{
  border: none;
}
.prodet2-page .prodet-2 .des{
  background: #f6f6f6;
}
.prodet2-page .faq ul li{
  position: relative;
  border-bottom: 1px solid #d1d1d1;
  padding-left: 50px;
  padding-top: 30px;
  padding-bottom: 30px;
  cursor: pointer;
}
.prodet2-page .faq ul li i{
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 37px;
}
.prodet2-page .faq ul li i::after{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  height: 6px;
  background: var(--color);
   -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.prodet2-page .faq ul li i::before{
  content: "";
  position: absolute;
  left: 50%;
  top: 0%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 6px;
  height: 100%;
  background: var(--color);
   -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.prodet2-page .faq ul li .des{
  padding-top: 30px;
  display: none;
}
.prodet2-page .faq ul li.active i::before{
  opacity: 0;
}

@media screen and (max-width:1000px){
  .prodet2-page .prodet-1 .left{
    position: relative;
    top: 0;
  }
}
.seoPublic .Auxil-about .box .right div.h3{
  font-weight: bold;
}