@font-face {
  font-family: 'Baloo2';
  src: url('../fonts/Baloo2-SemiBold.eot');
  src: url('../fonts/Baloo2-SemiBold.eot?#iefix') format('embedded-opentype'), url('../fonts/Baloo2-SemiBold.woff2') format('woff2'), url('../fonts/Baloo2-SemiBold.woff') format('woff'), url('../fonts/Baloo2-SemiBold.ttf') format('truetype');
  font-weight: bold;
  font-display: swap;
}
@font-face {
  font-family: 'Baloo2';
  src: url('../fonts/Baloo2-Regular.eot');
  src: url('../fonts/Baloo2-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/Baloo2-Regular.woff2') format('woff2'), url('../fonts/Baloo2-Regular.woff') format('woff'), url('../fonts/Baloo2-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Baloo2';
  src: url('../fonts/Baloo2-Medium.eot');
  src: url('../fonts/Baloo2-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/Baloo2-Medium.woff2') format('woff2'), url('../fonts/Baloo2-Medium.woff') format('woff'), url('../fonts/Baloo2-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Baloo2';
  src: url('../fonts/Poppins-Light.eot');
  src: url('../fonts/Poppins-Light.eot?#iefix') format('embedded-opentype'), url('../fonts/Poppins-Light.woff2') format('woff2'), url('../fonts/Poppins-Light.woff') format('woff'), url('../fonts/Poppins-Light.ttf') format('truetype');
  font-weight: 300;
  font-display: swap;
}
body {
  font-family: "Baloo2";
  font-weight: 300;
  max-width: 1920px;
  margin: 0 auto;
  --color: #f0911d;
}
.ui.container {
  padding: 0 15px;
  position: relative;
  max-width: 1680px;
}
.body-overflow-box {
  position: relative;
  left: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header {
  z-index: 11;
  position: relative;
  width: 100%;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#header .nav {
  display: inline-block;
  width: 100%;
}
#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: -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;
  vertical-align: middle;
  margin-left: auto;
  margin-right: 0;
}
#header .nav .ui.menu .menu-box ul.menu > li {
  margin: 0 30px;
  font-size: 20px;
  font-weight: 400;
  color: black;
  -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;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover {
  -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;
  padding: 25px 0;
  position: relative;
}
#header .nav .ui.menu .menu-box ul.menu > li > a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background-color: var(--color);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover > a::after {
  width: 100%;
}
#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: 0px;
  width: 180px;
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  -ms-transform: rotate3d(1, 0, 0, -90deg);
  -o-transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
  transition: opacity 0.3s, -webkit-transform 0.5s;
  -moz-transition: transform 0.5s, opacity 0.3s, -moz-transform 0.5s;
  transition: transform 0.5s, opacity 0.3s;
  transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s, -moz-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.3s;
  -moz-transition: -moz-transform 0.5s, opacity 0.3s;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid var(--color);
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li {
  display: block;
  float: none;
  padding: 0 15px;
  line-height: 40px;
  color: black;
  font-size: 16px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
}
#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;
}
#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 .language {
  position: relative;
  font-size: 20px;
  font-weight: 400;
  margin-right: 80px;
  margin-left: 30px;
}
#header .nav .ui.menu .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: 183%;
  right: -90px;
  width: 130px;
  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 .language ul li {
  display: block;
  float: none;
  padding: 0 15px;
  line-height: 30px;
  color: black;
  font-size: 16px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
}
#header .nav .ui.menu .language ul li a {
  display: block;
}
#header .nav .ui.menu .language ul li a img {
  width: 23px;
  vertical-align: middle;
  margin-right: 6px;
}
#header .nav .ui.menu .language ul li:hover {
  background: #222;
  color: white;
}
#header .nav .ui.menu .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.active {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background-color: white;
}
#header .nav .search-box {
  line-height: normal;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: none;
}
#header .nav .search-box form {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 60%;
  margin-left: -30%;
}
#header .nav .search-box form input {
  background: none;
  outline: none;
  border: none;
}
#header .nav .search-box form input[type="text"] {
  width: 100%;
  border-bottom: 1px solid #e1e1e1;
  font-size: 26px;
  color: #000;
  padding: 10px 0;
}
#header .nav .search-box form input[type="submit"] {
  width: 22px;
  height: 22px;
  background: url(../images/tc-zoom.png) no-repeat;
  position: absolute;
  right: 15px;
  top: 20px;
}
#header .nav .search-box form input[type="submit"]:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}
#header .nav .search-box .close {
  width: 30px;
  height: 30px;
  background: url(../images/close.png) no-repeat;
  position: absolute;
  right: 25px;
  top: 15px;
  cursor: pointer;
}
#banner .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50px;
  height: 80px;
  color: transparent;
  border: none;
  z-index: 1;
  outline: none;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  opacity: 0;
}
#banner .slick-arrow:hover {
  background-color: #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: 5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#banner ul.slick-dots li {
  width: 30px;
  height: 30px;
  display: inline-block;
  margin: 0 10px;
  border-radius: 100%;
  border: 6px solid white;
  background-color: #eb623a;
  -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: #eb623a;
  background-color: white;
}
#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: #eb623a;
  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;
}
@-webkit-keyframes rotated {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes rotated {
  0% {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotated {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
#banner {
  position: relative;
}
#banner ul li {
  position: relative;
}
#banner ul li .content-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
#banner ul li .content-box .content {
  position: absolute;
  left: 50%;
  top: 40%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#banner ul li .content-box .content .box {
  width: 50%;
}
#banner ul li .content-box .content h2 {
  color: white;
  font-size: 60px;
  line-height: 72px;
  font-weight: bold;
}
#banner ul li .content-box .content p {
  font-size: 18px;
  color: white;
  font-weight: 300;
  max-width: 640px;
  margin: 25px 0 45px;
}
#banner ul li .content-box .content .more {
  position: relative;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  background-color: var(--color);
  color: white;
  display: inline-block;
  padding: 0 35px;
  font-size: 18px;
  height: 50px;
  line-height: 50px;
  border-radius: 4px;
  z-index: 1;
  overflow: hidden;
  font-weight: 400;
}
#banner ul li .content-box .content .more::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: #222;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  z-index: -1;
  border-radius: inherit;
}
#banner ul li .content-box .content .more:hover::after {
  left: 0;
  right: auto;
  width: 100%;
}
#banner .list {
  position: absolute;
  left: 7%;
  bottom: 10%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
#banner .list .img {
  border-radius: 100%;
  margin-right: 50px;
  position: relative;
  background-color: white;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  padding: 0;
  width: 160px;
  height: 160px;
}
#banner .list .img img {
  border-radius: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#banner .list .img::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(240, 145, 29, 0.5);
  border-radius: 100%;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#banner .list .img.active {
  padding: 2px;
}
#banner .list .img.active::after {
  opacity: 0;
}
#index-body .i-partner {
  background: #f7f7f7;
  padding: 55px 0;
}
#index-body .i-partner .ui.container {
  max-width: 1200px;
}
#index-body .i-partner .ui.container ul {
  margin: -15px;
}
#index-body .i-partner .ui.container ul li {
  padding: 15px;
  text-align: center;
}
#index-body .i-partner .ui.container ul li img{
  margin: auto;
  width: 120px;
  height: 100px;
  object-fit: contain;
}
#index-body .tag {
  color: var(--color);
  font-size: 30px;
  font-weight: 400;
}
#index-body .i-title {
  font-weight: bold;
  font-size: 60px;
  line-height: 72px;
  margin-top: 10px;
}
.more {
  position: relative;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  background-color: var(--color);
  color: white;
  display: inline-block;
  padding: 0 35px;
  font-size: 18px;
  height: 50px;
  line-height: 50px;
  border-radius: 4px;
  z-index: 1;
  overflow: hidden;
  font-weight: 400;
}
.more::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: #222;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  z-index: -1;
  border-radius: inherit;
}
.more:hover::after {
  left: 0;
  right: auto;
  width: 100%;
}
#index-body .i-about {
  padding: 120px 0 110px;
}
#index-body .i-about .left {
  padding-right: 80px;
  vertical-align: middle;
}
#index-body .i-about .left .i-title {
  margin-top: 10px;
}
#index-body .i-about .left .content {
  font-size: 16px;
  margin: 25px 0 27px;
  line-height: 28px;
}
#index-body .i-about .left ul li {
  font-size: 20px;
  position: relative;
  padding-left: 40px;
  font-weight: 400;
  margin-bottom: 20px;
}
#index-body .i-about .left ul li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 30px;
  height: 100%;
  background: url(../images/select.png) no-repeat left top;
}
#index-body .i-about .left .h4 {
  font-size: 30px;
  font-weight: 500;
  margin: 25px 0 60px;
}
#index-body .i-about .left .h4 img {
  vertical-align: middle;
  margin-right: 20px;
}
#index-body .i-about .left .btn .more {
  margin-right: 55px;
}
#index-body .i-about .right {
  position: relative;
  vertical-align: middle;
}
#index-body .i-about .right ul {
  margin: -15px;
  position: relative;
}
#index-body .i-about .right ul li {
  padding: 15px;
}
#index-body .i-about .right .logo {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  text-align: center;
  line-height: 200px;
  border-radius: 100%;
  display: inline-block;
}
#index-body .i-about .right .logo img {
  vertical-align: middle;
}
#index-body .i-about .right .logo::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/about-logo-bg.png) no-repeat;
  border-radius: inherit;
  z-index: -1;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  -webkit-animation: rotated 20s linear infinite;
  -moz-animation: rotated 20s linear infinite;
  animation: rotated 20s linear infinite;
}
#index-body .i-product .i-title {
  margin-bottom: 60px;
}
#index-body .i-product ul.tab {
  margin: -15px;
}
#index-body .i-product ul.tab li {
  text-align: center;
  padding: 15px;
}
#index-body .i-product ul.tab li img{
  margin: auto;
}
#index-body .i-product ul.tab li .img {
  position: relative;
  display: inline-block;
}
#index-body .i-product ul.tab li .img::after {
  content: "";
  position: absolute;
  left: 55%;
  top: -5px;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: var(--color);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  z-index: -1;
  opacity: 0;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}
