@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Regular.eot');
  src: url('../fonts/Montserrat-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/Montserrat-Regular.woff2') format('woff2'), url('../fonts/Montserrat-Regular.woff') format('woff'), url('../fonts/Montserrat-Regular.ttf') format('truetype');
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Medium.eot');
  src: url('../fonts/Montserrat-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/Montserrat-Medium.woff2') format('woff2'), url('../fonts/Montserrat-Medium.woff') format('woff'), url('../fonts/Montserrat-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Unbounded';
  src: url('../fonts/Unbounded-Medium.eot');
  src: url('../fonts/Unbounded-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/Unbounded-Medium.woff2') format('woff2'), url('../fonts/Unbounded-Medium.woff') format('woff'), url('../fonts/Unbounded-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
}
body {
  font-family: "Montserrat";
  max-width: 1920px;
  --color: #94251e;
  --font: 'Unbounded';
  font-weight: 500;
  margin: 0 auto;
}
.container {
  width: 100%;
  max-width: 1610px;
}
.body-overflow-box {
  position: relative;
  left: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.font1 {
  font-family: var(--font);
}
#header {
  z-index: 21;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}
#header.inner {
	position: sticky;
}
#header.inner .nav,
#header.active .nav {
	background-color: var(--color);
}
#header .nav {
  color: white;
	transition: background-color .5s;
}
#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;
  height: 5em;
}
#header .nav .ui.menu .logo {
  display: inline-block;
  margin-left: 0;
  margin-right: auto;
  vertical-align: middle;
}
#header .nav .ui.menu .menu-box {
  display: inline-block;
  vertical-align: middle;
  margin-left: auto;
  margin-right: 0;
}
#header .nav .ui.menu .menu-box > div {
  height: 100%;
}
#header .nav .ui.menu .menu-box ul.menu {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#header .nav .ui.menu .menu-box ul.menu > li {
  margin: 0 1.5em;
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  float: left;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: uppercase;
}
/* #header .nav .ui.menu .menu-box ul.menu > li:hover {
  color: var(--color);
} */
#header .nav .ui.menu .menu-box ul.menu > li > a {
  padding: 1em 0;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu {
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  text-align: left;
  position: absolute;
  font-size: 14px;
  background: #fff;
  top: 100%;
  left: -10px;
  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: 8px 15px;
  color: black;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
  position: relative;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li a {
  display: block;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li ul {
  position: absolute;
  left: 100%;
  top: 0;
  width: 100%;
  display: none;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li:hover {
  background: #222;
  color: white;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li:hover > ul {
  display: block;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover ul.sub-menu {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  -ms-transform: rotate3d(0, 0, 0, 0);
  -o-transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .ui.menu .h-search {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0;
  cursor: pointer;
  cursor: hand;
}
#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);
}
html[lang=sa] #header .nav .search-box form input[type="submit"] {
  right: auto;
  left: 15px;
}
#header .nav .search-box .close {
  width: 30px;
  height: 30px;
  background: url(../images/close.png) no-repeat;
  position: absolute;
  right: 25px;
  top: 15px;
  cursor: pointer;
}
#banner .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50px;
  height: 80px;
  color: transparent;
  border: none;
  z-index: 1;
  outline: none;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  opacity: 0;
}
#banner .slick-arrow:hover {
  background-color: var(--color);
}
#banner:hover .slick-arrow {
  opacity: 1;
}
#banner .slick-prev {
  background: url("../images/banner-btn-l.png") no-repeat center center rgba(0, 0, 0, 0.3);
  left: 15px;
}
#banner .slick-next {
  background: url("../images/banner-btn-r.png") no-repeat center center rgba(0, 0, 0, 0.3);
  right: 15px;
}
#banner ul.slick-dots {
  position: absolute;
  bottom: 5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#banner ul.slick-dots li {
  width: 30px;
  height: 30px;
  display: inline-block;
  margin: 0 10px;
  border-radius: 100%;
  border: 6px solid white;
  background-color: var(--color);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner ul.slick-dots li button {
  display: none;
}
#banner ul.slick-dots li.slick-active {
  border-color: var(--color);
  background-color: white;
}
#banner .slick-slide .content {
  display: none;
}
#banner .slick-active .content {
  display: block;
}
.wpulike.wpulike-default {
  display: none;
}
.prodet-page .wpulike.wpulike-default,
.newdet-page .wpulike.wpulike-default {
  display: inline-block;
}
.post-views-box {
  position: relative;
  margin-left: 20px;
}
.post-views-box .wp_ulike_btn.wp_ulike_put_image:after {
  background-image: url(../images/fw.png) !important;
  -webkit-filter: none;
  filter: none;
}
.wpulike {
  z-index: 10;
}
.wpulike.post-views-box {
  z-index: 5;
}
#banner .nivo-directionNav a {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.3);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  color: transparent;
  overflow: hidden;
  text-indent: -999em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner .nivo-directionNav a {
  opacity: 0;
}
#banner:hover .nivo-directionNav a {
  opacity: 1;
}
#banner .nivo-directionNav a:hover {
  background-color: var(--color);
}
#banner .nivo-directionNav a.nivo-prevNav {
  background-image: url(../images/banner-btn-l.png);
  left: 40px;
}
#banner .nivo-directionNav a.nivo-nextNav {
  background-image: url(../images/banner-btn-r.png);
  right: 40px;
}
#banner .theme-default .nivo-controlNav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: auto !important;
}
#banner .theme-default .nivo-controlNav a {
  width: 25px  !important;
  height: 25px !important;
  background: #fff !important;
  border: 7px solid #7d7d7d !important;
  border-radius: 100% !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  margin: 0 8px !important;
}
#banner .theme-default .nivo-controlNav a.active {
  border-color: var(--color) !important;
}
html.mobile {
  overflow: hidden;
}
html.mobile .body-overflow-box {
  position: relative;
  right: 280px;
}
#mobile {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  display: none;
  z-index: 200;
  height: 100%;
}
#mobile:before {
  content: '';
  width: 200%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 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;
  right: 100%;
  width: 100vw;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--color);
  -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;
  right: 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: var(--color);
  padding: 40px 10% 60px;
  overflow-y: auto;
  color: white;
}
#mobile .menu-content::-webkit-scrollbar {
  width: 3px;
  border-radius: 1.5px;
}
#mobile .menu-content::-webkit-scrollbar-button {
  display: none;
}
#mobile .menu-content::-webkit-scrollbar-track {
  background-color: #222;
}
#mobile .menu-content::-webkit-scrollbar-thumb {
  background-color: #eee;
}
#mobile .menu-content h3 {
  font-size: 20px;
  color: inherit;
  text-transform: capitalize;
  margin-bottom: 10px;
}
#mobile .menu-content h3 i {
  font-size: 16px;
  position: relative;
  top: -1px;
}
#mobile .menu-content .menu-logo {
  display: block;
}
#mobile .menu-content .menu-logo img {
  margin: 0 auto;
}
#mobile .menu-content .menu-list {
  margin: 40px 0;
}
#mobile .menu-content .menu-list ul li {
  font-size: 15px;
  color: inherit;
  text-transform: uppercase;
  line-height: 20px;
}
#mobile .menu-content .menu-list ul li a {
  padding: 8px 0;
  display: block;
}
#mobile .menu-content .menu-list ul li a:hover {
  color: var(--color);
  text-decoration: underline;
}
#mobile .menu-content .menu-list ul li li a {
  position: relative;
  padding-left: 15px;
  font-size: 13px;
  line-height: 18px;
}
#mobile .menu-content .menu-list ul li li a:after {
  content: '';
  width: 6px;
  height: 1px;
  background: white;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#mobile .menu-content .menu-list ul li li li a {
  padding-left: 25px;
}
#mobile .menu-content .menu-list ul li li li a:after {
  width: 12px;
}
#mobile .menu-content .mob-search form {
  position: relative;
}
#mobile .menu-content .mob-search form input {
  width: 100%;
  height: 45px;
  line-height: 45px;
  border-radius: 5px;
  border: none;
  padding: 0 15px;
  font-size: 14px;
  color: black;
}
#mobile .menu-content .mob-search form input[type="submit"] {
  width: 45px;
  height: 45px;
  background: url("../images/icon-search-white.png") no-repeat center center #222;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0;
}
#mobile .menu-content .mob-yuy {
  margin: 40px 0;
}
#mobile .menu-content .mob-yuy ul li {
  margin-bottom: 10px;
  color: inherit;
  font-size: 14px;
}
#mobile .menu-content .mob-yuy ul li img {
  max-width: 40px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
