@font-face {
  font-family: 'Montserrat';
  src: url(../fonts/Montserrat-Bold.ttf) format('truetype'), url(../fonts/Montserrat-Bold.eot) format('eot'), url(../fonts/Montserrat-Bold.woff) format('woff'), url(../fonts/Montserrat-Bold.woff2) format('woff2');
  font-weight: 500;
}
@font-face {
  font-family: 'Montserrat';
  src: url(../fonts/Montserrat-ExtraBold.ttf) format('truetype'), url(../fonts/Montserrat-ExtraBold.eot) format('eot'), url(../fonts/Montserrat-ExtraBold.woff) format('woff'), url(../fonts/Montserrat-ExtraBold.woff2) format('woff2');
  font-weight: 600;
}
@font-face {
  font-family: 'Montserrat';
  src: url(../fonts/Montserrat-Light.ttf) format('truetype'), url(../fonts/Montserrat-Light.eot) format('eot'), url(../fonts/Montserrat-Light.woff) format('woff'), url(../fonts/Montserrat-Light.woff2) format('woff2');
  font-weight: 300;
}
@font-face {
  font-family: 'Montserrat';
  src: url(../fonts/Montserrat-Regular.ttf) format('truetype'), url(../fonts/Montserrat-Regular.eot) format('eot'), url(../fonts/Montserrat-Regular.woff) format('woff'), url(../fonts/Montserrat-Regular.woff2) format('woff2');
  font-weight: 400;
}
@font-face {
  font-family: 'Montserrat';
  src: url(../fonts/Roboto-Light.ttf) format('truetype'), url(../fonts/Roboto-Light.eot) format('eot'), url(../fonts/Roboto-Light.woff) format('woff'), url(../fonts/Roboto-Light.woff2) format('woff2');
  font-weight: normal;
}
body {
  font-family: "Montserrat";
  font-weight: normal;
  max-width: 1920px;
  margin: 0 auto;
}
:root {
  --color: #184b4b;
}
.ui.container {
  padding: 0 15px;
  position: relative;
  max-width: 1400px;
  /*padding: 3rem 0;*/
}
.body-overflow-box {
  position: relative;
  left: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header {
  z-index: 10;
  position: relative;
  width: 100%;
}
#header .h-top {
  line-height: 36px;
  height: 36px;
  background: #171717;
  display: none;
}
#header .h-top ul {
  float: right;
  margin-right: -15px;
}
#header .h-top ul li {
  line-height: 36px;
  font-size: 14px;
  color: white;
  display: inline-block;
  height: 36px;
  margin-top: -3px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header .h-top ul li.active,
#header .h-top ul li:hover {
  background: #eb623a;
}
#header .h-top ul li a {
  padding: 0 15px;
}
#header .nav {
  display: inline-block;
  width: 100%;
  background: #1c2727;
  padding-left: 118px;
}
#header .nav .ui.menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
}
#header .nav .ui.menu .logo {
  display: inline-block;
  margin-left: 0;
  margin-right: auto;
  vertical-align: middle;
}
#header .nav .ui.menu .menu-box {
  display: inline-block;
  vertical-align: middle;
  margin-left: auto;
  margin-right: 25px;
}
#header .nav .ui.menu .menu-box ul.menu > li {
  margin: 0 25px;
  font-size: 18px;
  color: white;
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  z-index: 100;
  float: left;
  position: relative;
  border-bottom: 2px solid transparent;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: uppercase;
  font-weight: 400;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover {
  border-color: white;
  -webkit-transition: .5s .5s border;
  -moz-transition: .5s .5s border;
  transition: .5s .5s border;
}
#header .nav .ui.menu .menu-box ul.menu > li > a {
  display: block;
}
#header .nav .ui.menu .menu-box ul.menu > li > ul.sub-menu > li > ul.sub-menu{
  left: 100% !important;
  top: 0 !important;
}
#header .nav .ui.menu .menu-box ul.menu > li > ul.sub-menu > li > ul.sub-menu,
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu {
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  text-align: left;
  position: absolute;
  font-size: 15px;
  background: #fff;
  top: 100%;
  left: -10px;
  width: 230px;
  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 > ul.sub-menu > li,
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li {
  display: block;
  float: none;
  padding: 0 15px;
  line-height: 40px;
  color: black;
  font-size: 14px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
  position: relative;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li a {
  display: block;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li:hover {
  background: #222;
  color: white !important;
}
#header .nav .ui.menu .menu-box ul.menu > li > ul.sub-menu > li:hover > ul.sub-menu,
#header .nav .ui.menu .menu-box ul.menu > li:hover ul.sub-menu {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  -ms-transform: rotate3d(0, 0, 0, 0);
  -o-transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .ui.menu .lang {
  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: white;
  font-size: 18px;
  margin-right: 20px;
}
#header .nav .ui.menu .lang .line {
  width: 1px;
  height: 21px;
  background-color: #fff;
  margin: 0 10px;
}
#header .nav .ui.menu .lang .language {
  position: relative;
  cursor: pointer;
}
#header .nav .ui.menu .lang .language ul {
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  text-align: left;
  position: absolute;
  font-size: 15px;
  background: #fff;
  top: 100%;
  right: 0;
  width: 120px;
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  -ms-transform: rotate3d(1, 0, 0, -90deg);
  -o-transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
  transition: opacity 0.3s, -webkit-transform 0.5s;
  -moz-transition: transform 0.5s, opacity 0.3s, -moz-transform 0.5s;
  transition: transform 0.5s, opacity 0.3s;
  transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s, -moz-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.3s;
  -moz-transition: -moz-transform 0.5s, opacity 0.3s;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid var(--color);
  display: none \9;
}
#header .nav .ui.menu .lang .language ul li {
  display: block;
  float: none;
  padding: 0 15px;
  line-height: 40px;
  color: black;
  font-size: 12px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
}
#header .nav .ui.menu .lang .language ul li a {
  display: block;
}
#header .nav .ui.menu .lang .language ul li:hover {
  background: #222;
  color: white;
}
#header .nav .ui.menu .lang .language:hover ul {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  -ms-transform: rotate3d(0, 0, 0, 0);
  -o-transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .ui.menu .h-search {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0;
  margin-right: 0;
  cursor: pointer;
  cursor: hand;
}
#header .nav .quote {
  width: 340px;
  height: 130px;
  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;
  color: white;
  background-color: var(--color);
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  cursor: pointer;
}
#header .nav .quote img {
  margin-right: 10px;
}
#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;
}
#header .nav.fixed{
  position: fixed;
  left: 0;
  top: 0px;
  transform: translateY(-130px);
  transition: 0.5s;
  width: 100%;
  z-index: 25;
}
#header .nav.fixed .ui.menu .menu-box{
  z-index: 25;
}
#header.scrollNav .nav.fixed{
  top: 0;
  transform: translateY(0);
}
#banner {
  overflow: hidden;
  position: relative;
}
#banner .share {
  background-color: #1c2727;
  width: 130px;
  position: absolute;
  top: 0% !important;
  left: 0;
  height: 90%;
  padding: 120px 0 0px;
}
#banner .share li {
  width: 60px;
  height: 60px;
  background-color: #183131;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  margin: 13px auto;
  cursor: pointer;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
#banner .share li .fa {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
#banner .share li:hover {
  background-color: var(--color);
}
#banner .share li:hover .fa {
  color: white;
}
#banner .slider {
  margin-left: 130px;
}
#banner .slider .slick-current.slick-active .slide .content {
  -webkit-animation: 1s .3s fadeInUp both;
  -moz-animation: 1s .3s fadeInUp both;
  animation: 1s .3s fadeInUp both;
}
#banner .slider .slide {
  position: relative;
}
#banner .slider .slide .content-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#banner .slider .slide .content {
  position: absolute;
  top: 24%;
  left: 11%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#banner .slider .slide .content h1 {
  font-size: 60px;
  line-height: 80px;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  text-shadow: 0 3px black;
  position: relative;
}
#banner .slider .slide .content h1:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70px;
  height: 3px;
  background-color: #fff;
}
#banner .slider .slide .content p {
  font-size: 18px;
  line-height: 32px;
  color: white;
  margin: 15px 0 28px;
}
#banner .slider .slide .content .more {
  width: 210px;
  height: 60px;
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 300;
  color: white;
  background-color: #153c3c;
  border-radius: 28px;
  border: 4px solid rgba(255, 255, 255, 0.5);
  text-align: center;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translateX(-33px);
  -moz-transform: translateX(-33px);
  -ms-transform: translateX(-33px);
  transform: translateX(-33px);
}
#banner .slider .slide .content .more a {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#banner .slider .slide .content .more:hover {
  border: 4px solid var(--color);
}
#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: #eb623a;
}
#banner:hover .slick-arrow {
  opacity: 1;
}
#banner .slick-prev {
  background: url("../images/banner-btn-l.png") no-repeat center center rgba(0, 0, 0, 0.3);
  left: 15px;
}
#banner .slick-next {
  background: url("../images/banner-btn-r.png") no-repeat center center rgba(0, 0, 0, 0.3);
  right: 15px;
}
#banner ul.slick-dots {
  position: absolute;
  bottom: 8%;
  left: 46%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#banner ul.slick-dots li {
  width: 25px;
  height: 25px;
  display: inline-block;
  margin: 0 10px;
  border-radius: 100%;
  border: 6px solid rgba(0, 0, 0, 0.3);
  background-color: white;
  -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: white;
  background-color: var(--color);
}
#banner .slick-slide .content {
  display: none;
}
#banner .slick-active .content {
  display: block;
}
table {
  margin-bottom: 20px;
  word-break: break-word;
  width: 100% !important;
  height: auto !important;
  display: block;
  overflow: auto;
}
table tbody {
  display: table;
  width: 100% !important;
}
table td,
table th {
  padding: 5px 10px;
  border: 1px solid #666;
  width: auto !important;
  height: auto !important;
}
table tr {
  width: auto !important;
  height: auto !important;
}
table tr:nth-child(even) {
  background: #eee;
}
.wpulike.wpulike-default {
  display: none;
}
.prodet-page .wpulike.wpulike-default,
.newdet-page .wpulike.wpulike-default {
  display: inline-block;
}
.post-views-box {
  position: relative;
  margin-left: 20px;
}
.post-views-box .wp_ulike_btn.wp_ulike_put_image:after {
  background-image: url(../images/fw.png) !important;
  -webkit-filter: none;
  filter: none;
}
.wpulike {
  z-index: 10;
}
.wpulike.post-views-box {
  z-index: 5;
}
#banner .nivo-directionNav a {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.3);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  color: transparent;
  overflow: hidden;
  text-indent: -999em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner .nivo-directionNav a {
  opacity: 0;
}
#banner:hover .nivo-directionNav a {
  opacity: 1;
}
#banner .nivo-directionNav a:hover {
  background-color: #eb623a;
}
#banner .nivo-directionNav a.nivo-prevNav {
  background-image: url(../images/banner-btn-l.png);
  left: 40px;
}
#banner .nivo-directionNav a.nivo-nextNav {
  background-image: url(../images/banner-btn-r.png);
  right: 40px;
}
#banner .theme-default .nivo-controlNav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: auto !important;
}
#banner .theme-default .nivo-controlNav a {
  width: 25px  !important;
  height: 25px !important;
  background: #fff !important;
  border: 7px solid #7d7d7d !important;
  border-radius: 100% !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  margin: 0 8px !important;
}
#banner .theme-default .nivo-controlNav a.active {
  border-color: #eb623a !important;
}
html.mobile {
  overflow: hidden;
}
html.mobile .body-overflow-box {
  position: relative;
  left: 280px;
}
#mobile {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  display: none;
  z-index: 20;
  height: 100%;
}
#mobile:before {
  content: '';
  width: 200%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 100%;
  display: block;
  background: rgba(0, 0, 0, 0.13);
  z-index: -1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#mobile .mobile-logo {
  position: absolute;
  left: 100%;
  width: 100vw;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #111;
  -o-box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  -webkit-box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}
#mobile .mobile-logo img {
  max-height: 30px;
  margin: 0 auto;
  display: inline-block;
  vertical-align: middle;
}
#mobile #menu-on {
  width: 40px;
  height: 40px;
  background: #f5f5f5;
  position: absolute;
  left: 100%;
  top: 0;
  cursor: pointer;
  cursor: hand;
  z-index: 1;
}
#mobile #menu-on i {
  width: 23px;
  height: 2px;
  background: #222;
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
}
#mobile #menu-on i.line1 {
  top: 12px;
}
#mobile #menu-on i.line2 {
  top: 19px;
}
#mobile #menu-on i.line3 {
  top: 26px;
}
#mobile .menu-content {
  width: 100%;
  height: 100%;
  display: block;
  background: #222;
  padding: 40px 10% 60px;
  overflow-y: auto;
  color: white;
}
#mobile .menu-content::-webkit-scrollbar {
  width: 3px;
  border-radius: 1.5px;
}
#mobile .menu-content::-webkit-scrollbar-button {
  display: none;
}
#mobile .menu-content::-webkit-scrollbar-track {
  background-color: #222;
}
#mobile .menu-content::-webkit-scrollbar-thumb {
  background-color: #eee;
}
#mobile .menu-content h3 {
  font-size: 20px;
  color: inherit;
  text-transform: capitalize;
  margin-bottom: 10px;
}
#mobile .menu-content h3 i {
  font-size: 16px;
  position: relative;
  top: -1px;
}
#mobile .menu-content .menu-logo {
  display: block;
}
#mobile .menu-content .menu-logo img {
  margin: 0 auto;
}
#mobile .menu-content .menu-list {
  margin: 40px 0;
}
#mobile .menu-content .menu-list ul li {
  font-size: 15px;
  color: inherit;
  text-transform: uppercase;
  line-height: 20px;
}
#mobile .menu-content .menu-list ul li a {
  padding: 8px 0;
  display: block;
}
#mobile .menu-content .menu-list ul li a:hover {
  color: var(--color);
  text-decoration: underline;
}
#mobile .menu-content .menu-list ul li li a {
  position: relative;
  padding-left: 15px;
  font-size: 13px;
  line-height: 18px;
}
#mobile .menu-content .menu-list ul li li a:after {
  content: '';
  width: 6px;
  height: 1px;
  background: white;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#mobile .menu-content .menu-list ul li li li a {
  padding-left: 25px;
}
#mobile .menu-content .menu-list ul li li li a:after {
  width: 12px;
}
#mobile .menu-content .mob-search form {
  position: relative;
}
#mobile .menu-content .mob-search form input {
  width: 100%;
  height: 45px;
  line-height: 45px;
  border-radius: 5px;
  border: none;
  padding: 0 15px;
  font-size: 14px;
  color: black;
}
#mobile .menu-content .mob-search form input[type="submit"] {
  width: 45px;
  height: 45px;
  background: url("../images/icon-search-white.png") no-repeat center center #222;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0;
}
#mobile .menu-content .mob-yuy {
  margin: 40px 0;
}
#mobile .menu-content .mob-yuy ul li {
  margin-bottom: 10px;
  color: inherit;
  font-size: 14px;
}
#mobile .menu-content .mob-yuy ul li img {
  max-width: 40px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