#index-body .i-product ul.tab li p {
  font-size: 30px;
  font-weight: 400;
  margin-top: 30px;
}

#index-body .i-product ul.tab li.active .img::after,
#index-body .i-product ul.tab li:hover .img::after {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
#index-body .i-product .bottom {
  margin-top: 70px;
  position: relative;
}
#index-body .i-product .bottom ul li {
  text-align: center;
  padding: 135px 0 140px;
  background-size: cover;
  position: relative;
}
#index-body .i-product .bottom ul li::after{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #280c00bf;
}
#index-body .i-product .bottom ul li .ui.container {
  max-width: 1200px;
  z-index: 2;
}
#index-body .i-product .bottom ul li .i-title {
  color: white;
  margin-bottom: 0;
}
#index-body .i-product .bottom ul li .content {
  font-size: 16px;
  line-height: 28px;
  color: white;
  margin: 45px 0 55px;
}
#index-body .i-product .bottom .btn {
  position: absolute;
  right: 6%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#index-body .i-product .bottom .btn a {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.4);
  color: white;
  text-align: center;
  line-height: 50px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  font-size: 20px;
  margin: 7px 0;
}
#index-body .i-product .bottom .btn a:hover {
  background: var(--color);
}
#index-body .i-why {
  padding: 120px 0 110px;
  background: url(../images/why-bg1.png) no-repeat left top 50px, url(../images/why-bg2.png) no-repeat left 50% top 100px, url(../images/why-bg3.png) no-repeat left 63% top 34%;
}
#index-body .i-why .top {
  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: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 55px;
}
#index-body .i-why .top .left {
  width: 50%;
  vertical-align: middle;
}
#index-body .i-why .top .left .content {
  font-size: 16px;
  max-width: 770px;
  line-height: 28px;
  margin: 22px 0 55px;
}
#index-body .i-why .top .left .content span{
  color: var(--color);
  font-size: 20px;
}
#index-body .i-why .top .right {
  width: 33.33%;
  padding-left: 30px;
  vertical-align: middle;
}
#index-body .i-why ul {
  margin: -23px;
}
#index-body .i-why ul li {
  padding: 23px;
}
#index-body .i-why ul li .content {
  background: #f7f7f7;
  text-align: center;
  height: 210px;
  padding: 47px 60px;
  border-radius: 0 0 4px 4px;
}
#index-body .i-why ul li .content h4 {
  font-size: 32px;
  font-weight: 500;
}
#index-body .i-why ul li .content .text {
  font-size: 16px;
  line-height: 28px;
  margin: 15px 0 26px;
}
#index-body .i-why ul li .content .mores {
  font-size: 24px;
  font-weight: 400;
  color: var(--color);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#index-body .i-why ul li .content .mores img {
  vertical-align: middle;
  margin-left: 15px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#index-body .i-why ul li .content .mores:hover img {
  -webkit-transform: translateX(6px);
  -moz-transform: translateX(6px);
  -ms-transform: translateX(6px);
  transform: translateX(6px);
}
#index-body .i-contact {
  text-align: center;
  color: white;
  background: url(../images/contact-bg.jpg) no-repeat;
  background-size: cover;
  padding: 125px 0 145px;
}
#index-body .i-contact p {
  font-size: 16px;
  line-height: 28px;
  max-width: 770px;
  margin: 26px auto 47px;
}
#index-body .i-news {
  padding: 100px 0 110px;
}
#index-body .i-news .top {
  position: relative;
  margin-bottom: 50px;
}
#index-body .i-news .top .more {
  position: absolute;
  right: 0;
  bottom: 0;
}
#index-body .i-news ul li {
  -webkit-box-shadow: 0px 0px 27px 0px rgba(0, 0, 0, 0.13);
  box-shadow: 0px 0px 27px 0px rgba(0, 0, 0, 0.13);
  background-color: white;
  padding: 40px;
  margin-bottom: 70px;
}
#index-body .i-news ul li .left {
  width: 25%;
  vertical-align: middle;
}
#index-body .i-news ul li .right {
  width: 75%;
  padding-left: 60px;
  padding-right: 30px;
  vertical-align: middle;
}
#index-body .i-news ul li .right .time {
  font-size: 18px;
  color: #010101;
}
#index-body .i-news ul li .right .time img {
  vertical-align: middle;
  margin-right: 5px;
}
#index-body .i-news ul li .right h4 {
  font-size: 36px;
  font-weight: 500;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  margin: 23px 0 22px;
}
#index-body .i-news ul li .right .content {
  font-size: 16px;
  line-height: 28px;
  color: #616161;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  margin-bottom: 27px;
}
#index-body .i-news ul li .right .mores {
  font-size: 24px;
  font-weight: 400;
  color: var(--color);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#index-body .i-news ul li .right .mores img {
  vertical-align: middle;
  margin-left: 10px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#index-body .i-news ul li .right .mores:hover img {
  -webkit-transform: translateX(10px);
  -moz-transform: translateX(10px);
  -ms-transform: translateX(10px);
  transform: translateX(10px);
}
#index-body .i-news ul li:last-child {
  margin-bottom: 0;
}
#footer {
  background-color: #f7f7f7;
  padding-top: 70px;
}
#footer .top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 65px;
}
#footer .top .left {
  width: 30%;
  padding-right: 80px;
}
#footer .top .left p {
  font-size: 16px;
  line-height: 28px;
  margin: 30px 0 294px;
  max-width: 330px;
}
#footer .top .left .share {
  position: relative;
}
#footer .top .left .share h5 {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 25px;
}
#footer .top .left .share ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
#footer .top .left .share ul li {
  font-size: 16px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  padding: 0 15px;
  border-left: 1px solid rgba(0, 0, 0, 0.5);
}
#footer .top .left .share ul li:last-child {
  border-right: 1px solid rgba(0, 0, 0, 0.5);
}
#footer .top .left .share ul li:hover {
  background-color: var(--color);
  color: white;
}
#footer .top .left .share #ewm {
  width: 100px;
  height: 100px;
  border: 5px solid white;
  position: absolute;
  right: 0;
  top: 0;
}
#footer .top .right {
  width: 70%;
}
#footer .top .right .r-top {
  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;
}
#footer .top .right .r-top h4 {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 9px;
}
#footer .top .right .r-top ul li {
  font-size: 16px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  line-height: 36px;
}
#footer .top .right .r-top ul li:hover {
  color: var(--color);
}
#footer .top .right .r-top .three {
  max-width: 500px;
}
#footer .top .right .r-top .three ul {
  margin-top: 14px;
}
#footer .top .right .r-top .three ul li {
  padding-left: 40px;
  line-height: 22px;
  position: relative;
  margin-bottom: 20px;
}
#footer .top .right .r-top .three ul li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 100%;
  background: url(../images/f-add.png) no-repeat left center;
}
#footer .top .right .r-top .three ul li:nth-child(2)::after {
  background: url(../images/f-phone.png) no-repeat left center;
}
#footer .top .right .r-top .three ul li:nth-child(3)::after {
  background: url(../images/f-email.png) no-repeat left center;
}
#footer .top .right .form {
  background: #964322;
  padding: 30px 50px;
  margin-top: 50px;
  border-radius: 4px;
}
#footer .top .right .form form ul {
  margin: -35px;
}
#footer .top .right .form form ul li {
  position: relative;
  padding: 35px;
}
#footer .top .right .form form ul li label {
  font-size: 18px;
  color: white;
  display: block;
  margin-bottom: 7px;
}
#footer .top .right .form form ul li input {
  font-size: 14px;
  background: white;
  border: none;
  padding-left: 15px;
  height: 40px;
  width: 100%;
}
#footer .top .right .form form ul li input[type="submit"] {
  position: absolute;
  right: 35px;
  bottom: 35px;
  background: var(--color);
  width: 40px;
  height: 40px;
  padding-left: 0;
  background: url(../images/send.png) no-repeat center var(--color);
}
#footer .bottom {
  background: #964322;
  font-size: 14px;
  padding: 17px 0;
  color: white;
}
#footer .bottom .ui.container {
  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: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#footer .bottom .ui.container img {
  height: 16px;
  vertical-align: middle;
  margin: 0 6px;
}
@media screen and (max-width: 1600px) {
  .ui.container {
    max-width: 1400px;
  }
  #banner ul li .content-box .content h2 {
    font-size: 50px;
    line-height: 56px;
  }
  #banner .list {
    left: 6%;
  }
  #banner .list .img {
    width: 115px;
    height: 115px;
  }
  #index-body .tag {
    font-size: 24px;
  }
  #index-body .i-title {
    font-size: 46px;
    line-height: 60px;
  }
  #index-body .i-product ul.tab li p {
    font-size: 26px;
    margin-top: 18px;
  }
  #index-body .i-product .bottom ul li .ui.container {
    max-width: 1000px;
  }
  #index-body .i-why ul li .content {
    padding: 30px;
  }
  #index-body .i-news ul li .right h4 {
    font-size: 28px;
    margin: 15px 0;
  }
}
@media screen and (max-width: 1400px) {
  .ui.container {
    max-width: 1150px;
  }
  #header .nav .ui.menu .logo {
    width: 200px;
  }
  #banner ul li .content-box .content h2 {
    font-size: 40px;
    line-height: 46px;
  }
  #banner .list .img {
    width: 95px;
    height: 95px;
    margin-right: 20px;
  }
  #index-body .i-title {
    font-size: 38px;
    line-height: 44px;
  }
  #index-body .i-about .left ul li {
    font-size: 18px;
  }
  #index-body .i-about .left .h4 {
    font-size: 24px;
  }
  #index-body .i-product ul.tab li p {
    font-size: 22px;
    margin-top: 15px;
  }
  #index-body .i-product .bottom ul li .ui.container {
    max-width: 900px;
  }
  #index-body .i-why ul li .content h4 {
    font-size: 25px;
  }
  #index-body .i-why ul li .content .text {
    margin: 5px 0 10px;
  }
  #index-body .i-news ul li .right h4 {
    font-size: 25px;
  }
  #footer .top .right .r-top h4 {
    font-size: 30px;
  }
  #footer .top .left .share h5 {
    font-size: 28px;
  }
  #footer .top .left {
    width: 40%;
  }
  #footer .top .right {
    width: 60%;
  }
  #footer .top .right .r-top .three {
    max-width: 375px;
  }
  #footer .top .right .form form ul {
    margin: -10px;
  }
  #footer .top .right .form form ul li {
    padding: 10px;
  }
  #footer .top .right .form form ul li input {
    padding-left: 7px;
  }
  #footer .top .right .form form ul li input[type="submit"] {
    right: 10px;
    bottom: 10px;
  }
}
@media screen and (max-width: 1200px) {
  .ui.container {
    max-width: 950px;
  }
  #header .nav .ui.menu .logo {
    width: 170px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li {
    margin: 0 15px;
  }
  #header .nav .ui.menu .language {
    margin-right: 40px;
  }
  #banner ul li .content-box .content p {
    font-size: 16px;
    margin: 10px 0 15px;
  }
  #index-body .i-title {
    font-size: 32px;
    line-height: 40px;
  }
  #index-body .i-product .bottom ul li .ui.container {
    max-width: 700px;
  }
  #index-body .i-why ul li .content h4 {
    font-size: 22px;
  }
  #index-body .i-why ul {
    margin: -10px;
  }
  #index-body .i-why ul li {
    padding: 10px;
  }
  #index-body .i-why .top .right {
    padding-left: 15px;
  }
  #index-body .i-why .top .left {
    width: 60%;
  }
  #index-body .i-news ul li .right .mores,
  #index-body .i-why ul li .content .mores {
    font-size: 20px;
  }
  #index-body .i-news ul li .left {
    width: 35%;
  }
  #index-body .i-news ul li .right {
    width: 65%;
    padding: 0 0 0 35px;
  }
  #footer .top {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #footer .top .left {
    width: 100%;
    padding-right: 0;
    margin-bottom: 70px;
  }
  #footer .top .left p {
    max-width: 100%;
    margin-bottom: 40px;
  }
  #footer .top .right {
    width: 100%;
  }
}
@media screen and (max-width: 1000px) {
  #header {
    display: none;
  }
  #mobile {
    display: block;
  }
  #banner .list {
    display: none;
  }
  #banner ul li .content-box .content h2 {
    font-size: 30px;
    line-height: 35px;
  }
  #banner ul li .content-box .content {
    top: 50%;
  }
  #index-body .i-about .left {
    width: 100%;
    padding-right: 0;
  }
  #index-body .i-about .right {
    width: 100%;
    margin-top: 30px;
  }
  #index-body .i-about {
    padding: 60px 0 60px;
  }
  #index-body .i-why ul li {
    width: 50%;
  }
  #index-body .i-why .top .left {
    width: 50%;
  }
  #index-body .i-why .top .right {
    width: 50%;
  }
  #index-body .i-why .top .right li {
    width: 100%;
  }
  #index-body .i-why .top {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #index-body .i-product .bottom .btn {
    display: none !important;
  }
}
@media screen and (max-width: 700px) {
  #banner ul li .content-box .content .box {
    width: 100%;
  }
  .more,
  #banner ul li .content-box .content .more {
    height: 35px;
    line-height: 35px;
    font-size: 16px;
    padding: 0 20px;
  }
  #index-body .i-about .right .logo {
    width: 150px;
    height: 150px;
    line-height: 150px;
  }
  #index-body .i-about .right .logo::after {
    background-size: cover;
  }
  #index-body .i-why ul li,
  #index-body .i-why .top .left {
    width: 100%;
  }
  #index-body .i-why .top .right {
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
  }
  #index-body .i-news .top .more {
    position: relative;
    margin-top: 15px;
  }
  #index-body .i-news ul li .left {
    width: 100%;
  }
  #index-body .i-news ul li .right {
    width: 100%;
    padding-left: 0;
    padding-top: 30px;
  }
  #footer .top .right .r-top .two,
  #footer .top .right .r-top .one {
    display: none;
  }
  #footer .top .right .r-top .three {
    max-width: 100%;
  }
}
@media screen and (max-width: 500px) {
  #banner ul li .content-box .content p {
    display: none;
  }
  #banner ul li .content-box .content h2 {
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 10px;
  }
  #index-body .i-title {
    font-size: 28px;
    line-height: 38px;
  }
  #index-body .tag {
    font-size: 20px;
  }
  #index-body .i-about .right ul {
    margin: -5px;
  }
  #index-body .i-about .right ul li {
    padding: 5px;
    width: 50%;
  }
  #index-body .i-about .right .logo {
    width: 100px;
    height: 100px;
    line-height: 100px;
  }
  #index-body .i-about .right .logo img {
    width: 40px;
  }
  #index-body .i-why {
    padding: 60px 0 60px;
  }
  #index-body .i-news ul li {
    padding: 15px;
    margin-bottom: 40px;
  }
  #index-body .i-news ul li .right h4 {
    font-size: 18px;
  }
  #footer .top .left .share #ewm {
    display: none;
  }
  #footer .top .right .form {
    padding: 30px 20px;
  }
}