#mobile .menu-content .mob-share ul li {
  width: 30px;
  height: 30px;
  border-radius: 3px;
  background: #333;
  display: inline-block;
  text-align: center;
  line-height: 30px;
  color: white;
  font-size: 14px;
  margin-right: 3px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#mobile .menu-content .mob-share ul li:hover {
  background: var(--color);
}
#mobile .menu-content #menu-off {
  margin-top: 40px;
  cursor: pointer;
  cursor: hand;
}
#mobile.active {
  right: 0;
}
#mobile.active:before {
  left: 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 {
  -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;
}
html[lang=sa] #mobile .menu-content .mob-search form input[type="submit"] {
  right: auto;
  left: 0;
}
html[lang=sa] #mobile.white .menu-content .mob-search form input[type="submit"] {
  border-radius: 0;
  border-top-left-radius: 5px;
  border-bottom-left-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;
}
#banner {
  background-position: center bottom;
  background-size: 100% auto;
  background-color: #161514;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}
#banner .bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: -1;
}
#banner .bg img {
  opacity: 0;
}
#banner .top {
  width: 84%;
  left: 8%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#banner .bottom {
  width: 24%;
  left: 38%;
  bottom: 9%;
}
#banner .img {
  width: 100%;
  left: 0;
  top: 0;
}
#banner h2 {
  color: #FFFFFF;
  line-height: 1.15384615;
  font-family: var(--font);
  font-size: 6.8vw;
}
#banner h2 span {
  font-size: 7.65vw;
}
#banner p {
  color: #FFFFFF;
}
.yuy {
  height: auto;
}
.yuy span img {
  vertical-align: bottom;
}
.home-1 .left .btns a {
  background-color: var(--color);
  color: #FFFFFF;
}
.home-1 .right {
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}
.home-1 .right .Tit {
  color: var(--color);
  line-height: 1;
}
.home-1 .right .list {
  padding: 10px 0;
  position: relative;
}
.home-1 .right .list::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 24px;
  border-left: 1px solid #efefef;
}
.home-1 .right .list li + li {
  margin-top: 10px;
}
.home-1 .right .list li span {
  color: var(--color);
  width: 50px;
  margin-right: 10px;
  text-align: center;
}
.home-1 .right .list li a {
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
  background: -webkit-gradient(linear, left top, right top, from(currentcolor), to(currentcolor)) 0px 100% / 0px 1px no-repeat;
  background: -webkit-linear-gradient(left, currentcolor 0%, currentcolor 100%) 0px 100% / 0px 1px no-repeat;
  background: -moz-linear-gradient(left, currentcolor 0%, currentcolor 100%) 0px 100% / 0px 1px no-repeat;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 100% / 0px 1px no-repeat;
}
.home-1 .right .list li a:hover {
  background-size: 100% 1px;
  color: var(--color);
}
.home-1 .right .list li.active a {
  background-size: 100% 1px;
  color: var(--color);
}
.home-2 {
  background-color: #efefef;
}
.home-2 .bg {
  position: absolute;
  top: 0;
  left: 33%;
  width: 34%;
  height: 100%;
}
.home-2 .left .desc {
  color: var(--color);
}
.home-2 .left .desc::before {
  content: "";
  display: block;
  width: 123px;
  border-bottom: 5px solid currentColor;
  margin-bottom: 20px;
}
.home-2 .left .name {
  line-height: 1.28571429;
}
.home-2 .left .text {
  line-height: 1.5;
  min-height: 10.5em;
}
.home-2 .left .btns a {
  background-color: var(--color);
  color: #FFFFFF;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.home-2 .left .btns a:hover {
  background-color: #000000;
}
.home-2 .right .part {
  width: 20%;
  left: 80%;
  bottom: 0;
}
.home-2 .slickBtn.pos div {
  width: auto;
  height: auto;
  background-color: transparent;
  border-radius: 0;
  color: #dfdfdf;
}
.home-2 .slickBtn.pos div:hover {
  color: var(--color);
}
.home-2 .slickDots {
  left: 88%;
  top: 110%;
}
.home-2 .slickDots ul li {
  border: 0;
  background-color: #dfdfdf;
}
.home-2 .slickDots ul li.slick-active {
  background-color: var(--color);
}
@media (min-width: 1450px) {
  .home-2 .slickBtn {
    font-size: 60px;
  }
}
.home-3 .list li > div {
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  -webkit-transition: background-color 0.5s;
  -moz-transition: background-color 0.5s;
  transition: background-color 0.5s;
}
.home-3 .list li > div::before {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  background-color: #000000;
  -webkit-transition: background-color 0.5s;
  -moz-transition: background-color 0.5s;
  transition: background-color 0.5s;
}
.home-3 .list li > div .icon img {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.home-3 .list li > div .name {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.home-3 .list li > div:hover {
  background-color: var(--color);
}
.home-3 .list li > div:hover::before {
  background-color: #FFFFFF;
}
.home-3 .list li > div:hover .icon img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.home-3 .list li > div:hover .name {
  color: #FFFFFF;
}
.home-4 .list li img {
  width: 100%;
}
.home-4 .list li > div {
  grid-template-columns: repeat(2, 1fr);
}
.home-4 .list li > div .grid-span {
  grid-column: span 2;
}
.home-5 .tit {
  line-height: 1.5;
  min-height: 3em;
}
.home-5 .txt {
  line-height: 1.5;
  min-height: 4.5em;
  max-width: 600px;
  margin: auto;
}
.home-5 .left {
  color: #FFFFFF;
}
.home-5 .left .btns a:hover {
  background-color: #FFFFFF;
  color: #000000;
}
.home-5 .btns a {
  background-color: var(--color);
  color: #FFFFFF;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.home-5 .btns a:hover {
  background-color: #000000;
}
.home-6 .Tit {
  line-height: 1.2;
}
.home-6 .btns a {
  background-color: var(--color);
  color: #FFFFFF;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.home-6 .btns a:hover {
  background-color: #000000;
}
.home-6 .right li {
  outline: 1px solid #c8c8c8;
}
.home-6 .right li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.home-6 .right li .num {
  color: var(--color);
  line-height: 1.3;
}
.home-6 .right li p {
  line-height: 2;
  min-height: 4em;
}
.home-7 .box {
  background-image: url(../images/home7-bub.png);
  background-repeat: no-repeat;
  background-position: left -15px center;
  background-size: 12%;
  background-color: var(--color);
  color: #FFFFFF;
}
.home-7 .form input {
  padding: 10px 0;
  width: 100%;
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #FFFFFF;
}
.home-7 .form input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.home-7 .form input:-moz-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.home-7 .form input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.home-7 .form input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.home-7 .form input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.home-7 .form button {
  line-height: 1;
  border: 0;
  background-color: transparent;
}
.home-8 {
  background-color: #f7f5f5;
}
.home-8 .list li > div {
  background-color: #FFFFFF;
}
.home-8 .list li .txt {
  line-height: 1.5;
  min-height: 6em;
}
.home-8 .list li .btns a {
  background-color: var(--color);
  color: #FFFFFF;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.home-8 .list li .btns a:hover {
  background-color: #000000;
}
#footer {
  background-color: #252525;
  color: #FFFFFF;
}
#footer .footer-top .footer-block li {
  line-height: 1.75;
}
#footer .footer-top .footer-block li a {
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
  background: -webkit-gradient(linear, left top, right top, from(currentcolor), to(currentcolor)) 0px 100% / 0px 1px no-repeat;
  background: -webkit-linear-gradient(left, currentcolor 0%, currentcolor 100%) 0px 100% / 0px 1px no-repeat;
  background: -moz-linear-gradient(left, currentcolor 0%, currentcolor 100%) 0px 100% / 0px 1px no-repeat;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 100% / 0px 1px no-repeat;
}
#footer .footer-top .footer-block li a:hover {
  background-size: 100% 1px;
  color: var(--color);
}
#footer .footer-top .footer-block li span.date {
  color: #7c7c7c;
}
#footer .footer-top .footer-block .share a {
  width: 1.9em;
  height: 1.9em;
  text-align: center;
  line-height: 1.9;
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#footer .footer-top .footer-block .share a:hover {
  background-color: var(--color);
}
#footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
#footer .footer-bottom img.login {
  height: 16px;
}
#ewm {
  width: 86px;
  border: 5px solid #FFFFFF;
}
@media (max-width: 1000px) {
  #banner .bottom {
    display: none;
  }
  .home-1 .right .list li span {
    width: 30px;
  }
  .home-1 .right .list::before {
    left: 15px;
  }
  .home-7 .box {
    background-image: none;
  }
  .hide-1000 {
    display: none;
  }
}
@media (max-width: 700px) {
  .home-2 .bg {
    display: none;
  }
  .home-2 .left {
    width: 100%;
  }
  .home-2 .right {
    width: 100%;
  }
  .home-2 .left .text {
    min-height: auto;
  }
  .home-2 .slickDots {
    position: static;
    margin-top: 30px;
  }
  .home-6 .right li {
    width: 50%;
  }
  .home-7 .form li {
    width: 100%;
  }
  .home-7 .form li:last-of-type {
    margin-top: 20px;
  }
}