#mobile .menu-content .mob-share ul li {
  width: 30px;
  height: 30px;
  border-radius: 3px;
  background: #333;
  display: inline-block;
  text-align: center;
  line-height: 30px;
  color: white;
  font-size: 14px;
  margin-right: 3px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#mobile .menu-content .mob-share ul li:hover {
  background: #eb623a;
}
#mobile .menu-content #menu-off {
  margin-top: 40px;
  cursor: pointer;
  cursor: hand;
}
#mobile.active {
  left: 0;
}
#mobile.active:before {
  right: 0;
}
#mobile.active #menu-on i.line1 {
  -webkit-transform: translateX(-50%) rotateZ(45deg);
  -moz-transform: translateX(-50%) rotateZ(45deg);
  -ms-transform: translateX(-50%) rotateZ(45deg);
  transform: translateX(-50%) rotateZ(45deg);
  top: 12px;
  margin-left: 3px;
}
#mobile.active #menu-on i.line2 {
  opacity: 0;
}
#mobile.active #menu-on i.line3 {
  -webkit-transform: translateX(-50%) rotateZ(-45deg);
  -moz-transform: translateX(-50%) rotateZ(-45deg);
  -ms-transform: translateX(-50%) rotateZ(-45deg);
  transform: translateX(-50%) rotateZ(-45deg);
  top: 28px;
  margin-left: 3px;
}
#mobile.white .mobile-logo {
  -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background: white;
}
#mobile.white .menu-content {
  background: white;
  color: black;
}
#mobile.white .menu-content .menu-list ul li li a:after {
  background: black;
}
#mobile.white .menu-content .mob-search form input {
  border: 1px solid black;
}
#mobile.white .menu-content .mob-search form input[type="submit"] {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
@media screen and (max-width: 1000px) {
  #banner,
  .inner-banner {
    margin-top: 40px;
  }
}
#spotlight.show {
  display: inline-block;
  background: rgba(0, 0, 0, 0.3) !important;
}
#spotlight .scene img {
  border: 10px solid white !important;
  border-radius: 10px;
}
#spotlight .header {
  background: black !important;
}
#index-body .i-tag {
  font-size: 18px;
  line-height: 32px;
  font-weight: 400;
  color: #236e6e;
  text-transform: capitalize;
  position: relative;
  padding-bottom: 6px;
  display: inline-block;
}
#index-body .i-tag:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 86px;
  height: 5px;
  border-left: 30px solid var(--color);
  border-top: 1px solid var(--color);
  border-bottom: 1px solid var(--color);
}
#index-body .i-title {
  font-weight: 600;
  font-size: 48px;
  line-height: 60px;
  text-transform: uppercase;
}
#index-body .i-about {
  background-image: url(../images/about-left-bg.png), url(../images/about-right-bg.png);
  background-repeat: no-repeat no-repeat;
  background-position: 30px 75%, right 200px top 40px;
  padding: 130px 0 80px;
}
#index-body .i-about .top {
  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;
}
#index-body .i-about .top .left {
  width: 50%;
  padding-right: 30px;
}
#index-body .i-about .top .left .i-title {
  margin-top: 20px;
}
#index-body .i-about .top .left .content {
  font-size: 18px;
  line-height: 30px;
  margin: 20px 0 30px;
}
#index-body .i-about .top .left .more {
  width: 180px;
  height: 60px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  text-transform: capitalize;
  color: white;
  font-size: 18px;
  font-weight: 300;
  background-color: var(--color);
  border-radius: 28px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
}
#index-body .i-about .top .left .more a {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  width: 100%;
  height: 100%;
}
#index-body .i-about .top .left .more:hover {
  border: 3px solid black;
}
#index-body .i-about .top .left ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
}
#index-body .i-about .top .left ul li {
  margin-right: 75px;
}
#index-body .i-about .top .left ul li div {
  font-size: 60px;
  line-height: 32px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
#index-body .i-about .top .left ul li p {
  font-size: 17px;
  line-height: 32px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  text-align: center;
  margin-top: 5px;
}
#index-body .i-about .top .left ul li:last-child {
  margin-right: 0;
}
#index-body .i-about .top .left ul li:hover {
  color: #1b787a;
}
#index-body .i-about .top .right {
  width: 42%;
  position: relative;
}
@keyframes ks {
    from {
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      -ms-transform: scale(1);
      transform: scale(1);
      opacity: 0;
    }
    10% {
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      -ms-transform: scale(1);
      transform: scale(1);
      opacity: 1;
    }
    80% {
      -webkit-transform: scale(1.5);
      -moz-transform: scale(1.5);
      -ms-transform: scale(1.5);
      transform: scale(1.5);
      opacity: 0.3;
    }
    to {
      -webkit-transform: scale(1.5);
      -moz-transform: scale(1.5);
      -ms-transform: scale(1.5);
      transform: scale(1.5);
      opacity: 0;
    }
  }
#index-body .i-about .top .right .play{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 70px;
  height: 70px;
  border-radius: 100%;
  color: var(--color);
  font-size: 35px;
  line-height: 70px;
  text-align: center;
  background: white;
  border: 1px solid white;
}
#index-body .i-about .top .right .play .fa{
  transform: translateX(3px);
}
#index-body .i-about .top .right .play:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    background: rgba(255,255,255,.5);
    opacity: 0;
    width: 100%;
    height: 100%;
    border-radius: 100% !important;
    border-radius: inherit;
    -webkit-animation: ks 3s infinite;
    -moz-animation: ks 3s infinite;
    animation: ks 3s infinite;
    display: block;
    z-index: -1;
}
#index-body .i-about .top .right .play:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 100% !important;
    transform: translate(-50%,-50%);
    background: rgba(255,255,255,.5);
    opacity: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    animation: ks 3s infinite;
    display: block;
    z-index: -1;
    animation-delay: .4s;
}
#index-body .i-about .top .right .flower {
  position: absolute;
  right: -98px;
  top: -100px;
  z-index: -1;
}
#index-body .i-about .top .right::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #8badad;
  -webkit-transform: translate(-30px, -30px);
  -moz-transform: translate(-30px, -30px);
  -ms-transform: translate(-30px, -30px);
  transform: translate(-30px, -30px);
  z-index: -1;
}
#index-body .i-about .bottom {
  margin-top: 100px;
}
#index-body .i-about .bottom 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;
}
#index-body .i-about .bottom 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;
  width: 33%;
}
#index-body .i-about .bottom ul li .left {
  width: 100px;
  height: 100px;
  background-color: #f3f3f3;
  border-radius: 50%;
  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-right: 20px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
#index-body .i-about .bottom ul li .left img {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
#index-body .i-about .bottom ul li .right {
  padding-left: 20px;
  max-width: 70%;
}
#index-body .i-about .bottom ul li .right .p1 {
  font-size: 22px;
  line-height: 28px;
  text-transform: uppercase;
  font-weight: 600;
  color: #153c3c;
}
#index-body .i-about .bottom ul li .right .p2 {
  font-size: 16px;
  line-height: 25px;
  color: #153c3c;
  padding-top: 20px;
}
#index-body .i-about .bottom ul li:hover .left {
  background-color: #1b787a;
}
#index-body .i-about .bottom ul li:hover .left img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
#index-body .i-quality {
  background-color: #f5f5f5;
  overflow: hidden;
  position: relative;
  padding: 120px 0 160px;
  background-image: url(../images/we-do-bg.png);
  background-repeat: no-repeat;
  background-position: left center;
}
#index-body .i-quality .ui.container {
  position: unset;
}
#index-body .i-quality .left {
  max-width: 475px;
}
#index-body .i-quality .left .text {
  font-size: 18px;
  line-height: 30px;
  margin: 25px 0;
}
#index-body .i-quality .left .more {
  width: 180px;
  height: 60px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  text-transform: capitalize;
  color: white;
  font-size: 18px;
  font-weight: 300;
  background-color: var(--color);
  border-radius: 28px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
}
#index-body .i-quality .left .more a {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  width: 100%;
  height: 100%;
}
#index-body .i-quality .left .more:hover {
  border: 3px solid rgba(0, 0, 0, 0.3);
}
#index-body .i-quality .right {
  position: absolute;
  top: 10%;
  right: 0;
  max-width: 1175px;
}
#index-body .i-quality .right .wrap {
  margin: -13px 0;
}
#index-body .i-quality .right .wrap .slick-list.draggable {
  padding-right: 337px;
}
#index-body .i-quality .right .wrap .column {
  padding: 13px;
  position: relative;
}
#index-body .i-quality .right .wrap .column .item {
  position: relative;
}
#index-body .i-quality .right .wrap .column .item img {
  width: 100%;
}
#index-body .i-quality .right .wrap .column .item .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(22, 111, 113, 0.85);
  padding: 75px 0 0 25px;
  opacity: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#index-body .i-quality .right .wrap .column .item .content .num {
  font-size: 185px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
  font-weight: 500;
  line-height: 200px;
}
#index-body .i-quality .right .wrap .column .item .content .title {
  font-size: 24px;
  line-height: 30px;
  color: white;
  font-weight: 500;
}
#index-body .i-quality .right .wrap .column .item .content p {
  font-size: 18px;
  line-height: 27px;
  color: rgba(255, 255, 255, 0.7);
  margin: 15px 0 30px;
}
#index-body .i-quality .right .wrap .column .item .content .more {
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  color: white;
  text-transform: capitalize;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#index-body .i-quality .right .wrap .column .item .content .more:hover {
  border-bottom: 1px solid white;
}
#index-body .i-quality .right .wrap .column .item:hover .content {
  opacity: 1;
}
#index-body .i-product {
  padding-top: 70px;
}
#index-body .i-product .top {
  text-align: center;
}
#index-body .i-product .top .i-tag:after {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#index-body .i-product .top .i-title {
  margin: 20px 0;
}
#index-body .i-product .top .text {
  font-size: 18px;
  line-height: 30px;
  color: #666666;
  max-width: 1010px;
  margin: 0 auto 40px;
}
#index-body .i-product .bottom .wrap {
  margin: -9px 0;
}
#index-body .i-product .bottom .wrap .column {
  padding: 9px;
}
#index-body .i-product .bottom .wrap .column .item {
  position: relative;
}
#index-body .i-product .bottom .wrap .column .item .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: white;
  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;
  text-transform: capitalize;
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  padding: 0 40px;
  background-color: rgba(43, 117, 119, 0.9);
  opacity: 0;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#index-body .i-product .bottom .wrap .column .item:hover .content {
  opacity: 1;
}
#index-body .i-why {
  margin-top: 120px;
  padding-top: 40px;
  background: -webkit-gradient(linear, left top, right top, from(#f5f5f5), color-stop(0%, #f5f5f5), color-stop(65%, #fff), to(#fff));
  background: -webkit-linear-gradient(left, #f5f5f5 0%, #f5f5f5 0% 65%, #fff 65%, #fff 100%);
  background: -moz-linear-gradient(left, #f5f5f5 0%, #f5f5f5 0% 65%, #fff 65%, #fff 100%);
  background: linear-gradient(to right, #f5f5f5 0%, #f5f5f5 0% 65%, #fff 65%, #fff 100%);
  background-size: 100% 50%;
  background-repeat: no-repeat;
}
#index-body .i-why .top {
  max-width: 70%;
  margin-bottom: 50px;
}
#index-body .i-why .top .i-title {
  margin: 15px 0 5px;
}
#index-body .i-why .top .text {
  font-size: 18px;
  line-height: 30px;
  color: #666666;
}
#index-body .i-why .center .wrap {
  margin: -28px 0;
}
#index-body .i-why .center .wrap .slick-list.draggable {
  padding-left: 30%;
  padding-right: 30%;
  padding-bottom: 120px;
}
#index-body .i-why .center .wrap .slick-slide.slick-current.slick-active .content {
  opacity: 1;
  -webkit-animation: 1s .3s fadeInUp both;
  -moz-animation: 1s .3s fadeInUp both;
  animation: 1s .3s fadeInUp both;
}
#index-body .i-why .center .wrap .column {
  padding: 28px;
}
#index-body .i-why .center .wrap .column .item {
  position: relative;
}
#index-body .i-why .center .wrap .column .item .content {
  position: absolute;
  left: 5%;
  bottom: -100px;
  width: 90%;
  height: 130px;
  /*-webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);*/
  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: space-evenly;
  -webkit-justify-content: space-evenly;
  -moz-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.1);
  margin: auto;
  opacity: 0;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  /*animation: 1s .3s fadeInUp both;*/
}
#index-body .i-why .center .wrap .column .item .content .left ul li:nth-child(1) {
  color: var(--color);
  font-weight: 300;
  font-size: 20px;
  line-height: 37px;
  text-transform: capitalize;
}
#index-body .i-why .center .wrap .column .item .content .left ul li:nth-child(1) span {
  display: inline-block;
  width: 13px;
  height: 13px;
  background-color: var(--color);
}
#index-body .i-why .center .wrap .column .item .content .left ul li:nth-child(2) {
  font-size: 24px;
  line-height: 37px;
  text-transform: uppercase;
  font-weight: 500;
}
#index-body .i-why .center .wrap .column .item .content .right {
  width: 170px;
  height: 60px;
  font-size: 16px;
  color: white;
  background-color: var(--color);
  border: 3px solid rgba(255, 255, 255, 0.6);
  border-radius: 28px;
  text-transform: capitalize;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#index-body .i-why .center .wrap .column .item .content .right a {
  width: 100%;
  height: 100%;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#index-body .i-why .center .wrap .column .item .content .right:hover {
  border: 3px solid black;
}
#index-body .i-why .bottom {
  margin-top: 70px;
}
#index-body .i-why .bottom ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin: -15px;
}
#index-body .i-why .bottom ul li {
  padding: 15px;
}
#index-body .i-why .bottom ul li .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: 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;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.12);
  padding: 50px 20px 40px;
  position: relative;
  height: 100%;
}
#index-body .i-why .bottom ul li .item .icon {
  width: 105px;
  height: 105px;
  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;
  background-color: #f6f6f6;
  border-radius: 50%;
}
#index-body .i-why .bottom ul li .item h3 {
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  color: var(--color);
  text-transform: capitalize;
  margin: 35px 0 15px;
}
#index-body .i-why .bottom ul li .item p {
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}
#index-body .i-why .bottom ul li .item .more {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  position: relative;
  margin-top: 15px;
}
#index-body .i-why .bottom ul li .item .content {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#index-body .i-why .bottom ul li .item .content img {
  width: 100%;
  height: 100%;
}
#index-body .i-why .bottom ul .column:hover .icon {
  background-color: #fff;
  z-index: 1;
}
#index-body .i-why .bottom ul .column:hover h3,
#index-body .i-why .bottom ul .column:hover p {
  color: white;
  z-index: 1;
}
#index-body .i-why .bottom ul .column:hover .more {
  z-index: 1;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