.news-page .news-1 {
  padding: 100px 0 80px;
}
.news-page .news-1 .navList ul {
  margin: -10px -25px;
}
.news-page .news-1 .navList ul li {
  display: inline-block;
  vertical-align: top;
  padding: 10px 25px;
}
.news-page .news-1 .navList ul li a {
  display: inline-block;
  line-height: 50px;
  height: 50px;
  padding: 0 40px;
  font-weight: 500;
  font-size: 24px;
  color: #301500;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.news-page .news-1 .navList ul li a:hover,
.news-page .news-1 .navList ul li a.active {
  background: #ef8017;
  color: white;
  border-radius: 6px;
}
.news-page .news-1 .list {
  margin-top: 15px;
}
.news-page .news-1 .list ul {
  margin: -30px -13px;
}
.news-page .news-1 .list ul li {
  padding: 30px 13px;
}
.news-page .news-1 .list ul li .box {
  padding: 20px;
  border-radius: 15px;
  height: 400px;
  -o-box-shadow: 1px 2px 20px rgba(0, 0, 0, 0.07);
  -webkit-box-shadow: 1px 2px 20px rgba(0, 0, 0, 0.07);
  box-shadow: 1px 2px 20px rgba(0, 0, 0, 0.07);
}
.news-page .news-1 .list ul li .box a.img-box {
  border-radius: inherit;
  height: 260px;
}
.news-page .news-1 .list ul li .box time {
  margin-top: 30px;
  font-weight: 500;
  font-size: 18px;
  color: #a0a0a0;
  display: block;
}
.news-page .news-1 .list ul li .box time img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  margin-top: -0.3em;
}
.news-page .news-1 .list ul li .box h6 {
  margin: 10px 0;
  font-size: 24px;
  color: #301500;
  line-height: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  font-weight: 600;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.news-page .news-1 .list ul li .box h6:hover {
  color: #ef8017;
}
.news-page .news-1 .list ul li .box p {
  font-size: 18px;
  line-height: 2;
  color: #a0a0a0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  height: 6em;
}
.news-page .news-1 .list ul li .box a.link {
  margin-top: 0px;
  display: inline-block;
  cursor: pointer;
  cursor: hand;
  font-weight: 600;
  font-size: 22px;
  color: #ef8017;
}
.news-page .news-1 .list ul li .box a.link img {
  margin-left: 10px;
  display: inline-block;
  vertical-align: middle;
  margin-top: -0.2em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: relative;
  left: 0;
}
.news-page .news-1 .list ul li .box a.link:hover img {
  left: 10px;
}
.newdet-page .newdet-1 {
  padding: 80px 0 140px;
  text-align: center;
}
.newdet-page .newdet-1 h1 {
  font-size: 36px;
  color: #301500;
  font-weight: bold;
  line-height: 2;
}
.newdet-page .newdet-1 time {
  display: block;
  font-weight: 500;
  font-size: 24px;
  color: #a0a0a0;
  line-height: 2;
  margin-top: 20px;
}
.newdet-page .newdet-1 .text {
  margin: 40px 0 30px;
  padding: 40px 0;
  text-align: left;
  line-height: 2;
  border-top: 1px #301500 dotted;
  border-bottom: 1px #301500 dotted;
}
.newdet-page .newdet-1 .m-link {
  font-size: 22px;
  color: #a0a0a0;
  max-width: 50%;
  display: block;
  text-align: left;
  line-height: 2;
}
.newdet-page .newdet-1 .m-link a {
  display: block;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.newdet-page .newdet-1 .m-link a:hover {
  color: #ef8017;
}
.newdet-page .newdet-1 .share {
  float: right;
  margin-top: 20px;
}
.newdet-page .newdet-1 .share a {
  font-size: 20px;
  color: #301500;
  margin-left: 18px;
  display: inline-block;
  vertical-align: middle;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.newdet-page .newdet-1 .share a:hover {
  color: #ef8017;
}
.newdet-page .newdet-2 {
  padding-bottom: 85px;
}
.newdet-page .newdet-2 .productList {
  margin-top: 50px;
}
.contact-page .contact-1 {
  padding-bottom: 100px;
}
.contact-page .contact-1 .left {
  vertical-align: middle;
}
.contact-page .contact-1 .left #mapContainer {
  height: 550px;
}
.contact-page .contact-1 .right {
  padding-left: 0%;
  vertical-align: middle;
}
.contact-page .contact-1 .right .title{
  font-size: 40px;
  font-weight: 400;
}
.contact-page .contact-1 .right .text {
  font-weight: 500;
  font-size: 20px;
  color: #a0a0a0;
  line-height: 2;
  margin: 25px 0 40px;
}
.contact-page .contact-1 .right h6 {
  font-size: 24px;
  color: #301500;
  font-weight: 600;
  line-height: 2;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e5e5;
}
.contact-page .contact-1 .right .info {
  margin-top: 30px;
}
.contact-page .contact-1 .right .info ul {
  margin: -30px;
}
.contact-page .contact-1 .right .info ul li {
  padding: 30px;
}
/*.contact-page .contact-1 .right .info ul li.wid-100 {
  width: 100%;
}*/
.contact-page .contact-1 .right .info ul li .box2 {
  position: relative;
  padding-left: 90px;
}
.contact-page .contact-1 .right .info ul li .box2 i {
  position: absolute;
  left: 0;
  top: 3%;
}
.contact-page .contact-1 .right .info ul li .box2 h6 {
  border-bottom: none;
  padding-bottom: 0;
}
.contact-page .contact-1 .right .info ul li .box2 .text {
  margin: 0;
  font-size: 18px;
}
.contact-page .contact-2 {
  padding: 110px 0 90px;
}
.contact-page .contact-2 h2{
  font-size: 40px;
  font-weight: bold;
}
.contact-page .contact-2 .box {
  padding: 40px 55px;
  -o-box-shadow: 1px 2px 20px rgba(0, 0, 0, 0.07);
  -webkit-box-shadow: 1px 2px 20px rgba(0, 0, 0, 0.07);
  box-shadow: 1px 2px 20px rgba(0, 0, 0, 0.07);
  border-radius: 14px;
  text-align: center;
}
.contact-page .contact-2 .box .form {
  margin-top: 50px;
}
.contact-page .contact-2 .box .form ul {
  margin: -15px;
}
.contact-page .contact-2 .box .form ul li {
  padding: 15px;
}
.contact-page .contact-2 .box .form ul li input,
.contact-page .contact-2 .box .form ul li textarea {
  width: 100%;
  line-height: 24px;
  padding: 20px;
  border: none;
  background: #f2f2f2;
  font-size: 18px;
  color: black;
  display: block;
}
.contact-page .contact-2 .box .form ul li input::-webkit-input-placeholder, .contact-page .contact-2 .box .form ul li textarea::-webkit-input-placeholder {
  color: #a0a0a0;
}
.contact-page .contact-2 .box .form ul li input:-moz-placeholder, .contact-page .contact-2 .box .form ul li textarea:-moz-placeholder {
  color: #a0a0a0;
}
.contact-page .contact-2 .box .form ul li input::-moz-placeholder, .contact-page .contact-2 .box .form ul li textarea::-moz-placeholder {
  color: #a0a0a0;
}
.contact-page .contact-2 .box .form ul li input:-ms-input-placeholder, .contact-page .contact-2 .box .form ul li textarea:-ms-input-placeholder {
  color: #a0a0a0;
}
.contact-page .contact-2 .box .form ul li input::placeholder,
.contact-page .contact-2 .box .form ul li textarea::placeholder {
  color: #a0a0a0;
}
.contact-page .contact-2 .box .form ul li textarea {
  height: 150px;
}
.contact-page .contact-2 .box .form ul li.wid-33 {
  width: 33.33%;
}
.contact-page .contact-2 .box .form ul li.wid-50 {
  width: 50%;
}
.contact-page .contact-2 .box .form ul li.wid-100 {
  width: 100%;
}
@media screen and (max-width: 1700px){
  .news-page .news-1 {
    padding: 60px 0;
  }
  .news-page .news-1 .navList ul li a {
    line-height: 40px;
    height: 40px;
    padding: 0 25px;
    font-size: 20px;
  }
  .newdet-page .newdet-1 h1 {
    font-size: 28px;
  }
  .newdet-page .newdet-1 time {
    font-size: 18px;
  }
  .newdet-page .newdet-1 .m-link {
    font-size: 18px;
  }
  .newdet-page .newdet-1 .share {
    margin-top: 10px;
  }
  .newdet-page .newdet-1 .share a {
    font-size: 16px;
  }
  .newdet-page .newdet-1 {
    padding: 70px 0;
  }
  .contact-page .contact-2 .box .form ul li input,
  .contact-page .contact-2 .box .form ul li textarea {
    padding: 10px;
  }
  .contact-page .contact-2 .box .form ul li {
    padding: 5px;
  }
  .contact-page .contact-2 .box .form ul {
    margin: -5px;
  }
  .contact-page .contact-1 {
    padding: 60px 0;
  }
  .contact-page .contact-1 .right .text {
    font-size: 18px;
  }
  .contact-page .contact-1 .right h6 {
    font-size: 20px;
  }
  .contact-page .contact-1 .right .info ul li .box2 .text {
    font-size: 16px;
  }
  .contact-page .contact-1 .right .info ul li .box2 i {
    width: 60px;
  }
  .contact-page .contact-1 .left #mapContainer {
    height: 480px;
  }
  .contact-page .contact-2 {
    padding-bottom: 50px;
  }
  .contact-page .contact-2 .box {
    padding: 30px;
  }
}
@media screen and (max-width: 1500px){
  .news-page .news-1 .list ul li .box a.link {
    font-size: 18px;
  }
  .news-page .news-1 .list ul li .box h6 {
    font-size: 20px;
  }
  .contact-page .contact-1 .right .info ul li {
    padding: 10px;
  }
  .contact-page .contact-1 .right .info ul {
    margin: -10px;
  }
  .contact-page .contact-1 .right .text {
    margin: 15px 0 25px;
  }
  .contact-page .contact-1 .left #mapContainer {
    height: 400px;
  }
}
@media screen and (max-width: 1250px){
  .news-page .news-1 .list ul li {
    padding: 10px;
  }
  .news-page .news-1 .list ul {
    margin: -10px;
  }
  .news-page .news-1 .list ul li .box a.img-box {
    height: 200px;
  }
  .news-page .news-1 .list ul li .box time {
    margin-top: 20px;
  }
  .contact-page .contact-1 .right .info ul li {
    width: 100%;
  }
  .contact-page .contact-1 .right .info ul li .box2 {
    padding-left: 70px;
  }
  .contact-page .contact-1 .right .text {
    margin: 10px 0 15px;
    font-size: 16px;
  }
}
@media screen and (max-width: 1000px){
   .news-page .news-1 .list ul li {
    width: 50%;
  }
  .news-page .news-1 .navList {
    display: none;
  }
  .news-page .news-1 .list {
    margin-top: 0;
  }
  .contact-page .contact-1 .right {
    padding-left: 0;
    padding-top: 20px;
    width: 100%;
  }
  .contact-page .contact-1 .left {
    width: 100%;
  }
  .contact-page .contact-1 .left #mapContainer {
    height: 280px;
  }
}
@media screen and (max-width: 700px){
   .newdet-page .newdet-1 .m-link {
    font-size: 16px;
    max-width: none;
  }
  .newdet-page .newdet-1 .share {
    float: none;
    margin-bottom: 10px;
    text-align: left;
  }
  .newdet-page .newdet-1 .share a:first-child {
    margin-left: 0;
  }
   .contact-page .contact-2 .box .form ul li {
    width: 100% !important;
  }
}
@media screen and (max-width: 500px){
  .news-page .news-1 .list ul li {
    width: 100%;
  }
  .newdet-page .newdet-1 {
    padding: 40px 0;
  }
  .newdet-page .newdet-1 h1 {
    font-size: 24px;
  }
   .contact-page .contact-2 .box .form {
    margin-top: 25px;
  }
}
.about-page {
  padding-top: 4rem;
}
.about-page .about-1 .text {
  padding-right: 4rem;
  vertical-align: middle;
}
.about-page .about-1 .text h3 {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.3;
}
.about-page .about-1 .text .con {
  font-size: 16px;
  line-height: 2;
  margin-top: 15px;
}
.about-page .about-1 .text .con p:first-child {
  margin-bottom: 60px;
}
.about-page .about-1 .text dl {
  margin: 15px 0 1.5rem;
}
.about-page .about-1 .text dl dd i {
  display: inline-block;
  color: var(--color);
  font-size: 20px;
  margin-top: 5px;
}
.about-page .about-1 .text dl dd span {
  display: inline-block;
  padding-left: 0.75rem;
  font-size: 16px;
  line-height: 2;
  width: 90%;
}
.about-page .about-1 .text .line-dec {
  position: relative;
  height: 1px;
  background: #eee;
  margin-top: 20px;
  margin-bottom: 20px;
}
.about-page .about-1 .text .line-dec::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 1px;
  width: 40px;
  background: var(--color);
}
.about-page .about-1 .text .about-bottom {
  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: 1.5rem 0;
}
.about-page .about-1 .text .about-bottom .image.about-signature {
  margin-right: 2rem;
  width: 80px;
}
.about-page .about-1 .text .about-bottom .about-name {
  color: #000;
  font-size: 16px;
  line-height: 2;
  font-weight: 600;
}
.about-page .about-1 .text .about-bottom .about-rol {
  color: #555;
  font-size: 14px;
  line-height: 2;
}
.about-page .about-1 .img {
  position: relative;
  vertical-align: middle;
}
.about-page .about-1 .img::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  right: 50%;
  bottom: 50%;
  z-index: 1;
  background: var(--color);
}
.about-page .about-1 .img img {
  position: relative;
  z-index: 10;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.about-page .about-1 .img .about-img-hotifer {
  position: absolute;
  right: 574px;
  bottom: -30px;
  width: 260px;
  padding: 30px 16px;
  z-index: 11;
  border-radius: 2px;
  text-align: left;
  background: var(--color);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}
.about-page .about-1 .img .about-img-hotifer::before {
  /*font-family: 'Nucleo';
  content: "\ea44";*/
  bottom: 15px;
  right: 20px;
  position: absolute;
  color: rgba(255, 255, 255, 0.3);
  font-size: 35px;
  font-weight: normal;
  display: none;
}
.about-page .about-1 .img .about-img-hotifer p {
  color: #fff;
  font-size: 16px;
  line-height: 2;
  margin-bottom: 10px;
  text-align: left;
}
.about-page .about-1 .img .about-img-hotifer .icon {
  position: absolute;
  bottom: 15px;
  right: 10px;
  width: 39px;
  height: 32px;
}
.about-page .about-1 .img .about-img-hotifer .icon svg {
  fill: rgba(255, 255, 255, 0.3);
  vertical-align: middle;
  display: inline-block;
}
.about-page .about-1 .img:hover img {
  transform: scale(0.98);
  -webkit-transform: scale(0.98);
  -o-transform: scale(0.98);
  -ms-transform: scale(0.98);
  -moz-transform: scale(0.98);
}
.about-page .about-2 {
  background: url(/zjguanghe/2023/11/27/banner3.jpg) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  padding: 6rem 0 3rem;
  color: #fff;
  margin-top: 4rem;
}
.about-page .about-2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 27%);
}
.about-page .about-2 .left {
  width: 50%;
  margin: 0 5% 0 auto;
}
.about-page .about-2 .left .play {
  display: inline-block;
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 50%;
  text-align: center;
  line-height: 4.25rem;
  background: rgba(242, 97, 34, 0.8);
  position: relative;
  z-index: 1;
}
.about-page .about-2 .left .play i {
  font-size: 1.75rem;
  display: inline-block;
  vertical-align: middle;
  margin-left: 6px;
}
.about-page .about-2 .left .play::before,
.about-page .about-2 .left .play::after {
  position: absolute;
  z-index: -1;
  content: '';
  left: -15px;
  right: -15px;
  top: -15px;
  bottom: -15px;
  border-radius: 50%;
  background: rgb(240 145 29 / 27%);
  -webkit-animation: ks 2s linear infinite;
  -o-animation: ks 2s linear infinite;
  -ms-animation: ks 2s linear infinite;
  -moz-animation: ks 2s linear infinite;
  animation: ks 2s linear infinite;
}
.about-page .about-2 .left .play::before {
  -webkit-animation-delay: .6s;
  -o-animation-delay: .6s;
  -ms-animation-delay: .6s;
  -moz-animation-delay: .6s;
  animation-delay: .6s;
}
.about-page .about-2 .left .cont h6 {
  position: relative;
  font-weight: 400;
  color: #fff;
  font-size: 16px;
  line-height: 2;
  margin-bottom: 0px;
  padding-left: 50px;
}
.about-page .about-2 .left .cont h6::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--color);
  position: absolute;
  left: 0;
  top: 50%;
}
.about-page .about-2 .left .cont h4 {
  font-size: 26px;
  line-height: 1.8;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0px;
}
.about-page .about-2 .left .cont p {
  font-size: 16px;
  line-height: 2;
}
.about-page .about-3 {
  background: #f5f5f5;
  padding: 6rem 0;
}
.about-page .about-3 .header span {
  font-size: 16px;
  color: #555;
  position: relative;
  margin-bottom: 0px;
  padding-left: 50px;
}
.about-page .about-3 .header span::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--color);
  position: absolute;
  left: 0;
  top: 50%;
}
.about-page .about-3 .header h3 {
  font-size: 50px;
  font-weight: bold;
  line-height: 1.1;
  color: #000;
  position: relative;
  margin-bottom: 20px;
}
.about-page .about-3 .header h3 em {
  color: var(--color);
}
.about-page .about-3 .info ul {
  margin-right: -24px;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-box-flex-wrap: wrap;
  -moz-box-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.about-page .about-3 .info ul li {
  padding-right: 24px;
}
.about-page .about-3 .info .single-facility {
  background: #fff;
  padding: 40px 30px;
  -webkit-transition: .5s;
  transition: .5s;
  position: relative;
  height: 280px;
  z-index: 1;
  margin-bottom: 30px;
  line-height: 1;
}
.about-page .about-3 .info .single-facility h5 {
  font-size: 30px;
  color: #000;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 10px;
}
.about-page .about-3 .info .single-facility span {
  font-size: 48px;
  color: #fff;
  line-height: 1;
  margin-bottom: 15px;
  display: inline-block;
  -webkit-transition: .5s;
  transition: .5s;
  background: var(--color);
  padding: 10px;
}
.about-page .about-3 .info .single-facility p {
  margin: 0;
  color: #555;
  font-size: 16px;
  line-height: 2;
}
.about-page .about-3 .info .single-facility .facility-shape {
  position: absolute;
  opacity: 0.1;
  z-index: -1;
  bottom: 60px;
  left: 90px;
}
.about-page .about-3 .info .single-facility .facility-shape span {
  font-size: 140px;
  color: #ccc;
  background: transparent;
}
.about-page .about-3 .info .single-facility:hover h5 {
  color: var(--color);
  -webkit-transition: .5s;
  transition: .5s;
}
.about-page .about-3 .info .single-facility:hover span {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}
.about-page .about-4 {
  background: url(/zjguanghe/2023/11/27/banner4.jpg) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
  padding: 6rem 0;
  color: #fff;
}
.about-page .about-4::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.27);
}
.about-page .about-4 ul li .item.text-center {
  text-align: center;
}
.about-page .about-4 ul li .item .icon {
  width: 100px;
  height: 100px;
  line-height: 100px;
  font-size: 30px;
  margin-bottom: 10px;
  color: #fff;
  border-radius: 50%;
  border: 7px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.about-page .about-4 ul li .item .icon span,
.about-page .about-4 ul li .item .icon i {
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  line-height: 80px;
  border-radius: 50%;
  background: var(--color);
}
.about-page .about-4 ul li .item .icon .back {
  background: #fff;
  -webkit-transform: translateX(120%);
  transform: translateX(120%);
  color: var(--color);
}
.about-page .about-4 ul li .item h3 {
  
  margin-bottom: 5px;
  font-size: 36px;
    line-height: 1.6;
  font-weight: bold;
}
.about-page .about-4 ul li .item h6 {
  font-size: 20px;
  line-height: 1.8;
  font-weight: 700;
}
.about-page .about-4 ul li .item h6 span {
  font-size: 20px;
  color: var(--color);
  margin-right: 10px;
}
.about-page .about-4 ul li .item:hover .icon .front {
  -webkit-transform: translateX(-120%);
  transform: translateX(-120%);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
.about-page .about-4 ul li .item:hover .icon .back {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
.about-page .p11-team {
  padding: 4.5rem 0;
}
.about-page .p11-team .mml-row {
  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;
  padding: 0;
}
.about-page .p11-team .titles {
  max-width: 568px;
  width: 32%;
  margin: 0 4.5rem 0 10px;
}
.about-page .p11-team .titles h3.title {
 font-size: 30px;
    font-weight: bold;
    line-height: 1.6;
}
.about-page .p11-team .titles .desc {
  margin-top: 20px;
}
.about-page .p11-team .titles .desc p {
  font-size: 18px;
  line-height: 1.8;
  color: #242424;
  letter-spacing: 0.2px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  transition: all .3s ease;
}
.about-page .p11-team .titles h3 {
  color: #292d31;
  margin-bottom: 20px;
}
.about-page .p11-team .item-wrap {
  width: 60%;
  margin: -10px;
}
.about-page .p11-team .item-wrap .item {
  padding: 10px 15px;
  margin: 10px 15px;
  /*border: var(--color) solid 3px;*/
}
.about-page .p11-team .item-wrap .item p {
  color: #051321;
  margin-top: 10px;
  font-size: 18px;
  line-height: 1.8;
}
.about-page #cta {
  position: relative;
}
.about-page #cta::before {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 50%;
  content: '';
  display: block;
  background-color: #051026;
}
.about-page #cta .cta-content {
  width: 100%;
  /*max-width: 1760px;*/
  margin: 0 auto;
  background-image: -webkit-gradient(linear, left top, right top, from(var(--color)), to(#f35d2e));
  background-image: -webkit-linear-gradient(left, var(--color) 0%, #f35d2e 100%);
  background-image: -moz-linear-gradient(left, var(--color) 0%, #f35d2e 100%);
  background-image: linear-gradient(90deg,var(--color) 0%,#964322 100%);
}
.about-page #cta .cta-content .content-wrap {
  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: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 65px 0;
}
.about-page #cta .cta-content .content-wrap h2 {
  font-weight: bold;
  font-style: normal;
  font-size: 34px;
  line-height: 1.4;
  color: #fff;
  margin: 10px 0;
}
.about-page #cta .cta-content .content-wrap p {
  color: #fff;
  font-size: 18px;
  line-height: 1.8;
}
.about-page #cta .cta-content .content-wrap .mml-text {
  max-width: 750px;
}
.about-page #cta .cta-content .content-wrap .btn {
  margin: 10px 0;
}
.about-page #cta .cta-content .content-wrap .btn a {
  position: relative;
  display: inline-block;
  /* font-style: normal; */ 
  line-height: 1.6;
  font-size: 24px;
  text-align: center;
  padding: 16px 29px;
  border-radius: 5px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  transition: all .3s ease;
  border: 2px solid transparent;
}
.about-page #cta .cta-content .content-wrap .btn a.white {
  background-color: #fff;
  color: #9b4721; 
}
.about-page #cta .cta-content .content-wrap .btn a.white:hover {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}
@media screen and (max-width: 1000px) {
  
  .about-page .about-1 .text {
    width: 100%;
    padding-right: 0;
  }
  .about-page .about-1 .img {
    width: 100%;
    padding-top: 2rem;
  }
  .about-page .about-2 .left {
    margin: 0 20% 0 auto;
  }
  #cta h2 {
    font-size: 36px;
  }
  .about-page .about-3 .info ul li {
    width: 50%;
  }
  .about-page .about-4 ul li {
    width: 25% !important;
  }
  .about-page .about-4 ul li .item h6 {
    font-size: 16px;
  }
  .about-page .p11-team .mml-row {
    display: block;
  }
  .about-page .p11-team .mml-row .titles,
  .about-page .p11-team .mml-row .title {
    width: 100%;
    max-width: 100%;
  }
  .about-page .p11-team .mml-row .item-wrap {
    width: 100%;
    margin-top: 2rem;
  }
  .about-page .about-3 .info .single-facility {
    padding: 40px 15px;
  }
}
@media screen and (max-width: 700px){
   .about-page .about-1 .text h3 {
    font-size: 20px;
    line-height: 1.8;
  }
  .about-page .about-2 {
    display: none;
  }
  .about-page .about-3 .info ul {
    margin-right: 0;
  }
  .about-page .about-3 .info ul li {
    width: 100%;
    padding-right: 0;
  }
  .about-page .about-4 {
    display: none;
  }
  .about-page .p11-team .titles .desc p {
    font-size: 16px;
    line-height: 2;
  }
  .about-page .p11-team .titles{
    max-width: 100%;
    width: 100%;
  }
  .about-page #cta .cta-content .content-wrap p {
    font-size: 16px;
    line-height: 2;
  }
  .about-page #cta .cta-content .content-wrap .btn a {
    font-size: 16px;
    padding: 8px 15px;
  }
}
.product-page {
  background: #f5f5f5;
}
.product-page .sideright .top {
  width: 100%;
  /*width: 45%;*/
}
.product-page .sideright .top h3,
.product-page .sideright .top h1 {
     font-size: 26px;
    line-height: 1.6;
}
.product-page .sideright .top h3 em {
  color: var(--color);
  font-weight: bold;
}
.product-page .sideright .top .desc {
  font-size: 16px;
  line-height: 2;
  margin-top: 10px;
}
.product-page .sideright .list {
  margin-top: 2.5rem;
}
.product-page .sideright .list ul {
  margin: 0 -3rem -2.4rem 0;
}
.product-page .sideright .list ul li {
  padding: 0 3rem 2.4rem 0;
}
.product-page .sideright .list ul li .box {
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  position: relative;
  display: block;
}
.product-page .sideright .list ul li .box i {
  position: absolute;
  z-index: 1;
  background: var(--color);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  width: 0;
  height: 0;
}
.product-page .sideright .list ul li .box i.ie1 {
  width: 2px;
  top: 0;
  left: 0;
}
.product-page .sideright .list ul li .box i.ie2 {
  width: 2px;
  bottom: 0;
  right: 0;
}
.product-page .sideright .list ul li .box i.ie3 {
  height: 2px;
  top: 0;
  right: 0;
}
.product-page .sideright .list ul li .box i.ie4 {
  height: 2px;
  bottom: 0;
  left: 0;
}
.product-page .sideright .list ul li .box .img {
  width: 100%;
  background: #fff;
}
.product-page .sideright .list ul li .box .text {
  padding: 1.45rem 1.3rem 1.3rem;
}
.product-page .sideright .list ul li .box .text h4 {
  font-size: 20px;
    line-height: 1.8;
  font-weight: bold;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.product-page .sideright .list ul li .box .text p {
  font-size: 16px;
  line-height: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-top: 6px;
}
.product-page .sideright .list ul li .box:hover i.ie1 {
  height: 100%;
  bottom: 0;
  top: auto;
}
.product-page .sideright .list ul li .box:hover i.ie2 {
  height: 100%;
  top: 0;
}
.product-page .sideright .list ul li .box:hover i.ie3 {
  width: 100%;
  left: 0;
}
.product-page .sideright .list ul li .box:hover i.ie4 {
  width: 100%;
  right: 0;
  left: auto;
}
.product-page #index-body {
  background: #fff;
}
@media screen and (max-width: 1366px) {
  .product-page .sideright .list ul li {
    width: 50%;
  }
  .product-page .sideright .top {
    width: 70%;
  }
}
@media screen and (max-width: 700px) {
  .product-page .sideright .top {
    width: 100%;
    /*display: none!important;*/
  }
  .product-page .sideright .top .desc {
   font-size: 14px;
    line-height: 2;
  }
  .product-page .sideright .list ul li {
    width: 100%;
  }
}
.prodet-page {
  background: #f5f5f5;
}
.prodet-page .product-box .prodet-1 .left {
  width: 50%;
}
.prodet-page .product-box .prodet-1 .left .swiper {
  overflow: hidden;
  /*margin-top: 20px;*/
  padding: 5px;
}
.prodet-page .product-box .prodet-1 .left .swiper-slide {
  border: #ccc solid 1px;
}
.prodet-page .product-box .prodet-1 .left .swiper-slide img {
  width: 100%;
}
.prodet-page .product-box .prodet-1 .left a {
  display: block;
  border: 1px solid #eee;
}
.prodet-page .product-box .prodet-1 .left a img {
  width: 100%;
}
.prodet-page .product-box .prodet-1 .left ul {
  margin: -5px;
  padding: 0;
}
.prodet-page .product-box .prodet-1 .left ul li {
  padding: 5px;
}
.prodet-page .product-box .prodet-1 .left ul li i,
.prodet-page .product-box .prodet-1 .left ul li span {
  display: none !important;
}
.prodet-page .product-box .prodet-1 .left ul li img {
  display: block;
  margin: 0 auto;
}
.prodet-page .product-box .prodet-1 .left ul .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  text-indent: -9999em;
  width: 40px;
  height: 40px;
  border: none;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
  background-size: 8px;
  background-position: center center;
  background-repeat: no-repeat;
}
.prodet-page .product-box .prodet-1 .left ul .slick-arrow.slick-prev {
  background-image: url("../images/banner-btn-l.png");
  left: 10px;
}
.prodet-page .product-box .prodet-1 .left ul .slick-arrow.slick-next {
  background-image: url("../images/banner-btn-r.png");
  right: 10px;
}
.prodet-page .product-box .prodet-1 .right {
  padding-left: 40px;
  width: 50%;
}
.prodet-page .product-box .prodet-1 .right .title {
  font-size: 28px;
    line-height: 1.6;
  font-weight: 700;
}
.prodet-page .product-box .prodet-1 .right h3.title {
  font-size: 24px;
}
.prodet-page .product-box .prodet-1 .right .text {
  margin: 1.5rem 0;
  font-size: 16px;
  line-height: 1.8;
  max-height: 556px;
  padding-right: 20px;
  overflow-y: scroll;
  margin-bottom: 30px;
}
.prodet-page .product-box .prodet-1 .right .share {
  padding: 10px 0;
}
.prodet-page .product-box .prodet-1 .right .share h4 {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  line-height: 2;
}
.prodet-page .product-box .prodet-1 .right .share ul {
  display: inline-block;
  vertical-align: middle;
}
.prodet-page .product-box .prodet-1 .right .share ul li {
  width: auto;
  color: #666;
  margin: 5px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  font-size: 14px;
}
.prodet-page .product-box .prodet-1 .right .share ul li:hover {
  color: var(--color);
}
.prodet-page .product-box .prodet-1 .right a.tel {
  font-size: 18px;
  color: var(--color);
  display: block;
}
.prodet-page .product-box .prodet-1 .right a.contact {
  display: inline-block;
  vertical-align: middle;
  line-height: 50px;
  height: 50px;
  background: var(--color);
  color: white;
  padding: 0 35px;
  font-size: 20px;
  margin-top: 10px;
}
.prodet-page .product-box .prodet-2 {
  padding: 60px 0;
  line-height: 2;
}
.prodet-page .product-box .prodet-2 .options ul {
  background: #fff;
}
.prodet-page .product-box .prodet-2 .options ul li {
  width: auto;
  line-height: 40px;
  height: 40px;
  padding: 0 20px;
  color: #3d474a;
  border-radius: 0;
  font-size: 18px;
  font-weight: 400;
  text-transform: capitalize;
  margin-bottom: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  cursor: pointer;
}
.prodet-page .product-box .prodet-2 .options ul li:hover,
.prodet-page .product-box .prodet-2 .options ul li.active {
  color: white;
  background: var(--color);
}
.prodet-page .product-box .prodet-2 .ret {
  padding-top: 20px;
}
.prodet-page .product-box .prodet-2 .ret ul li{
  display: none;
}
.prodet-page .product-box .prodet-2 .ret p {
  padding: 5px 0;
  background: transparent !important;
}
.prodet-page .product-box .prodet-2 .ret table {
  margin: 5px 0;
}
.prodet-page .product-box .prodet-2 .ret table td {
  border: 1px solid #eee;
  font-size: 16px;
  line-height: 2;
}
.prodet-page .product-box .prodet-2 .ret table td p {
  padding: 0;
}
.prodet-page .product-box .prodet-2 .ret table tr:nth-child(1) {
  background: #949494 !important;
  color: #fff;
}
.prodet-page .product-box .prodet-2 .ret table tr:nth-child(even) {
  background: #f9f9f9;
}
.prodet-page .product-box .prodet-2 .ret form {
  margin-top: 30px;
  padding: 40px;
  background: #fff;
  box-shadow: #ccc 0 0 10px 0;
}
.prodet-page .product-box .prodet-2 .ret form ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.prodet-page .product-box .prodet-2 .ret form ul li {
  margin-top: 10px;
  width: 48%;
  display: inline-block;
}
.prodet-page .product-box .prodet-2 .ret form ul li:nth-child(5) {
  width: 100%;
}
.prodet-page .product-box .prodet-2 .ret form ul li:nth-child(5) textarea {
  width: 100%;
  border: #ccc solid 1px;
  padding: 10px;
  font-size: 16px;
}
.prodet-page .product-box .prodet-2 .ret form ul li:nth-child(6) {
  width: 100%;
}
.prodet-page .product-box .prodet-2 .ret form ul li:nth-child(6) input {
  background: var(--color);
  color: #fff;
  transition: all .5s;
}
.prodet-page .product-box .prodet-2 .ret form ul li:nth-child(6) input:hover {
  background: #000;
}
.prodet-page .product-box .prodet-2 .ret form ul li input {
  padding: 10px;
  border: #ccc solid 1px;
  width: 100%;
  font-size: 16px;
}
.prodet-page .product-box .prodet-3 h3.title {
  font-size: 32px;
  line-height: 1.6;
  margin-bottom: 30px;
  font-weight: 700;
}
.prodet-page .product-box .prodet-3 ul {
  margin: -10px;
}
.prodet-page .product-box .prodet-3 ul .slick-track {
  margin: 0;
}
.prodet-page .product-box .prodet-3 ul li {
  padding: 10px;
}
.prodet-page .product-box .prodet-3 ul li .box {
  display: block;
  background: white;
  -moz-box-shadow: 0 0 8px rgba(125, 125, 125, 0.2);
  -o-box-shadow: 0 0 8px rgba(125, 125, 125, 0.2);
  box-shadow: 0 0 8px rgba(125, 125, 125, 0.2);
}
.prodet-page .product-box .prodet-3 ul li .box a.img-box {
  display: block;
}
.prodet-page .product-box .prodet-3 ul li .box .content {
  display: block;
  padding: 20px 10px 40px 0;
  text-align: center;
  margin-top: 20px;
}
.prodet-page .product-box .prodet-3 ul li .box .content h3 {
  font-size: 16px;
  line-height: 1.6;
  color: #111;
  margin-bottom: 20px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.prodet-page .product-box .prodet-3 ul li .box .content h3:hover {
  color: var(--color);
}
.prodet-page .product-box .prodet-3 ul li .box .content h5 {
  display: block;
  font-size: 14px;
  line-height: 2;
  color: var(--color);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  text-transform: uppercase;
  font-weight: bold;
}
.prodet-page .product-box .prodet-3 ul li .box .content p {
  display: block;
  font-size: 14px;
  color: #888;
  line-height: 2;
  margin: 5px 0 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.prodet-page .product-box .prodet-3 ul li .box .content a.more {
  display: inline-block;
  vertical-align: middle;
  line-height: 36px;
  height: 36px;
  padding: 0 10px;
  /*border: 1px solid var(--color);*/
  font-size: 16px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  color: white;
}
.prodet-page .product-box .prodet-3 ul li .box .content a.more i {
  margin-left: 5px;
}
.prodet-page .product-box .prodet-3 ul li .box .content a.more:hover {
  color: white;
  background: var(--color);
}
@media screen and (max-width: 1400px) {
  .prodet-page .product-box .prodet-1 .right .text {
    max-height: 12em;
  }
}
@media screen and (max-width: 700px) {
  .prodet-page .product-box .prodet-1 .left {
    width: 100%;
  }
  .prodet-page .product-box .prodet-1 .right {
    width: 100%;
    padding: 1.5rem 0 0 0;
  }
  .prodet-page .product-box .prodet-1 .right .title {
    font-size: 24px;
    line-height: 1.8;
  }
}
.inner-page .sidebox {
  padding: 5rem 0;
}
.inner-page .sidebox .sideleft {
  width: 22%;
  position: sticky;
  top: 130px;
}
.inner-page .sidebox .sideleft .widget {
  background: #fff;
  padding: 30px;
  margin-bottom: 30px;
}
.inner-page .sidebox .sideleft .widget form {
  position: relative;
}
.inner-page .sidebox .sideleft .widget form input {
  width: 100%;
  padding: 10px;
  border: 0;
  background: #f8f8f8;
  margin-bottom: 0;
  height: 40px;
  font-size: 16px;
    line-height: 2;
}
.inner-page .sidebox .sideleft .widget form button {
  position: absolute;
  right: 0;
  top: 0;
  background-color: var(--color);
  color: #fff;
  border: 0;
  padding: 8px 16px;
  cursor: pointer;
  height: 40px;
}
.inner-page .sidebox .sideleft .widget h6 {
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  font-size: 27px;
  line-height: 1.8;
  margin-bottom: 15px;
  font-weight: bold;
  color: #000;
}
.inner-page .sidebox .sideleft .widget ul {
  margin-bottom: 0;
  padding: 0;
}
.inner-page .sidebox .sideleft .widget ul li {
  margin-bottom: 15px;
  color: #555;
  font-size: 16px;
  line-height: 1.5;
  position: relative;
  overflow: hidden;
}
.inner-page .sidebox .sideleft .widget ul li a {
  padding-left: 20px;
}
.inner-page .sidebox .sideleft .widget ul li:last-child {
  margin-bottom: 0;
}
.inner-page .sidebox .sideleft .widget ul li i {
  font-size: 14px;
  margin-right: 5px;
  position: absolute;
  left: 0;
  top: 4px;
}
.inner-page .sidebox .sideleft .widget ul li:hover,
.inner-page .sidebox .sideleft .widget ul li.active {
  color: var(--color);
}
.inner-page .sidebox .sideleft .widget ul li ul {
  display: none;
  margin-top: 15px;
}
.inner-page .sidebox .sideleft .widget ul li ul li a {
  padding-left: 0;
  color: #999;
}
.inner-page .sidebox .sideleft .widget ul li ul li a.active{
  color: var(--color);
}
.inner-page .sidebox .sideleft .widget .recent li {
  display: block;
}
.inner-page .sidebox .sideleft .widget .recent li .thum {
  width: 100px;
  overflow: hidden;
  float: left;
}
.inner-page .sidebox .sideleft .widget .recent li a.title {
  display: block;
  margin-left: 115px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  padding-top: 2rem;
}
.inner-page .sidebox .sideleft .widget .form1 {
  text-align: center;
}
.inner-page .sidebox .sideleft .widget .form1 input[type="text"],
.inner-page .sidebox .sideleft .widget .form1 textarea {
  width: 100%;
  padding: 10px;
  border: 0;
  background: #f8f8f8;
  margin-bottom: 0;
  margin-bottom: 15px;
  height: 40px;
  font-size: 16px;
    line-height: 2;
}
.inner-page .sidebox .sideleft .widget .form1 input[type="submit"] {
  background: var(--color);
  color: #fff;
  font-size: 18px; 
  text-transform: uppercase;
  height: 40px;
  padding: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.inner-page .sidebox .sideleft .widget .form1 input[type="submit"]:hover {
  background: #000;
}
.inner-page .sidebox .sideright {
  width: 78%;
  padding: 0 10px 50px 50px;
}
.inner-banner{
  height: 400px;
}
.mbx {
    padding: 20px 0;
    background: #f2f2f2;
    font-size: 18px;
}
.mbx.product{
  background: white;
}
.gallery-page {
  padding: 100px 0;
}
.gallery-page .list ul{
  margin: -15px;
}
.gallery-page .list ul li{
  padding: 15px;
}
.gallery-page .list ul li a{
  display: block;
}
.gallery-page .list ul li h6{
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
}
.m-page {
  text-align: center;
  padding-top: 20px;
}
.m-page a,
.m-page span {
  display: inline-block;
  margin: 2px 4px;
  min-width: 30px;
  line-height: 36px;
  height: 30px;
  color: #555;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
}
.m-page a:hover {
  color: var(--color);
}
.m-page span {
  background-color: var(--color);
  color: #fff;
}


.seoPublic .title {
    font-size: 40px;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 0.7em;
}

.seoPublic > div {
    padding: 60px 0;
    background: #fafafa;
}

.seoPublic > div:nth-child(odd) {
    background: #fff;
}

.seoPublic .Auxil-about .box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

.seoPublic .Auxil-about .box .left {
    width: 40%;
}

.seoPublic .Auxil-about .box .left .img {
    height: 100%;
    background-size: cover;
    background-position: center center;
    display: block;
}

.seoPublic .Auxil-about .box .right {
    width: 60%;
    padding-left: 5%;
    padding-top: 20px;
    padding-bottom: 20px;
}

.seoPublic .Auxil-about .box .right div.h3 {
    font-size: 36px;
    font-weight: normal;
    line-height: 1.2;
    margin-bottom: 1em;
}

.seoPublic .Auxil-about .box .right .text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    max-height: 400px;
    overflow: auto;
}

.seoPublic .Auxil-honor .list ul {
    margin: -10px;
}

.seoPublic .Auxil-honor .list ul li {
    padding: 10px 60px 30px 0;
}

.seoPublic .Auxil-honor .list ul li a {
    display: block;
}

.seoPublic .Auxil-honor .list ul li a img {
    width: 100%;
}

.seoPublic .Auxil-news .list ul {
    margin: -13px;
}

.seoPublic .Auxil-news .list ul li {
    padding: 13px;
}

.seoPublic .Auxil-news .list ul li a.img-box {
    display: block;
    height: 240px;
    background-size: cover;
    background-position: center center;
}

.seoPublic .Auxil-news .list ul li .content {
    margin-top: 30px;
    margin-right: 30px
}

.seoPublic .Auxil-news .list ul li .content div.h6 {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.6;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}

.seoPublic .Auxil-news .list ul li .content div.h6:hover {
    color: var(--color);
}

.seoPublic .Auxil-news .list ul li .content time {
    font-size: 14px;
    margin-top: .5em;
    padding: 3px 10px 3px 10px;
    color: white;
    background-color: #f0911d;
    width: 100px;
    display: block;
}

.seoPublic .Auxil-news .list ul li .content p {
    font-weight: 300;
    font-size: 16px;
    line-height: 1.8;
    margin: 1em 0;
}

.seoPublic .Auxil-news .list ul li .content a.link {
    font-weight: 300;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 2;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    border-bottom: 1px solid transparent;
    display: inline-block;
}

.seoPublic .Auxil-news .list ul li .content a.link:hover {
    border-color: var(--color);
    color: var(--color);
}

.seoPublic .Auxil-form .form ul {
    margin: -10px;
}

.seoPublic .Auxil-form .form ul li {
    padding: 10px;
}

.seoPublic .Auxil-form .form ul li input,
.seoPublic .Auxil-form .form ul li textarea {
    display: block;
    width: 100%;
    border: 1px solid #eee;
    font-size: 16px;
    padding: 8px 15px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}

.seoPublic .Auxil-form .form ul li textarea {
    height: 100px;
}

.seoPublic .Auxil-form .form ul li input:focus,
.seoPublic .Auxil-form .form ul li textarea:focus {
    border-color: var(--color);
}

.seoPublic .Auxil-form .form ul li.wid-100 {
    width: 100%;
}

.seoPublic .Auxil-form .form ul li input[type="submit"] {
    width: auto;
    display: inline-block;
    padding-left: 25px;
    padding-right: 25px;
    background: var(--color);
    color: whitesmoke;
    border: none;
}

.seoPublic .Auxil-form .form ul li input[type="submit"]:hover {
    background: #222;
}

.seoPublic .seoIndustry .text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

.seoPublic .text a {
    color: var(--color);
}

.seoPublic .text a:hover {
    text-decoration: underline;
}

.seoPublic .Auxil-through {
    padding: 15px 0;
    background: none !important;
}

.seoPublic .Auxil-through a {
    display: inline-block;
    line-height: 40px;
    height: 40px;
    padding: 0 25px;
    font-size: 14px;
    color: black;
    border: 1px solid #eee;
    background: #f8f8f8;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}

.seoPublic .Auxil-through a:hover {
    background: var(--color);
    color: white;
}

.seoPublic .Auxil-related .list ul {
    margin: -20px -25px;
}

.seoPublic .Auxil-related .list ul li {
    padding: 20px 25px;
}

.seoPublic .Auxil-related .list ul li .box {
    display: block;
    background: white;
    -o-box-shadow: 0 0 12px rgba(125, 125, 125, 0.5);
    -webkit-box-shadow: 0 0 12px rgba(125, 125, 125, 0.5);
    box-shadow: 0 0 12px rgba(125, 125, 125, 0.5);
}

.seoPublic .Auxil-related .list ul li .box a.img-box {
    display: block;
}

.seoPublic .Auxil-related .list ul li .box .content {
    display: block;
    padding: 20px;
    text-align: center;
}

.seoPublic .Auxil-related .list ul li .box .content div.h3 {
    font-size: 22px;
    color: #111;
    font-weight: 500;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}

.seoPublic .Auxil-related .list ul li .box .content div.h3:hover {
    color: var(--color);
}

.seoPublic .Auxil-related .list ul li .box .content p {
    display: block;
    font-size: 16px;
    color: #888;
    line-height: 1.6;
    font-weight: 400;
    margin: .5em 0;
    height: 4.8em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.seoPublic .Auxil-related .list ul li .box .content a.more {
    display: inline-block;
    vertical-align: middle;
    line-height: 40px;
    height: 40px;
    padding: 0 20px;
    border: 1px solid var(--color);
    font-size: 16px;
    font-weight: 700;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    color: white;
}

.seoPublic .Auxil-related .list ul li .box .content a.more i {
    margin-left: 5px;
}

.seoPublic .Auxil-related .list ul li .box .content a.more:hover {
    color: white;
    background: var(--color);
}

@media screen and (max-width: 1400px) {
    .seoPublic .title {
        font-size: 28px;
        margin-bottom: 1.5em;
    }

    .seoPublic .Auxil-about .box .right div.title,
    .seoPublic .Auxil-related .list ul li .box .content div.h3 {
        font-size: 20px;
    }

    .seoPublic .Auxil-form .form ul li input,
    .seoPublic .Auxil-form .form ul li textarea,
    .seoPublic .Auxil-about .box .right .text,
    .seoPublic .Auxil-news .list ul li .content p,
    .seoPublic .seoIndustry .text,
    .seoPublic .Auxil-related .list ul li .box .content p {
        font-size: 14px;
    }

    .seoPublic .Auxil-news .list ul li .content div.h6 {
        font-size: 18px;
    }

    .seoPublic .Auxil-related .list ul li .box .content a.more {
        font-size: 14px;
        line-height: 34px;
        height: 34px;
        padding: 0 15px;
    }

    .seoPublic .Auxil-related .list ul li {
        padding: 15px;
    }

    .seoPublic .Auxil-related .list ul {
        margin: -15px;
    }
}

@media screen and (max-width: 1000px) {
    .seoPublic .title {
        font-size: 24px;
        margin-bottom: 1em;
    }

    #cp-Nav {
        display: block;
    }

    #cp-Nav .nav {
        padding: 0 15px;
    }

    #cp-Nav .nav div.title {
        font-size: 18px;
        font-weight: bold;
        padding: 8px 10px;
        background: var(--color);
        border-radius: 5px;
        color: white;
    }

    #cp-Nav .nav i.mask {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 230;
        background: rgba(0, 0, 0, 0.2);
    }

    #cp-Nav .nav > ul {
        display: none;
    }

    #cp-Nav .nav ul {
        position: fixed;
        top: 10%;
        max-height: 80%;
        left: 5%;
        width: 90%;
        padding: 20px;
        border-radius: 5px;
        background: white;
        z-index: 300;
        font-size: 16px;
        overflow: auto;
    }

    #cp-Nav .nav ul ul {
        padding: 0 10px;
        font-size: 14px;
        position: static;
        max-height: none;
        width: 100%;
        margin: 10px 0;
    }

    #cp-Nav .nav ul li a {
        display: block;
        padding: 5px 0;
        line-height: 28px;
    }

    .seoPublic .Auxil-about .box {
        display: block;
    }

    .seoPublic .Auxil-about .box .right {
        width: 100%;
        padding: 0;
        margin-top: 20px;
    }

    .seoPublic .Auxil-about .box .left {
        width: 100%;
        padding: 0;
    }

    .seoPublic .Auxil-about .box .left .img {
        height: 300px;
    }

    .seoPublic .Auxil-about .box .right div.h3 {
        font-size: 18px;
    }

    .seoPublic > div {
        padding: 30px 0;
    }
    .seoPublic .Auxil-about .box .right .text {
        max-height: none;
    }
}

#toTop{
  position: fixed;
  right: 25px;
  bottom: 120px;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  background: var(--color);
  color: white;
  text-align: center;
  line-height: 50px;
  cursor: pointer;
  transition: 0.5s;
  font-size: 18px;
}

@media screen and (max-width:1200px){
  .inner-page .sidebox .sideleft{
    display: none;
  }
  .inner-page .sidebox .sideright{
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width:700px){
  .about-page .about-3 .header h3{
    font-size: 30px;
  }
  .about-page .about-3 .info .single-facility h5{
    font-size: 24px;
  }
}
@media screen and (max-width:500px){
  .about-page #cta .cta-content .content-wrap h2,
  .about-page .about-3 .header h3,
  .about-page .p11-team .titles h3.title{
    font-size: 24px;
  }
}