.i-title p {
  font-size: 16px;
  font-weight: bold;
  color: var(--color);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.i-title h3 {
  font-size: 34px;
  font-family: var(--font);
  line-height: 1.2;
}

.inner-banner {
  position: relative;
  color: white;
	background-color: #292929;
	height: 100px;
}
.inner-banner > img {
	display: none;
}
.inner-banner .content {
	display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.inner-banner .content h3 {
  font-size: 30px;
  font-family: var(--font);
  text-align: center;
  text-transform: uppercase;
}
.inner-banner .content h3 em {
  color: var(--color);
}
.inner-banner .content p {
  font-size: 16px;
  text-align: center;
/*   text-transform: uppercase; */
  margin-top: 5px;
}
.inner-banner .mbx {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 14px;
  padding-left:20px;
  line-height: 28px;

}
.inner-banner .mbx a:first-child{
  color: transparent;
  width:11px;
  height: 11px;
  background: url('../images/home.png')no-repeat; 
  position: absolute;
  top:50%;
  transform: translateY(-50%);
  left:0;
}

@media (max-width: 1000px) {
	.i-title p {
	  font-size: 18px;
	}
	.i-title h3 {
	  font-size: 24px;
	  line-height: 40px;
	}
	

	.inner-banner .content h3 {
	  font-size: 40px;
	}
}

@media (max-width: 700px) {
	.inner-banner {
		height: 200px;
	}
  .inner-banner > img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    position: absolute;
    top: 0;
    height: 100%;
    left: 0;
  }

  .inner-banner .content {
    position: relative;
    -webkit-transform: unset;
    -moz-transform: unset;
    -ms-transform: unset;
    transform: unset;
    z-index: 5;
    left: unset;
    top: unset;
  }
/*   .inner-banner .mbx {
    -webkit-transform: unset;
    -moz-transform: unset;
    -ms-transform: unset;
    transform: unset;
    z-index: 5;
    left: unset;
    top: unset;
    position: relative;
    text-align: center;
    padding: 0 15px;
    margin-top: 20px;
    width: fit-content;
  } */
  .inner-banner .content h3 {
    font-size: 20px;
  }
  .inner-banner .content p {
    display: none;
  }
}



.factory-page .factory-1 .top .navlist {
  margin-top: 55px;
  width: 100%;
}
.factory-page .factory-1 .top .navlist ul {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.factory-page .factory-1 .top .navlist ul li {
  width: 245px;
  height: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: 2px solid #d1d1d1;
  margin-right: 35px;
}
.factory-page .factory-1 .top .navlist ul li.active {
  color: var(--color);
}
.factory-page .factory-1 .top .navlist ul li:last-child {
  margin-right: 0;
}
.factory-page .factory-1 .content {
  margin-top: 50px;
}
.factory-page .factory-1 .content ul {
  margin: 0 -5px;
}
.factory-page .factory-1 .content ul li {
  padding: 0 5px;
  margin-bottom: 50px;
}
.factory-page .factory-1 .content ul li a.img {
  width: 100%;
  display: block;
}
.factory-page .factory-1 .content ul li a.img img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 700px) {
	.factory-page .factory-1 .top .con {
	  width: 100%;
	  margin-top: 50px;
	}
	.factory-page .factory-1 .top .navlist ul li {
	  width: 50%;
	  margin-right: 0;
	}
}

@media (max-width: 500px) {
  .factory-page .factory-1 .top .navlist ul li {
    width: 100%;
    margin-bottom: 20px;
  }
  .factory-page .factory-1 .top .navlist ul li:last-child {
    margin-bottom: 0;
  }
}



.related-honor .partner {
  margin: 80px 0 50px;
}
.related-honor .partner ul {
  margin: 0 -30px;
}
.related-honor .partner ul li {
  padding: 0 30px;
}
.related-honor .partner ul li .img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.related-honor .top .con {
  max-width: 56%;
  font-size: 16px;
}
.related-honor .honor ul {
  margin: 0 -30px;
}
.related-honor .honor ul li {
  padding: 0 30px;
}

@media (max-width: 1200px) {
	.related-honor .top .con {
	  max-width: 50%;
	}
}

@media (max-width: 1000px) {
	.related-honor .top .con {
	  max-width: 100%;
	  margin-top: 30px;
	}
}



.agent-page .agent-1 ul {
  margin: 80px -20px 0;
}
.agent-page .agent-1 ul li {
  padding: 40px 20px;
}
.agent-page .agent-1 ul li .box {
  text-align: center;
}
.agent-page .agent-1 ul li .box .img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: var(--color);
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
}
.agent-page .agent-1 ul li .box .img::after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px dashed var(--color);
}
.agent-page .agent-1 ul li .box .img img {
	filter: brightness(0) invert(1);
}
.agent-page .agent-1 ul li .box h4 {
  color: var(--color);
}
.agent-page .trusted-page .trusted-1 {
  padding: 80px 0 40px;
}
.agent-page .trusted-page .trusted-1 .img {
  margin: 20px auto 0;
  text-align: center;
}
.agent-page .trusted-page .bottom {
  height: 265px;
  background-color: var(--color);
  color: white;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.agent-page .trusted-page .bottom .btn a {
	background-color: #000000;
}
.agent-page .trusted-page .bottom .more2 {
  background-color: #000;
}
.agent-page .agent-2 {
  padding-top: 80px;
}
.agent-page .agent-2 ul {
  margin-top: 60px;
}
.agent-page .agent-2 ul li {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -moz-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.agent-page .agent-2 ul li .img {
  width: 50%;
}
.agent-page .agent-2 ul li .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.agent-page .agent-2 ul li .text {
  width: 50%;
  padding-left: 35px;
}

.agent-page .agent-2 ul li .text h4 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--color);
  margin-top: 35px;
}
.agent-page .agent-2 ul li .text h4::before {
  content: "";
  width: 25px;
  height: 2px;
  background-color: var(--color);
  display: block;
  margin-right: 10px;
}
.agent-page .agent-2 ul .slick-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.agent-page .agent-2 ul .slick-dots li {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #e1e1e1;
  margin: 0 8px;
}
.agent-page .agent-2 ul .slick-dots li.slick-active {
  background-color: var(--color);
}
.agent-page .agent-2 ul .slick-dots li button {
  display: none;
}

@media (max-width: 1000px) {
	.agent-page .trusted-page .bottom h3 {
	  font-size: 24px;
	}
	.agent-page .agent-2 ul li {
	  -webkit-flex-wrap: wrap;
	  -ms-flex-wrap: wrap;
	  flex-wrap: wrap;
	}
	.agent-page .agent-2 ul li .img {
	  width: 100%;
	}
	.agent-page .agent-2 ul li .text {
	  width: 100%;
	  padding-left: 0;
	  margin-top: 30px;
	}
}

@media (max-width: 700px) {
	.agent-page .trusted-page .bottom .container {
	  -webkit-box-pack: center;
	  -webkit-justify-content: center;
	  -moz-box-pack: center;
	  -ms-flex-pack: center;
	  justify-content: center;
	}
	.agent-page .trusted-page .bottom .container h3 {
	  margin-bottom: 30px;
	}
}


.faq-page .ui.container ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.faq-page .ui.container ul li .text {
  width: -webkit-calc(100% - 85px);
  width: -moz-calc(100% - 85px);
  width: calc(100% - 85px);
  background-color: #f9f9f9;
  padding: 30px 35px;
}