#index-body .i-why .bottom ul .column:hover .content {
  opacity: 1;
}
#index-body .i-form {
  position: relative;
  margin: 80px 0 70px;
  background-image: url(../images/map-bg.png);
  background-repeat: no-repeat;
  background-position: right center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
#index-body .i-form .clean {
  clear: both;
}
#index-body .i-form .left {
  position: relative;
}
#index-body .i-form .left .content {
  position: absolute;
  right: 70px;
  bottom: 20px;
}
@-webkit-keyframes identifier {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes identifier {
  0% {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes identifier {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
#index-body .i-form .left .content:after {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  bottom: -10px;
  left: -10px;
  border-radius: 100%;
  border: 1px dashed white;
  -webkit-animation: identifier 25s infinite linear;
  -moz-animation: identifier 25s infinite linear;
  animation: identifier 25s infinite linear;
}
#index-body .i-form .right {
  width: 50%;
  float: right;
  padding-left: 55px;
  padding-right: 270px;
}
#index-body .i-form .right .i-title {
  margin-top: 10px;
}
#index-body .i-form .right form {
  margin-top: 40px;
}
#index-body .i-form .right form div {
  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;
  margin-bottom: 15px;
}
#index-body .i-form .right form .inp {
  width: 50%;
  margin-right: 25px;
  background-color: #f6f6f6;
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  height: 65px;
  padding-left: 20px;
  font-size: 18px;
}
#index-body .i-form .right form .inp:last-child {
  margin-right: 0;
}
#index-body .i-form .right form textarea {
  width: 100%;
  border-radius: 10px;
  background-color: #f6f6f6;
  border: 1px solid #dcdcdc;
  font-size: 18px;
  padding-left: 20px;
}
#index-body .i-form .right form input[type="submit"] {
  width: 170px;
  height: 60px;
  font-size: 16px;
  font-weight: 300;
  border-radius: 28px;
  border: 3px solid rgba(255, 255, 255, 0.6);
  background-color: #153c3c;
  text-transform: uppercase;
  color: white;
  margin-top: 20px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#index-body .i-form .right form input[type="submit"]:hover {
  background-color: #135758;
}
#index-body .i-news .top {
  margin-bottom: 45px;
}
#index-body .i-news .top .i-tag {
  text-align: center;
  margin: auto;
  display: block;
}
#index-body .i-news .top .i-tag::after {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#index-body .i-news .top .i-title {
  text-align: center;
}
#index-body .i-news .wrap {
  margin: -15px 0;
}
#index-body .i-news .wrap .column {
  padding: 15px;
}
#index-body .i-news .wrap .column .item {
  background-color: #f9f9f9;
}
#index-body .i-news .wrap .column .item .img {
  overflow: hidden;
}
#index-body .i-news .wrap .column .item .img img {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#index-body .i-news .wrap .column .item .content {
  padding: 25px 25px 30px;
}
#index-body .i-news .wrap .column .item .content .title {
  font-size: 16px;
  line-height: 32px;
  font-weight: 600;
  text-transform: capitalize;
}
#index-body .i-news .wrap .column .item .content .riqi {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-style: italic;
  font-size: 15px;
  line-height: 25px;
  color: rgba(0, 0, 0, 0.7);
  margin: 10px 0;
}
#index-body .i-news .wrap .column .item .content .riqi img {
  margin-right: 10px;
}
#index-body .i-news .wrap .column .item .content .text {
  font-size: 16px;
  line-height: 25px;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;

}
#index-body .i-news .wrap .column .item .content .more {
  margin-top: 15px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#index-body .i-news .wrap .column .item .content .more:hover {
  -webkit-transform: translateX(10px);
  -moz-transform: translateX(10px);
  -ms-transform: translateX(10px);
  transform: translateX(10px);
}
#index-body .i-news .wrap .column .item:hover .img img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
#index-body .i-news .wrap .column .item:hover .title {
  color: var(--color);
}
#footer {
  margin-top: 90px;
  background-image: url(../images/footer-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}
#footer .top {
  padding: 20px 0;
}
#footer .top .i-tag {
  font-size: 18px;
  line-height: 32px;
  text-align: center;
  text-transform: capitalize;
  color: #fff;
}
#footer .top .i-title {
  font-size: 48px;
  line-height: 60px;
  font-weight: 500;
  color: white;
  text-align: center;
  margin: 15px 0 35px;
}
#footer .top .more {
  width: 200px;
  height: 55px;
  color: white;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 300;
  background-color: #124242;
  border: 4px solid #636a68;
  border-radius: 24px;
  margin: auto;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  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;
}
#footer .top .more a {
  width: 100%;
  height: 100%;
  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;
}
#footer .top .more:hover {
  background-color: #176c54;
}
#footer .bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
#footer .bottom .box {
  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-left: 15px;
  padding-right: 15px;
}
#footer .bottom .p {
  font-size: 22px;
  line-height: 24px;
  font-weight: 500;
  color: white;
  text-transform: capitalize;
  margin-bottom: 15px;
}
#footer .bottom .left {
  max-width: 420px;
}
#footer .bottom .left ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.75);
  margin: 10px 0;
}
#footer .bottom .left ul li div {
  margin-right: 20px;
}
#footer .bottom .left ul li span{
  max-width: 360px;
}
#footer .bottom .left ul li div img {
  margin: auto;
}
#footer .bottom .center {
  max-width: 690px;
  padding-left: 20px;
}
#footer .bottom .center 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;
  justify-content: space-between;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
}
#footer .bottom .center ul li {
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.75);
  text-transform: capitalize;
  margin: 7px 0;
}
#footer .bottom .center ul li:hover {
  color: white;
}
/*#footer .bottom .center .tops ul li {
  width: 16%;
}*/
#footer .bottom .center .bottoms {
  margin-top: 30px;
}
#footer .bottom .center .bottoms ul li {
  width: 25%;
}
#footer .bottom .right #ewm {
  width: 155px;
  height: 155px;
  border: 7px solid white;
  margin: auto;
}
#footer .bottom .right ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 50px;
}
#footer .bottom .right ul li {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #2d4c58;
  color: white;
  margin: 0 5px;
  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;
  font-size: 20px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#footer .bottom .right ul li:hover {
  background-color: #0c2c2d;
}
#footer .footer {
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.5);
  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;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 15px 20px 15px;
}
#footer .footer .img {
  width: 150px;
  -webkit-transform: translateY(3px);
  -moz-transform: translateY(3px);
  -ms-transform: translateY(3px);
  transform: translateY(3px);
  margin-left: 10px;
  margin-right: 10px;
}
#footer .footer .img img {
  -webkit-filter: brightness(0.7);
  filter: brightness(0.7);
}
.f-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 1px solid white;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  color: white;
  background-color: #0c2c2d;
  font-size: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  bottom: 90px;
  right: 100px;
  cursor: pointer;
  opacity: 0;
}
.inquiry{
  bottom: 20px;
  opacity: 1;
}
.f-btn:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
#pups_from i.close:hover {
  background: var(--color);
}
@media screen and (max-width: 1750px){
  #header .nav .ui.menu .menu-box ul.menu > li{
    margin: 0 18px;
  }
  #index-body .i-quality .right{
    max-width: 1000px;
  }
}
@media screen and (max-width: 1600px) {
  #index-body .i-quality .right .wrap .slick-list.draggable {
    padding-right: 30px;
  }
  #index-body .i-quality .right {
    max-width: 900px;
  }
  #index-body .i-form .right {
    padding-right: 20px;
  }
  #index-body .i-form .left .content {
    bottom: 45px;
  }
  #header .nav .quote {
    width: 270px;
    height: 100px;
  }
  #header .nav .ui.menu .logo {
    width: 200px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li {
    margin: 0 15px;
  }
}
@media screen and (max-width: 1400px) {
  #header .nav {
    padding-left: 30px;
  }
  #header .nav .quote {
    width: 220px;
    font-size: 16px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li {
    margin: 0 10px;
  }
  #banner .share {
    padding: 70px 0 80px;
    width: 100px;
  }
  #banner .slider {
    margin-left: 100px;
  }
  #banner .slider .slide .content h1 {
    font-size: 45px;
    line-height: 50px;
  }
  #banner .slider .slide .content .more {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  #index-body .i-title {
    font-size: 40px;
  }
  #index-body .i-about {
    background-position: 30px 75%, right 0px top 0px;
  }
  #index-body .i-about .top .left ul li {
    margin-right: 40px;
  }
  #index-body .i-about .bottom ul li .left {
    margin-right: 0;
  }
  #index-body .i-quality .right {
    max-width: 720px;
  }
  #index-body .i-quality .right .wrap .slick-list.draggable {
    padding-right: 270px;
  }
  #index-body .i-why .center .wrap .column .item .content .right {
    width: 120px;
    height: 40px;
  }
  #index-body .i-why .center .wrap .column .item .content .left ul li:nth-child(2) {
    font-size: 20px;
  }
  #index-body .i-form .left {
    width: 60%;
  }
  #index-body .i-form .left > img {
    height: 100%;
  }
  #index-body .i-form .right {
    padding-left: 20px;
  }
  #index-body .i-form .left .content {
    width: 130px;
  }
  #index-body .i-why .center .wrap .slick-list.draggable{
    padding-left: 25%;
    padding-right: 25%;
  }
  #index-body .i-news .wrap .column .item .content .title{
    height: 55px;
  }
}
@media screen and (max-width: 1200px) {
  #banner .share {
    top: 0%;
    width: 80px;
  }
  #header .nav .quote {
    display: none;
  }
  #header .nav {
    padding: 20px 15px;
  }
  #banner .share li {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
  #banner .slider {
    margin-left: 80px;
  }
  #banner .slider .slide .content h1 {
    font-size: 35px;
    line-height: 45px;
    padding-bottom: 10px;
  }
  #banner .slider .slide .content {
    top: 27%;
  }
  #banner .slider .slide .content .more {
    width: 160px;
    height: 45px;
    font-size: 16px;
  }
  #index-body .i-title {
    font-size: 34px;
    line-height: 48px;
  }
  #index-body .i-about {
    background-size: auto,50%;
  }
  #index-body .i-about {
    background-position: 30px 70%, right -50px top 110px;
  }
  #index-body .i-about .top {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  #index-body .i-about .top .left ul li div {
    font-size: 50px;
  }
  #index-body .i-about .bottom ul li .left {
    width: 80px;
    height: 80px;
  }
  #index-body .i-about .bottom ul li .right .p1 {
    font-size: 18px;
  }
  #index-body .i-quality .left {
    max-width: 390px;
  }
  #index-body .i-quality .right {
    max-width: 580px;
  }
  #index-body .i-quality .right .wrap .slick-list.draggable {
    padding-right: 170px;
  }
  #index-body .i-quality .right {
    top: 6%;
  }
  #index-body .i-why .center .wrap .slick-list.draggable {
    padding-left: 20%;
    padding-right: 20%;
    padding-bottom: 120px;
  }
  #index-body .i-why .bottom ul li .item p {
    font-size: 14px;
  }
  #index-body .i-why .bottom ul li .item {
    padding: 25px 15px 25px;
  }
  #index-body .i-form .right form {
    margin-top: 15px;
  }
  #index-body .i-form .right form input[type="submit"] {
    height: 47px;
  }
  #index-body .i-form .left .content {
    width: 100px;
  }
  #index-body .i-form .left {
    width: 50%;
  }
  #footer .bottom .right #ewm {
    width: 100px;
    height: 100px;
  }
  #footer .top .i-title {
    font-size: 34px;
    line-height: 38px;
  }
  #footer .bottom .right ul li {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  #footer .bottom .center {
    max-width: 500px;
  }
  #footer .bottom .center .tops ul li {
    width: 33%;
  }
  #footer .bottom .center .bottoms ul li {
    width: 50%;
  }
}
@media screen and (max-width: 1000px) {
  #header {
    display: none;
  }
  #mobile {
    display: block;
  }
  #index-body .i-form .right form textarea {
    font-size: 14px;
  }
  #banner .share {
    display: none;
  }
  #banner .slider {
    margin-left: 0;
  }
  #banner .slider .slide .content h1 {
    font-size: 27px;
    line-height: 36px;
  }
  #banner .slider .slide .content p {
    font-size: 14px;
    line-height: 26px;
    margin: 10px 0 10px;
  }
  #banner {
    background-color: transparent;
  }
  #banner .slider .slide .content .more {
    width: 140px;
    height: 40px;
    font-size: 14px;
  }
  #banner ul.slick-dots {
    bottom: 4%;
    left: 50%;
  }
  #banner ul.slick-dots li {
    width: 13px;
    height: 13px;
    border: 3px solid rgba(0, 0, 0, 0.3);
  }
  #index-body .i-about .top .right {
    display: none;
  }
  #index-body .i-about .top .left {
    width: 100%;
  }
  #index-body .i-title {
    font-size: 26px;
    line-height: 26px;
  }
  #index-body .i-tag {
    font-size: 14px;
  }
  #index-body .i-about .top .left .content {
    font-size: 14px;
    line-height: 28px;
  }
  #index-body .i-about .top .left .more {
    width: 130px;
    height: 45px;
    font-size: 14px;
  }
  #index-body .i-about .top .left ul li {
    width: 33%;
    text-align: center;
  }
  #index-body .i-about .top .left ul li p {
    font-size: 16px;
  }
  #index-body .i-about .bottom ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #index-body .i-about .bottom ul li {
    width: 50%;
  }
  #index-body .i-quality .left .text {
    font-size: 16px;
    line-height: 28px;
    margin: 25px 0;
  }
  #index-body .i-quality .left {
    max-width: 50%;
    padding-right: 15px;
  }
  #index-body .i-quality .right {
    max-width: 50%;
  }
  #index-body .i-quality .right .wrap .slick-list.draggable {
    padding-right: 15px;
  }
  #index-body .i-quality .right .wrap .column .item .content .num {
    font-size: 130px;
    line-height: 130px;
  }
  #index-body .i-quality .right .wrap .column .item .content .title {
    font-size: 18px;
  }
  #index-body .i-quality .right .wrap .column .item .content p {
    font-size: 14px;
    padding-right: 15px;
  }
  #index-body .i-quality .left .more {
    width: 120px;
    height: 40px;
    font-size: 14px;
  }
  #index-body .i-product .top .text {
    font-size: 14px;
  }
  #index-body .i-why .top .text {
    font-size: 14px;
    line-height: 28px;
    margin-top: 15px;
    padding-right: 40px;
  }
  #index-body .i-about {
    background-position: 5px 50%, right -50px top 110px;
    padding: 40px 0 60px;
  }
  #index-body .i-why .center .wrap .column .item .content {
    height: 100px;
    bottom: -70px;
  }
  #index-body .i-why {
    background-size: 100% 35%;
  }
  #index-body .i-why .center .wrap .column .item .content .left ul li:nth-child(1) {
    font-size: 16px;
    line-height: 28px;
  }
  #index-body .i-why .center .wrap .column .item .content .left ul li:nth-child(2) {
    font-size: 16px;
    line-height: 26px;
  }
  #index-body .i-why .bottom ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #index-body .i-why .bottom ul li {
    width: 50%;
  }
  #index-body .i-form .right form div {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 0;
  }
  #index-body .i-form .right form .inp {
    width: 100%;
    height: 35px;
    font-size: 14px;
    margin-right: 0;
    margin-bottom: 10px;
  }
  #index-body .i-form .right form input[type="submit"] {
    width: 130px;
    height: 40px;
    font-size: 14px;
  }
  #index-body .i-form .left .content {
    width: 60px;
    right: 30px;
    bottom: 30px;
  }
  #footer .top .i-tag {
    font-size: 16px;
  }
  #footer .top .i-title {
    font-size: 22px;
    line-height: 30px;
  }
  #footer .top .more {
    width: 175px;
    height: 40px;
  }
  #footer .bottom .box {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #footer .bottom .p {
    font-size: 18px;
    margin-bottom: 10px;
  }
  #footer .bottom .center {
    margin-left: 0;
    margin-bottom: 10px;
  }
  #index-body .i-news .top .i-title {
    margin-top: 15px;
  }
  #index-body .i-product .bottom .wrap{
    margin: 0;
  }
  #index-body .i-why .bottom ul{
    margin: -15px 0;
  }
  #index-body .i-news .wrap{
    margin: -15px 0;
  }
  #index-body .i-why .center .wrap .slick-list.draggable{
    padding-left: 15%;
    padding-right: 15%;
  }
  #footer .bottom .center{
    display: none;
  }
}
@media screen and (max-width: 700px) {
  #banner .slider .slide .content h1 {
    font-size: 18px;
    line-height: 24px;
  }
  #index-body .i-about .top .left ul{
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #footer .bottom .right{
    display: none;
  }
  #banner .slider .slide .content h1:after {
    height: 1px;
  }
  #banner .slider .slide .content p br {
    display: none;
  }
  #banner .slider .slide .content p {
    line-height: 20px;
  }
  #banner .slider .slide .content {
    top: 23%;
  }
  #banner .slider .slide .content .more {
    width: 116px;
    height: 33px;
    font-size: 12px;
    border: 2px solid rgba(255, 255, 255, 0.5);
  }
  #index-body .i-title {
    font-size: 20px;
  }
  #index-body .i-about .top .left .more {
    width: 110px;
    height: 35px;
    font-size: 12px;
  }
  #index-body .i-about .top .left ul li div {
    font-size: 30px;
  }
  #index-body .i-about .top .left ul li p {
    font-size: 14px;
    line-height: 28px;
  }
  #index-body .i-about .bottom ul li {
    width: 100%;
    margin-bottom: 20px;
  }
  #index-body .i-quality .left {
    max-width: 100%;
    padding-right: 0;
  }
  #index-body .i-about .bottom {
    margin-top: 35px;
  }
  #index-body .i-quality .right {
    position: unset;
    margin-top: 20px;
  }
  #index-body .i-quality .right .wrap .slick-list.draggable {
    padding-right: 0;
  }
  #index-body .i-quality {
    display: none;
  }
  #index-body .i-product {
    padding-top: 20px;
  }
  #index-body .i-product .bottom .wrap .column .item .content {
    font-size: 14px;
    padding: 0 15px;
  }
  #index-body .i-why .center .wrap .slick-list.draggable {
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: 70px;
  }
  #index-body .i-why {
    background: -webkit-gradient(linear, left top, right top, from(#f5f5f5), color-stop(0%, #f5f5f5), color-stop(75%, #fff), to(#fff));
    background: -webkit-linear-gradient(left, #f5f5f5 0%, #f5f5f5 0% 75%, #fff 75%, #fff 100%);
    background: -moz-linear-gradient(left, #f5f5f5 0%, #f5f5f5 0% 75%, #fff 75%, #fff 100%);
    background: linear-gradient(to right, #f5f5f5 0%, #f5f5f5 0% 75%, #fff 75%, #fff 100%);
  }
  #index-body .i-why .bottom ul li .item .icon {
    width: 90px;
    height: 90px;
  }
  #index-body .i-form .left {
    display: none;
  }
  #index-body .i-form .right {
    width: 100%;
  }
  .f-btn {
    right: 30px;
    bottom: 100px;
  }
  #footer .bottom .right #ewm {
    border: 3px solid white;
  }
  #index-body .i-news .wrap .column .item .img img {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  #banner .slider .slide .content p {
    display: none;
  }
  #banner .slider .slide .content .more {
    width: 95px;
    height: 30px;
    margin-top: 15px;
  }
  #banner ul.slick-dots li {
    margin: 0 5px;
  }
  #index-body .i-title {
    font-size: 18px;
  }
  #index-body .i-about .top .left ul{
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  #index-body .i-about .top .left ul li {
    margin-right: 0;
    width: auto;
  }
  #index-body .i-about .bottom ul li .right .p2 {
    font-size: 14px;
    line-height: 22px;
  }
  #index-body .i-why .top {
    max-width: 100%;
  }
  #index-body .i-why {
    background: -webkit-gradient(linear, left top, right top, from(#f5f5f5));
    background: -webkit-linear-gradient(left, #f5f5f5);
    background: -moz-linear-gradient(left, #f5f5f5);
    background: linear-gradient(to right, #f5f5f5);
    margin-top: 20px;
  }
  #index-body .i-why .center .wrap .column .item .content {
    width: 100%;
    opacity: 1;
    bottom: -100px;
  }
  #index-body .i-why .center .wrap .column .item .content .right {
    width: 100px;
    height: 30px;
    font-size: 12px;
  }
  #index-body .i-why .center .wrap .column .item .content .left ul li:nth-child(2),
  #index-body .i-why .center .wrap .column .item .content .left ul li:nth-child(1) {
    font-size: 14px;
  }
  #index-body .i-why .bottom ul li {
    width: 100%;
  }
  #index-body .i-why .bottom ul li .item h3 {
    font-size: 17px;
    line-height: 24px;
    margin: 20px 0 15px;
  }
  #index-body .i-product .bottom .wrap .column .item > img {
    width: 100%;
  }
  #footer .top .i-tag {
    font-size: 14px;
    line-height: 28px;
  }
  #footer .top .i-title {
    font-size: 17px;
    line-height: 28px;
  }
  #footer .bottom .left ul li {
    font-size: 14px;
  }
  #footer .bottom .center {
    padding-left: 0;
  }
  #footer .bottom .right ul {
    margin-top: 25px;
  }
  #index-body .i-why .center .wrap .slick-list.draggable{
    padding-left: 0;
    padding-right: 0;
  }
  #index-body .i-why .center .wrap .column .item .content{
    left: 0;
  }
  #index-body .i-why .center .wrap .column .item .content{
    flex-wrap: wrap;
    padding: 0 10px 10px;
  }
  #index-body .i-why .center .wrap .column .item .content .left{
    width: 100%;
  }
}