.policy-page .policy-1 .bottom {
  margin-top: 100px;
  position: relative;
  padding: 50px 15px 60px;
}
.policy-page .policy-1 .bottom .bg {
	width: 90%;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 0;
}
.policy-page .policy-1 .bottom .con {
  line-height: 2;
}
.policy-page .policy-2 {
  padding: 125px 0 60px;
}
.policy-page .policy-2 ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.policy-page .policy-2 ul li {
  height: 430px;
  width: 20%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 0 0.5px;
}
.policy-page .policy-2 ul li .box {
  height: 100%;
  width: 100%;
  font-size: 58px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: white;
  font-weight: bold;
}
.policy-page .policy-2 ul li h5 {
  font-size: 18px;
  font-weight: bold;
  margin-top: 25px;
  text-align: center;
}
.policy-page .policy-2 ul li:nth-child(1) .box {
  height: 100%;
  background-color: #8ec212;
}
.policy-page .policy-2 ul li:nth-child(2) .box {
  height: 80%;
  background-color: #9ecf29;
}
.policy-page .policy-2 ul li:nth-child(3) .box {
  height: 60%;
  background-color: #b2e537;
}
.policy-page .policy-2 ul li:nth-child(4) .box {
  height: 40%;
  background-color: #c4f74a;
}
.policy-page .policy-2 ul li:nth-child(5) .box {
  height: 20%;
  background-color: #c6e382;
}
.policy-page .policy-3 {
  padding: 65px 0 95px;
  background-color: #f4f4f4;
}
.policy-page .policy-3 form {
  margin-top: 45px;
}
.policy-page .policy-3 form ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 -13px;
}
.policy-page .policy-3 form ul li {
  padding: 0 13px;
  margin-bottom: 25px;
}

.policy-page .policy-3 form ul li #fileInput{
  display: none;
}
.policy-page .policy-3 form ul li:nth-child(1),
.policy-page .policy-3 form ul li:nth-child(2),
.policy-page .policy-3 form ul li:nth-child(3),
.policy-page .policy-3 form ul li:nth-child(4) {
  width: 25%;
}
.policy-page .policy-3 form ul li:nth-child(6){
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.policy-page .policy-3 form ul li:nth-child(6) .input-group{
  width: calc(75% - 8px);
}
.policy-page .policy-3 form ul li button{
  font-size: 20px;
  background-color: white;
  width: calc(25% - 18px);
  height: 70px;
  color:#313131;
  border-radius: 8px;
  border: none;
}
.policy-page .policy-3 form ul li:nth-child(5) {
  width: 100%;
}
.policy-page .policy-3 form ul li:nth-child(7),
.policy-page .policy-3 form ul li:nth-child(8),
.policy-page .policy-3 form ul li:nth-child(9) {
  width: 33.3333333333%;
}
.policy-page .policy-3 form ul li:nth-child(10){
  width: 100%;
}
.policy-page .policy-3 form ul li:nth-child(11) {
  width: 100%;
  margin-top: 40px;
  margin-bottom: 0;
  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;
}
.policy-page .policy-3 form ul li:nth-child(11) .radio-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
}
.policy-page .policy-3 form ul li:nth-child(11) .radio-group label{
  margin-left: 10px;
  position: relative;
}
.policy-page .policy-3 form ul li:nth-child(11) .radio-group label::before{
  content:"\f00c";
  width: 20px;
  font-family:"FontAwesome"; 
  height: 20px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  position: absolute;
  left:-30px;
  top:50%;
  transform: translateY(-50%);
  display: flex;
  font-size: 12px;
  justify-content: center;
  align-items: center;
  color: transparent;
  transition: all 0.5s;
}
.policy-page .policy-3 form ul li:nth-child(11) .radio-group input[type='radio']:checked + label::before{
  color: black;
}
.policy-page .policy-3 form ul li:nth-child(11) .radio-group input[type='radio']{
  opacity: 0;
}
.policy-page .policy-3 form ul li:last-child {
  width: 100%;
  text-align: center;
  margin-top: 40px;
}
.policy-page .policy-3 form ul li input[type='text'] {
  width: 100%;
  height: 70px;
  font-size: 20px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.4);
  padding: 0 25px;
  background-color: transparent;
}
.policy-page .policy-3 form ul li input::-webkit-input-placeholder {
  color: #a6a6a6;
}
.policy-page .policy-3 form ul li input[type='submit'] {
  width: 200px;
  height: 50px;
  background-color: var(--color);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  font-size: 18px;
  color: white;
  text-transform: uppercase;
  border-radius: 5px;
  border: none;
}
.policy-page .policy-3 form ul li input[type='submit']:hover {
  background-color: #000;
}
@media (max-width: 1600px) {
  .policy-page .policy-1 .bottom .bg {
    width: 100%;
    object-fit: cover;
    object-position: right;
    height: 100%;
  }
  .policy-page .policy-1 .bottom {
    padding: 100px 15px;
  }
}

@media (max-width: 1200px) {
	.policy-page .policy-1 .bottom .bg{
	  display: none;
	}
	.policy-page .policy-1 .bottom .con{
	  background-color: white;
	  border-radius: 15px;
	  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
	  padding: 60px 30px;
	}
	.policy-page .policy-1 .bottom {
	  margin-top: 100px;
	  padding: 0;
	}
}

@media (max-width: 1000px) {
	.policy-page .policy-2 ul li .box {
	  font-size: 30px;
	}
	.policy-page .policy-3 form ul li:nth-child(5) {
	  width: 100%;
	}
	.policy-page .policy-3 form ul li:nth-child(7),
	.policy-page .policy-3 form ul li:nth-child(8), 
	.policy-page .policy-3 form ul li:nth-child(9),
	.policy-page .policy-3 form ul li:nth-child(6),
	.policy-page .policy-3 form ul li:nth-child(1),
	.policy-page .policy-3 form ul li:nth-child(2), 
	.policy-page .policy-3 form ul li:nth-child(3),
	.policy-page .policy-3 form ul li:nth-child(4){
	  width: 50%;
	}
}

@media (max-width: 500px) {
	.policy-page .policy-2 ul li .box {
	  font-size: 20px;
	}
	.policy-page .policy-3 form ul li:nth-child(7),
	.policy-page .policy-3 form ul li:nth-child(8), 
	.policy-page .policy-3 form ul li:nth-child(9),
	.policy-page .policy-3 form ul li:nth-child(6),
	.policy-page .policy-3 form ul li:nth-child(1),
	.policy-page .policy-3 form ul li:nth-child(2), 
	.policy-page .policy-3 form ul li:nth-child(3),
	.policy-page .policy-3 form ul li:nth-child(4){
	  width: 100%;
	}
	.policy-page .policy-3 form ul li:nth-child(11) p{
	  margin-right: 15px;
	}
}




.flex-dcr {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
  -moz-box-orient: vertical;
  -moz-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.about-page .about-1 .h2 {
  line-height: 1.25;
}
.about-page .about-1 .content {
  line-height: 30px;
  color: #666666;
}
.about-page .about-1 ul li {
  position: relative;
}
.about-page .about-1 ul li em {
  color: var(--color);
}
.about-page .about-1 ul li p {
  color: #999999;
  line-height: 1.8;
}
.about-page .about-1 ul li::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background-color: #d6d6d6;
}
.about-page .about-1 ul li:last-child::after {
  content: none;
}
.about-page .about-2 .box {
  padding: 0 240px;
  background: url(../images/yinhao-1.png) no-repeat left center, url(../images/yinhao-2.png) no-repeat right center;
}
.about-page .about-2 .content {
  line-height: 30px;
}
.about-page .about-3 {
  background: url(../images/about-2-1.jpg) no-repeat;
  background-size: cover;
  color: white;
}
.about-page .about-3 .box {
  max-width: 1150px;
}
.about-page .about-3 .h2 {
  color: white;
}
.about-page .about-3 .content {
  line-height: 30px;
}
.about-page .about-4 .img {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: 65%;
}
.about-page .about-4 .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.about-page .about-4 .box {
  background-color: white;
  width: 55%;
  margin-left: auto;
  z-index: 2;
  position: relative;
}
.about-page .about-4 .box .des {
  line-height: 30px;
}
@media screen and (max-width: 1000px){
  .about-page .about-2 .box {
    padding: 0 85px;
    background-size: 60px;
  }
   .about-page .about-4 .box {
    width: 77%;
  }
  .about-page .about-1 ul li{
    width: 50%;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 0 30px;
    margin-bottom: 10px;
  }
  .about-page .about-1 ul li:nth-child(2)::after{
    content: none;
  }
}
@media screen and (max-width: 700px){
  .about-page .about-1 ul li p{
    line-height: 2;
  }
  .about-page .about-1 .h2{
    line-height: 30px;
  }
   .about-page .about-1 .top {
    padding: 0;
  }
  .about-page .about-1 ul li {
    width: 50%;
    margin-bottom: 10px;
  }
   .about-page .about-4 .img {
    position: relative;
    width: 100%;
  }
  .about-page .about-4 .box {
    width: 100%;
    padding-left: 0;
  }
}
@media screen and (max-width: 500px){
   .about-page .about-2 .box {
    padding: 0;
    background: white;
  }
  .about-page .about-1 ul li{
    padding: 0 10px 0 0;
  }
  .about-page .about-1 ul li::after{
    content: none;
  }
}



#index-body .i-news {
  position: relative;
  overflow: hidden;
}
#index-body .i-news .top {
  color: white;
  background-size: cover;
}
#index-body .i-news .top .box {
  max-width: 800px;
  z-index: 4;
  position: relative;
}
#index-body .i-news .list {
  z-index: 4;
  position: relative;
}
#index-body .i-news .list ul .slick-list {
  padding-bottom: 10px;
}
#index-body .i-news .list ul li .box {
  border-radius: 20px 20px 0 0;
  background-color: white;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}
#index-body .i-news .list ul li .box .img-box {
  border-radius: 20px;
}
#index-body .i-news .list ul li .box .img-box .time {
  position: absolute;
  left: 20px;
  bottom: 10px;
  color: white;
}
#index-body .i-news .list ul li .box .titles,
#index-body .i-news .list ul li .box .title {
  line-height: 1.6;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  min-height: 160px;
}
#index-body .i-news .list ul li .box::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 10px;
  background: -webkit-gradient(linear, left top, right top, from(#03ace3), to(#273595));
  background: -webkit-linear-gradient(left, #03ace3, #273595);
  background: -moz-linear-gradient(left, #03ace3, #273595);
  background:linear-gradient(to right, #bf5421, #8e2b22);
}
#index-body .i-news .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 35%;
  height: 80%;
  background: url(../images/left_circle.png) no-repeat left top;
  background-size: contain;
}


.news-page .news-tab ul {
  margin: -6px;
}
.news-page .news-tab ul li {
  padding: 6px;
}
.news-page .news-tab ul li a {
  display: inline-block;
  background: #fff;
  font-size: 20px;
  line-height: 1.8;
  padding: 6px 23px;
  border-radius: 25px;
      font-weight: 700;
}
.news-page .news-tab ul li a:hover,
.news-page .news-tab ul li a.active {
  background: var(--color);
  color: #fff;
}
@media screen and (max-width: 1000px){

  #index-body .i-news .list ul li .box .titles, 
  #index-body .i-news .list ul li .box .title{
    min-height: 124px;
  }
}
@media screen and (max-width: 700px){
   .news-page .news-tab {
    display: none;
  }

}
.newdet-page {
  padding: 6% 0;
}
.newdet-page .sideBox .sideLeft {
  width: 27%;
  position: -webkit-sticky;
  position: sticky;
  top: 145px;
  left: 0;
}
.newdet-page .sideBox .sideLeft .back .pageBackbtn {
  display: inline-block;
  background-color: var(--color);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  vertical-align: top;
  position: relative;
}
.newdet-page .sideBox .sideLeft .back .pageBackbtn span {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/fh.png) center center no-repeat;
  background-size: 100%;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}
.newdet-page .sideBox .sideLeft .back .pageBackbtn::after {
  content: "";
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
  border-radius: 100%;
  opacity: 0;
  -webkit-transform: translate(0, 100%);
  -moz-transform: translate(0, 100%);
  -ms-transform: translate(0, 100%);
  transform: translate(0, 100%);
  -webkit-transition: opacity 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), border-radius 0s 0.45s, -webkit-transform 0s 0.45s;
  transition: opacity 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), border-radius 0s 0.45s, -webkit-transform 0s 0.45s;
  -moz-transition: opacity 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), border-radius 0s 0.45s, transform 0s 0.45s, -moz-transform 0s 0.45s;
  transition: opacity 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), border-radius 0s 0.45s, transform 0s 0.45s;
  transition: opacity 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), border-radius 0s 0.45s, transform 0s 0.45s, -webkit-transform 0s 0.45s, -moz-transform 0s 0.45s;
}
.newdet-page .sideBox .sideLeft .back .pageBackwz {
  display: inline-block;
  font-size: 20px;
  color: #000000;
  line-height: 46px;
  vertical-align: top;
  margin-left: 14px;
}
.newdet-page .sideBox .sideLeft .back:hover .pageBackbtn::after {
  opacity: 1;
  border-radius: 0;
  -webkit-transform: translate(0);
  -moz-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
  -webkit-transition: border-radius 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: border-radius 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: border-radius 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), -moz-transform 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: border-radius 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: border-radius 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), -moz-transform 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.newdet-page .sideBox .sideRight {
  width: 63%;
}
.newdet-page .sideBox .sideRight .category {
  background: var(--color);
  text-align: center;
  display: inline-block;
  font-size: 18px;
  color: #fff;
  line-height: 46px;
  border-radius: 45px;
  padding: 0 23px;
  margin-bottom: 64px;
}
.newdet-page .sideBox .sideRight h1 {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
}
.newdet-page .sideBox .sideRight time {
  display: block;
  font-size: 16px;
  line-height: 30px;
  color: #4B4B4B;
  margin: 59px 0 60px;
}
.newdet-page .sideBox .sideRight .content {
  font-size: 18px;
  color: #333;
  line-height: 1.8;
}
@media screen and (max-width: 1000px){
  .newdet-page .sideBox .sideLeft{
    display: none;
  }
  .newdet-page .sideBox .sideRight{
    width: 100%;
  }
}
@media screen and (max-width: 700px) {
  .newdet-page .sideBox .sideRight .category{
    margin-bottom: 20px;
  }
  .newdet-page .sideBox .sideRight h1{
    font-size: 30px;
  }
  .newdet-page .sideBox .sideRight time{
    margin: 20px 0;
  }
}
@media screen and (max-width: 500px){
   .newdet-page .sideBox .sideRight .category {
    margin-bottom: 30px;
  }
  .newdet-page .sideBox .sideRight h1 {
    font-size: 24px;
    line-height: 44px;
  }
  .newdet-page .sideBox .sideRight time {
    margin: 30px 0;
  }
  .newdet-page .sideBox .sideRight .content {
    font-size: 16px;
    line-height: 30px;
  }
}