/*inner*/
.inner-banner {
  position: relative;
}
.inner-banner img {
  width: 100%;
  max-height: 330px;
  object-fit: cover;
}
.inner-banner .mbx-box {
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.inner-banner .mbx-box .mbx {
  font-size: 16px;
  line-height: 30px;
  color: #ffffff;
}
.inner-banner .mbx-box .mbx a {
  border-bottom: 1px solid transparent;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
  line-height: 1;
}
.inner-banner .mbx-box .mbx a:hover {
  border-bottom: 1px solid #fff;
}
.inner-banner .mbx-box h2 {
  margin-top: 1rem;
  font-size: 36px;
  line-height: 70px;
  color: #ffffff;
  font-family: 'NDM';
  text-transform: uppercase;
  display: inline-block;
  text-shadow: 2px 3px 5px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  text-shadow: 0 3px 3px rgba(0, 0, 0, 0.8);
  z-index: 5;
}
.inner-banner .mbx-box h2::before {
  content: attr(data-shadow);
  position: absolute;
  z-index: -1;
  top: -30px;
  left: 0;
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  transform: rotateX(180deg);
  -webkit-transform-origin: center bottom;
  -moz-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
  transform-origin: center bottom;
  background-image: -webkit-linear-gradient(bottom, #fff, rgba(250, 250, 250, 0.1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  opacity: .3;
}
.inner-page .m-page {
    text-align: center;
    float: none;
    margin: 70px -5px 0;
}
.inner-page .m-page a,
.inner-page .m-page span {
    display: inline-block;
    text-align: center;
    width: 45px;
    height: 35px;
    font-size: 15px;
    line-height: 35px;
    border-radius: 5px;
    color: #111;
    font-weight: 500;
    -moz-box-shadow: 0 2px 10px 0 #d8dde6;
    -o-box-shadow: 0 2px 10px 0 #d8dde6;
    box-shadow: 0 2px 10px 0 #d8dde6;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    margin: 5px;
}
.inner-page .m-page a:hover {
    background: var(--color) none repeat scroll 0 0;
    color: #fff;
}
.inner-page .m-page span.current{
  background: var(--color);
  color: #fff;
}
.inner-page h1.h1,
.inner-page h2.h2,
.inner-page h3.h3,
.inner-page h4.h4,
.inner-page h5.h5,
.inner-page h6.h6,
.inner-page h1,
.inner-page h2,
.inner-page h3,
.inner-page h4,
.inner-page h5,
.inner-page h6 {
  font-family: 'NDM';
}
.inner-page .top h6 {
  padding: 0 60px;
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  color: #ff7033;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 0.9rem;
}
.inner-page .top h6::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 1px;
  background: #ff7033;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.inner-page .top h6::after {
  position: absolute;
  content: "";
  width: 50px;
  height: 1px;
  background: #ff7033;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
}
.inner-page .top h2 {
  font-size: 40px;
  line-height: 1.1;
  color: #010101;
  text-transform: uppercase;
  font-family: 'NDM';
}
.inner-page .top h2 span {
  color: #ff7033;
}
.inner-page .top.center {
  text-align: center;
}
.inner-page .top.center h6::after {
  opacity: 1;
}
.inner-page p {
  font-size: 18px;
  line-height: 32px;
}
.inner-page .sidebar-box {
  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;
}
.inner-page .sidebar-box .sidebar-left {
  width: 29%;
}
.inner-page .sidebar-box .sidebar-left form {
  position: relative;
}
.inner-page .sidebar-box .sidebar-left form input[type="text"] {
  width: 100%;
  height: 72px;
  border-radius: 72px;
  border: 1px solid #eee;
  padding: 0 1.4rem;
  font-size: 18px;
  color: #000;
  line-height: 1;
}
.inner-page .sidebar-box .sidebar-left form input[type="submit"] {
  width: 67px;
  height: 67px;
  background: url(/jubaweld/2022/04/15/product-s.png) no-repeat center center;
  background-size: 100% auto;
  border: none;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 5px;
}
.inner-page .sidebar-box .sidebar-left .sidebar-nav {
  padding: 1.9rem 2rem;
  border: 1px solid #eee;
  margin-top: 1.5rem;
}
.inner-page .sidebar-box .sidebar-left .sidebar-nav h3 {
  font-size: 1.95rem;
  line-height: 1;
  color: #000000;
  text-transform: uppercase;
  font-family: 'RM';
  font-weight: 900;
}
.inner-page .sidebar-box .sidebar-left .sidebar-nav .pro-nav {
  margin-top: 1.25rem;
}
.inner-page .sidebar-box .sidebar-left .sidebar-nav .pro-nav li {
  margin-bottom: 10px;
}
.inner-page .sidebar-box .sidebar-left .sidebar-nav .pro-nav li:last-child {
  margin-bottom: 0;
}
.inner-page .sidebar-box .sidebar-left .sidebar-nav .pro-nav li a {
  display: block;
  padding: 18px 45px 18px 20px;
  background: #f1f1f1;
  margin-bottom: 10px;
  font-size: 18px;
  color: #7a7777;
  line-height: 32px;
  text-transform: uppercase;
  position: relative;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
}
.inner-page .sidebar-box .sidebar-left .sidebar-nav .pro-nav li a:hover {
  background: #ff7033;
  color: #fff;
}
.inner-page .sidebar-box .sidebar-left .sidebar-nav .pro-nav li a:hover .fa {
  color: #fff;
}
.inner-page .sidebar-box .sidebar-left .sidebar-nav .pro-nav li a .fa {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.inner-page .sidebar-box .sidebar-left .sidebar-nav .pro-contact {
  margin-top: 2rem;
}
.inner-page .sidebar-box .sidebar-left .sidebar-nav .pro-contact li {
  padding: 1rem 1rem 1rem 60px;
  margin-bottom: 0.9rem;
  -webkit-box-shadow: 0 0 20px 0 rgba(61, 40, 40, 0.05);
  box-shadow: 0 0 20px 0 rgba(61, 40, 40, 0.05);
}
.inner-page .sidebar-box .sidebar-left .sidebar-nav .pro-contact li:last-child {
  margin-bottom: 0;
}
.inner-page .sidebar-box .sidebar-left .sidebar-nav .pro-contact li:nth-child(1) {
  background: url(../images/p-phone.png) no-repeat 10px center;
}
.inner-page .sidebar-box .sidebar-left .sidebar-nav .pro-contact li:nth-child(2) {
  background: url(../images/p-mail.png) no-repeat 10px center;
}
.inner-page .sidebar-box .sidebar-left .sidebar-nav .pro-contact li:nth-child(3) {
  background: url(../images/p-add.png) no-repeat 10px 2rem;
}
.inner-page .sidebar-box .sidebar-right {
  width: 71%;
}
.inner-page .form ul {
  margin: -10px;
}
.inner-page .form ul li {
  padding: 10px;
}
.inner-page .form ul li input,
.inner-page .form ul li textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 16px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page .form ul li input:focus,
.inner-page .form ul li textarea:focus {
  border-color: var(--color);
}
.inner-page .form ul li textarea {
  height: 120px;
}
.inner-page .form ul li input[type="submit"] {
  padding: 12px;
  max-width: 180px;
  border-color: black;
  background-color: transparent;
  font-weight: bold;
}
.inner-page .form ul li input[type="submit"]:hover {
  color: white;
  background-color: var(--color);
  border-color: var(--color);
}
.inner-page .form ul li.wid-100 {
  width: 100%;
}




.custom-page .custom-1 .top {
  padding: 4.75rem 15px 5.25rem;
  background: url(../images/custom-top-bg.png) no-repeat center 5.3rem;
}
.custom-page .custom-1 .top p {
  font-size: 24px;
  line-height: 1.5;
  color: #ababab;
  margin: 1.25rem auto 0;
  max-width: 610px;
}
.custom-page .custom-1 .custom-box {
  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;
}
.custom-page .custom-1 .custom-box .left {
  width: 50%;
  position: relative;
}
.custom-page .custom-1 .custom-box .left .text {
  width: 580px;
  padding: 3.75rem 1.25rem 3.25rem;
  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: 20px;
  line-height: 1.5;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  font-family: 'NDM';
  background: rgba(235, 97, 0, 0.5);
}
.custom-page .custom-1 .custom-box .right {
  width: 50%;
}
.custom-page .custom-2 {
  padding: 6.5rem 0;
}
.custom-page .custom-2 .top p {
  font-size: 16px;
  line-height: 1;
  color: #787878;
  margin-top: 0.75rem;
}
.custom-page .custom-2 form {
  padding-top: 2.4rem;
  margin-top: 2.25rem;
  border-top: 1px solid #e5e5e5;
}
.custom-page .custom-2 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;
  -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;
}
.custom-page .custom-2 form ul li {
  width: 48.5%;
}
.custom-page .custom-2 form ul li input[type="text"] {
  width: 100%;
  height: 50px;
  border: 2px solid #e6e9ee;
  font-size: 16px;
  color: #000;
  padding: 0 18px;
  margin-bottom: 1.25rem;
}
.custom-page .custom-2 form ul li input[type="text"]:last-child {
  margin-bottom: 0;
}
.custom-page .custom-2 form ul li textarea {
  width: 100%;
  height: 100%;
  border: 2px solid #e6e9ee;
  font-size: 16px;
  color: #000;
  padding: 20px 18px;
}
.custom-page .custom-2 form ul li:nth-child(3) {
  width: 100%;
  text-align: center;
  margin-top: 1.25rem;
}
.custom-page .custom-2 form ul li:nth-child(3) input[type="submit"] {
  width: 175px;
  height: 52px;
  border: none;
  font-size: 16px;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  background: #333333;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.custom-page .custom-2 form ul li:nth-child(3) input[type="submit"]:hover {
  background: #ff7033;
}
.honor-page .honor-1 {
  padding: 5rem 0 7rem;
}
.honor-page .honor-1 .list {
  margin-top: 4.25rem;
}
.honor-page .honor-1 .list .swiper-slide {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: relative;
  z-index: 1;
}
.honor-page .honor-1 .list .swiper-slide-prev,
.honor-page .honor-1 .list .swiper-slide-next {
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
  position: relative;
  z-index: 2;
}
.honor-page .honor-1 .list .swiper-slide-active {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  position: relative;
  z-index: 3;
}
.honor-page .honor-1 .list .swiper-button-prev,
.honor-page .honor-1 .list .swiper-button-next {
  width: 40px;
  height: 40px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 12px;
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.honor-page .honor-1 .list .swiper-button-prev {
  background-image: url(../images/banner-btn-l.png);
  left: 15px;
}
.honor-page .honor-1 .list .swiper-button-prev:hover {
  background-color: #ff7033;
}
.honor-page .honor-1 .list .swiper-button-next {
  background-image: url(../images/banner-btn-r.png);
  right: 15px;
}
.honor-page .honor-1 .list .swiper-button-next:hover {
  background-color: #ff7033;
}
 
.company-page .company-1 {
  padding: 7rem 0 5rem;
}
.company-page .company-1 .company-1-box {
  margin-top: 4.5rem;
  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;
}
.company-page .company-1 .company-1-box ul li {
  margin-bottom: 1.5rem;
  position: relative;
}
.company-page .company-1 .company-1-box ul li::after {
  position: absolute;
  content: "";
  font-size: 2rem;
  line-height: 1;
  color: #e4e1e5;
  font-family: 'NDM';
}
.company-page .company-1 .company-1-box ul li:last-child {
  margin-bottom: 0;
}
.company-page .company-1 .company-1-box ul li:last-child p {
  height: 75px;
}
.company-page .company-1 .company-1-box ul li h4 {
  font-size: 18px;
  line-height: 1;
  color: #010101;
  text-transform: uppercase;
  font-family: 'NDM';
  margin-bottom: 0.5rem;
}
.company-page .company-1 .company-1-box ul li p {
  font-size: 14px;
  line-height: 1.8;
  color: #6d6d6d;
  height: 100px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.company-page .company-1 .company-1-box .left {
  width: 32%;
}
.company-page .company-1 .company-1-box .left ul li {
  text-align: right;
  padding-right: 75px;
}
.company-page .company-1 .company-1-box .left ul li::after {
  top: -5px;
  right: 0;
}
.company-page .company-1 .company-1-box .left ul li:nth-child(1)::after {
  content: "01";
}
.company-page .company-1 .company-1-box .left ul li:nth-child(2)::after {
  content: "02";
}
.company-page .company-1 .company-1-box .left ul li:nth-child(3)::after {
  content: "03";
}
.company-page .company-1 .company-1-box .left ul li:nth-child(4)::after {
  content: "04";
}
.company-page .company-1 .company-1-box .company-1-img {
  width: 33%;
}
.company-page .company-1 .company-1-box .right {
  width: 32%;
}
.company-page .company-1 .company-1-box .right ul li {
  padding-left: 75px;
}
.company-page .company-1 .company-1-box .right ul li::after {
  top: -5px;
  left: 0;
}
.company-page .company-1 .company-1-box .right ul li:nth-child(1)::after {
  content: "05";
}
.company-page .company-1 .company-1-box .right ul li:nth-child(2)::after {
  content: "06";
}
.company-page .company-1 .company-1-box .right ul li:nth-child(3)::after {
  content: "07";
}
.company-page .company-1 .company-1-box .right ul li:nth-child(4)::after {
  content: "08";
}
.company-page .company-2 {
  position: relative;
}
.company-page .company-2 > img {
  width: 100%;
}
.company-page .company-2 .company-box {
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.company-page .company-2 .company-box .text {
  max-width: 760px;
  margin: 0 0 0 auto;
  text-align: right;
}
.company-page .company-2 .company-box .text h3 {
  font-size: 2.4rem;
  line-height: 1;
  color: #ffffff;
  font-family: 'NDM';
}
.company-page .company-2 .company-box .text h2 {
  font-size: 3rem;
  line-height: 1;
  color: #ffffff;
  text-transform: uppercase;
  font-family: 'NDM';
  margin: 1rem 0 1.25rem;
}
.company-page .company-2 .company-box .text p {
  font-size: 1.5rem;
  line-height: 1.4;
  color: #ffffff;
}
.company-page .company-3 {
  padding: 6.75rem 0 6.25rem;
}
.company-page .company-3 .careBox {
  margin-top: 3rem;
  position: relative;
}
.company-page .company-3 .careBox .swiper-slide a {
  display: block;
}
.company-page .company-3 .careBox .swiper-slide a:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.company-page .company-3 .careBox .swiper-slide a:hover h4 {
  color: #ff7033;
}
.company-page .company-3 .careBox .swiper-slide a .care-img {
  overflow: hidden;
  border-radius: 10px;
}
.company-page .company-3 .careBox .swiper-slide a .care-img img {
  width: 100%;
}
.company-page .company-3 .careBox .swiper-slide a h4 {
  text-align: center;
  font-size: 24px;
  line-height: 1.2;
  color: #010101;
  text-transform: uppercase;
  font-family: 'NDM';
  margin-top: 0.7rem;
}
.company-page .company-3 .careBox .swiper-button-prev,
.company-page .company-3 .careBox .swiper-button-next {
  width: 42px;
  height: 42px;
}
.company-page .company-3 .careBox .swiper-button-prev {
  background: url(../images/care-left.png) no-repeat center center;
  left: -21px;
}
.company-page .company-3 .careBox .swiper-button-next {
  background: url(../images/care-right.png) no-repeat center center;
  right: -21px;
}
.category-page .category-list > ul {
  padding-bottom: 9.75rem;
}
.category-page .category-list > ul > li {
  padding: 7.5rem 0 7rem;
  background: url(../images/category-page-bg.jpg) no-repeat left bottom;
}
.category-page .category-list > ul > li .title {
  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;
}
.category-page .category-list > ul > li .title h2 {
  font-size: 40px;
  line-height: 70px;
  color: #000000;
  text-transform: uppercase;
  font-family: 'NDM';
  position: relative;
  padding-left: 42px;
  text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.8);
}
.category-page .category-list > ul > li .title h3::after {
  position: absolute;
  content: "";
  width: 116px;
  height: 121px;
  background: url(../images/title-after.png) no-repeat 100% 100%;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: -1;
}
.category-page .category-list > ul > li .title .more {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 43px;
  font-size: 16px;
  line-height: 1;
  color: #ffffff;
  text-transform: uppercase;
  font-family: 'NDM';
  background: #ff7033;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
}
.category-page .category-list > ul > li .title .more:hover {
  background: #000;
}
.category-page .category-list > ul > li .item {
  margin-top: 3.25rem;
  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;
  position: relative;
  z-index: 10;
}
.category-page .category-list > ul > li .item .left {
  width: 50%;
}
.category-page .category-list > ul > li .item .left a {
  display: block;
  overflow: hidden;
  border-radius: 10px;
}
.category-page .category-list > ul > li .item .left a:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.category-page .category-list > ul > li .item .left a img {
  width: 100%;
}
.category-page .category-list > ul > li .item .right {
  width: 50%;
  padding-left: 2.9rem;
  position: relative;
}
.category-page .category-list > ul > li .item .right 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;
}
.category-page .category-list > ul > li .item .right ul li {
  width: 50%;
  height: 50%;
}
.category-page .category-list > ul > li .item .right ul li a {
  display: block;
  border: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}
.category-page .category-list > ul > li .item .right ul li a::after {
  position: absolute;
  content: "";
  width: 90%;
  height: 90%;
  background: url(../images/pro-after.png) no-repeat center center;
  background-size: 100% 100%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  opacity: 0;
}
.category-page .category-list > ul > li .item .right ul li a:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.category-page .category-list > ul > li .item .right ul li a:hover::after {
  opacity: 1;
}
.category-page .category-list > ul > li .item .right ul li a img {
  width: 100%;
}
.category-page .category-list > ul > li .item .right h5 {
  font-size: 5.45rem;
  line-height: .75;
  color: rgba(239, 111, 20, 0.1);
  text-transform: uppercase;
  font-family: 'NDM';
  position: absolute;
  left: 98%;
  bottom: 100%;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transform-origin: left bottom;
  -moz-transform-origin: left bottom;
  -ms-transform-origin: left bottom;
  transform-origin: left bottom;
  white-space: nowrap;
  padding: 0 10px;
  z-index: -1;
}
.category-page .category-list > ul > li:nth-child(even) .item {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -moz-box-orient: horizontal;
  -moz-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.category-page .category-list > ul > li:nth-child(even) .item .right {
  padding-left: 0;
  padding-right: 2.9rem;
}
.category-page .category-list > ul > li:nth-child(even) .item .right h5 {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  left: -9%;
  bottom: auto;
  -webkit-transform-origin: left top;
  -moz-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}

.news-page {
  padding: 5rem 0;
}
.news-page .list ul {
  margin: -10px;
}
.news-page .list ul li {
  padding: 10px;
}
.news-page .list ul li .img-box {
  display: block;
}
.news-page .list ul li .img-box img {
  width: 100%;
}
.news-page .list ul li .content {
  padding: 15px;
  border: 1px solid #eee;
}
.news-page .list ul li .content h2 {
  font-size: 18px;
  font-weight: bold;
  text-overflow: ellipsis;
  line-height: 23px;
  min-height: 3.5rem;
}
.news-page .list ul li .content p {
  font-size: 14px;
  line-height: 22px;
  margin: 15px 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 80px;
}
.news-page .list ul li .content a.more {
  display: inline-block;
  line-height: 34px;
  height: 34px;
  padding: 0 25px;
  border: 1px solid #eee;
  font-size: 14px;
  color: #666;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.news-page .list ul li .content a.more:hover {
  color: white;
  background: var(--color);
}
.newdet-page {
  padding: 0rem 0;
}
.newdet-page h1 {
  font-size: 26px;
  line-height: 50px;
  font-weight: bold;
  text-align: center;
}
.newdet-page time {
  display: block;
  font-size: 16px;
  line-height: 30px;
  color: #666;
  margin-top: 20px;
  text-align: center;
}
.newdet-page .content {
  display: block;
  font-size: 16px;
  line-height: 30px;
  margin: 20px 0;
  padding: 20px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.newdet-page .content span{
  font-size: 16px !important;
  font-weight: normal !important;
  font-family: 'Montserrat' !important;
}
.newdet-page .m-link {
  font-size: 16px;
  line-height: 30px;
}
.newdet-page .m-link a {
  display: block;
}
.newdet-page .m-link a:hover {
  text-decoration: underline;
}
.gallery-page {
  padding: 6rem 0;
}
.gallery-page .list ul {
  margin: -10px;
}
.gallery-page .list ul li {
  padding: 10px;
}
.gallery-page .list ul li a.img-box {
  display: block;
}
.gallery-page .list ul li a.img-box img {
  width: 100%;
}
.gallery-page .list ul li h5 {
  display: block;
  font-size: 18px;
  /*font-weight: bold;*/
  font-family: 'Montserrat';
  margin-top: 10px;
  text-align: center;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.gallery-page .list ul li:hover h5 {
  color: var(--color);
}
.faq-page {
  padding: 6rem 0;
}
.faq-page ul li {
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid #eee;
  background: #f8f8f8;
}
.faq-page ul li h4 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  font-family: 'Montserrat';
}
.faq-page ul li .content {
  padding-top: 10px;
  border-top: 1px solid #eee;
  font-size: 16px;
  line-height: 1.6;
}
.faq-page ul li:last-child {
  margin-bottom: 0;
}
.contact-page .contact-1 {
  padding: 100px 0 80px;
}
.contact-page .contact-1 .list ul {
  margin: -8px;
}
.contact-page .contact-1 .list ul li {
  padding: 8px;
}
.contact-page .contact-1 .list ul li .box {
  -o-box-shadow: 0 0 7px rgba(43, 52, 59, 0.08);
  -webkit-box-shadow: 0 0 7px rgba(43, 52, 59, 0.08);
  box-shadow: 0 0 7px rgba(43, 52, 59, 0.08);
  text-align: center;
  padding-bottom: 30px;
}
.contact-page .contact-1 .list ul li .box span {
  height: 60px;
  width: 60px;
  line-height: 60px;
  background: #ff7033;
  position: relative;
  margin: 0 auto;
  display: block;
  text-align: center;
}
.contact-page .contact-1 .list ul li .box span i {
  color: white;
  font-size: 30px;
  display: inline-block;
  vertical-align: middle;
}
.contact-page .contact-1 .list ul li .box span:after {
  content: '';
  width: 100%;
  height: 13px;
  position: absolute;
  bottom: 100%;
  left: 0;
  background: inherit;
}
.contact-page .contact-1 .list ul li .box span:before {
  content: '';
  border-right: 13px solid transparent;
  border-bottom: 12px solid #ff7033;
  position: absolute;
  left: 100%;
  bottom: 100%;
}
.contact-page .contact-1 .list ul li .box h5 {
  font-size: 21px;
  line-height: 1;
  padding: 25px 0 15px;
  font-weight: bold;
}
.contact-page .contact-1 .list ul li .box p {
  font-size: 16px;
  line-height: 1.6;
  font-weight: normal;
  min-height: 100px;
}
.contact-page .contact-2 .left {
  width: 28%;
  vertical-align: middle;
}
.contact-page .contact-2 .left .img {
  position: relative;
}
.contact-page .contact-2 .left .img .text {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 10%;
  padding: 0 30px;
  color: white;
  text-align: left;
}
.contact-page .contact-2 .left .img .text h5 {
  font-weight: bold;
  font-size: 22px;
}
.contact-page .contact-2 .left .img .text p {
  font-size: 16px;
  line-height: 1.6;
  margin: 15px 0;
}
.contact-page .contact-2 .left .img .text a.more {
  display: inline-block;
  line-height: 36px;
  height: 38px;
  padding: 0 30px;
  border: 1px solid white;
  font-size: 16px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.contact-page .contact-2 .left .img .text a.more:hover {
  background: white;
  color: black;
}
.contact-page .contact-2 .right {
  width: 72%;
  padding-left: 30px;
  vertical-align: middle;
}
.contact-page .contact-2 .right h3 {
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
}
.contact-page .contact-2 .right .form {
  margin-top: 30px;
}
.contact-page .map {
  margin-top: 80px;
}
.prodet-page .det-3 .title h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1c1c1c;
    margin-bottom: 30px;
    border-bottom: 2px solid #e1e1e1;
}
.prodet-page .det-3 .title h3 span {
    display: inline-block;
    position: relative;
    padding: 10px;
}
.prodet-page .det-3 .title h3 span:after {
    content: '';
    position: absolute;
    left: 0;
    top: 100%;
    height: 2px;
    width: 100%;
    background-color: var(--color);
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.prodet-page .det-3 .det-3-box ul {
    margin: 0 -15px;
}
.prodet-page .det-3 .det-3-box ul li {
    padding: 0 15px;
    margin-bottom: 30px;
}
.prodet-page .det-3 .det-3-box ul li .ig {
    display: block;
}
.prodet-page .det-3 .det-3-box ul li .ig .img {
    position: relative;
    border: 2px solid #d6d6d6;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}
.prodet-page .det-3 .det-3-box ul li .ig .img span {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 160px;
    height: 40px;
    padding: 0 20px;
    font-size: 16px;
    line-height: 40px;
    font-weight: 700;
    text-align: center;
    color: #fff;
    background-color: var(--color);
    -webkit-transition: .45s;
    -moz-transition: .45s;
    -ms-transition: .45s;
    -o-transition: .45s;
    transition: .45s;
    opacity: 0;
}
.prodet-page .det-3 .det-3-box ul li .ig .img span:hover {
    background-color: #1c1c1c;
}
.prodet-page .det-3 .det-3-box ul li .ig .text {
    text-align: center;
    margin-top: 0.625rem;
}
.prodet-page .det-3 .det-3-box ul li .ig .text h4 {
    font-size: 18px;
    line-height: 32px;
    min-height: 7rem;
    font-weight: 700;
    color: #1c1c1c;
    padding: 0 15px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.prodet-page .det-3 .det-3-box ul li .ig:hover .text h4 {
    color: var(--color);
}
.prodet-page .det-3 .det-3-box ul li .ig:hover .img {
    border-color: var(--color);
}
.prodet-page .det-3 .det-3-box ul li .ig:hover .img span {
    opacity: 1;
}
@media screen and (max-width: 1440px) {
  .inner-banner img{
    min-height: 400px;
    object-fit: cover;
  }
  .inner-banner .mbx-box{
    top: 60%;
  }
  .inner-banner .mbx-box h2{
    margin-top: 0;
  }
}

@media screen and (max-width: 992px) {
  
  .inner-banner .mbx-box {
    top: 40%;
}
}


@media screen and (max-width:1600px){
  
}
@media screen and (max-width:1430px){
  .inner-page .sidebar-box .sidebar-left .sidebar-nav{
        padding: 1.9rem 1rem;
  }
  .inner-page .sidebar-box .sidebar-left .sidebar-nav .pro-nav li a{
    font-size: 16px;
  }
  .inner-page .sidebar-box .sidebar-left .sidebar-nav .pro-contact li p{
    font-size: 16px;
  }
  
}
@media screen and (max-width:1230px){
  .contact-page .contact-1 {
    padding: 60px 0;
  }
  .contact-page .contact-1 .list ul li .box h5 {
    font-size: 18px;
  }
  .contact-page .contact-1 .list ul li .box p {
    font-size: 14px;
  }
  .contact-page .contact-2 .right h3 {
    font-size: 28px;
  }
  .contact-page .contact-2 .left .img .text {
    padding: 0 15px;
  }
  .contact-page .contact-2 .left .img .text p {
    font-size: 14px;
  }
  .contact-page .contact-2 .right .form {
    margin-top: 10px;
  }
 
.inner-page p {
    font-size: 16px;
    line-height: 30px;
}
.company-page .company-1 .company-1-box{
  align-items: center;
}.company-page .company-1 .company-1-box .right ul li {
    padding-left: 50px;
}.company-page .company-1 .company-1-box .left ul li {
       padding-right: 50px;
}
.company-page .company-3 .careBox .swiper-slide a h4{
  font-size: 18px;
}
.inner-page .sidebar-box .sidebar-left{
  display: none;
}
.inner-page .sidebar-box .sidebar-right {
    width: 100%;
}

}
@media screen and (max-width:1100px){
  .inner-banner{
    margin-top: 40px;
  }
}
@media screen and (max-width:1000px){
  .about-page .about-1 .about-img::after{
    display: none;
  }

  .about-page .about-1 .about-img .aboutIconBox{
    position: relative;
    width: 100%;
    left: auto;
    bottom: auto;
    transform: translateX(0);
  }

  .news-page .list ul li .content h4 {
    font-size: 16px;
  }
  .news-page .list ul li .content p {
    font-size: 14px;
    line-height: 28px;
    margin: 10px 0;
  }
  .news-page .list ul li .content a.more {
    font-size: 14px;
    line-height: 28px;
    padding: 0 15px;
  }
  .faq-page ul li h4 {
    font-size: 18px;
  }
  .faq-page ul li .content {
    font-size: 14px;
  }
  .gallery-page .list ul li h5 {
    font-size: 16px;
  }
  .contact-page .contact-1 .list ul li {
    width: 50%;
  }
  .contact-page .contact-2 .right {
    width: 100%;
    padding-left: 0;
  }
  .contact-page .contact-2 .left {
    display: none;
  }
  .contact-page .map {
    margin-top: 50px;
  }
  .inner-page p {
    font-size: 14px;
    line-height: 28px;
}


.design-page .design-2 .designHistoryBox .historyBox{
      bottom: 1rem;
}
.design-page .design-1 .container .item{
  width: 50%;
}
.design-page .design-1 .container .item.right{
  width: 100%;
}
.design-page .design-1 .container .item.right .design-img{
  width: 50%;
}
.design-page .design-1 .container .item .top h6{
  padding: 0;
}
.design-page .design-1 .container .item .top h6:before{
  display: none;
}
.category-page .category-list>ul>li .title h3{
  padding-left: 0;
}
.category-page .category-list>ul>li .title h3{
  width: 70%
}.product-page .product-box .product-list li{
  width: 50%;
}
}
@media screen and (max-width:700px){
  .contact-page .contact-2 .right h3 {
    font-size: 24px;
  }
  .inner-page .top h2{
        font-size: 30px;
  }

  .company-page .company-1 .company-1-box .company-1-img{
    display: none;
  }
  .company-page .company-1 .company-1-box .left {
    width: 100%;
}.company-page .company-1 .company-1-box .right {
    width: 100%;
}.company-page .company-1 .company-1-box{
  flex-wrap: wrap;
}
.company-page .company-1 .company-1-box .left ul li {
    text-align: left;
    padding-left: 50px;
    padding-right: 0;
}
.company-page .company-1 .company-1-box .left ul li:after{
  left: 0;
  right: auto;
}
.company-page .company-1 .company-1-box ul li p{
  height: auto;
}
.design-page .design-2 .designHistoryBox{
  background: #fafafa;
}
.design-page .design-2 .designHistoryBox .historyBox{
  position: relative;
  bottom: 0;
}
.category-page .category-list>ul>li .item .left {
    width: 100%;
}
.category-page .category-list>ul>li .item .right {
    width: 100%;
    padding-left: 0;
    position: relative;
    margin-top: 20px;
}.category-page .category-list>ul>li:nth-child(even) .item .right {
    padding-left: 0;
    padding-right: 0;
}
.category-page .category-list>ul>li .title{
  flex-wrap: wrap;
}

}
@media screen and (max-width:500px){
  .contact-page .contact-1 .list ul li {
    width: 100%;
  }

.company-page .company-1 .company-1-box ul li p{
  height: auto;
}
.design-page .design-1 .container .item{
  width: 100%;
}
.design-page .design-1 .container .item .top{
  margin-bottom: 20px;
}
.design-page .design-1 .container .item.right .design-img{
  width: 100%;
}
.inner-banner .mbx-box .mbx{
      font-size: 14px;
      line-height: 28px;
}





}


.fenlei {
    font-size: 20px;
    line-height: 36px;
    text-transform: uppercase;
    color: #ff7033;
    padding-left: 20px;
}

.miaoshu{
    font-size: 14px;
    line-height: 28px;
    margin-top: 10px;
    color: #ff7033;
    padding-left: 20px;
}

@media screen and (max-width: 500px) {
.huhu{
    display: none!important;
  }
.miaoshu{
    display: none!important;
  }
.inner-banner .mbx-box h2{
  font-size: 14px;
  line-height: 28px;
}
.productfenlei {
    display: none!important;
}
.fenlei {
    display: none!important;
}
.category-page .category-list>ul>li .title h2 {
    font-size: 20px;
    line-height: 36px;
    color: #000;
    text-transform: uppercase;
    font-family: 'NDM';
    position: relative;
    padding-left: 20px;
    text-shadow: 1px 2px 3px rgb(0 0 0 / 80%);
}


.newdet-page h1 {
    font-size: 18px;
    line-height: 32px;
}

}



.p08-4-s1 ul {
    justify-content: space-between;
}



.layui-layer-dialog .layui-layer-content{
  word-break:unset!important;
}


.pdf_box ul {
  margin: -15px;
}
.pdf_box ul li {
  padding: 15px;
}
.pdf_box .mml-text {
  padding: 20px;
  background-color: #f8f8f8;
  border-radius: 10px;
  border: 1px solid #e5e5e5;
}
.pdf_box .mml-text .title {
  padding-left: 55px;
  background: url(../images/pdf-icon.png) no-repeat left top;
  min-height: 110px;
}
.pdf_box .mml-text .line {
  height: 1px;
  background-color: #e5e5e5;
}
.pdf_box .mml-text .date time {
  font-weight: 500;
}
.pdf_box .mml-text .date .download {
  font-size: 15px;
  font-weight: 500;
  line-height: 34px;
}
.catalogue-page .catalogue_list li {
  padding: 50px 0;
}
.catalogue-page .product_catalogue .img {
  width: 40%;
}
.catalogue-page .product_catalogue .mml-text {
  width: 60%;
}


#Latest_News h4 {
  font-weight: 500;
}
#Latest_News a.view_more {
  font-size: 15px;
  line-height: 26px;
  font-weight: 500;
}


.prodet-page .prodet-1 {
  padding: 60px 0;
}
.prodet-page .prodet-1 .left {
  padding-right: 50px;
}
.prodet-page .prodet-1 .left span {
  display: block;
  background: #f5f5f5;
  border: 1px solid #ccc;
  text-align: center;
  padding: 15px;
}
.prodet-page .prodet-1 .left span img {
  display: block;
  margin: 0 auto;
}
.prodet-page .prodet-1 .right h2 {
  text-align: left;
}
.prodet-page .prodet-1 .right h1 {
    font-size: 24px;
    color: #2b2b2b;
    line-height: 34px;
    font-family: "roboto-bold";
    display: block;
}
.prodet-page .prodet-1 .right h5 {
  font-size: 18px;
  color: #666;
  margin-top: 5px;
}
.prodet-page .prodet-1 .right .content {
  font-size: 18px;
  color: #333;
  padding: 25px 0;
  line-height: 30px;
}
.prodet-page .prodet-1 .right .contact a {
  display: inline-block;
  line-height: 50px;
  height: 50px;
  width: 220px;
  text-align: center;
  color: white;
  font-size: 18px;
  background: var(--color);
}
.prodet-page .prodet-1 .right .contact a.down {
  background: #f4f4f4;
  color: #333;
  margin-left: 20px;
}
.prodet-page .prodet-1 .right .contact a.down:hover {
  background: #aacd06;
  background: -webkit-linear-gradient(157deg, #aacd06 30%, #07d7c1 100%);
  background: -o-linear-gradient(157deg, #aacd06 30%, #07d7c1 100%);
  background: -moz-linear-gradient(157deg, #aacd06 30%, #07d7c1 100%);
  background: linear-gradient(23deg, #aacd06 30%, #07d7c1 100%);
  color: white;
}
.prodet-page .prodet-1 .right .pro-det-img {
  margin-top: 30px;
  border-top: 1px solid rgba(35, 31, 32, 0.08);
  padding-top: 30px;
  text-align: center;
}
.prodet-page .prodet-1 .right .pro-det-img ul {
  margin: -10px;
}
.prodet-page .prodet-1 .right .pro-det-img ul .slick-track {
  margin-left:0;
}
.prodet-page .prodet-1 .right .pro-det-img ul li {
  padding: 10px;
}
.prodet-page .prodet-1 .right .pro-det-img ul li i,
.prodet-page .prodet-1 .right .pro-det-img ul li span {
  display: none;
}
.prodet-page .prodet-2 {
  padding: 60px 0;
  background: #f5f9fc;
}
.prodet-page .prodet-2 h2 {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  text-align: left;
  padding-bottom: 15px;
}
.prodet-page .prodet-2 .content {
  padding-top: 30px;
  line-height:28px;
  max-height:1400px;
  overflow-x:auto;
}
.prodet-page .prodet-2 .content ul li {
  padding-left:20px;
  position:relative;
}
.prodet-page .prodet-2 .content ul li:after {
  content:'';
  width:10px;
  height:10px;
  display:block;
  background:#aacd06;
  position:absolute;
  left:0;
  top:8px;
}
.prodet-page .prodet-2 .opsition {
  display:block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom:15px;
}
.prodet-page .prodet-2 .opsition:after {
  content:'';
  display:block;
  clear:both;
}
.prodet-page .prodet-2 .opsition>div {
  padding:10px 20px;
  font-size:18px;
  float:left;
  cursor:pointer;
  cursor:hand;
-webkit-transition: .5s;
-moz-transition: .5s;
-ms-transition: .5s;
-o-transition: .5s;
transition: .5s;
}
.prodet-page .prodet-2 .opsition>div.active,
.prodet-page .prodet-2 .opsition>div:hover{
  background:var(--color);
  color:white;
}
.prodet-page .prodet-3 {
  padding: 50px 0;
}
.prodet-page .prodet-3 .box {
  padding-top: 30px;
  text-align: center;
}
 .side-nav li a {
    display: block;
    width: 100%;
    line-height: 54px;
    background: #f3f5f7;
    border-radius: 30px;
    color: #000;
    font-size: 18px;
    text-transform: capitalize;
    transition: .3s ease;
    text-align: center;
}
.side-nav {
    margin-bottom: 32px;
    /*text-align: center;*/
}
.side-nav li a:hover {
    color: #fff;
    background: var(--color);
}
.side-nav ul.grid-box{
  margin: -5px;
}
.side-nav ul.grid-box > li{
  margin-bottom: 10px;
  padding: 5px;
  position: relative;
}
.side-nav ul.grid-box > li > ul{
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
  z-index: 10;
  background: white;
}
.side-nav ul.grid-box > li > ul > li >a{
  background: transparent;
  border-radius: 0;
}
.side-nav ul.grid-box > li > ul > li >a:hover{
  color: white;
  background: var(--color);
}
.side-nav ul.grid-box > li:hover > ul{
  display: block;
}
h1.heng {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--color);
    text-transform: capitalize;
}
.hengcat {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 20px;
}
.inner-page .pro-list ul li a h3 {
    padding: 10px 15px;
    font-size: 18px;
    line-height: 34px;
    text-align: center;
    font-family: "Montserrat";
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.inner-page .pro-list ul li a span {
    display: block;
    overflow: hidden;
}
.inner-page .pro-list ul li {
    padding: 7px;
    margin-bottom: 20px;
}
.inner-page.prodet-page .prodet-1 .slick-arrow.slick-prev {
    right: 100%;
    margin-right: 20px;
}

.inner-page.prodet-page .prodet-1 .slick-arrow {
    color: transparent;
    width: 20px;
    height: 20px;
    border: none;
    background: 0 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.prodet-page .prodet-1 .right .pro-det-img ul li {
    padding: 10px;
}
.inner-page.prodet-page .prodet-1 .slick-dots li:hover, .inner-page.prodet-page .prodet-1 .slick-dots li.slick-active {
    background: #aacd06;
}
.inner-page.prodet-page .prodet-1 .slick-dots li {
    width: 12px;
    height: 12px;
    border: 1px solid #aacd06;
    border-radius: 100%;
    display: inline-block;
    vertical-align: middle;
    margin: 0 10px !important;
    padding: 0 !important;
    background: 0 0;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    cursor: pointer;
    cursor: hand;
}
.inner-page.prodet-page h2 {
    text-align: center;
    font-size: 34px;
    color: #2b2b2b;
    line-height: 34px;
    font-family: "roboto-bold";
    display: block;
}
.inner-page.prodet-page .contact-page .contact-3 p {
    margin: 15px 0;
    color: #666;
    text-align: center;
}
.productabout {
    font-size: 18px;
    line-height: 34px;
    padding-top: 28px;
}
 
@media screen and (max-width: 1400px) {
  .inner-page .text h2 {
    font-size: 30px;
  }
  .inner-page .text p {
    font-size: 16px;
  } 
}
@media screen and (max-width: 1200px){
  .prodet-page .prodet-2 {
    padding: 60px 0;
  }
   .product-page {
    padding: 40px 0;
  }
  .product-page .product-1 .left h3 {
    padding: 15px;
    font-size: 20px;
  }
  .product-page .product-1 .left .box ul li a {
    padding: 10px 15px;
    font-size: 14px;
  }
}
@media screen and (max-width: 1000px) {
   .prodet-page .prodet-1 .left {
    width: 100%;
    padding-right: 0;
  }
  .prodet-page .prodet-1 .right {
    width: 100%;
    padding-top: 30px;
  }
  .prodet-page .prodet-2 .content table {
    white-space:nowrap;
  }
  .prodet-page .prodet-2 .content {
    max-height:600px;
    overflow:auto;
  }
   .product-page .product-1 .right .content2>table {
    width:100% !important;
    display:block;
    overflow:auto;
    margin:0 0 20px!important;
    max-height:600px !important;
  }
  .product-page .product-1 .right .content2>table tbody {
    display:table;
    white-space:nowrap;
  }
  .product-page .product-1 .left {
    display: none;
  }
  .product-page .product-1 .right {
    width: 100%;
  }
   
}
@media screen and (max-width: 700px) {
  .prodet-page .prodet-1 .right .contact a {
    width: 120px;
    line-height: 40px;
    height: 40px;
    font-size: 14px;
  }
 
}
 
.inner-page .page-tit p {
    text-transform: capitalize;
    text-decoration: underline;
    font-size: 16px;
}
.inner-page .text h2 {
    font-size: 40px;
    position: relative;
    line-height: 1.5;
    font-family: 'poppins-bold';
    padding-right: 20px;
    display: inline-block;
    max-width: 100%;
    z-index: 1;
}
.inner-page .text h2:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 20px;
    background: #99b1c6;
    left: 0;
    bottom: 15px;
    z-index: -1;
}
 
.product-page {
  padding: 40px 0;
}
.product-page .product-1 .left {
  width: 25%;
  vertical-align: top;
  padding-right: 30px;
}
.product-page .product-1 .left h3 {
  font-size: 24px;
  color: white;
  font-family: "roboto-bold";
  text-transform: uppercase;
  padding: 15px 30px;
  background: #aacd06;
}
.product-page .product-1 .left .box {
  padding-top: 15px;
}
.product-page .product-1 .left .box ul li {
  background: #f5f5f5;
}
.product-page .product-1 .left .box ul li a {
  display: block;
  border-bottom: 1px solid white;
  padding: 20px 30px;
  font-size: 18px;
  color: #666;
  font-family: "Arial";
}
.product-page .product-1 .left .box ul li a:hover,
.product-page .product-1 .left .box ul li.active>a {
  background: #aacd06;
  background: -webkit-linear-gradient(157deg, #aacd06 30%, #07d7c1 100%);
  background: -o-linear-gradient(157deg, #aacd06 30%, #07d7c1 100%);
  background: -moz-linear-gradient(157deg, #aacd06 30%, #07d7c1 100%);
  background: linear-gradient(23deg, #aacd06 30%, #07d7c1 100%);
  color: white;
}
.product-page .product-1 .left .box ul li li a {
  padding:11px 30px;
  padding-left: 40px;
  position: relative;
  background: #fcfcfc;
  font-size:16px;
}
.product-page .product-1 .left .box ul li li a:after {
  content: '-';
  position: absolute;
  left: 30px;
  top: 11px;
}
.product-page .product-1 .left .box ul li li li a {
  padding-left: 47px;
  background: #FDFDFD;
}
.product-page .product-1 .left .box ul li li li a:after {
  content: '--';
}
.product-page .product-1 .right {
  width: 75%;
  vertical-align: top;
}
.product-page .product-1 .right .content {
  font-family: "Arial";
  color: #666;
}
.product-page .product-1 .right .content p {
  margin-bottom: 15px;
}
.product-page .product-1 .right .content p em {
  font-weight: bold;
  color: #333;
}
.product-page .product-1 .right .content2>table {
  width:30% !important;
  margin-right:5%;
  display:inline-block;
  vertical-align:top;
  max-height:1000px;
  overflow:auto;
  margin-left:-4px;
}
.product-page .product-1 .right .content2>table tr {
  width:100%;
}
.product-page .product-1 .right .content2>table tr:first-child,
.product-page .product-1 .right .content2>table tr:first-child td,
.product-page .product-1 .right .content2>table tr:first-child th{
  text-align:center;
}
.product-page .product-1 .right .content2>table tbody,
.product-page .product-1 .right .content2>table tr,
.product-page .product-1 .right .content2>table th,
.product-page .product-1 .right .content2>table td{
  display:inline-block;
  float:left;
}
.product-page .product-1 .right .content2>table td,
.product-page .product-1 .right .content2>table th {
  padding:15px 10px;
}
.product-page .product-1 .right .content2>table:nth-child(3n) {
  margin-right:0;
}
.product-page .product-1 .right .content2>table:nth-child(3n+1) {
  margin-left:0;
}
@media screen and (max-width: 1520px) {
  .product-page .product-1 .left .box ul li a {
    padding: 15px 30px;
  }
}
@media screen and (max-width: 1400px) {
  .product-page .product-1 .left .box ul li a {
    font-size: 16px;
  }
}




.about-page{
  width: 100%;
}
.about-page .top.center{
  text-align: center;
}
.about-page .top h6 {
    padding: 0 60px;
    display: inline-block;
    font-size: 16px;
    line-height: 1;
    color: var(--color);
    text-transform: uppercase;
    position: relative;
    margin-bottom: 18px;
}

.about-page .top h6::before {
    position: absolute;
    content: "";
    width: 50px;
    height: 1px;
    background: var(--color);
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.about-page .top h2,.about-page .top h1 {
    font-size: 48px;
    line-height: 1.1;
    color: #010101;
    text-transform: uppercase;
    font-family: 'Montserrat';
    font-weight: 600;

}
.about-page .top h2 span,.about-page .top h1 span {
    color: var(--color);
}
.about-page .about-1 {
  padding: 7rem 0 6rem;
}

.about-page .about-1 .top {
  margin: 0 0 0 auto;
  max-width: 680px;
  /*max-width: 643px;*/
}

.about-page .about-1 .about-img {
  margin-top: 12px;
  position: relative;
}
.about-page .about-1 .about-img .play{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 70px;
  height: 70px;
  text-align: center;
  line-height: 70px;
  font-size: 35px;
  border-radius: 100%;
  border: 1px solid white;
  color: var(--color);
}
.about-page .about-1 .about-img .play:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    background: rgba(255,255,255,.5);
    opacity: 0;
    width: 100%;
    height: 100%;
    border-radius: 100% !important;
    border-radius: inherit;
    -webkit-animation: ks 3s infinite;
    -moz-animation: ks 3s infinite;
    animation: ks 3s infinite;
    display: block;
    z-index: -1;
}
.about-page .about-1 .about-img .play .fa{
  transform: translateX(3px);
}
.about-page .about-1 .about-img .play:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 100% !important;
    transform: translate(-50%,-50%);
    background: rgba(255,255,255,.5);
    opacity: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    animation: ks 3s infinite;
    display: block;
    z-index: -1;
    animation-delay: .4s;
}
.about-page .about-1 .about-img::after {
  position: absolute;
  content: "";
  width: 402px;
  height: 389px;
  background: url(../images/about-after.png) no-repeat 100% 100%;
  left: -92px;
  top: -113px;
}

.about-page .about-1 .about-img .aboutIconBox {
  position: absolute;
  background: #fff;
  bottom: 0;
  left: 65%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 73%;
  padding: 0 1rem;
  overflow: hidden;
}

.about-page .about-1 .about-img .aboutIconBox .swiper-slide {
  height: 5rem;
  padding: 15px 10px;
  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;
}

.about-page .about-1 .text {
  line-height: 1.8;
  color: #858585;
  margin: 1.75rem 0 2.25rem;
}

.about-page .about-1 ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.about-page .about-1 ul li {
  padding: 15px 1.85rem 5px 90px;
  position: relative;
  background: url(../images/a-icon.png) no-repeat left center;
}

.about-page .about-1 ul li::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background: url(../images/xian.png) no-repeat center center;
  right: -43px;
  top: 0;
}

.about-page .about-1 ul li:last-child {
  padding: 15px 0 5px 90px;
}

.about-page .about-1 ul li:last-child::after {
  display: none;
}

.about-page .about-1 ul li em {
  font-size: 40px;
  font-family: 'FR';
  line-height: .9;
  color: var(--color);
  font-weight: bold;
}

.about-page .about-1 ul li p {
  font-size: 16px;
  color: #545252;
}

.about-page .about-1 ul li:nth-child(1) {
  background: url(/chinachaoling/2022/06/07/tubiao-1.png) no-repeat left center;
}

.about-page .about-1 ul li:nth-child(2) {
  background: url(/chinachaoling/2022/06/07/tubiao-2.png) no-repeat left center;
}

.about-page .about-1 ul li:nth-child(3) {
  background: url(/chinachaoling/2022/06/07/tubiao-3.png) no-repeat left center;
}

.about-page .about-1 ul li:nth-child(4) {
  background: url(/chinachaoling/2022/06/07/tubiao-4.png) no-repeat left center;
}

.about-page .about-2 {
  padding: 4.75rem 0 3.9rem;
  background: url(../images/about-2-bg.jpg) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  overflow: hidden;
}

.about-page .about-2 .top h2 {
  color: #fff;
  font-weight: bold;
}

.about-page .about-2 .top p {
  color: rgba(250, 250, 250, 0.8);
  line-height: 1.6;
  margin: 1.25rem auto 0;
  max-width: 1051px;
}

.about-page .about-2 .FeaturedBox {
  margin-top: 3.5rem;
  overflow: hidden;
}

.about-page .about-2 .FeaturedBox .swiper-container {
  overflow: inherit;
}

.about-page .about-2 .FeaturedBox .swiper-slide a {
  display: block;
  overflow: hidden;
  position: relative;
}

.about-page .about-2 .FeaturedBox .swiper-slide a img {
  width: 100%;
}

.about-page .about-2 .FeaturedBox .swiper-slide a h4 {
  font-size: 24px;
  font-family: 'LB';
  line-height: 1;
  color: #ffffff;
  text-transform: uppercase;
  position: absolute;
  width: 100%;
  padding: 1rem 0.5rem;
  text-align: center;
  bottom: 0;
  left: 0;
}

.about-page .about-2 .FeaturedBox .scrollbar {
  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;
  margin-top: 4.75rem;
}

.about-page .about-2 .FeaturedBox .scrollbar .swiper-scrollbar {
  height: 1px;
  width: 380px;
  background: #959595;
}

.about-page .about-2 .FeaturedBox .scrollbar .swiper-scrollbar .swiper-scrollbar-drag {
  background: #d5955a;
}

.about-page .about-3 {
  padding: 6.75rem 0 8.25rem;
}

.about-page .about-3 .top h2 {
  color: #000;
  font-weight: bold;
}

.about-page .about-3 .offerBox .swiper-container {
  padding: 4.25rem 1rem 0;
  overflow: hidden;
}

.about-page .about-3 .offerBox .swiper-slide:hover span {
  background: url(../images/offer-h.png) no-repeat center center;
}

.about-page .about-3 .offerBox .swiper-slide:hover span::after {
  opacity: 1;
}

.about-page .about-3 .offerBox .swiper-slide:hover h4 {
  color: var(--color);
}

.about-page .about-3 .offerBox .swiper-slide span {
  width: 72px;
  height: 73px;
  display: inline-block;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.about-page .about-3 .offerBox .swiper-slide span::after {
  position: absolute;
  content: "";
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 100%;
  background: var(--color);
  left: -0.5rem;
  top: -0.5rem;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.about-page .about-3 .offerBox .swiper-slide h4 {
  font-size: 25px;
  line-height: 1;
  color: #000000;
  /*font-weight: 900;*/
  margin: 0.7rem 0 0.6rem;
  font-family: 'LB';
}

.about-page .about-3 .offerBox .swiper-slide p {
  font-size: 16px;
  line-height: 1.4;
  color: #5a5757;
}

.about-page .about-3 .offerBox .swiper-slide:nth-child(1) span {
  background: url(/chinachaoling/2022/06/07/tubiao1-1.png) no-repeat center center;
}

.about-page .about-3 .offerBox .swiper-slide:nth-child(1):hover span {
  background: url(/chinachaoling/2022/06/07/tubiao1-1-1.png) no-repeat center center;
}

.about-page .about-3 .offerBox .swiper-slide:nth-child(2) span {
  background: url(/chinachaoling/2022/06/07/tubiao2.png) no-repeat center center;
}

.about-page .about-3 .offerBox .swiper-slide:nth-child(2):hover span {
  background: url(/chinachaoling/2022/06/07/tubiao2-1.png) no-repeat center center;
}

.about-page .about-3 .offerBox .swiper-slide:nth-child(3) span {
  background: url(/zhenhanblinds/2023/03/08/tubiao3.png) no-repeat center center;
}

.about-page .about-3 .offerBox .swiper-slide:nth-child(3):hover span {
  background: url(/zhenhanblinds/2023/03/08/tubiao3-1.png) no-repeat center center;
}

.about-page .about-3 .offerBox .swiper-slide:nth-child(4) span {
  background: url(/chinachaoling/2022/06/07/tubiao4.png) no-repeat center center;
}

.about-page .about-3 .offerBox .swiper-slide:nth-child(4):hover span {
  background: url(/chinachaoling/2022/06/07/tubiao4-1.png) no-repeat center center;
}

.about-page .about-3 .offerBox .swiper-slide:nth-child(5) span {
  background: url(../images/offer-5.png) no-repeat center center;
}

.about-page .about-3 .offerBox .swiper-slide:nth-child(5):hover span {
  background: url(../images/offer-5-h.png) no-repeat center center;
}

.about-page .about-3 .offerBox .swiper-slide:nth-child(6) span {
  background: url(../images/offer-6.png) no-repeat center center;
}

.about-page .about-3 .offerBox .swiper-slide:nth-child(6):hover span {
  background: url(../images/offer-6-h.png) no-repeat center center;
}

.about-page .about-3 .offerBox .swiper-slide:nth-child(7) span {
  background: url(../images/offer-7.png) no-repeat center center;
}

.about-page .about-3 .offerBox .swiper-slide:nth-child(7):hover span {
  background: url(../images/offer-7-h.png) no-repeat center center;
}

.about-page .about-3 .offerBox .swiper-slide:nth-child(8) span {
  background: url(../images/offer-8.png) no-repeat center center;
}

.about-page .about-3 .offerBox .swiper-slide:nth-child(8):hover span {
  background: url(../images/offer-8-h.png) no-repeat center center;
}

.about-page .about-4 {
  position: relative;
  overflow: hidden;
}

.about-page .about-4::before {
  width: 16.6rem;
  height: 4.95rem;
  position: absolute;
  bottom: 100%;
  left: 5.85rem;
  content: "";
  background: url(../images/about-4-b.png) no-repeat 100% 100%;
}

.about-page .about-4::after {
  width: 23.4rem;
  height: 5.05rem;
  position: absolute;
  top: 100%;
  right: 13.05rem;
  content: "";
  background: url(../images/about-4-a.png) no-repeat 100% 100%;
}

.about-page .about-4>img {
  width: 100%;
}

.about-page .about-4 .about-4-box {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 100%;
}

.about-page .about-4 .about-4-box .content {
  max-width: 455px;
  margin: 0 0 0 auto;
}

.about-page .about-4 .about-4-box .content .top {
  margin-bottom: 1.4rem;
}

.about-page .about-4 .about-4-box .content .top h2 {
  color: #fff;
  margin-top: 1.25rem;
}

.about-page .about-4 .about-4-box .content p {
  color: #fff;
  line-height: 1.5;
  max-width: 470px;
}

.about-page .about-4 .about-4-box .content .more {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 18px;
  line-height: 1;
  color: #ffffff;
  margin-top: 3.25rem;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
}

.about-page .about-4 .about-4-box .content .more:hover {
  color: var(--color);
}

.about-page .about-4 .about-4-box .content .more:hover img {
  margin-left: 1.25rem;
}

.about-page .about-4 .about-4-box .content .more img {
  margin-left: 0.75rem;
}

.about-page .about-5 {
  padding: 5.75rem 0 0;
}

.about-page .about-5 .top h2 {
  color: #000;
  /*max-width: 578px;*/
  margin: 0 auto;
  line-height: 1.1;
  font-weight: bold;
}

.about-page .about-5 .top p {
  font-size: 16px;
  line-height: 1.5;
  color: #5a5a5a;
  margin-top: 0.75rem;
}

.about-page .about-5 .world {
  margin: 0.25rem 0 -2.5rem;
}

.about-page .about-6 {
  padding: 5.5rem 0 5rem;
  background: #d5955a;
}

.about-page .about-6 .partnerBox {
  margin: 0 auto;
  max-width: 1650px;
  padding: 0 15px;
}

.about-page .about-6 .partnerBox .swiper-slide {
  text-align: center;
  padding: 0 10px;
  background: url(../images/partner-bg.png) no-repeat right center;
}
@media screen and (max-width: 700px){
  .about-page .top h2,.about-page .top h1 {
    font-size: 30px;
  }
}
@media screen and (max-width:1230px) {

  .about-page .about-4 .about-4-box .content {
    max-width: 420px;
  }
}
@media screen and (max-width:1000px){
  .about-page .about-1 .about-img::after {
    display: none;
  }

  .about-page .about-1 .about-img .aboutIconBox {
    position: relative;
    width: 100%;
    left: auto;
    bottom: auto;
    transform: translateX(0);
  }
   .about-page .about-1 ul {
    flex-wrap: wrap;
  }

  .about-page .about-1 ul li {
    width: 50%;
    margin-bottom: 20px;
  }

  .about-page .about-1 .about-img .aboutIconBox .swiper-slide {
    height: 80px;
  }

  .about-page .about-4 .about-4-box .content {
    max-width: 100%;
  }

  .about-page .about-4 .about-4-box .content p {
    max-width: 100%;
  }

  .about-page .about-1 ul li:after {
    display: none;
  }

  .about-page .about-1 ul li p {
    font-size: 14px;
  }

  .about-page .about-1 ul li em {
    font-size: 24px;
  }
}
@media screen and (max-width:700px){
   .about-page .about-4 {
    background: url(../images/about-4.jpg) no-repeat center center;
    background-size: cover;
  }

  .about-page .about-4>img {
    display: none;
  }

  .about-page .about-4 .about-4-box {

    padding: 20px 0;
    position: relative;
    top: 0;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
   .about-page .about-1{
    padding: 30px 0;
  }
}
@media screen and (max-width:500px){
   .about-page .about-1 ul li {
    width: 100%;
  }

  .about-page .about-4 .about-4-box .content .more {
    font-size: 14px;
  }
}
.p05 {
    font-size: 16px;
}
.p05 .samples,
.p05 .consultation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 120px auto;
}

.p05 .samples .mml-text,
.p05 .consultation .mml-text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 20px;
  max-width: 50%;
  color: #565656;
  font-size: 18px;
}

.p05 .samples .mml-image,
.p05 .consultation .mml-image {
  margin: auto;
}

.p05 .samples h2,
.p05 .consultation h2 {
  color: black;
  text-align: initial;
  line-height: 1.4;
  font-weight: bold;
}

.p05 .samples p,
.p05 .samples ul,
.p05 .consultation p,
.p05 .consultation ul {
  margin-top: 15px;
  line-height: 2;
}

.p05 .samples li,
.p05 .consultation li {
  margin: 5px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
}

.p05 .samples .green,
.p05 .consultation .green {
  margin-right: 5px;
  color: var(--color);
}

.p05 .consultation {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  max-width: 1404px;
}
.p05 .samples .mml-image, .p05 .consultation .mml-image {
    margin: auto;
}
.p05 .stable {
  overflow: hidden;
  padding: 30px 0;
  background-color: #19181d;
  text-align: center;
}

.p05 .stable p {
  margin: 0 auto 15px;
  max-width: 750px;
  color: #b9b9b9;
  line-height: 2;
}

.p05 .slicker-stable {
  /*max-width: 1700px;*/
  margin: 60px 0 0;
  /*-webkit-transform: translate(25%, 0);
  -ms-transform: translate(25%, 0);
  transform: translate(25%, 0)*/
}
.p05 .slicker-stable{
  margin-right: -10%;
}
.p05 .slicker-stable .slick-list{
  padding-right: 200px !important;
}
.p05 .slicker-stable .slick-slide {
  position: relative;
  margin: 0 20px;
}

.p05 .slicker-stable .slick-slide:before {
  content: '\20';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(25, 24, 29, .5);
  -webkit-transition: all 0.24s;
  -o-transition: all 0.24s;
  transition: all 0.24s;
}

.p05 .slicker-stable .slick-slide.slick-current:before {
  opacity: 0;
}
.p05 .support .item{
  display: flex;
  align-items: center;
  margin: 20px 0;
}

.p05 .support .item:nth-child(odd){
  flex-direction: row-reverse;

}
.p05 .support {
  overflow: hidden;
  color: white;
}

.p05 .support .mml-row {
  margin: 60px auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p05 .support .mml-row:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.p05 .support .mml-image {
  margin: auto;
}

.p05 .support .mml-text {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 20px;
  max-width: 50%;
  color: #000;
  text-align: initial;
}

.p05 .support .sup-title {
  display: block;
  /*margin-bottom: -130px;*/
  color: #111;
  line-height: 1.4;
}

.p05 .support h3 {
  margin-bottom: 30px;
  font-size: 30px;
}

.p05 .support p {
  margin-top: 15px;
  font-size: 18px;
  line-height: 2;
}
@media (max-width:1200px) {
  .p05 .slicker-stable {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }

  .p05 .slick-dots {
    max-width: unset;
    width: unset;
  }
}
@media (max-width:1000px) {

  .p05 .consultation,
  .p05 .samples {
    display: block;
  }

  .p05 .consultation .mml-image,
  .p05 .samples .mml-image {
    width: unset;
  }

  .p05 .consultation .mml-text,
  .p05 .samples .mml-text {
    margin: auto;
    max-width: 100%;
  }
   .p05 .support .item{
    display: block;
  }

  .p05 .support .mml-text{
    max-width: 100%;
  }
}
@media screen and (max-width: 501px) {
  .p05 .slicker-stable .slick-list{
    padding-right: 100px !important;
  }
}
@media screen and (max-width: 800px){
   .p05 .consultation{
    display: block;
  }
  .p05 .samples, .p05 .consultation{
    display: block;
  }
  .p05 .samples .mml-image, .p05 .consultation .mml-image{
    width: 100%;
  }
  .p05 .support .mml-image img{
    width: 100%;
  }
  .p05 .samples .mml-image img, .p05 .consultation .mml-image img{
    width: 100%;
  }
}
@media (max-width:780px) {
  .p05 .support .mml-row {
    display: block;
    margin: 40px auto;
  }

  .p05 .support .mml-image {
    width: unset;
    max-width: unset;
  }

  .p05 .support .mml-text {
    margin: auto;
  }

  .p05 .support .sup-title {
    text-align: center;
  }
}
@media (max-width:600px){
  .p05 h2 {
    margin-bottom: 20px;
  }

  .p05 .consultation,
  .p05 .samples {
    margin: 40px 0;
  }

  .p05 .stable {
    padding: 40px 0;
  }

  .p05 .slicker-stable,
  .p05 .slick-dots {
    margin-top: 20px;
  }
}
.layer-form .wrap-contact100 {
      width: 357px;
      border-radius: 10px;
    }
    .layer-form .wrap-contact100 .btn-hide-contact100 {
      color: #000000;
    }
    .layer-form .wrap-contact100 form {
      width: 100%;
      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;
      padding: 40px 25px 15px 25px;
    }
    .layer-form .wrap-contact100 form h2 {
      width: 100%;
      font-size: 25px;
      font-weight: bold;
      text-align: center;
      margin-bottom: 30px;
    }
    .layer-form .wrap-contact100 form p {
      font-size: 12px;
      color: #adadad;
      padding: 10px 0;
    }
    .layer-form .wrap-contact100 form input {
      height: 36px;
      display: block;
      width: 100%;
      background: transparent;
      font-size: 14px;
      color: #333333;
      line-height: 1.2;
      padding: 0 20px;
      border: 1px solid #e6e6e6;
      border-radius: 5px;
      margin-bottom: 20px;
      transition: 0.3s ease;
      -webkit-transition: 0.3s ease;
      -moz-transition: 0.3s ease;
      -ms-transition: 0.3s ease;
      -o-transition: 0.3s ease;
    }
    .layer-form .wrap-contact100 form input:focus {
      border: 1px solid #0071e3;
    }
    .layer-form .wrap-contact100 form textarea {
      height: 114px;
      padding-top: 22px;
      padding-bottom: 15px;
      font-family: 'microsoft yahei';
      display: block;
      width: 100%;
      background: transparent;
      font-size: 14px;
      color: #333333;
      line-height: 1.2;
      padding: 15px 20px;
      border: none;
      border: 1px solid #e6e6e6;
      border-radius: 5px;
      transition: 0.3s ease;
      -webkit-transition: 0.3s ease;
      -moz-transition: 0.3s ease;
      -ms-transition: 0.3s ease;
      -o-transition: 0.3s ease;
    }
    .layer-form .wrap-contact100 form textarea:focus {
      border: 1px solid #0071e3;
    }
    .layer-form .wrap-contact100 form .layer-submit {
      width: 100%;
      position: relative;
      border-radius: 2px;
    }
    .layer-form .wrap-contact100 form .layer-submit input[type="submit"] {
      /*border: 1px solid #e6e6e6;*/
      background: #00a0e9;
      height: 42px;
      display: block;
      width: 100%;
      font-size: 15px;
      color: #333333;
      line-height: 1.2;
      padding: 0 20px;
      margin: 0;
      border-radius: 42px;
      transition: 0.5s ease;
      -webkit-transition: 0.5s ease;
      -moz-transition: 0.5s ease;
      -ms-transition: 0.5s ease;
      -o-transition: 0.5s ease;
      position: relative;
      z-index: 10;
      color: #ffffff;
    }
    .layer-form .wrap-contact100 form .layer-submit input[type="submit"]:hover {
      background: #000;
      color: #ffffff;
    }