.m-page{
  margin-top: 40px;
}
.m-page a,.m-page span{
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 40px;
  text-align: center;
  font-size: 17px;
  margin: 0 5px;
  background: #222;
  color: white;
  border-radius: 5px;
  -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.m-page a:hover,.m-page span{
  background: var(--color);
}





.au-page .au-1{
  padding-top: 73px;
}
.au-page .au-1 .header{
  max-width: 1200px;
  margin: 0 auto;
}
.au-page .au-1 .header .con{
  color: #333; 
}
.au-page .au-2{
  padding: 4.8% 0 5.1042%;
}
.au-page .au-2 .text{
  width: 47%;
  color: #333333;
  line-height: 1.6;
}
.au-page .au-2 .img{
  width: 53%;
}
.au-page .au-3{
  background: var(--color);
  background-size: cover;
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 6.83% 0 7.4%;
}
.au-page .au-3 .text{
  width: 46%;
}
.au-page .au-3 .img{
  width: 54%;
}
.au-page .au-3 .img img{
  width: 100%;
}
.au-page .au-3::after{
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(142 43 34);
}
.au-page .au-4{
  padding: 5.21% 0;
}
.au-page .au-4 .text{
  max-width: 1230px;
  margin-left: auto;
  margin-right: auto;
  color: #666;
}
.au-page .au-4 .list li{
  background-color: #f7f7f7;
  padding: 2.5% 1.5%;
}
@media screen and (max-width: 1250px){
  .au-page .au-4 .list ul{
     -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  
  .au-page .au-4 .list li{
    width: 49.6%;
  }
}
@media screen and (max-width: 1000px){
   .au-page .au-2 .text,
  .au-page .au-3 .text{
    width: 100%;
  }
  .au-page .au-2 .img,
  .au-page .au-3 .img{
    width: 100%;
    padding: 30px 0 0 0;
  }
  .au-page .au-4 .list li span.h6{
    font-size: 19px;
  }
}
@media screen and (max-width: 700px){
   .au-page .au-1{
    padding-top: 30px;
  }
  
  
}
@media screen and (max-width: 500px){
   .au-page .au-4 .list li{
    width: 100%;
  }
}




.sa-nav .container .sa-c {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  width: 16.66%;
  border-radius: 25px;
}

.sa-nav .container .sa-c:hover,
.sa-nav .container .sa-c.active {
  background: var(--color);
  color: #fff;
}

.sa-nav .container .sa-c:hover img,
.sa-nav .container .sa-c.active img {
  filter: brightness(0) invert(1);
}

.sa-nav .container .sa-c img {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  display: block;

  margin: 0 auto;
}

.sa-nav .container .sa-c {
  text-align: center;
  color: rgba(102, 102, 102, 1);
}

.sa-nav {
  padding: 80px 0;
  background: #f2f6f7;
}
.cus-page .tit {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 600;
  max-width: 790px;
}
 
.cus-page .cus-5 {
  padding-bottom: 7%;
}

.cus-page .cus-5 .header {
  margin-top: 93px;
}

.cus-page .cus-5 .header .tit {
  max-width: 500px;
}

.cus-page .header .con {
  line-height: 1.6;
  font-weight: 300;
  color: #666;
  text-align: center;
  margin-top: 100px;
}

.cus-page .cus-5 .content {
  margin-top: 74px;
  position: relative;
}

.cus-page .cus-5 .content .img-box {
  border-radius: 10px;
}

.cus-page .cus-5 .content .text {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  z-index: 1;
  color: #fff;
  padding: 20px 56px var(--px100);
}

.cus-page .cus-5 .content .text .con {
  font-size: 16px;
  line-height: 30px;
  margin: 25px 0 30px;
  max-width: 790px;
}
 
@media screen and (max-width: 1440px) {
   
  .cus-page .cus-5 .header .con {
    max-width: 660px;
  } 
}
@media screen and (max-width: 1230px) {
  .cus-page .tit {
    font-size: 30px;
  } 

  .cus-page .cus-5 .header .con {
    max-width: 469px;
  } 
}
@media screen and (max-width: 1000px) {
  .sa-nav .container .sa-c {
    width: 33.333%
  } 

  .cus-page .cus-5 .header {
    margin-top: 30px;
  }

  .cus-page .cus-5 .header .con {
    max-width: 100%;
    margin-top: 20px;
  }

  .cus-page .cus-5 .content {
    margin-top: 30px;
  }

  .cus-page .cus-5 .content .text {
    padding: 20px;
  }

  .cus-page .cus-5 .content .text .con {
    margin-bottom: 0;
  } 
}
@media screen and (max-width: 700px) {
  
  .cus-page .tit {
    font-size: 30px;
  }

  .cus-page .cus-5 .content .img-box img {
    min-height: 360px;
  } 
}
@media screen and (max-width: 500px) {
  .sa-nav .container .sa-c {
    width: 50%
  }
  .cus-page .tit {
    font-size: 24px;
    line-height: 44px;
  } 

  .cus-page .cus-5 .content .img-box img {
    min-height: 460px;
    object-fit: cover;
  } 

  .cus-page .cus-5 .content .text .con {
    font-size: 14px;
    line-height: 2;
    margin: 12px 0 0px;
  }
}



.contact-1 .Tit {
  line-height: 1.06666667;
}
.contact-1 .Tit img {
  width: 1.3em;
}
.contact-2 .list a {
  background-color: #f5f5f5;
  padding: 1em 2.3em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.contact-2 .list a:hover {
  background-color: var(--color);
  color: #FFFFFF;
}
.contact-3 .form {
  background-color: #f5f5f5;
}
.contact-3 .form ul {
  margin: -0.5em -1em;
}
.contact-3 .form li {
  padding: .5em 1em;
}
.contact-3 .form input,
.contact-3 .form textarea {
  padding: 12px 0;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #dfdfdf;
  background-color: transparent;
}
.contact-3 .form textarea {
  height: 6em;
}
.contact-3 .form input[type="submit"] {
  padding: 1.25em 1em;
  width: auto;
  border: 0;
  background-color: var(--color);
  color: #FFFFFF;
}
.contact-3 .form input[type="submit"]:hover {
  background-color: #000000;
}
@media (max-width: 500px) {
  .contact-3 .form li {
    width: 100%;
  }
}




/*=========== .product-link-page start===========*/

.inner-page .sidebar-left {
    width: 25%;
}

.inner-page .sidebar-left .box {
    margin-bottom: 30px;
}
.inner-page .sidebar-left .box.contact ul li{
    font-size: 18px;font-weight: 300;

}
.inner-page .sidebar-left .box.contact ul li a{
    color: #666;word-break: break-all;
}
.inner-page .sidebar-left .box:last-child {
    margin-bottom: 0;
}

.inner-page .sidebar-left .box h3 {
    font-size: 26px;
    color: var(--color);
    margin-bottom: 10px;
}

.inner-page .sidebar-left .box ul li {
    font-size: 17px;
    line-height: 2;
    color: #666;
    border-bottom: solid 1px #e5e5e5;
    padding: 3px;
    margin-bottom: 5px;
    width: 80%;
    position: relative;
    font-weight: bold;
}

.inner-page .sidebar-left .box ul li>a {
    padding-right: 20px;
}

.inner-page .sidebar-left .box ul li i {
    position: absolute;
    top: 12px;
    right: 0;
}

.inner-page .sidebar-left .box ul li li {
    width: 100%;
    font-size: 18px;font-weight: 300;
}
.inner-page .sidebar-left .box ul li li li{
    font-size: 16px;font-weight: 300;
}
.inner-page .sidebar-left .box ul li ul li:last-child {
    border-bottom: none;
}

.inner-page .sidebar-left .box ul li a.child:after {
    content: "\f105";
    position: absolute;
    font-family: "FontAwesome";
    top: 0;
    right: 0;
    font-size: 16px;
}

.inner-page .sidebar-left .box ul li:hover>a,
.inner-page .sidebar-left .box ul li.active>a {
    color: var(--color);
}

.inner-page .sidebar-left .box ul li ul {
    padding-left: 10px;
    display: none;
}

.inner-page .sidebar-left .box ul li.active a.child {
    color: var(--color);
}

.inner-page .sidebar-left .box ul li.active a.child:after {
    content: "\f107";
}

.inner-page .sidebar-left .box .share ul li a {
    display: block;
    padding: 5px 0;
    position: relative;
    text-align: center;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.inner-page .sidebar-right {
    width: 75%;
}

.product-page .sidebar-right ul {
    text-align: left;
    margin: -10px;
}

.product-page .sidebar-right ul.sharelist {
    display: flex;
    justify-content: flex-start;
}

.product-page .sidebar-right ul li {
    padding: 10px;
}

.product-page .sidebar-right ul li .box {
    border: solid 1px #97c5a9;
    padding: 10px;
}



.product-page .sidebar-right ul li a.img-box {
    width: 100%;
    display: block;
}

.product-page .sidebar-right ul li a.img-box img {
    width: 100%;
}

.product-page .sidebar-right ul li .content {
    display: block;
    margin-top: 10px;
}

.inner-page.product-link-page .pro-1 {
    background-color: #ffffff;
}

.inner-page.product-link-page .pro-1 .mk-desc {
	line-height: 1.5;
	max-height: 12em;
	overflow-y: auto;
}


.inner-page.product-link-page .pro-1 .box ul li .ig {
    display: block;
    background-color: #f5f5f5;
    padding: 20px;
}

.inner-page.product-link-page .pro-1 .box ul li .ig img {
	background-color: #ffffff;
    margin: auto;
}

.inner-page.product-link-page .pro-1 .box ul li h4 {
    color: #383737;
    padding-top: 10px;
    line-height: 1.6;
}





@media screen and (max-width: 1000px) {
    .inner-page .sidebar-left {
        display: none;
    }


    .inner-page .sidebar-right {
        width: 100%;
    }
}


/*=========== .product-link-page end===========*/


/*=========== prodet-page start===========*/
.inner-page.prodet-page .pro-1 .grid1 {
    font-size: 0;
}

.inner-page.prodet-page .pro-1 .grid1 .left {
    display: inline-block;
    vertical-align: top;
    width: 25%;
}

.inner-page.prodet-page .pro-1 .grid1 .left .prev,
.inner-page.prodet-page .pro-1 .grid1 .left .next {
    font-size: 20px;
    width: 100%;
    text-align: center;
    color: #525252;
    background-color: #262626;
    cursor: pointer;
    padding: 10px 0;
}

.inner-page.prodet-page .pro-1 .grid1 .left ul li {
    padding: 5px 0;
}

.inner-page.prodet-page .pro-1 .grid1 .left ul li a {
    display: inline-block;
    background-color: #ebeaea;
    padding: 20px;
}

.inner-page.prodet-page .pro-1 .grid1 .right {
    display: inline-block;
    vertical-align: top;
	width: 100%;
}

.inner-page.prodet-page .pro-1 .grid1 .right .con-1 {
    color: #282828;
    background-color: #fafafa;
    padding: 40px 30px;
    margin-bottom: 15px;
}

.inner-page.prodet-page .pro-1 .grid1 .right .con-1 .left {
    width: 50%;
}

.inner-page.prodet-page .pro-1 .grid1 .right .con-1 .left span {
    font-size: 20px;
}

.inner-page.prodet-page .pro-1 .grid1 .right .con-1 .left .contact {
    font-size: 16px;
    line-height: 2;
    padding: 60px 0;
    color: #666;
}

/*.inner-page.prodet-page .pro-1 .grid1 .right .con-1 .left a {
    display: inline-block;
    font-size: 18px;
    border-radius: 5px;
    color: #fff;
    background-color: var(--color);
    padding: 5px 10px;
}*/

/*.inner-page.prodet-page .pro-1 .grid1 .right .con-1 .left a i {
    margin-left: 80px;
}*/

.inner-page.prodet-page .pro-1 .grid1 .right .con-1 .right {
    width: 50%;
}

.inner-page.prodet-page .pro-1 .grid1 .right .con-2 {
    font-size: 16px;
    background-color: #fff;
    color: #666;
    padding-top: 50px;
}
.inner-page.prodet-page .pro-1 .grid1 .right .con-2 .options{
    border-bottom: 1px solid #ccc;
    padding-bottom: 8px;
}
.inner-page.prodet-page .pro-1 .grid1 .right .con-2 .options span{
    padding-right: 20px;
}
.inner-page.prodet-page .pro-1 .grid1 .right .con-2 .options span.active{
    color: var(--color);
}
.inner-page.prodet-page .pro-1 .grid1 .right .con-2 .ret{
    margin-top: 15px;
}
.inner-page.prodet-page .pro-1 .grid1 .right .con-2 .ret .slide>span{
    display: none;
    border-bottom: 1px solid #ccc;padding-bottom: 8px;
}

.inner-page.prodet-page .pro-1 .grid1 .right .con-2 .ret table td,
.inner-page.prodet-page .pro-1 .grid1 .right .con-2 .ret able th {
	word-break: normal;
}

.inner-page.prodet-page .pro-1 .grid1 .right .con-3 {
    font-size: 16px;
    background-color: #fff;
    color: #666;
}

.inner-page.prodet-page .pro-1 .grid1 .right .con-4 {
    background-color: #1c1c1c;
}

.inner-page.prodet-page .pro-1 .grid1 .right .con-4 .title {
    color: #fff;
    padding: 26px 40px;
}

.inner-page.prodet-page .pro-1 .grid1 .right .con-4 .title h4 {
    font-size: 38px;
    font-family: var(--font);
}

.inner-page.prodet-page .pro-1 .grid1 .right .con-4 .title span {
    font-size: 20px;
}

.inner-page.prodet-page .pro-1 .grid1 .right .con-4 .form {
    background-color: #2d2d2d;
    padding: 54px 80px 30px;
}

.inner-page.prodet-page .pro-1 .grid1 .right .con-4 .form ul li {
    font-size: 14px;
    padding-bottom: 20px;
}

.inner-page.prodet-page .pro-1 .grid1 .right .con-4 .form ul li h6 {
    text-transform: uppercase;
    color: #bcbcbc;
}

.inner-page.prodet-page .pro-1 .grid1 .right .con-4 .form ul li p {
    font-size: 16px;
    color: #bcbcbc;
}

.inner-page.prodet-page .pro-1 .grid1 .right .con-4 .form ul li p span {
    color: var(--color);
}

.inner-page.prodet-page .pro-1 .grid1 .right .con-4 .form ul li input {
    width: 100%;
    border: 1px solid #fff;
    background-color: transparent;
    padding: 10px;
}

.inner-page.prodet-page .pro-1 .grid1 .right .con-4 .form ul li input[type="submit"] {
    display: inherit;
    width: auto;
    font-size: 15px;
    font-family: var(--font);
    border: none;
    text-transform: uppercase;
    color: #fff;
    background-color: var(--color);
    padding: 20px 36px;
    margin: auto;
}

.inner-page.prodet-page .pro-1 .grid1 .right .con-4 .form ul li textarea {
    width: 100%;
    border: 1px solid #fff;
    background-color: transparent;
    padding: 10px;
}

@media screen and (max-width: 1000px) {
    .inner-page.prodet-page .pro-1 .grid1 .right .con-1 .left {
        width: 100%;
    }

    .inner-page.prodet-page .pro-1 .grid1 .right .con-1 .right {
        width: 100%;
        margin-top: 5%;
    }

    .inner-page.prodet-page .pro-1 .grid1 .right .con-1 .left .contact {
        padding: 30px 0;
    }
}

@media screen and (max-width: 700px) {

    .inner-page.prodet-page .pro-1 .grid1>.left {
        display: none;
    }

    .inner-page.prodet-page .pro-1 .grid1>.right {
        width: 100%;
    }

    .inner-page.prodet-page .pro-1 .grid1 .right .con-2 .options{
        display: none;
    }
    .inner-page.prodet-page .pro-1 .grid1 .right .con-2 .ret .slide>span {
        display: block;
    }
    .inner-page.prodet-page .pro-1 .grid1 .right .con-2 .ret .slide{
        display: block!important;
        margin: 10px 0;
    }
    .inner-page.prodet-page .pro-1 .grid1 .right .con-2 .ret .slide>div{
        margin-top: 10px;
    }
    .inner-page.prodet-page .pro-1 .grid1 .right .con-2 .ret {
        margin-top: 0;
    }

}

@media screen and (max-width: 500px) {
    .inner-page.prodet-page .pro-1 .grid1 .right .con-1 .left {
        width: 100%;
    }

    .inner-page.prodet-page .pro-1 .grid1 .right .con-1 .right {
        width: 100%;
    }

    .inner-page .sol-form .form,
    .inner-page.prodet-page .pro-1 .grid1 .right .con-4 .form {
        padding: 30px 20px 10px;
    }
}

.con-5 {
    padding: 40px;
    background: #c2c2c2
}

.con-5 ul li {
    padding: 20px;
    text-align: center
}

.con-5 ul li h4 {
    font-size: 24px;
    font-weight: 700;
    margin: 10px 0
}

.con-5 ul li {
    font-size: 16px !important;
    line-height: 1.5
}

.con-6 {
    background: #c2c2c2
}

.con-7 table td,
.con-7 table th {
    border: none;
    text-align: center;
    color: #000;
    font-size: 16px
}

.con-7 h2,
.con-7 h1 {
    color: var(--base-color);
    font-weight: 700
}

.con-7 h3 {
    margin: 10px 0
}

/*=========== prodet-page end===========*/




/*=========== oem-page start===========*/
.oem-page .oem-1 .mk-tt {
    line-height: 1.5;
}

.oem-page .oem-1 .mk-desc {
    max-width: 77%;
    margin-left: auto;
    margin-right: auto;
}

.oem-page .oem-1 .zs-list {
    position: relative;
}

.oem-page .oem-1 .zs-list .imgbox {
    border-radius: 20px;
    overflow: hidden;
}

.oem-page .oem-1 .zs-list .imgbox img {
    min-height: 300px;
    object-fit: cover;
}

.oem-page .oem-1 .zs-list ul {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 35px 0;
    width: 100%;
    background-color: rgba(0, 3, 24, 0.7);
    border-radius: 0 0 20px 20px;
}

.oem-page .oem-1 .zs-list ul li {
    padding: 0 75px;
}

.oem-page .oem-2 .strength-list ul li {
    margin-top: 70px;
}

.oem-page .oem-2 .strength-list ul li .box .img-box {
    width: 50%;
    /*border-radius: 30px;*/
    overflow: hidden;
}

.oem-page .oem-2 .strength-list ul li .box .img-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.oem-page .oem-2 .strength-list ul li .box .txtbox {
    background-color: #f4f5f9;
    /*border-radius: 30px;*/
    width: 50%;
    padding: 50px 3%;
}

.oem-page .oem-2 .strength-list ul li .box .txtbox .tag .line {
    width: 65px;
    height: 1px;
    background-color: #333333;
    display: block;
}

.oem-page .oem-2 .strength-list ul li .box .txtbox .tt {
    line-height: 1.2;
    color: #333333;
}

.oem-page .oem-2 .strength-list ul li .box .txtbox .desc {
    line-height: 1.8;
/*     max-height: 80px; */
    overflow-y: auto;
}

.oem-page .oem-2 .strength-list ul li .box {
	align-items: unset;
}

.oem-page .oem-2 .strength-list ul li:nth-child(odd) .box {
    flex-direction: row-reverse;
}


.oem-page .oem-3 .laboratory-list ul li .box .img-box {
    border-radius: 10px;
    overflow: hidden;
}

.oem-page .oem-4 .mk-desc {
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
}

.oem-page .oem-4 .partner-list ul {
    margin: 0 8%;
    position: relative;
    height: 455px;
}

.oem-page .oem-4 .partner-list ul li {
    position: absolute;
    left: 0;
    top: 0;
    animation: fd1 4s linear infinite;
}

.oem-page .oem-4 .partner-list ul li .box {
    border-radius: 50%;
    width: 245px;
    height: 245px;
    background-color: rgba(58, 58, 58, 0.68);
    border: solid 1px rgba(255, 255, 255, 0.932);
}

.oem-page .oem-4 .partner-list ul li.num0 {
    zoom: 0.98;
    left: 0;
    top: 8%;
}

.oem-page .oem-4 .partner-list ul li.num1 {
    zoom: 0.48;
    left: 22%;
    top: 5%;
}

.oem-page .oem-4 .partner-list ul li.num2 {
    zoom: 0.48;
    animation: fd2 4s linear infinite;
    left: 18%;
    top: 52%;
}

.oem-page .oem-4 .partner-list ul li.num3 {
    left: 31%;
    top: 20%;
}

.oem-page .oem-4 .partner-list ul li.num4 {
    zoom: 0.48;
    left: 49%;
    top: 0%;
}

.oem-page .oem-4 .partner-list ul li.num5 {
    left: 56%;
    animation: fd2 4s linear infinite;
    top: 21%;
}

.oem-page .oem-4 .partner-list ul li.num6 {
    zoom: 0.48;
    animation: fd2 4s linear infinite;
    left: 77%;
    top: 52%;
}

.oem-page .oem-4 .partner-list ul li.num7 {
    left: auto;
    right: 0;
    top: 0%;
}

.oem-page .oem-5 .list ul li .box {
    background-color: #f4f5f9;
    border-radius: 20px;
    padding-left: 10px;
    padding-right: 10px;
    transition: all 0.5s;
}

.oem-page .oem-5 .list ul li .box .tt {
    transition: all 0.5s;line-height: 1.2;
    min-height: 48px;
}

.oem-page .oem-5 .list ul li .box img {
    transition: all 0.5s;
}

.oem-page .oem-5 .list ul li .box:hover {
    background-color: var(--color);
}

.oem-page .oem-5 .list ul li .box:hover .tt {
    color: #fff;
}

.oem-page .oem-5 .list ul li .box:hover img {
    filter: brightness(0) invert(1);
}

.oem-page .oem-6 .con {
    border-radius: 30px;
    height: 400px;
    padding: 0 20px;
    text-align: center;
}

.btn-go02 {
    justify-content: center;
    min-width: 176px;
}

.btn-go02::before {
    display: none;
}

.btn-go02:hover {
    background-color: #fff;
}

@keyframes fd1 {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes fd2 {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(0);
    }
}

@media (max-width: 1700px) {
    .oem-page .oem-2 .strength-list ul li .box .txtbox {
        padding: 50px 6%;
    }
}

@media (max-width: 1450px) {
    .oem-page .oem-1 .zs-list ul li {
        padding: 0 50px;
    }

    .oem-page .oem-2 .strength-list ul li .box .txtbox {
        padding: 20px 6%;
    }

    .oem-page .oem-2 .strength-list ul li {
        margin-top: 50px;
    }

    .oem-page .oem-4 .partner-list ul {
        zoom: 0.8;
    }
}

@media (max-width: 1250px) {
    .oem-page .oem-1 .zs-list ul li {
        padding: 10px 20px;
    }

    .oem-page .oem-1 .zs-list ul {
        padding: 10px 0px;
    }

    .oem-page .oem-2 .strength-list ul li .box .txtbox {
        padding: 20px 2% 20px 7%;
    }

    .oem-page .oem-2 .strength-list ul li:nth-child(odd) .box .txtbox {
        padding: 20px 7% 20px 2%;
    }

    .oem-page .oem-2 .strength-list ul li {
        margin-top: 40px;
    }

    .oem-page .oem-4 .partner-list ul {
        zoom: 0.6;
    }
}

@media (max-width: 1000px) {
    .oem-page .oem-2 .strength-list ul li {
        margin-top: 30px;
    }

    .oem-page .oem-2 .strength-list ul li .box .img-box {
        width: 100%;
    }

    .oem-page .oem-2 .strength-list ul li .box .txtbox {
        width: 100%;
        margin-left: 0;
        margin-top: 15px;
    }

    .oem-page .oem-2 .strength-list ul li:nth-child(odd) .box .txtbox {
        margin-right: 0;
    }

    .oem-page .oem-4 .partner-list ul {
        margin: 0 0%;
    }

    .oem-page .oem-4 .partner-list ul {
        zoom: 0.45;
    }
}

@media (max-width: 700px) {
    .oem-page .oem-4 .partner-list {
        overflow-x: auto;
    }

    .oem-page .oem-4 .partner-list ul {
        width: 1600px;
    }

    .oem-page .oem-4 .partner-list::-webkit-scrollbar {
        height: 3px;
    }
}

/*=========== oem-page end===========*/



a.baseBtn {
  background-color: var(--color);
  color: #FFFFFF;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
a.baseBtn:hover {
  background-color: #000000;
}






.about-page .about-5 {
    background-color: #f4f5f9;
}

.about-page .about-5 .list {
    background-repeat: no-repeat;
    background-position: center bottom;
	background-size: 100% auto;
    padding: 0 20% 2.5%;
}

.about-page .about-5 .list ul li {
    padding-top: 130px;
    transition: all 0.5s;
}

.about-page .about-5 .list ul li .box {
    transform-origin: bottom;
    transition: all 0.5s;
}

.about-page .about-5 .list ul li.swiper-slide {
    opacity: 0;
}

.about-page .about-5 .list ul li.swiper-slide-prev .box {
    transform: scale(1.2) translateX(-20px);
}

.about-page .about-5 .list ul li.swiper-slide-next {
    z-index: 9;
}

.about-page .about-5 .list ul li.swiper-slide-next .box {
    transform: scale(1.2) translateX(20px);
}

.about-page .about-5 .list ul li.swiper-slide-active {
    z-index: 10;
}

.about-page .about-5 .list ul li.swiper-slide-active .box {
    transform: scale(1.4);
}

.about-page .about-5 .list .zdy-switch>div {
	--swiper-theme-color: #000;
    position: absolute;
}


.about-page .about-5 .list .zdy-switch>div.swiper-button-prev {
    left: 13%;
}

.about-page .about-5 .list .zdy-switch>div.swiper-button-next {
    right: 13%;
}

@media (max-width: 1450px) {
    .about-page .about-5 .list {
        padding: 0 10% 2.5%;
    }

    .about-page .about-5 .list .zdy-switch>div.swiper-button-prev {
        left: 2%;
    }

    .about-page .about-5 .list .zdy-switch>div.swiper-button-next {
        right: 2%;
    }
}

@media (max-width: 1250px) {
    .about-page .about-5 .list {
        padding: 0 0 2.5%;
    }

    .about-page .about-5 .list .zdy-switch>div.swiper-button-prev {
        left: -9%;
    }

    .about-page .about-5 .list .zdy-switch>div.swiper-button-next {
        right: -9%;
    }

    .about-page .about-5 .list ul li.swiper-slide-prev .box {
        transform: none;
    }

    .about-page .about-5 .list ul li.swiper-slide-next .box {
        transform: none;
    }

    .about-page .about-5 .list ul li.swiper-slide-active .box {
        transform: scale(1.2);
    }

    .about-page .about-5 .list ul li {
        padding-top: 70px;
    }
}

@media (max-width: 700px) {
    .about-page .about-5 .list {
        background-image: none !important;
    }

    .about-page .about-5 .list .zdy-switch {
        display: none;
    }

    .about-page .about-5 .list ul li.swiper-slide-active .box {
        transform: none;
    }

    .about-page .about-5 .list ul li {
        padding-top: 0;
    }
}
