﻿@charset "UTF-8";
@font-face {
  font-family: "Poppins-Light";
  src: url("../fonts/poppins-light.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
html {
  font-family: "Poppins-Light","微软雅黑", Microsoft Yahei, arial, serif;
  scroll-behavior: smooth;
}

/*!- zv-header begin -*/
.zv-header {
  display: block;
  height: 72px;
}
.zv-header .zv-header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  -webkit-box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.05);
  background-color: #fff;
  height: 72px;
  transition: height .5s;
}
.zv-header .zv-header-content {
  display: flex;
}
.zv-header .zv-header-logo {
  flex: none;
  font-size: 0;
}
.zv-header .zv-header-logo a {
  display: inline-block;
  margin: 15px 0;
}
.zv-header .zv-header-logo h1 {
  text-indent: -9999px;
  height: 0;
}
.zv-header .zv-header-logo img {
  display: block;
  height: 40px;
  width: auto;
}
.zv-header .zv-header-search {
  display: none;
  flex: none;
  padding: 16px;
}
.zv-header .zv-header-search .search-bar {
  display: flex;
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.05);
}
.zv-header .zv-header-search .search-bar > input {
  display: block;
  flex: 1;
  width: 100%;
  line-height: 40px;
  border: 0;
  background: none;
  padding: 0 16px;
  color: #333;
}
.zv-header .zv-header-search .search-bar > button {
  display: block;
  width: 40px;
  height: 40px;
  border: 0;
  background: none;
  text-align: center;
  color: #333;
}
.zv-header .zv-header-search .search-bar > button > i {
  font-size: 16px;
}
.zv-header .zv-header-nav {
  flex: 10 1;
}
.zv-header .zv-header-nav > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.zv-header .zv-header-nav > ul > li {
  display: block;
  position: relative;
}
.zv-header .zv-header-nav > ul > li > a {
  display: block;
  position: relative;
  text-align: center;
  padding: 0 20px;
  line-height: 72px;
  text-transform: uppercase;
  font-size: 16px;
  color: #333;
  transition: color .4s;
}
.zv-header .zv-header-nav > ul > li > a > i {
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -5px;
  right: 6px;
  width: 6px;
  height: 6px;
  border-bottom: 1px solid;
  border-right: 1px solid;
  transition: border-color .4s;
  transform: rotate(45deg);
}
.zv-header .zv-header-nav > ul > li:hover > a {
  color: #FEBC2A;
}
.zv-header .zv-header-nav > ul > li:hover > ul {
  display: block;
}
.zv-header .zv-header-nav > ul > li.active > a {
  background-color: #FEBC2A;
  color: #fff;
}
.zv-header .zv-header-nav > ul ul {
  display: none;
  position: absolute;
  background-color: #fff;
  -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
  left: 50%;
  transform: translateX(-50%);
}
.zv-header .zv-header-nav > ul ul li {
  position: relative;
}
.zv-header .zv-header-nav > ul ul li a {
  display: block;
  line-height: 40px;
  white-space: nowrap;
  word-break: keep-all;
  padding: 0 24px;
  text-align: center;
  position: relative;
  font-size: 14px;
  color: #666;
  transition: color .4s, background-color .4s;
}
.zv-header .zv-header-nav > ul ul li a > i {
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -3px;
  right: 8px;
  width: 6px;
  height: 6px;
  border-bottom: 1px solid;
  border-right: 1px solid;
  transform: rotate(-45deg);
  transition: border-color .4s;
}
.zv-header .zv-header-nav > ul ul li ul {
  transform: none;
  left: 100%;
  top: 0;
}
.zv-header .zv-header-nav > ul ul li:hover > a {
  background-color: #f5f5f5;
  color: #333;
}
.zv-header .zv-header-nav > ul ul li:hover > ul {
  display: block;
}
.zv-header .zv-header-menu {
  flex: none;
}
.zv-header .zv-header-menu > ul {
  display: flex;
  justify-content: right;
}
.zv-header .zv-header-menu > ul > li {
  display: block;
  position: relative;
}
.zv-header .zv-header-menu > ul > li:after {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -6px;
  content: '';
  width: 1px;
  height: 12px;
  background-color: #e6e6e6;
}
.zv-header .zv-header-menu > ul > li.toggle {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}
.zv-header .zv-header-menu > ul > li.toggle span {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  overflow: hidden;
}
.zv-header .zv-header-menu > ul > li.toggle span > i {
  display: block;
  position: absolute;
  width: 200%;
  height: 1px;
  left: -50%;
  background-color: #333;
  transition: all .3s;
}
.zv-header .zv-header-menu > ul > li.toggle span > i:nth-child(1) {
  top: 0;
}
.zv-header .zv-header-menu > ul > li.toggle span > i:nth-child(2) {
  top: 19px;
}
.zv-header .zv-header-menu > ul > li.toggle span > i:nth-child(3) {
  top: 9px;
}
.zv-header .zv-header-menu > ul > li.toggle.opened span > i:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}
.zv-header .zv-header-menu > ul > li.toggle.opened span > i:nth-child(2) {
  top: 9px;
  transform: rotate(-45deg);
}
.zv-header .zv-header-menu > ul > li.toggle.opened span > i:nth-child(3) {
  opacity: 0;
}
.zv-header .zv-header-menu > ul > li > a {
  display: block;
  position: relative;
  text-align: center;
  padding: 0 24px;
  line-height: 72px;
  font-size: 0;
  color: #333;
  transition: color .4s, background-color .4s;
}
.zv-header .zv-header-menu > ul > li > a > img {
  display: inline-block;
  vertical-align: middle;
  height: 16px;
  width: auto;
}
.zv-header .zv-header-menu > ul > li > a > i {
  display: inline-block;
  vertical-align: middle;
  font-size: 20px;
}
.zv-header .zv-header-menu > ul > li:first-child:after {
  display: none;
}
.zv-header .zv-header-menu > ul > li:hover > a {
  color: #FEBC2A;
  background-color: #F5F5F5;
}
.zv-header .zv-header-menu > ul > li:hover > ul {
  display: block;
}
.zv-header .zv-header-menu > ul ul {
  display: none;
  position: absolute;
  background-color: #fff;
  -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
  right: 0;
  overflow-y: auto;
  max-height: 300px;
}
.zv-header .zv-header-menu > ul ul li > a {
  display: block;
  padding: 0 24px;
  line-height: 40px;
  white-space: nowrap;
  word-break: keep-all;
  font-size: 0;
  color: #666;
  transition: color .4s, background-color .4s;
}
.zv-header .zv-header-menu > ul ul li > a > img {
  display: inline-block;
  vertical-align: middle;
  height: 16px;
  width: auto;
  margin-right: 8px;
}
.zv-header .zv-header-menu > ul ul li > a > span {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
}
.zv-header .zv-header-menu > ul ul li:hover > a {
  background-color: #f5f5f5;
  color: #333;
}
@media screen and (max-width: 1280px) {
  .zv-header .zv-header-nav > ul > li > a {
    padding: 0 15px;
    font-size: 14px;
  }
  .zv-header .zv-header-nav > ul > li > a > i {
    right: 2px;
  }
  .zv-header .zv-header-nav > ul ul li a {
    padding: 0 16px;
  }
  .zv-header .zv-header-nav > ul ul li a > i {
    right: 4px;
  }
  .zv-header .zv-header-menu > ul > li > a {
    padding: 0 16px;
  }
  .zv-header .zv-header-menu > ul ul li > a {
    padding: 0 16px;
  }
}
@media screen and (max-width: 992px) {
  .zv-header {
    height: 56px;
  }
  .zv-header .zv-header-wrap {
    background: #fff;
    height: 56px;
    overflow: hidden;
  }
  .zv-header .zv-header-content {
    flex-direction: column;
    padding: 0;
  }
  .zv-header .zv-header-logo {
    height: 56px;
    padding: 0 16px;
  }
  .zv-header .zv-header-logo a {
    margin: 12px 0;
  }
  .zv-header .zv-header-logo img {
    height: 32px;
  }
  .zv-header .zv-header-search {
    display: block;
  }
  .zv-header .zv-header-nav {
    order: 1;
  }
  .zv-header .zv-header-nav > ul {
    display: block;
    padding: 0 16px;
  }
  .zv-header .zv-header-nav > ul > li {
    border-top: 1px solid #e6e6e6;
  }
  .zv-header .zv-header-nav > ul > li > a {
    text-align: left;
    line-height: 44px;
    font-size: 14px;
    padding: 0;
    color: #333;
  }
  .zv-header .zv-header-nav > ul > li > a > i {
    display: none;
  }
  .zv-header .zv-header-nav > ul > li:hover > a {
    color: #333;
  }
  .zv-header .zv-header-nav > ul > li:hover > ul {
    display: none;
  }
  .zv-header .zv-header-nav > ul > li.active > a {
    background-color: transparent;
    color: #333;
  }
  .zv-header .zv-header-nav > ul ul {
    display: none;
  }
  .zv-header .zv-header-menu > ul {
    display: block;
  }
  .zv-header .zv-header-menu > ul > li:after {
    display: none;
  }
  .zv-header .zv-header-menu > ul > li > a {
    padding: 0 16px;
    color: #333;
  }
  .zv-header .zv-header-menu > ul > li:hover > a {
    color: #333;
    background-color: transparent;
  }
  .zv-header .zv-header-menu > ul > li:hover > ul {
    display: flex;
  }
  .zv-header .zv-header-menu > ul > li.search {
    display: none;
  }
  .zv-header .zv-header-menu > ul > li.language > a {
    display: none;
  }
  .zv-header .zv-header-menu > ul > li.toggle {
    display: block;
  }
  .zv-header .zv-header-menu > ul > li.toggle > a {
    line-height: 56px;
  }
  .zv-header .zv-header-menu > ul ul {
    display: flex;
    position: static;
    background-color: rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: none;
    box-shadow: none;
    right: auto;
    overflow-x: auto;
  }
  .zv-header .zv-header-menu > ul ul li > a {
    padding: 0 16px;
    color: #333;
  }
  .zv-header.opened .zv-header-wrap {
    height: 100vh;
  }
}

/*!- zv-header end -*/
/*!- zv-wrapper begin -*/
.zv-wrapper {
  max-width: 1660px;
  margin: 0 auto;
  width: 100%;
  padding: 0 32px;
}
@media screen and (max-width: 1280px) {
  .zv-wrapper {
    padding: 0 24px;
  }
}
@media screen and (max-width: 992px) {
  .zv-wrapper {
    padding: 0 16px;
  }
}

/*!- zv-wrapper end -*/
/*!- zv-section begin -*/
.zv-section {
  padding: 64px 0;
}
@media screen and (max-width: 1280px) {
  .zv-section {
    padding: 32px 0;
  }
}
@media screen and (max-width: 992px) {
  .zv-section {
    padding: 16px 0;
  }
}
.zv-section.mm {
  padding: 0;
}
.zv-section.mb {
  padding-bottom: 0;
}
.zv-section.mt {
  padding-top: 0;
}

/*!- zv-section end -*/
/*!- zv-footer begin -*/
.zv-footer {
  background-color: #F5F5F5;
}
.zv-footer .zv-footer-content {
  padding: 48px 0;
}
.zv-footer .zv-footer-list {
  display: flex;
  justify-content: space-between;
  margin: -32px 0 0 -32px;
}
.zv-footer .zv-footer-item {
  display: block;
  max-width: 20%;
  min-width: 15%;
  padding: 32px 0 0 32px;
}
.zv-footer .zv-footer-item dl {
  line-height: 1.576;
}
.zv-footer .zv-footer-item dl dt {
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #333;
}
.zv-footer .zv-footer-item dl dt a {
  text-decoration: none;
  color: inherit;
  transition: color .3s;
}
.zv-footer .zv-footer-item dl dt:hover a {
  color: #FEBC2A;
}
.zv-footer .zv-footer-item dl dt.icon {
  font-size: 0;
}
.zv-footer .zv-footer-item dl dt.icon a {
  font-size: 0;
  margin-right: 8px;
}
.zv-footer .zv-footer-item dl dt.icon a:hover i {
  color: #e5a926;
}
.zv-footer .zv-footer-item dl dt.icon i {
  font-size: 32px;
  color: #FEBC2A;
  transition: color .3s;
}
.zv-footer .zv-footer-item dl dd {
  display: block;
  font-size: 16px;
  margin-bottom: 8px;
  color: #666;
}
.zv-footer .zv-footer-item dl dd a {
  text-decoration: none;
  color: inherit;
  transition: color .3s;
}
.zv-footer .zv-footer-item dl dd:hover a {
  color: #FEBC2A;
}
.zv-footer .zv-footer-external {
  display: block;
  text-align: center;
  line-height: 1.576;
  font-size: 14px;
  padding: 8px 16px 32px;
}
.zv-footer .zv-footer-external a {
  margin: 4px;
  color: #999;
}
.zv-footer .zv-footer-external a:hover {
  color: #FEBC2A;
}
.zv-footer .zv-footer-copyright {
  background-color: #333333;
  color: #fff;
  text-align: center;
  font-size: 14px;
  line-height: 1.576;
  padding: 16px;
}
.zv-footer .zv-footer-copyright a {
  color: inherit;
}
@media screen and (max-width: 1280px) {
  .zv-footer .zv-footer-content {
    padding: 32px 0;
  }
  .zv-footer .zv-footer-list {
    margin: -24px 0 0 -24px;
  }
  .zv-footer .zv-footer-item {
    padding: 24px 0 0 24px;
  }
  .zv-footer .zv-footer-item dl dt {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .zv-footer .zv-footer-item dl dt.icon i {
    font-size: 32px;
  }
  .zv-footer .zv-footer-item dl dd {
    font-size: 14px;
  }
}
@media screen and (max-width: 992px) {
  .zv-footer .zv-footer-content {
    padding: 16px 0;
  }
  .zv-footer .zv-footer-list {
    margin: -16px 0 0 -16px;
    justify-content: center;
  }
  .zv-footer .zv-footer-item {
    padding: 16px 0 0 16px;
    display: none;
    max-width: none;
    text-align: center;
  }
  .zv-footer .zv-footer-item.alive {
    display: block;
  }
  .zv-footer .zv-footer-copyright {
    font-size: 12px;
  }
}

/*!- zv-footer end -*/
/*!- zv-sidebar begin -*/
.zv-sidebar .zv-sidebar-wrap {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 998;
}
.zv-sidebar .zv-sidebar-item {
  position: relative;
  height: 48px;
}
.zv-sidebar .zv-sidebar-item .wrap {
  position: absolute;
  top: 0;
  left: 0;
  transition: all .3s;
  transform: translateX(-48px);
}
.zv-sidebar .zv-sidebar-item .trigger {
  display: flex;
  color: #fff;
  background-color: #333333;
}
.zv-sidebar .zv-sidebar-item .trigger .icon {
  display: block;
  flex: none;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
}
.zv-sidebar .zv-sidebar-item .trigger .icon i {
  font-size: 24px;
}
.zv-sidebar .zv-sidebar-item .trigger .text {
  display: block;
  font-size: 16px;
  line-height: 48px;
  padding: 0 16px 0 8px;
  white-space: nowrap;
  word-break: keep-all;
}
.zv-sidebar .zv-sidebar-item .popover {
  display: none;
  position: absolute;
  top: 0;
  right: 100%;
  padding: 0 12px 0 0;
}
.zv-sidebar .zv-sidebar-item .popover .popover-wrap {
  position: relative;
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 0 6px 20px 2px rgba(0, 0, 0, 0.18);
  padding: 2px 0;
}
.zv-sidebar .zv-sidebar-item .popover .popover-wrap:after {
  display: block;
  content: '';
  position: absolute;
  z-index: 1;
  top: 20px;
  right: -8px;
  border-style: solid;
  border-width: 8px 0 8px 8px;
  border-color: transparent transparent transparent #fff;
}
.zv-sidebar .zv-sidebar-item .popover img {
  display: block;
  max-width: 128px;
  height: auto;
}
.zv-sidebar .zv-sidebar-item .popover ul li a {
  display: block;
  font-size: 14px;
  line-height: 40px;
  padding: 0 16px;
  min-width: 120px;
  white-space: nowrap;
  word-break: keep-all;
  color: #333;
}
.zv-sidebar .zv-sidebar-item .popover ul li a i {
  font-size: 20px;
  vertical-align: -.1em;
}
.zv-sidebar .zv-sidebar-item .popover ul li a i[class*='icon-whatsapp'] {
  color: #25D366;
}
.zv-sidebar .zv-sidebar-item .popover ul li a i[class*='icon-skype'] {
  color: #00AEF3;
}
.zv-sidebar .zv-sidebar-item .popover ul li a i[class*='icon-facebook'] {
  color: #235B9E;
}
.zv-sidebar .zv-sidebar-item .popover ul li a i[class*='icon-twitter'] {
  color: #00ACED;
}
.zv-sidebar .zv-sidebar-item .popover ul li a i[class*='icon-messenger'] {
  color: #008AFF;
}
.zv-sidebar .zv-sidebar-item .popover ul li a i[class*='icon-youtube'] {
  color: #FF0000;
}
.zv-sidebar .zv-sidebar-item .popover ul li a:hover {
  background-color: #fffcf4;
  color: #FEBC2A;
}
.zv-sidebar .zv-sidebar-item.top {
  display: none;
}
.zv-sidebar .zv-sidebar-item:hover .wrap {
  transform: translateX(-100%);
}
.zv-sidebar .zv-sidebar-item:hover .popover {
  display: block;
}
.zv-sidebar.scrolled .zv-sidebar-item.top {
  display: block;
}
@media screen and (max-width: 1280px) {
  .zv-sidebar .zv-sidebar-wrap {
    top: auto;
    bottom: 10%;
  }
}
@media screen and (max-width: 992px) {
  .zv-sidebar {
    height: 48px;
  }
  .zv-sidebar .zv-sidebar-wrap {
    top: auto;
    bottom: 0;
    left: 0;
  }
  .zv-sidebar .zv-sidebar-list {
    display: flex;
    background-color: #fff;
    box-shadow: 0 0 0 1px #d9d9d9;
  }
  .zv-sidebar .zv-sidebar-item {
    flex: 1;
    height: auto;
  }
  .zv-sidebar .zv-sidebar-item .wrap {
    position: relative;
    transform: translateX(0);
  }
  .zv-sidebar .zv-sidebar-item .trigger {
    justify-content: center;
    background-color: #fff;
    color: #333;
  }
  .zv-sidebar .zv-sidebar-item .trigger .icon {
    display: block;
    width: auto;
    height: 48px;
    line-height: 48px;
    text-align: center;
  }
  .zv-sidebar .zv-sidebar-item .trigger .text {
    display: none;
    font-size: 12px;
    padding-right: 0;
  }
  .zv-sidebar .zv-sidebar-item .popover {
    display: none;
    position: absolute;
    top: auto;
    left: 50%;
    bottom: 100%;
    right: auto;
    padding: 0 0 12px;
    transform: translateX(-50%);
  }
  .zv-sidebar .zv-sidebar-item .popover .popover-wrap {
    box-shadow: 6px 0 20px 2px rgba(0, 0, 0, 0.18);
  }
  .zv-sidebar .zv-sidebar-item .popover .popover-wrap:after {
    top: auto;
    right: auto;
    left: 50%;
    bottom: -8px;
    margin-left: -8px;
    border-width: 8px 8px 0 8px;
    border-color: #fff transparent transparent transparent;
  }
  .zv-sidebar .zv-sidebar-item.top {
    display: none;
  }
  .zv-sidebar .zv-sidebar-item.primary {
    flex: 2;
    order: 2;
  }
  .zv-sidebar .zv-sidebar-item.primary .trigger {
    background-color: #FEBC2A;
    color: #fff;
  }
  .zv-sidebar .zv-sidebar-item.primary .trigger .text {
    display: block;
  }
  .zv-sidebar .zv-sidebar-item:hover .wrap {
    transform: translateX(0);
  }
  .zv-sidebar .zv-sidebar-item:hover .popover {
    display: block;
  }
  .zv-sidebar.scrolled .zv-sidebar-item.top {
    display: none;
  }
}

/*!- zv-sidebar end -*/
/*!- zv-search begin -*/
.zv-search {
  display: none;
  position: fixed;
  z-index: 1002;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
.zv-search .zv-search-wrap {
  display: block;
  position: relative;
  width: 100%;
  min-height: 40%;
  background-color: #fff;
}
.zv-search .zv-search-close {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 56px;
  height: 56px;
  line-height: 56px;
  transition: color .3s;
  text-align: center;
}
.zv-search .zv-search-close i {
  font-size: 24px;
}
.zv-search .zv-search-close:hover {
  color: #FEBC2A;
}
.zv-search .zv-search-content {
  display: block;
  max-width: 768px;
  margin: 0 auto;
  padding: 10vh 16px;
}
.zv-search .search-bar .bar {
  display: block;
  position: relative;
}
.zv-search .search-bar input {
  display: block;
  width: 100%;
  border: 1px solid #d9d9d9;
  font-size: 16px;
  line-height: 46px;
  height: 48px;
  padding: 0 64px 0 16px;
  transition: all .3s;
  color: #333;
}
.zv-search .search-bar input:focus {
  border-color: #FEBC2A;
  box-shadow: 0 0 0 3px rgba(254, 188, 42, 0.2);
}
.zv-search .search-bar button {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 48px;
  background-color: transparent;
  cursor: pointer;
  border: 0;
  transition: color .3s;
  color: #333;
}
.zv-search .search-bar button i {
  font-size: 20px;
}
.zv-search .search-bar button:hover {
  color: #FEBC2A;
}
.zv-search .search-tip {
  display: block;
  font-size: 0;
  line-height: 1;
  margin-top: 16px;
}
.zv-search .search-tip a {
  display: inline-block;
  font-size: 14px;
  line-height: 32px;
  padding: 0 16px;
  text-align: center;
  background-color: #F5F5F5;
  color: #333;
  max-width: 180px;
  margin: 12px 12px 0 0;
  border-radius: 16px;
  transition: color .3s, background-color .3s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: normal;
}
.zv-search .search-tip a:hover {
  background-color: #fffcf4;
  color: #FEBC2A;
}
.zv-search.opened {
  display: block;
}
.zv-search.opening {
  -webkit-animation: search-wrapper-in .4s both;
  animation: search-wrapper-in .4s both;
}
.zv-search.opening .zv-search-wrap {
  -webkit-animation: search-content-in .4s both;
  animation: search-content-in .4s both;
}
.zv-search.closing {
  -webkit-animation: search-wrapper-out .4s both;
  animation: search-wrapper-out .4s both;
}
.zv-search.closing .zv-search-wrap {
  -webkit-animation: search-content-out .4s both;
  animation: search-content-out .4s both;
}

@-webkit-keyframes search-wrapper-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes search-wrapper-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes search-content-in {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes search-content-in {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes search-wrapper-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes search-wrapper-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes search-content-out {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-100%);
    opacity: 0;
  }
}
@keyframes search-content-out {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-100%);
    opacity: 0;
  }
}
/*!- zv-search end -*/
/*!- zv-inner-backing begin -*/
.zv-inner-backing .zv-inner-backing-wrap {
  position: relative;
  width: 100%;
}
.zv-inner-backing .zv-inner-backing-wrap > img {
  display: block;
  height: 0;
  width: 100%;
  padding-bottom: 16.6666666667%;
}
.zv-inner-backing .zv-inner-backing-wrap > img.loaded {
  width: 100%;
  height: auto;
  padding-right: 0;
  padding-bottom: 0;
}
.zv-inner-backing .zv-inner-backing-wrap .mask {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

/*!- zv-inner-backing end -*/
/*!- zv-crumb begin -*/
.zv-crumb {
  background-color: #F5F5F5;
}
.zv-crumb .zv-crumb-list {
  font-size: 0;
}
.zv-crumb .zv-crumb-list .zv-crumb-item {
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  line-height: 40px;
  margin-right: 12px;
  color: #333;
  transition: color .5s;
}
.zv-crumb .zv-crumb-list .zv-crumb-item:hover {
  color: #FEBC2A;
}
.zv-crumb .zv-crumb-list .zv-crumb-item:nth-child(even), .zv-crumb .zv-crumb-list .zv-crumb-item.separator {
  color: #999;
  pointer-events: none;
}
.zv-crumb .zv-crumb-list .zv-crumb-item:last-child.separator {
  display: none;
}
@media screen and (max-width: 1280px) {
  .zv-crumb .zv-crumb-list .zv-crumb-item {
    font-size: 14px;
    line-height: 36px;
    margin-right: 8px;
  }
}
@media screen and (max-width: 992px) {
  .zv-crumb .zv-crumb-list .zv-crumb-item {
    font-size: 14px;
    line-height: 32px;
  }
}

/*!- zv-crumb end -*/
/*!- zv-inquiry begin -*/
.zv-inquiry .zv-inquiry-alert {
  font-size: 16px;
  line-height: 1.576;
  border-left: 4px solid #FEBC2A;
  color: #FEBC2A;
  padding: 16px 20px;
  margin-bottom: 32px;
  font-weight: 700;
  background-color: #fffcf4;
}
.zv-inquiry .zv-inquiry-form ul {
  display: flex;
  flex-wrap: wrap;
  margin: -32px 0 0 -32px;
}
.zv-inquiry .zv-inquiry-form ul li {
  display: block;
  width: 100%;
  padding: 32px 0 0 32px;
  position: relative;
}
.zv-inquiry .zv-inquiry-form ul li.col-1-2 {
  width: 50%;
}
.zv-inquiry .zv-inquiry-form ul li.col-1-3 {
  width: 33.3333%;
}
.zv-inquiry .zv-inquiry-form ul li.error input[type="text"] {
  border-color: #FE5050;
}
.zv-inquiry .zv-inquiry-form ul li.error input[type="text"]:focus {
  border-color: #FE5050;
  box-shadow: 0 0 0 3px rgba(254, 80, 80, 0.2);
}
.zv-inquiry .zv-inquiry-form ul li.error textarea {
  border-color: #FE5050;
}
.zv-inquiry .zv-inquiry-form ul li.error textarea:focus {
  border-color: #FE5050;
  box-shadow: 0 0 0 3px rgba(254, 80, 80, 0.2);
}
.zv-inquiry .zv-inquiry-form ul li.error .tips {
  display: block;
}
.zv-inquiry .label {
  display: block;
  font-size: 16px;
  line-height: 1;
  padding-bottom: 8px;
  color: #333;
}
.zv-inquiry .label > em {
  color: red;
  margin-right: 8px;
}
.zv-inquiry input[type="text"] {
  display: block;
  width: 100%;
  font-size: 16px;
  font-family: inherit;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #d9d9d9;
  transition: border .5s, box-shadow .5s;
  color: #333;
}
.zv-inquiry input[type="text"]:hover {
  border-color: #FEBC2A;
}
.zv-inquiry input[type="text"]:focus {
  border-color: #FEBC2A;
  box-shadow: 0 0 0 3px rgba(254, 188, 42, 0.2);
}
.zv-inquiry textarea {
  display: block;
  outline: none;
  width: 100%;
  font-size: 16px;
  line-height: 1.576;
  padding: 8px 12px;
  transition: border .5s, box-shadow .5s;
  font-family: inherit;
  resize: none;
  border: 1px solid #d9d9d9;
  color: #333;
}
.zv-inquiry textarea:hover {
  border-color: #FEBC2A;
}
.zv-inquiry textarea:focus {
  border-color: #FEBC2A;
  box-shadow: 0 0 0 3px rgba(254, 188, 42, 0.2);
}
.zv-inquiry button {
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  font-family: inherit;
  outline: none;
  border: 0;
  background-color: #FEBC2A;
  color: #fff;
  height: 40px;
  padding: 0 24px;
  transition: background-color .5s;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}
.zv-inquiry button:hover {
  background-color: #e5a926;
}
.zv-inquiry button:disabled, .zv-inquiry button.disabled {
  cursor: not-allowed;
  background-color: #ffde95;
}
.zv-inquiry .checkbox {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  font-size: 0;
  margin-left: 8px;
}
.zv-inquiry .checkbox > span {
  display: block;
  position: relative;
  font-size: 14px;
  padding-left: 24px;
  line-height: 40px;
  cursor: pointer;
  color: #333;
}
.zv-inquiry .checkbox > span:before, .zv-inquiry .checkbox > span:after {
  display: block;
  position: absolute;
  content: '';
  transition: all .5s;
}
.zv-inquiry .checkbox > span:before {
  top: 50%;
  left: 0;
  width: 18px;
  height: 18px;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  margin-top: -9px;
}
.zv-inquiry .checkbox > span:after {
  width: 9px;
  height: 6px;
  border-width: 0 0 2px 2px;
  border-color: transparent;
  border-style: solid;
  top: 50%;
  left: 4px;
  margin-top: -5px;
  transform: rotate(-45deg);
}
.zv-inquiry .checkbox > span a {
  color: #FEBC2A;
}
.zv-inquiry .checkbox > input[type="checkbox"] {
  display: block;
  position: relative;
  vertical-align: middle;
  margin-right: 24px;
  width: 0;
  height: 0;
  cursor: pointer;
}
.zv-inquiry .checkbox > input[type="checkbox"]:checked + span:before {
  border-color: #FEBC2A;
  background-color: #FEBC2A;
}
.zv-inquiry .checkbox > input[type="checkbox"]:checked + span:after {
  border-color: #fff;
}
.zv-inquiry .checkbox > input[type="checkbox"]:checked:disabled + span:after {
  border-color: #d9d9d9;
}
.zv-inquiry .checkbox > input[type="checkbox"]:disabled {
  cursor: not-allowed;
}
.zv-inquiry .checkbox > input[type="checkbox"]:disabled + span {
  color: #999;
  cursor: not-allowed;
}
.zv-inquiry .checkbox > input[type="checkbox"]:disabled + span:before {
  border-color: #d9d9d9;
  background-color: #F5F5F5;
}
.zv-inquiry .tips {
  display: none;
  position: absolute;
  left: 32px;
  font-size: 14px;
  line-height: 32px;
  color: #FE5050;
}
.zv-inquiry.light .zv-inquiry-alert {
  background-color: rgba(254, 188, 42, 0.1);
}
.zv-inquiry.light .label {
  color: #fff;
}
.zv-inquiry.light input[type="text"] {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
}
.zv-inquiry.light input[type="text"]::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.zv-inquiry.light textarea {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
}
.zv-inquiry.light textarea::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.zv-inquiry.light .checkbox > span {
  color: #fff;
}
.zv-inquiry.light .checkbox > input[type="checkbox"]:disabled + span {
  color: rgba(255, 255, 255, 0.45);
}
.zv-inquiry.light .checkbox > input[type="checkbox"]:disabled + span:before {
  background-color: #F5F5F5;
}
@media screen and (max-width: 1280px) {
  .zv-inquiry .zv-inquiry-alert {
    padding: 12px 16px;
    margin-bottom: 24px;
  }
  .zv-inquiry .zv-inquiry-form {
    padding-bottom: 24px;
  }
  .zv-inquiry .zv-inquiry-form ul {
    margin: -24px 0 0 -24px;
  }
  .zv-inquiry .zv-inquiry-form ul li {
    padding: 24px 0 0 24px;
  }
  .zv-inquiry input[type="text"] {
    font-size: 16px;
    height: 36px;
    padding: 0 10px;
  }
  .zv-inquiry textarea {
    font-size: 16px;
    padding: 6px 12px;
  }
  .zv-inquiry button {
    height: 36px;
    padding: 0 16px;
  }
  .zv-inquiry .tips {
    left: 24px;
    line-height: 24px;
  }
}
@media screen and (max-width: 992px) {
  .zv-inquiry .zv-inquiry-alert {
    padding: 8px 12px;
    margin-bottom: 16px;
  }
  .zv-inquiry .zv-inquiry-form {
    padding-bottom: 16px;
  }
  .zv-inquiry .zv-inquiry-form ul {
    margin: -16px 0 0 -16px;
  }
  .zv-inquiry .zv-inquiry-form ul li {
    padding: 16px 0 0 16px;
  }
  .zv-inquiry .zv-inquiry-form ul li.col-1-2 {
    width: 100%;
  }
  .zv-inquiry .zv-inquiry-form ul li.col-1-3 {
    width: 100%;
  }
  .zv-inquiry input[type="text"] {
    font-size: 14px;
    height: 32px;
    padding: 0 8px;
  }
  .zv-inquiry textarea {
    font-size: 14px;
    padding: 4px 8px;
  }
  .zv-inquiry button {
    height: 32px;
    padding: 0 12px;
    font-size: 14px;
  }
  .zv-inquiry .tips {
    left: 16px;
    font-size: 12px;
    line-height: 16px;
  }
}

/*!- zv-inquiry end -*/
/*!- zv-pagination begin -*/
.zv-pagination{ margin-bottom:70px;}
.zv-pagination .zv-pagination-links {
  margin: -16px 0 0 -16px;
  line-height: 1;
  font-size: 0;
}
.zv-pagination .zv-pagination-links a {
  display: inline-block;
  line-height: 40px;
  min-width: 40px;
  text-align: center;
  font-size: 14px;
  margin: 16px 0 0 16px;
  padding: 0 16px;
  border-radius: 20px;
  background-color: #F5F5F5;
  color: #333;
  transition: background-color .4s, color .4s;
}
.zv-pagination .zv-pagination-links a:hover {
  background-color: #fffcf4;
  color: #FEBC2A;
}
.zv-pagination .zv-pagination-links a.current {
  background-color: #FEBC2A;
  color: #fff;
}
.zv-pagination .zv-pagination-links.center {
  text-align: center;
}
.zv-pagination .zv-pagination-links.right {
  text-align: right;
}
@media screen and (max-width: 1280px) {
  .zv-pagination .zv-pagination-links {
    margin: -12px 0 0 -12px;
  }
  .zv-pagination .zv-pagination-links a {
    line-height: 36px;
    min-width: 36px;
    margin: 12px 0 0 12px;
    padding: 0 12px;
    border-radius: 18px;
  }
}
@media screen and (max-width: 992px) {
  .zv-pagination .zv-pagination-links {
    margin: -8px 0 0 -8px;
  }
  .zv-pagination .zv-pagination-links a {
    line-height: 32px;
    min-width: 32px;
    font-size: 12px;
    margin: 8px 0 0 8px;
    padding: 0 8px;
    border-radius: 16px;
  }
}

/*!- zv-pagination end -*/
/*!- zv-tabs begin -*/
.zv-tabs {
  display: block;
  position: sticky;
  z-index: 997;
  top: 72px;
  left: 0;
  right: 0;
  background-color: #fff;
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.05);
}
.zv-tabs .zv-tabs-wrap {
  padding: 0;
}
.zv-tabs .zv-tabs-content ul {
  display: flex;
  justify-content: center;
  overflow-x: auto;
  padding: 0 16px;
}
.zv-tabs .zv-tabs-content ul li {
  margin: 0 16px;
}
.zv-tabs .zv-tabs-content ul li a {
  display: block;
  line-height: 56px;
  font-size: 16px;
  color: #333;
  max-width: 200px;
  border-bottom: 1px solid transparent;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: normal;
}
.zv-tabs .zv-tabs-content ul li.active a {
  color: #FEBC2A;
  border-color: #FEBC2A;
}
.zv-tabs.auto-hide {
  display: none;
}
@media screen and (max-width: 1280px) {
  .zv-tabs .zv-tabs-content ul li {
    margin: 0 12px;
  }
}
@media screen and (max-width: 992px) {
  .zv-tabs {
    top: 56px;
  }
  .zv-tabs .zv-tabs-content ul {
    justify-content: left;
    padding: 0 16px;
  }
  .zv-tabs .zv-tabs-content ul li {
    margin: 0 16px 0 0;
  }
  .zv-tabs .zv-tabs-content ul li a {
    line-height: 40px;
    font-size: 14px;
  }
  .zv-tabs.auto-hide {
    display: block;
  }
}

/*!- zv-tabs end -*/
/*!- zv-banner begin -*/
.zv-banner .zv-banner-wrap:nth-child(1) .zv-banner-item > img, .zv-banner .zv-banner-wrap.banner-pc .zv-banner-item > img {
  height: 0;
  width: 100%;
  padding-bottom: 40%;
}
.zv-banner .zv-banner-wrap:nth-child(1) .zv-banner-item > img.loaded, .zv-banner .zv-banner-wrap.banner-pc .zv-banner-item > img.loaded {
  width: 100%;
  height: auto;
  padding-right: 0;
  padding-bottom: 0;
}
.zv-banner .zv-banner-wrap:nth-child(2), .zv-banner .zv-banner-wrap.banner-h5 {
  display: none;
}
.zv-banner .zv-banner-wrap:nth-child(2) .zv-banner-item > img, .zv-banner .zv-banner-wrap.banner-h5 .zv-banner-item > img {
  height: 0;
  width: 100%;
  padding-bottom: 50%;
}
.zv-banner .zv-banner-wrap:nth-child(2) .zv-banner-item > img.loaded, .zv-banner .zv-banner-wrap.banner-h5 .zv-banner-item > img.loaded {
  width: 100%;
  height: auto;
  padding-right: 0;
  padding-bottom: 0;
}
.zv-banner .zv-banner-item {
  display: block;
}
.zv-banner .zv-banner-item > img {
  display: block;
}
.zv-banner .swiper-button-prev, .zv-banner .swiper-container-rtl .swiper-button-next {
  left: 5%;
}
.zv-banner .swiper-button-next, .zv-banner .swiper-container-rtl .swiper-button-prev {
  right: 5%;
}
@media screen and (max-width: 992px) {
  .zv-banner.has-mobile .zv-banner-wrap:nth-child(1), .zv-banner.has-mobile .zv-banner-wrap.banner-pc {
    display: none;
  }
  .zv-banner.has-mobile .zv-banner-wrap:nth-child(2), .zv-banner.has-mobile .zv-banner-wrap.banner-h5 {
    display: block;
  }
}

/*!- zv-banner end -*/
/*!- zv-catalog begin -*/
.zv-catalog .zv-catalog-list {
  display: flex;
  margin: -32px 0 0 -32px;
}
.zv-catalog .zv-catalog-item {
  display: block;
  width: 16.6666%;
  padding: 32px 0 0 32px;
}
.zv-catalog .zv-catalog-item .wrap {
  display: block;
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
}
.zv-catalog .zv-catalog-item .wrap > a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 16px;
  border: 1px solid #d9d9d9;
  color: #333;
  transition: all .3s;
}
.zv-catalog .zv-catalog-item .wrap > a > img {
  display: block;
  max-height: 120px;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  height: 90%;
  width: 0;
  padding-right: 90%;
}
.zv-catalog .zv-catalog-item .wrap > a > img.loaded {
  width: auto;
  height: 90%;
  padding-right: 0;
  padding-bottom: 0;
}
.zv-catalog .zv-catalog-item .wrap > a > span {
  display: block;
  font-size: 16px;
  line-height: 1.576;
  margin-top: 8px;
}
.zv-catalog .zv-catalog-item .wrap > a:hover {
  border-color: #FEBC2A;
  color: #FEBC2A;
  background-color: #fffcf4;
}
@media screen and (max-width: 1280px) {
  .zv-catalog .zv-catalog-list {
    margin: -24px 0 0 -24px;
  }
  .zv-catalog .zv-catalog-item {
    width: 16.6666%;
    padding: 24px 0 0 24px;
  }
  .zv-catalog .zv-catalog-item .wrap > a {
    padding: 8px;
  }
  .zv-catalog .zv-catalog-item .wrap > a > img.loaded {
    width: auto;
    height: 70%;
    padding-right: 0;
    padding-bottom: 0;
  }
  .zv-catalog .zv-catalog-item .wrap > a > span {
    font-size: 14px;
    margin-top: 4px;
  }
}
@media screen and (max-width: 992px) {
  .zv-catalog .zv-catalog-list {
    margin: -16px 0 0 -16px;
    flex-wrap: wrap;
  }
  .zv-catalog .zv-catalog-item {
    width: 33.3333%;
    padding: 16px 0 0 16px;
  }
  .zv-catalog .zv-catalog-item .wrap > a {
    padding: 4px;
  }
  .zv-catalog .zv-catalog-item .wrap > a > img.loaded {
    width: auto;
    height: 50%;
    padding-right: 0;
    padding-bottom: 0;
  }
}

/*!- zv-catalog end -*/
/*!- zv-product begin -*/
.zv-about-gallery .zv-product-title > h3 {
  font-size: 48px;
  font-weight: lighter;
  text-align: center;
  text-transform: uppercase;
  font-family: 'Times New Roman',serif;
  color: #333;
  margin-bottom: 48px;
}
.zv-product .zv-product-title > h3 {
  font-size: 48px;
  font-weight: lighter;
  text-align: center;
  text-transform: uppercase;
  font-family: 'Times New Roman',serif;
  color: #333;
  margin-bottom: 48px;
}
.zv-product .zv-product-list {
  display: flex;
  margin: -32px 0 0 -32px;
}
.zv-product .zv-product-item {
  display: block;
  width: 25%;
  padding: 32px 0 0 32px;
}



.zv-product .zv-product-item > a {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
}
.zv-product .zv-product-item > a:hover .cover {
  opacity: .6;
}
.zv-product .zv-product-item > a:hover .intro {
  color: #FEBC2A;
}
.zv-product .zv-product-item .cover {
  width: 100%;
  height: 100%;
  position: relative;
  box-shadow: 0 0 0 1px #d9d9d9;
  transition: opacity .3s;
}
.zv-product .zv-product-item .cover > img {
  display: block;
  object-position: center;
  object-fit: contain;
  height: 0;
  width: 100%;
  padding-bottom: 100%;
}
.zv-product .zv-product-item .cover > img.loaded {
  width: 100%;
  height: 100%;
  padding-right: 0;
  padding-bottom: 0;
}
.zv-about-gallery .zv-about-gallery-item .intro {
  font-size: 16px;
  line-height: 1.576;
  text-align: center;
  margin-top: 16px;
  height: 24px;
  color: #333;
  transition: color .3s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: normal;
}
.zv-product .zv-product-item .intro {
  font-size: 16px;
  line-height: 1.576;
  text-align: center;
  margin-top: 16px;
  height: 24px;
  color: #333;
  transition: color .3s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: normal;
}
@media screen and (max-width: 1280px) {
  .zv-product .zv-product-title > h3 {
    font-size: 32px;
    margin-bottom: 32px;
  }
  .zv-product .zv-product-list {
    margin: -24px 0 0 -24px;
  }
  .zv-product .zv-product-item {
    padding: 24px 0 0 24px;
  }
  .zv-product .zv-product-item .intro {
    font-size: 14px;
    margin-top: 12px;
  }
}
@media screen and (max-width: 992px) {
  .zv-product .zv-product-title > h3 {
    font-size: 24px;
    margin-bottom: 24px;
  }
  .zv-product .zv-product-list {
    margin: -16px 0 0 -16px;
    flex-wrap: wrap;
  }
  .zv-product .zv-product-item {
    width: 50%;
    padding: 16px 0 0 16px;
  }
  .zv-product .zv-product-item .intro {
    font-size: 14px;
    margin-top: 8px;
  }
}

/*!- zv-product end -*/
/*!- zv-about begin -*/
.zv-about .zv-about-wrap {
  display: flex;
}
.zv-about .zv-about-intro {
  width: 50%;
  background-color: #F5F5F5;
}
.zv-about .zv-about-intro .wrap {
  max-width: 830px;
  margin-left: auto;
  padding: 5% 32px 32px 16px;
}
.zv-about .zv-about-intro .wrap h3 {
  font-size: 48px;
  font-weight: lighter;
  text-transform: uppercase;
  font-family: 'Times New Roman',serif;
  color: #333;
  margin-bottom: 48px;
  position: relative;
}
.zv-about .zv-about-intro .wrap h3:after {
  display: block;
  content: '';
  position: absolute;
  bottom: -16px;
  left: 0;
  width: 64px;
  height: 1px;
  background-color: #333;
}
.zv-about .zv-about-intro .wrap p {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 20px;
  color: #666;
}
.zv-about .zv-about-intro .wrap div {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.zv-about .zv-about-intro .wrap div img {
  height: 0;
  width: 48%;
  padding-bottom: 48%;
  display: block;
  object-position: center;
  object-fit: contain;
}
.zv-about .zv-about-intro .wrap div img:first-child {
  margin-right: 4%;
}
.zv-about .zv-about-intro .wrap div img.loaded {
  width: 48%;
  height: auto;
  padding-right: 0;
  padding-bottom: 0;
}
.zv-about .zv-about-cover {
  width: 50%;
}
.zv-about .zv-about-cover .video {
  display: block;
  position: relative;
  height: 100%;
}
.zv-about .zv-about-cover .video .video-cover {
  height: 100%;
}
.zv-about .zv-about-cover .video .video-cover > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.zv-about .zv-about-cover .video .video-mask {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
  transition: color .5s;
}
.zv-about .zv-about-cover .video .video-mask .zv-iconfont {
  font-size: 64px;
}
.zv-about .zv-about-cover .video .video-mask:hover {
  color: #FEBC2A;
}
@media screen and (max-width: 1280px) {
  .zv-about .zv-about-intro .wrap {
    padding: 5% 24px 24px 16px;
  }
  .zv-about .zv-about-intro .wrap h3 {
    font-size: 32px;
    margin-bottom: 32px;
  }
  .zv-about .zv-about-intro .wrap h3:after {
    bottom: -12px;
  }
  .zv-about .zv-about-intro .wrap p {
    font-size: 14px;
  }
  .zv-about .zv-about-cover .video .video-mask .zv-iconfont {
    font-size: 48px;
  }
}
@media screen and (max-width: 992px) {
 .zv-about-gallery .zv-product-title > h3 {
    font-size: 24px;
    margin-bottom: 24px;
}
	
  .zv-about .zv-about-wrap {
    flex-wrap: wrap;
    padding: 16px 0;
  }
  .zv-about .zv-about-intro {
    width: 100%;
    background-color: transparent;
  }
  .zv-about .zv-about-intro .wrap {
    max-width: none;
    padding: 0 16px 16px;
  }
  .zv-about .zv-about-intro .wrap h3 {
    font-size: 24px;
    margin-bottom: 24px;
    text-align: center;
  }
  .zv-about .zv-about-intro .wrap h3:after {
    display: none;
  }
  .zv-about .zv-about-intro .wrap p {
    font-size: 14px;
    line-height: 1.576;
    margin-bottom: 16px;
  }
  .zv-about .zv-about-cover {
    width: 100%;
  }
  .zv-about .zv-about-cover .video .video-mask .zv-iconfont {
    font-size: 32px;
  }
}

/*!- zv-about end -*/
/*!- zv-about-detail begin -*/
.zv-about-detail {
  background-color: #F5F5F5;
  padding: 64px 0;
}
.zv-about-detail .zv-about-detail-title > h3 {
  font-size: 48px;
  font-weight: lighter;
  text-align: center;
  text-transform: uppercase;
  font-family: 'Times New Roman',serif;
  color: #333;
  margin-bottom: 32px;
}
@media screen and (max-width: 1280px) {
  .zv-about-detail {
    padding: 32px 0;
  }
  .zv-about-detail .zv-about-detail-title > h3 {
    font-size: 32px;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 992px) {
  .zv-about-detail {
    padding: 24px 0;
  }
  .zv-about-detail .zv-about-detail-title > h3 {
    font-size: 24px;
    margin-bottom: 16px;
  }
}

/*!- zv-about-detail end -*/
/*!- zv-meta begin -*/
.zv-meta .zv-meta-list {
  display: flex;
}
.zv-meta .zv-meta-item {
  display: block;
  width: 25%;
  padding: 16px;
  text-align: center;
}
.zv-meta .zv-meta-item > img {
  display: block;
  margin: 0 auto;
  height: 72px;
  width: 0;
  padding-right: 72px;
}
.zv-meta .zv-meta-item > img.loaded {
  width: auto;
  height: 72px;
  padding-right: 0;
  padding-bottom: 0;
}
.zv-meta .zv-meta-item > h3 {
  font-size: 32px;
  font-weight: 500;
  line-height: 2;
  color: #333;
}
.zv-meta .zv-meta-item > p {
  font-size: 16px;
  color: #999;
}
@media screen and (max-width: 1280px) {
  .zv-meta .zv-meta-item {
    padding: 12px;
  }
  .zv-meta .zv-meta-item > img.loaded {
    width: auto;
    height: 64px;
    padding-right: 0;
    padding-bottom: 0;
  }
  .zv-meta .zv-meta-item > h3 {
    font-size: 28px;
  }
  .zv-meta .zv-meta-item > p {
    font-size: 14px;
  }
}
@media screen and (max-width: 992px) {
  .zv-meta .zv-meta-list {
    flex-wrap: wrap;
  }
  .zv-meta .zv-meta-item {
    width: 50%;
    padding: 16px 8px;
  }
  .zv-meta .zv-meta-item > img.loaded {
    width: auto;
    height: 48px;
    padding-right: 0;
    padding-bottom: 0;
  }
  .zv-meta .zv-meta-item > h3 {
    font-size: 24px;
  }
}

/*!- zv-meta end -*/
/*!- zv-news begin -*/
.zv-news .zv-news-wrap {
  display: flex;
  position: relative;
}
.zv-news .zv-news-cover {
  width: 50%;
  flex: none;
}
.zv-news .zv-news-intro {
  width: 50%;
  background-color: #F5F5F5;
}
.zv-news .zv-news-intro .wrap {
  max-width: 830px;
  margin-right: auto;
  padding: 5% 16px 0 32px;
}
.zv-news .zv-news-intro h3 {
  font-size: 48px;
  font-weight: lighter;
  text-transform: uppercase;
  font-family: 'Times New Roman',serif;
  color: #333;
  margin-bottom: 48px;
  position: relative;
}
.zv-news .zv-news-intro h3:after {
  display: block;
  content: '';
  position: absolute;
  bottom: -16px;
  left: 0;
  width: 64px;
  height: 1px;
  background-color: #333;
}
.zv-news .zv-news-intro ul {
  display: flex;
  padding: 5% 0 10%;
}
.zv-news .zv-news-intro li {
  display: block;
  width: 48%;
}
.zv-news .zv-news-intro li:nth-child(1) {
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.zv-news .zv-news-intro li:nth-child(1) > a {
  height: 100%;
}
.zv-news .zv-news-intro li:nth-child(1) > a img {
  height: 100%;
  object-fit: cover;
}
.zv-news .zv-news-intro li:nth-child(1) > a div {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10% 16px 16px;
  background-color: rgba(255, 255, 255, 0.8);
  background: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8));
  background: -o-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8));
  background: -moz-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8));
  background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8));
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: all .5s;
  transition: all .5s;
}
.zv-news .zv-news-intro li:nth-child(1) > a h4 {
  font-size: 20px;
}
.zv-news .zv-news-intro li:nth-child(1) > a:hover h4 {
  color: #333;
}
.zv-news .zv-news-intro li:nth-child(1) > a:hover div {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.zv-news .zv-news-intro li:nth-child(2) {
  margin-right: 4%;
}
.zv-news .zv-news-intro li > a {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.zv-news .zv-news-intro li > a img {
  display: block;
  object-position: center;
  object-fit: contain;
  height: 0;
  width: 100%;
  padding-bottom: 75%;
}
.zv-news .zv-news-intro li > a img.loaded {
  width: 100%;
  height: 100%;
  padding-right: 0;
  padding-bottom: 0;
}
.zv-news .zv-news-intro li > a h4 {
  font-size: 18px;
  margin: 16px 0;
  font-weight: normal;
  line-height: 24px;
  height: 48px;
  color: #333;
  transition: color .3s;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  word-break: break-word;
  white-space: normal;
  -webkit-line-clamp: 2;
}
.zv-news .zv-news-intro li > a p {
  font-size: 16px;
  color: #999;
}
.zv-news .zv-news-intro li > a:hover h4 {
  color: #FEBC2A;
}
@media screen and (max-width: 1280px) {
  .zv-news .zv-news-intro .wrap {
    padding: 5% 16px 0 24px;
  }
  .zv-news .zv-news-intro h3 {
    font-size: 32px;
    margin-bottom: 32px;
  }
  .zv-news .zv-news-intro h3:after {
    bottom: -12px;
  }
  .zv-news .zv-news-intro ul {
    padding: 5% 0 10%;
  }
  .zv-news .zv-news-intro li:nth-child(1) > a div {
    padding: 8px;
  }
  .zv-news .zv-news-intro li:nth-child(1) > a img {
    object-fit: contain;
  }
  .zv-news .zv-news-intro li:nth-child(1) > a h4 {
    font-size: 16px;
  }
  .zv-news .zv-news-intro li > a h4 {
    font-size: 16px;
    margin: 8px 0;
    line-height: 20px;
    height: 40px;
  }
  .zv-news .zv-news-intro li > a p {
    font-size: 14px;
  }
}
@media screen and (max-width: 992px) {
  .zv-news .zv-news-cover {
    display: none;
  }
  .zv-news .zv-news-intro {
    width: 100%;
    background-color: transparent;
  }
  .zv-news .zv-news-intro .wrap {
    max-width: none;
    margin-right: 0;
    padding: 16px 0;
  }
  .zv-news .zv-news-intro h3 {
    font-size: 24px;
    margin-bottom: 24px;
    text-align: center;
  }
  .zv-news .zv-news-intro h3:after {
    display: none;
  }
  .zv-news .zv-news-intro ul {
    padding: 0 0 16px 16px;
    overflow-x: auto;
  }
  .zv-news .zv-news-intro li {
    width: 75%;
    margin-right: 16px;
    flex: none;
  }
  .zv-news .zv-news-intro li:nth-child(1) {
    width: 75%;
    height: auto;
    position: static;
  }
  .zv-news .zv-news-intro li:nth-child(1) > a {
    height: auto;
  }
  .zv-news .zv-news-intro li:nth-child(1) > a img {
    height: 100%;
  }
  .zv-news .zv-news-intro li:nth-child(1) > a div {
    position: static;
    padding: 0;
    background: transparent;
    -webkit-transform: none;
    transform: none;
    -webkit-transition: all .5s;
    transition: all .5s;
  }
  .zv-news .zv-news-intro li:nth-child(1) > a h4 {
    font-size: 14px;
  }
  .zv-news .zv-news-intro li:nth-child(1) > a:hover div {
    -webkit-transform: none;
    transform: none;
  }
  .zv-news .zv-news-intro li:nth-child(2) {
    margin-right: 16px;
  }
  .zv-news .zv-news-intro li > a h4 {
    font-size: 14px;
    margin: 8px 0;
  }
  .zv-news .zv-news-intro li > a p {
    font-size: 12px;
  }
}

/*!- zv-news end -*/
/*!- zv-advantage begin -*/
.zv-advantage .zv-advantage-title > h3 {
  font-size: 48px;
  font-weight: lighter;
  text-align: center;
  text-transform: uppercase;
  font-family: 'Times New Roman',serif;
  color: #333;
  margin-bottom: 32px;
}
.zv-advantage .zv-advantage-list {
  display: flex;
  flex-wrap: wrap;
}
.zv-advantage .zv-advantage-item {
  width: 33.33%;
  display: flex;
  padding: 32px;
  align-items: center;
  justify-content: center;
}
.zv-advantage .zv-advantage-item .cover {
  flex: none;
  margin-right: 32px;
  width: 96px;
}
.zv-advantage .zv-advantage-item .cover > img {
  display: flex;
  height: 0;
  width: 100%;
  padding-bottom: 100%;
}
.zv-advantage .zv-advantage-item .cover > img.loaded {
  width: 100%;
  height: auto;
  padding-right: 0;
  padding-bottom: 0;
}
.zv-advantage .zv-advantage-item .intro {
  flex: auto;
  width: 100%;
}
.zv-advantage .zv-advantage-item .intro > h4 {
  font-size: 18px;
  line-height: 1.576;
  font-weight: normal;
  color: #333;
}
.zv-advantage .zv-advantage-item .intro > p {
  font-size: 14px;
  line-height: 1.576;
  color: #999;
  text-align: justify;
  width: 100%;
}
@media screen and (max-width: 1280px) {
  .zv-advantage .zv-advantage-title > h3 {
    font-size: 32px;
    margin-bottom: 24px;
  }
  .zv-advantage .zv-advantage-item {
    padding: 16px;
    flex-direction: column;
  }
  .zv-advantage .zv-advantage-item .cover {
    margin-right: 0;
    margin-bottom: 16px;
    width: 72px;
  }
  .zv-advantage .zv-advantage-item .intro > h4 {
    text-align: center;
    margin-bottom: 8px;
  }
  .zv-advantage .zv-advantage-item .intro > p {
    text-align: center;
  }
}
@media screen and (max-width: 992px) {
  .zv-advantage .zv-advantage-title > h3 {
    font-size: 24px;
    margin-bottom: 16px;
  }
  .zv-advantage .zv-advantage-item {
    width: 50%;
    padding: 8px;
  }
  .zv-advantage .zv-advantage-item .cover {
    margin-bottom: 8px;
    width: 56px;
  }
  .zv-advantage .zv-advantage-item .intro > h4 {
    font-size: 16px;
  }
  .zv-advantage .zv-advantage-item .intro > p {
    font-size: 12px;
  }
}

/*!- zv-advantage end -*/
/*!- zv-case begin -*/
.zv-case .zv-case-wrap {
  display: flex;
  position: relative;
}
.zv-case .zv-case-cover {
  width: 50%;
  flex: none;
}
.zv-case .zv-case-intro {
  width: 50%;
  background-color: #F5F5F5;
}
.zv-case .zv-case-intro .wrap {
  max-width: 830px;
  margin-left: auto;
  padding: 5% 32px 0 16px;
}
.zv-case .zv-case-intro h3 {
  font-size: 48px;
  font-weight: lighter;
  text-transform: uppercase;
  font-family: 'Times New Roman',serif;
  color: #333;
  margin-bottom: 48px;
  position: relative;
}
.zv-case .zv-case-intro h3:after {
  display: block;
  content: '';
  position: absolute;
  bottom: -16px;
  left: 0;
  width: 64px;
  height: 1px;
  background-color: #333;
}
.zv-case .zv-case-intro ul {
  display: flex;
  padding: 5% 0 10%;
}
.zv-case .zv-case-intro li {
  display: block;
  width: 48%;
}
.zv-case .zv-case-intro li:nth-child(3) {
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
.zv-case .zv-case-intro li:nth-child(3) > a {
  height: 100%;
}
.zv-case .zv-case-intro li:nth-child(3) > a img {
  height: 100%;
  object-fit: cover;
}
.zv-case .zv-case-intro li:nth-child(3) > a div {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10% 16px 16px;
  background-color: rgba(255, 255, 255, 0.8);
  background: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8));
  background: -o-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8));
  background: -moz-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8));
  background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8));
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: all .5s;
  transition: all .5s;
}
.zv-case .zv-case-intro li:nth-child(3) > a h4 {
  font-size: 20px;
}
.zv-case .zv-case-intro li:nth-child(3) > a:hover h4 {
  color: #333;
}
.zv-case .zv-case-intro li:nth-child(3) > a:hover div {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.zv-case .zv-case-intro li:nth-child(1) {
  margin-right: 4%;
}
.zv-case .zv-case-intro li > a {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
.zv-case .zv-case-intro li > a img {
  display: block;
  object-position: center;
  object-fit: contain;
  height: 0;
  width: 100%;
  padding-bottom: 75%;
}
.zv-case .zv-case-intro li > a img.loaded {
  width: 100%;
  height: 100%;
  padding-right: 0;
  padding-bottom: 0;
}
.zv-case .zv-case-intro li > a h4 {
  font-size: 18px;
  margin: 16px 0;
  font-weight: normal;
  line-height: 24px;
  height: 48px;
  color: #333;
  transition: color .3s;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  word-break: break-word;
  white-space: normal;
  -webkit-line-clamp: 2;
}
.zv-case .zv-case-intro li > a p {
  font-size: 16px;
  color: #999;
}
.zv-case .zv-case-intro li > a:hover h4 {
  color: #FEBC2A;
}
@media screen and (max-width: 1280px) {
  .zv-case .zv-case-intro .wrap {
    padding: 5% 24px 0 16px;
  }
  .zv-case .zv-case-intro h3 {
    font-size: 32px;
    margin-bottom: 32px;
  }
  .zv-case .zv-case-intro h3:after {
    bottom: -12px;
  }
  .zv-case .zv-case-intro ul {
    padding: 5% 0 10%;
  }
  .zv-case .zv-case-intro li:nth-child(3) > a div {
    padding: 8px;
  }
  .zv-case .zv-case-intro li:nth-child(3) > a img {
    object-fit: contain;
  }
  .zv-case .zv-case-intro li:nth-child(3) > a h4 {
    font-size: 16px;
  }
  .zv-case .zv-case-intro li > a h4 {
    font-size: 16px;
    margin: 8px 0;
    line-height: 20px;
    height: 40px;
  }
  .zv-case .zv-case-intro li > a p {
    font-size: 14px;
  }
}
@media screen and (max-width: 992px) {
  .zv-case .zv-case-cover {
    display: none;
  }
  .zv-case .zv-case-intro {
    width: 100%;
    background-color: transparent;
  }
  .zv-case .zv-case-intro .wrap {
    max-width: none;
    margin-left: 0;
    padding: 16px 0;
  }
  .zv-case .zv-case-intro h3 {
    font-size: 24px;
    margin-bottom: 24px;
    text-align: center;
  }
  .zv-case .zv-case-intro h3:after {
    display: none;
  }
  .zv-case .zv-case-intro ul {
    padding: 0 0 16px 16px;
    overflow-x: auto;
  }
  .zv-case .zv-case-intro li {
    width: 75%;
    margin-right: 16px;
    flex: none;
  }
  .zv-case .zv-case-intro li:nth-child(3) {
    width: 75%;
    height: auto;
    position: static;
  }
  .zv-case .zv-case-intro li:nth-child(3) > a {
    height: auto;
  }
  .zv-case .zv-case-intro li:nth-child(3) > a img {
    height: 100%;
  }
  .zv-case .zv-case-intro li:nth-child(3) > a div {
    position: static;
    padding: 0;
    background: transparent;
    -webkit-transform: none;
    transform: none;
    -webkit-transition: all .5s;
    transition: all .5s;
  }
  .zv-case .zv-case-intro li:nth-child(3) > a h4 {
    font-size: 14px;
  }
  .zv-case .zv-case-intro li:nth-child(3) > a:hover div {
    -webkit-transform: none;
    transform: none;
  }
  .zv-case .zv-case-intro li:nth-child(1) {
    margin-right: 16px;
  }
  .zv-case .zv-case-intro li > a h4 {
    font-size: 14px;
    margin: 8px 0;
  }
  .zv-case .zv-case-intro li > a p {
    font-size: 12px;
  }
}

/*!- zv-case end -*/
/*!- zv-trade begin -*/
.zv-trade .zv-trade-wrap {
  max-width: 1660px;
  padding: 16px;
  margin: 0 auto;
}
.zv-trade .zv-trade-title > h3 {
  font-size: 48px;
  font-weight: lighter;
  text-align: center;
  text-transform: uppercase;
  font-family: 'Times New Roman',serif;
  color: #333;
  margin-bottom: 48px;
}
.zv-trade .zv-trade-list {
  display: flex;
}
.zv-trade .zv-trade-item {
  width: 33.33%;
}
.zv-trade .zv-trade-item .wrap {
  display: flex;
  flex-direction: column;
}
.zv-trade .zv-trade-item .cover {
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 66.66%;
  position: relative;
}
.zv-trade .zv-trade-item .cover .cover-wrap {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.zv-trade .zv-trade-item .cover .cover-wrap > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all .3s;
}
.zv-trade .zv-trade-item .intro {
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 66.66%;
  position: relative;
  background-color: #F5F5F5;
  transition: background-color .3s;
}
.zv-trade .zv-trade-item .intro .intro-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 32px;
  text-align: center;
  line-height: 1.576;
}
.zv-trade .zv-trade-item .intro .intro-wrap > h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #333;
}
.zv-trade .zv-trade-item .intro .intro-wrap > p {
  font-size: 14px;
  color: #999;
  width: 100%;
}
.zv-trade .zv-trade-item:hover .cover .cover-wrap > img {
  transform: scale(1.1);
}
.zv-trade .zv-trade-item:hover .intro {
  background-color: #fffcf4;
}
.zv-trade .zv-trade-item:nth-child(even) .cover {
  order: 2;
}
@media screen and (max-width: 1280px) {
  .zv-trade .zv-trade-title > h3 {
    font-size: 32px;
    margin-bottom: 32px;
  }
  .zv-trade .zv-trade-item .intro .intro-wrap {
    padding: 24px;
  }
  .zv-trade .zv-trade-item .intro .intro-wrap > h4 {
    font-size: 16px;
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 992px) {
  .zv-trade .zv-trade-wrap {
    padding: 0;
  }
  .zv-trade .zv-trade-title > h3 {
    font-size: 24px;
    margin-bottom: 24px;
  }
  .zv-trade .zv-trade-list {
    overflow-x: auto;
    padding: 0 0 16px 16px;
  }
  .zv-trade .zv-trade-item {
    width: 75%;
    flex: none;
    margin-right: 16px;
  }
  .zv-trade .zv-trade-item .intro {
    width: 100%;
    height: auto;
    padding-bottom: 0;
  }
  .zv-trade .zv-trade-item .intro .intro-wrap {
    position: static;
    padding: 16px;
  }
  .zv-trade .zv-trade-item .intro .intro-wrap > h4 {
    margin-bottom: 8px;
  }
  .zv-trade .zv-trade-item:nth-child(even) .cover {
    order: 0;
  }
}

/*!- zv-trade end -*/
/*!- zv-partner begin -*/
.zv-partner .zv-partner-title > h3 {
  font-size: 48px;
  font-weight: lighter;
  text-align: center;
  text-transform: uppercase;
  font-family: 'Times New Roman',serif;
  color: #333;
  margin-bottom: 48px;
}
.zv-partner .zv-partner-list {
  display: flex;
  margin: -32px 0 0 -32px;
}
.zv-partner .zv-partner-item {
  width: 16.66%;
  padding: 32px 0 0 32px;
}
.zv-partner .zv-partner-item .wrap {
  width: 100%;
  height: 100%;
  position: relative;
  box-shadow: 0 0 0 1px #d9d9d9;
}
.zv-partner .zv-partner-item .wrap img {
  display: block;
  object-position: center;
  object-fit: contain;
  height: 0;
  width: 100%;
  padding-bottom: 100%;
}
.zv-partner .zv-partner-item .wrap img.loaded {
  width: 100%;
  height: 100%;
  padding-right: 0;
  padding-bottom: 0;
}
@media screen and (max-width: 1280px) {
  .zv-partner .zv-partner-title > h3 {
    font-size: 32px;
    margin-bottom: 32px;
  }
  .zv-partner .zv-partner-list {
    margin: -24px 0 0 -24px;
  }
  .zv-partner .zv-partner-item {
    width: 16.66%;
    padding: 24px 0 0 24px;
  }
}
@media screen and (max-width: 992px) {
  .zv-partner .zv-partner-title > h3 {
    font-size: 24px;
    margin-bottom: 24px;
  }
  .zv-partner .zv-partner-list {
    flex-wrap: wrap;
    margin: -16px 0 0 -16px;
  }
  .zv-partner .zv-partner-item {
    width: 33.33%;
    padding: 16px 0 0 16px;
  }
}

/*!- zv-partner end -*/
/*!- zv-about-gallery begin -*/
.zv-about-gallery .zv-about-gallery-item > a {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
}
.zv-about-gallery .zv-about-gallery-item > a:hover img {
  opacity: .6;
}
.zv-about-gallery .zv-about-gallery-item > a:hover .intro {
  color: #FEBC2A;
}

.zv-about-gallery .zv-about-gallery-item a{
  display: block;
  width: 100%;
}
.zv-about-gallery .zv-about-gallery-item a > img {
  display: block;
  height: 0;
  width: 100%;
  padding-bottom: 100%;
}
.zv-about-gallery .zv-about-gallery-item a > img.loaded {
  width: 100%;
  height: auto;
  padding-right: 0;
  padding-bottom: 0;
}

/*!- zv-about-gallery end -*/
/*!- zv-cert begin -*/
.zv-cert .zv-cert-content {
  background-color: #F5F5F5;
  padding: 32px;
}
.zv-cert .zv-cert-item {
  display: block;
  position: relative;
  height: 0;
  width: 100%;
  padding-bottom: 75%;
}
.zv-cert .zv-cert-item > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
@media screen and (max-width: 1280px) {
  .zv-cert .zv-cert-content {
    padding: 24px;
  }
}
@media screen and (max-width: 992px) {
  .zv-cert .zv-cert-content {
    padding: 16px;
  }
}

/*!- zv-cert end -*/
/*!- zv-news-grid begin -*/
.zv-news-grid .zv-news-grid-content ul {
  display: flex;
  flex-wrap: wrap;
  margin: -32px 0 0 -32px;
}
.zv-news-grid .zv-news-grid-content ul li {
  display: block;
  width: 33.33%;
  padding: 32px 0 0 32px;
}
.zv-news-grid .zv-news-grid-content ul li a {
  display: flex;
  flex-direction: column;
}
.zv-news-grid .zv-news-grid-content ul li a:hover h3 {
  color: #FEBC2A;
}
.zv-news-grid .zv-news-grid-content ul li img {
  display: block;
  flex: auto;
  object-position: center;
  object-fit: contain;
  height: 0;
  width: 100%;
  padding-bottom: 66.6666666667%;
}
.zv-news-grid .zv-news-grid-content ul li img.loaded {
  width: 100%;
  height: 100%;
  padding-right: 0;
  padding-bottom: 0;
}
.zv-news-grid .zv-news-grid-content ul li .meta {
  display: block;
  flex: none;
  font-size: 14px;
  line-height: 40px;
  height: 32px;
  color: #999;
}
.zv-news-grid .zv-news-grid-content ul li h3 {
  flex: none;
  font-size: 16px;
  line-height: 20px;
  padding-top: 8px;
  height: 48px;
  font-weight: normal;
  color: #333;
  transition: color .4s;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  word-break: break-word;
  white-space: normal;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 1280px) {
  .zv-news-grid .zv-news-grid-content ul {
    margin: -24px 0 0 -24px;
  }
  .zv-news-grid .zv-news-grid-content ul li {
    width: 33.33%;
    padding: 24px 0 0 24px;
  }
  .zv-news-grid .zv-news-grid-content ul li .meta {
    line-height: 32px;
    height: 28px;
  }
}
@media screen and (max-width: 992px) {
  .zv-news-grid .zv-news-grid-content ul {
    margin: -16px 0 0 -16px;
  }
  .zv-news-grid .zv-news-grid-content ul li {
    width: 50%;
    padding: 16px 0 0 16px;
  }
  .zv-news-grid .zv-news-grid-content ul li .meta {
    font-size: 12px;
    line-height: 28px;
    height: 24px;
  }
  .zv-news-grid .zv-news-grid-content ul li h3 {
    font-size: 14px;
  }
}

/*!- zv-news-grid end -*/
/*!- zv-faq-list begin -*/
.zv-faq-list .zv-faq-list-content ul li {
  position: relative;
  padding: 32px 0 32px 16px;
  border-bottom: 1px solid #e6e6e6;
}
.zv-faq-list .zv-faq-list-content ul li > span {
  display: block;
  position: absolute;
  top: 16px;
  left: 0;
  font-size: 36px;
  line-height: 1.5;
  font-weight: 900;
  z-index: -1;
  color: #fff2d4;
}
.zv-faq-list .zv-faq-list-content ul li > h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.576;
  color: #333;
  word-wrap: break-word;
}
.zv-faq-list .zv-faq-list-content ul li > p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  word-wrap: break-word;
}
@media screen and (max-width: 1280px) {
  .zv-faq-list .zv-faq-list-content ul li {
    padding: 24px 0 24px 12px;
  }
  .zv-faq-list .zv-faq-list-content ul li > span {
    top: 12px;
    font-size: 28px;
  }
  .zv-faq-list .zv-faq-list-content ul li > h3 {
    font-size: 16px;
  }
  .zv-faq-list .zv-faq-list-content ul li > p {
    font-size: 14px;
  }
}
@media screen and (max-width: 992px) {
  .zv-faq-list .zv-faq-list-content ul li {
    padding: 16px 0 16px 36px;
  }
  .zv-faq-list .zv-faq-list-content ul li > span {
    top: 8px;
    font-size: 24px;
  }
  .zv-faq-list .zv-faq-list-content ul li > h3 {
    font-size: 16px;
  }
  .zv-faq-list .zv-faq-list-content ul li > p {
    font-size: 14px;
  }
}

/*!- zv-faq-list end -*/
/*!- zv-sitemap begin -*/
.zv-sitemap .zv-sitemap-content ul {
  padding-top: 1px;
}
.zv-sitemap .zv-sitemap-content ul li {
  display: block;
  border: 1px solid #d9d9d9;
  margin-top: -1px;
}
.zv-sitemap .zv-sitemap-content ul li a {
  color: #333;
  transition: color .5s;
}
.zv-sitemap .zv-sitemap-content ul li a:hover {
  color: #FEBC2A;
}
.zv-sitemap .zv-sitemap-content ul li > h3 {
  display: block;
  font-size: 20px;
  line-height: 1.576;
  padding: 16px 24px;
  font-weight: normal;
  color: #333;
  background-color: #F5F5F5;
  border-bottom: 1px solid #d9d9d9;
}
.zv-sitemap .zv-sitemap-content ul li > dl {
  display: flex;
  flex-wrap: wrap;
  padding: 16px 0;
}
.zv-sitemap .zv-sitemap-content ul li > dl > dt {
  display: block;
  width: 100%;
  font-size: 18px;
  line-height: 1.576;
  padding: 4px 24px;
}
.zv-sitemap .zv-sitemap-content ul li > dl > dd {
  display: block;
  width: 20%;
  font-size: 16px;
  line-height: 1.576;
  padding: 4px 24px;
  color: #333;
}
@media screen and (max-width: 1280px) {
  .zv-sitemap .zv-sitemap-content ul li > h3 {
    font-size: 18px;
    padding: 12px 20px;
  }
  .zv-sitemap .zv-sitemap-content ul li > dl {
    padding: 12px 0;
  }
  .zv-sitemap .zv-sitemap-content ul li > dl > dt {
    font-size: 16px;
    padding: 2px 20px;
  }
  .zv-sitemap .zv-sitemap-content ul li > dl > dd {
    width: 25%;
    font-size: 14px;
    padding: 2px 20px;
  }
}
@media screen and (max-width: 992px) {
  .zv-sitemap .zv-sitemap-content ul li > h3 {
    padding: 8px 16px;
  }
  .zv-sitemap .zv-sitemap-content ul li > dl {
    padding: 8px 0;
  }
  .zv-sitemap .zv-sitemap-content ul li > dl > dt {
    padding: 0 16px;
  }
  .zv-sitemap .zv-sitemap-content ul li > dl > dd {
    width: 50%;
    padding: 0 16px;
  }
}

/*!- zv-sitemap end -*/
/*!- zv-product-grid begin -*/
.zv-product-grid .zv-product-grid-wrap {
  display: flex;
}
.zv-product-grid .zv-product-grid-sidebar {
  width: 20%;
  max-width: 200px;
  margin-right: 32px;
}
.zv-product-grid .zv-product-grid-sidebar ul {
  position: sticky;
  top: 72px;
  left: 0;
  padding: 24px 0;
}
.zv-product-grid .zv-product-grid-sidebar ul li a {
  display: block;
  position: relative;
  line-height: 40px;
  font-size: 16px;
  padding: 0 16px;
  color: #333;
  transition: color .4s;
  border-radius: 6px;
  border: 1px solid transparent;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: normal;
}
.zv-product-grid .zv-product-grid-sidebar ul li a:before, .zv-product-grid .zv-product-grid-sidebar ul li a:after {
  display: block;
  position: absolute;
  content: '';
  top: 50%;
  right: 10px;
  width: 5px;
  height: 0;
  border-top: 1px solid;
}
.zv-product-grid .zv-product-grid-sidebar ul li a:before {
  margin-top: -2px;
  transform: rotate(45deg);
}
.zv-product-grid .zv-product-grid-sidebar ul li a:after {
  margin-top: 2px;
  transform: rotate(-45deg);
}
.zv-product-grid .zv-product-grid-sidebar ul li a:hover {
  color: #FEBC2A;
}
.zv-product-grid .zv-product-grid-sidebar ul li.active a {
  color: #FEBC2A;
  border-color: #FEBC2A;
  background-color: #fffcf4;
}
.zv-product-grid .zv-product-grid-content {
  flex: auto;
  width: 100%;
}
.zv-product-grid .zv-product-grid-content .hd {
  position: sticky;
  top: 72px;
  left: 0;
  z-index: 997;
  background-color: #fff;
  padding: 24px 0;
}
.zv-product-grid .zv-product-grid-content .hd h2 {
  font-size: 24px;
  line-height: 1.5;
  text-transform: uppercase;
  color: #333;
}
.zv-product-grid .zv-product-grid-content .hd h2 i {
  vertical-align: .2em;
}
.zv-product-grid .zv-product-grid-content .hd p {
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
  color: #999;
}
.zv-product-grid .zv-product-grid-content ul {
  display: flex;
  flex-wrap: wrap;
  margin: -32px 0 0 -32px;
}
.zv-product-grid .zv-product-grid-content ul li {
  display: block;
  width: 33.33%;
  padding: 32px 0 0 32px;
}
.zv-product-grid .zv-product-grid-content ul li a {
  display: flex;
  flex-direction: column;
}
.zv-product-grid .zv-product-grid-content ul li a:hover h3 {
  color: #FEBC2A;
}
.zv-product-grid .zv-product-grid-content ul li img {
  display: block;
  flex: auto;
  object-position: center;
  object-fit: contain;
  height: 0;
  width: 100%;
  padding-bottom: 100%;
}
.zv-product-grid .zv-product-grid-content ul li img.loaded {
  width: 100%;
  height: 100%;
  padding-right: 0;
  padding-bottom: 0;
}
.zv-product-grid .zv-product-grid-content ul li h3 {
  flex: none;
  font-size: 16px;
  line-height: 20px;
  padding-top: 8px;
  height: 48px;
  font-weight: normal;
  color: #333;
  transition: color .4s;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  word-break: break-word;
  white-space: normal;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 1280px) {
  .zv-product-grid .zv-product-grid-sidebar {
    margin-right: 24px;
  }
  .zv-product-grid .zv-product-grid-sidebar ul {
    padding: 16px 0;
  }
  .zv-product-grid .zv-product-grid-content .hd {
    padding: 16px 0;
  }
  .zv-product-grid .zv-product-grid-content .hd h2 {
    font-size: 20px;
  }
  .zv-product-grid .zv-product-grid-content .hd p {
    font-size: 14px;
  }
  .zv-product-grid .zv-product-grid-content ul {
    margin: -24px 0 0 -24px;
  }
  .zv-product-grid .zv-product-grid-content ul li {
    width: 33.33%;
    padding: 24px 0 0 24px;
  }
}
@media screen and (max-width: 992px) {
  .zv-product-grid .zv-product-grid-wrap {
    flex-direction: column;
  }
  .zv-product-grid .zv-product-grid-sidebar {
    display: none;
  }
  .zv-product-grid .zv-product-grid-content .hd {
    position: static;
    padding: 8px 0 24px;
  }
  .zv-product-grid .zv-product-grid-content .hd h2 {
    font-size: 18px;
  }
  .zv-product-grid .zv-product-grid-content ul {
    margin: -16px 0 0 -16px;
  }
  .zv-product-grid .zv-product-grid-content ul li {
    width: 50%;
    padding: 16px 0 0 16px;
  }
  .zv-product-grid .zv-product-grid-content ul li h3 {
    font-size: 14px;
  }
}

/*!- zv-product-grid end -*/
/*!- zv-cert-grid begin -*/
.zv-cert-grid .zv-cert-grid-content ul {
  display: flex;
  flex-wrap: wrap;
  margin: -32px 0 0 -32px;
}
.zv-cert-grid .zv-cert-grid-content ul li {
  display: block;
  width: 25%;
  padding: 32px 0 0 32px;
}
.zv-cert-grid .zv-cert-grid-content ul li a {
  display: flex;
  flex-direction: column;
}
.zv-cert-grid .zv-cert-grid-content ul li a:hover h3 {
  color: #FEBC2A;
}
.zv-cert-grid .zv-cert-grid-content ul li img {
  display: block;
  flex: auto;
  object-position: center;
  object-fit: contain;
  background-color: #F5F5F5;
  height: 0;
  width: 100%;
  padding-bottom: 66.6666666667%;
}
.zv-cert-grid .zv-cert-grid-content ul li img.loaded {
  width: 100%;
  height: 100%;
  padding-right: 0;
  padding-bottom: 0;
}
.zv-cert-grid .zv-cert-grid-content ul li h3 {
  flex: none;
  font-size: 16px;
  line-height: 20px;
  padding-top: 8px;
  height: 48px;
  font-weight: normal;
  color: #333;
  transition: color .4s;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  word-break: break-word;
  white-space: normal;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 1280px) {
  .zv-cert-grid .zv-cert-grid-content ul {
    margin: -24px 0 0 -24px;
  }
  .zv-cert-grid .zv-cert-grid-content ul li {
    width: 33.33%;
    padding: 24px 0 0 24px;
  }
}
@media screen and (max-width: 992px) {
  .zv-cert-grid .zv-cert-grid-content ul {
    margin: -16px 0 0 -16px;
  }
  .zv-cert-grid .zv-cert-grid-content ul li {
    width: 50%;
    padding: 16px 0 0 16px;
  }
  .zv-cert-grid .zv-cert-grid-content ul li h3 {
    font-size: 14px;
  }
}

/*!- zv-cert-grid end -*/
/*!- zv-case-grid begin -*/
.zv-case-grid .zv-case-grid-content ul {
  display: flex;
  flex-wrap: wrap;
  margin: -32px 0 0 -32px;
}
.zv-case-grid .zv-case-grid-content ul li {
  display: block;
  width: 25%;
  padding: 32px 0 0 32px;
}
.zv-case-grid .zv-case-grid-content ul li a {
  display: flex;
  flex-direction: column;
}
.zv-case-grid .zv-case-grid-content ul li a:hover h3 {
  color: #FEBC2A;
}
.zv-case-grid .zv-case-grid-content ul li img {
  display: block;
  flex: auto;
  object-position: center;
  object-fit: contain;
  height: 0;
  width: 100%;
  padding-bottom: 66.6666666667%;
}
.zv-case-grid .zv-case-grid-content ul li img.loaded {
  width: 100%;
  height: 100%;
  padding-right: 0;
  padding-bottom: 0;
}
.zv-case-grid .zv-case-grid-content ul li h3 {
  flex: none;
  font-size: 16px;
  line-height: 20px;
  padding-top: 8px;
  height: 48px;
  font-weight: normal;
  color: #333;
  transition: color .4s;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  word-break: break-word;
  white-space: normal;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 1280px) {
  .zv-case-grid .zv-case-grid-content ul {
    margin: -24px 0 0 -24px;
  }
  .zv-case-grid .zv-case-grid-content ul li {
    width: 33.33%;
    padding: 24px 0 0 24px;
  }
}
@media screen and (max-width: 992px) {
  .zv-case-grid .zv-case-grid-content ul {
    margin: -16px 0 0 -16px;
  }
  .zv-case-grid .zv-case-grid-content ul li {
    width: 50%;
    padding: 16px 0 0 16px;
  }
  .zv-case-grid .zv-case-grid-content ul li h3 {
    font-size: 14px;
  }
}

/*!- zv-case-grid end -*/
/*!- zv-detail begin -*/
.zv-detail .zv-detail-wrap {
  display: flex;
}
.zv-detail .zv-detail-content {
  flex: auto;
  width: 100%;
  background-color: #fff;
  border: 1px solid #e6e6e6;
  margin-bottom:70px;
}
.zv-detail .zv-detail-sidebar {
  flex: auto;
  width: 100%;
  max-width: 480px;
  margin: 0 0 0 32px;
}
.zv-detail .reader {
  padding: 32px;
}
.zv-detail .reader .hd {
  text-align: center;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid #e6e6e6;
}
.zv-detail .reader .hd h2 {
  font-size: 24px;
  color: #333;
}
.zv-detail .reader .hd p {
  font-size: 16px;
  color: #999;
}
.zv-detail .reader .ft {
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid #e6e6e6;
}
.zv-detail .reader .ft:before, .zv-detail .reader .ft:after {
  display: table;
  content: "";
  width: 100%;
}
.zv-detail .reader .ft:after {
  clear: both;
}
.zv-detail .reader .ft .pager {
  font-size: 14px;
  line-height: 24px;
  text-transform: uppercase;
  color: #333;
  transition: color .5s;
}
.zv-detail .reader .ft .pager:hover {
  color: #FEBC2A;
}
.zv-detail .reader .ft .prev {
  float: left;
}
.zv-detail .reader .ft .next {
  float: right;
}
.zv-detail .wrapper .hd {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
  text-transform: uppercase;
}
.zv-detail .wrapper .hd h3 {
  flex: auto;
  font-size: 24px;
  line-height: 32px;
  color: #333;
}
.zv-detail .wrapper .hd a {
  line-height: 32px;
  font-size: 14px;
  color: #999;
  transition: color .5s;
}
.zv-detail .wrapper .hd a:hover {
  color: #FEBC2A;
}
.zv-detail .wrapper .bd ul {
  display: flex;
  flex-wrap: wrap;
  margin: -32px 0 0 -32px;
}
.zv-detail .wrapper .bd ul li {
  width: 100%;
  padding: 32px 0 0 32px;
}
.zv-detail .wrapper .bd ul li > a {
  display: flex;
}
.zv-detail .wrapper .bd ul li > a:hover .intro h3 {
  color: #FEBC2A;
}
.zv-detail .wrapper .bd ul li .cover {
  width: 100%;
  max-width: 160px;
  flex: none;
}
.zv-detail .wrapper .bd ul li .cover img {
  display: block;
  object-position: center;
  object-fit: contain;
  height: 0;
  width: 100%;
  padding-bottom: 100%;
}
.zv-detail .wrapper .bd ul li .cover img.loaded {
  width: 100%;
  height: 100%;
  padding-right: 0;
  padding-bottom: 0;
}
.zv-detail .wrapper .bd ul li .intro {
  width: 0;
  flex: auto;
  padding: 16px;
}
.zv-detail .wrapper .bd ul li .intro h3 {
  font-size: 16px;
  line-height: 32px;
  height: 32px;
  color: #333;
  transition: color .5s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: normal;
}
.zv-detail .wrapper .bd ul li .intro p {
  font-size: 14px;
  line-height: 24px;
  height: 72px;
  color: #999;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  word-break: break-word;
  white-space: normal;
  -webkit-line-clamp: 3;
}
@media screen and (max-width: 1280px) {
  .zv-detail .zv-detail-wrap {
    flex-wrap: wrap;
  }
  .zv-detail .zv-detail-sidebar {
    max-width: none;
    margin: 24px 0 0;
  }
  .zv-detail .reader {
    padding: 24px;
  }
  .zv-detail .reader .hd {
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
  .zv-detail .reader .hd h2 {
    font-size: 20px;
  }
  .zv-detail .reader .hd p {
    font-size: 14px;
  }
  .zv-detail .reader .ft {
    padding-top: 24px;
    margin-top: 24px;
  }
  .zv-detail .wrapper .hd {
    margin-bottom: 24px;
  }
  .zv-detail .wrapper .hd h3 {
    font-size: 20px;
    line-height: 24px;
  }
  .zv-detail .wrapper .hd a {
    line-height: 24px;
    font-size: 14px;
  }
  .zv-detail .wrapper .bd ul {
    margin: -24px 0 0 -24px;
  }
  .zv-detail .wrapper .bd ul li {
    width: 25%;
    padding: 24px 0 0 24px;
  }
  .zv-detail .wrapper .bd ul li > a {
    flex-direction: column;
  }
  .zv-detail .wrapper .bd ul li .cover {
    flex: auto;
    max-width: none;
  }
  .zv-detail .wrapper .bd ul li .intro {
    width: auto;
    padding: 8px 0;
  }
  .zv-detail .wrapper .bd ul li .intro h3 {
    font-size: 16px;
    line-height: 32px;
  }
  .zv-detail .wrapper .bd ul li .intro p {
    font-size: 14px;
    line-height: 24px;
    height: 72px;
  }
}
@media screen and (max-width: 992px) {
  .zv-detail .zv-detail-sidebar {
    margin: 16px 0 0;
  }
  .zv-detail .reader {
    padding: 16px;
  }
  .zv-detail .reader .hd {
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
  .zv-detail .reader .hd h2 {
    font-size: 18px;
  }
  .zv-detail .reader .ft {
    padding-top: 16px;
    margin-top: 16px;
  }
  .zv-detail .wrapper .hd {
    margin: 16px 0;
  }
  .zv-detail .wrapper .hd h3 {
    font-size: 16px;
  }
  .zv-detail .wrapper .bd ul {
    margin: -16px 0 0 -16px;
  }
  .zv-detail .wrapper .bd ul li {
    width: 50%;
    padding: 16px 0 0 16px;
  }
  .zv-detail .wrapper .bd ul li .intro {
    padding: 8px 0;
  }
  .zv-detail .wrapper .bd ul li .intro h3 {
    font-size: 14px;
    line-height: 24px;
    height: 24px;
  }
  .zv-detail .wrapper .bd ul li .intro p {
    font-size: 12px;
    line-height: 20px;
    height: 60px;
  }
}

/*!- zv-detail end -*/
/*!- zv-contact begin -*/
.zv-contact .zv-contact-wrap {
 
}
.zv-contact .zv-contact-content {
  flex: auto;
  width: 100%;
  background-color: #fff;
  border: 1px solid #e6e6e6;
  padding: 32px;
}
.zv-contact .zv-contact-content dl dt {
  font-size: 18px;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #333;
}
.zv-contact .zv-contact-content dl dd label {
  display: inline-block;
  vertical-align: top;
  font-size: 16px;
  line-height: 1.576;
  min-width: 6em;
  color: #999;
}
.zv-contact .zv-contact-content dl dd a, .zv-contact .zv-contact-content dl dd span {
  display: inline-block;
  vertical-align: top;
  line-height: 1.576;
  font-size: 16px;
  color: #333;
  word-break: break-word;
}
.zv-contact .zv-contact-content dl dd a {
  text-decoration: none;
}
.zv-contact .zv-contact-content dl dd a:hover {
  text-decoration: underline;
}
.zv-contact .zv-contact-content .company {
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 32px;
}
.zv-contact .zv-contact-content .company ul li {
  margin-bottom: 32px;
}
.zv-contact .zv-contact-content .company ul li dl dt {
  color: #FEBC2A;
}
.zv-contact .zv-contact-content .liaison ul li {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px dotted #e6e6e6;
}
.zv-contact .zv-contact-content .liaison ul li dl {
  display: flex;
  flex-wrap: wrap;
}
.zv-contact .zv-contact-content .liaison ul li dl dt {
  width: 100%;
}
.zv-contact .zv-contact-content .liaison ul li dl dd {
  width: 50%;
}
.zv-contact .zv-contact-content .liaison ul li:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.zv-contact .zv-contact-sidebar {
  flex: auto;
  width: 100%;
  max-width: 640px;
  background-color: #333333;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
}
.zv-contact .zv-contact-sidebar .wrapper {
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 48px 32px;
}
@media screen and (max-width: 1280px) {
  .zv-contact .zv-contact-wrap {
    flex-wrap: wrap;
  }
  .zv-contact .zv-contact-content {
    padding: 24px;
  }
  .zv-contact .zv-contact-content dl dd label {
    font-size: 16px;
    min-width: 4em;
  }
  .zv-contact .zv-contact-content dl dd a, .zv-contact .zv-contact-content dl dd span {
    font-size: 16px;
  }
  .zv-contact .zv-contact-content .company {
    margin-bottom: 24px;
  }
  .zv-contact .zv-contact-content .company ul li {
    margin-bottom: 24px;
  }
  .zv-contact .zv-contact-content .liaison ul li {
    margin-bottom: 12px;
    padding-bottom: 12px;
  }
  .zv-contact .zv-contact-sidebar {
    max-width: none;
    background-position: top center;
  }
  .zv-contact .zv-contact-sidebar .wrapper {
    padding: 32px 24px;
  }
}
@media screen and (max-width: 992px) {
  .zv-contact .zv-contact-content {
    padding: 16px;
  }
  .zv-contact .zv-contact-content dl dt {
    font-size: 16px;
  }
  .zv-contact .zv-contact-content dl dd label {
    display: inline;
    font-size: 14px;
    min-width: 0;
  }
  .zv-contact .zv-contact-content dl dd a, .zv-contact .zv-contact-content dl dd span {
    display: inline;
    font-size: 14px;
  }
  .zv-contact .zv-contact-content .company {
    margin-bottom: 16px;
  }
  .zv-contact .zv-contact-content .company ul li {
    margin-bottom: 16px;
  }
  .zv-contact .zv-contact-content .liaison ul li {
    margin-bottom: 8px;
    padding-bottom: 8px;
  }
  .zv-contact .zv-contact-content .liaison ul li dl dd {
    width: 100%;
  }
  .zv-contact .zv-contact-sidebar .wrapper {
    padding: 24px 16px;
  }
}

/*!- zv-contact end -*/
/*!- zv-product-detail begin -*/
.zv-product-detail .zv-product-detail-hd {
  display: flex;
  align-items: center;
  padding-bottom: 32px;
  border-bottom: 1px solid #e6e6e6;
}
.zv-product-detail .zv-product-detail-hd .profile {
  flex: auto;
  width: 55%;
  padding: 32px 5% 5% 0;
}
.zv-product-detail .zv-product-detail-hd .profile .title {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 32px;
  font-family: 'Times New Roman',serif;
}
.zv-product-detail .zv-product-detail-hd .profile .desc {
  font-size: 18px;
  line-height: 1.6;
  margin: 32px 0;
}
.zv-product-detail .zv-product-detail-hd .profile .meta {
  display: flex;
  flex-wrap: wrap;
  margin: -8px 0 0 -8px;
}
.zv-product-detail .zv-product-detail-hd .profile .meta li {
  padding: 8px 0 0 8px;
  width: 33.33%;
}
.zv-product-detail .zv-product-detail-hd .profile .meta li label {
  display: inline-block;
  vertical-align: top;
  font-size: 16px;
  line-height: 24px;
  min-width: 4em;
  color: #999;
}
.zv-product-detail .zv-product-detail-hd .profile .meta li span {
  display: inline-block;
  vertical-align: top;
  font-size: 16px;
  line-height: 24px;
  color: #333;
}
.zv-product-detail .zv-product-detail-hd .profile .tags {
  font-size: 0;
  line-height: 1;
}
.zv-product-detail .zv-product-detail-hd .profile .tags li {
  display: inline-block;
  vertical-align: top;
  margin: 0 16px 16px 0;
}
.zv-product-detail .zv-product-detail-hd .profile .tags li a {
  display: block;
  font-size: 14px;
  line-height: 32px;
  background-color: #F5F5F5;
  padding: 0 24px;
  border-radius: 16px;
  text-align: center;
  transition: color .5s, background-color .5s;
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: normal;
}
.zv-product-detail .zv-product-detail-hd .profile .tags li a:hover {
  background-color: #fffcf4;
  color: #FEBC2A;
}
.zv-product-detail .zv-product-detail-hd .profile .attrs {
  margin-top: 32px;
}
.zv-product-detail .zv-product-detail-hd .profile .attrs ul li {
  margin-bottom: 16px;
  font-size: 16px;
  color: #666;
}
.zv-product-detail .zv-product-detail-hd .profile .attrs ul li a:hover {
  color: #333;
  text-decoration: underline;
}
.zv-product-detail .zv-product-detail-hd .profile .actions {
  margin-top: 32px;
  font-size: 18px;
  color: #333;
  line-height: 32px;
  font-weight: 700;
}
.zv-product-detail .zv-product-detail-hd .profile .actions a {
  color: #FEBC2A;
}
.zv-product-detail .zv-product-detail-hd .profile .actions a:hover {
  text-decoration: underline;
}
.zv-product-detail .zv-product-detail-hd .gallery {
  flex: auto;
  width: 45%;
  max-width: 800px;
}
.zv-product-detail .zv-product-detail-hd .gallery .gallery-item {
  display: block;
  padding: 32px 0;
}
.zv-product-detail .zv-product-detail-hd .gallery .gallery-item .wrap {
  display: block;
  position: relative;
  height: 0;
  width: 100%;
  padding-bottom: 100%;
}
.zv-product-detail .zv-product-detail-hd .gallery .gallery-item .wrap img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.zv-product-detail .zv-product-detail-hd .gallery .swiper-pagination {
  bottom: 0;
  text-align: right;
}
.zv-product-detail .zv-product-detail-hd .gallery .swiper-pagination .swiper-pagination-bullet {
  background-color: #d9d9d9;
}
.zv-product-detail .zv-product-detail-hd .gallery .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #333333;
}
.zv-product-detail .zv-product-detail-bd {
  padding: 32px 0;
  display: flex;
  align-items: flex-start;
}
.zv-product-detail .zv-product-detail-bd .sidebar {
  flex: auto;
  max-width: 320px;
  margin-right: 32px;
  position: sticky;
  top: 100px;
  left: 0;
}
.zv-product-detail .zv-product-detail-bd .sidebar dl {
  margin-bottom: 32px;
}
.zv-product-detail .zv-product-detail-bd .sidebar dl dt {
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e6e6e6;
}
.zv-product-detail .zv-product-detail-bd .sidebar dl dd {
  margin-bottom: 8px;
}
.zv-product-detail .zv-product-detail-bd .sidebar dl dd a {
  display: block;
  font-size: 16px;
  line-height: 1.576;
  color: #666;
}
.zv-product-detail .zv-product-detail-bd .sidebar dl dd a:hover {
  color: #FEBC2A;
}
.zv-product-detail .zv-product-detail-bd .sidebar dl dd img {
  display: block;
  object-position: center;
  object-fit: contain;
  height: 0;
  width: 100%;
  padding-bottom: 100%;
}
.zv-product-detail .zv-product-detail-bd .sidebar dl dd img.loaded {
  width: 100%;
  height: auto;
  padding-right: 0;
  padding-bottom: 0;
}
.zv-product-detail .zv-product-detail-bd .sidebar dl dd h3 {
  font-weight: normal;
  font-size: 14px;
  line-height: 32px;
  height: 32px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: normal;
}
.zv-product-detail .zv-product-detail-bd .wrapper {
  width: 100%;
  flex: auto;
  max-width: 992px;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .zv-product-detail .zv-product-detail-hd {
    padding-bottom: 24px;
  }
  .zv-product-detail .zv-product-detail-hd .profile {
    padding: 24px 24px 24px 0;
  }
  .zv-product-detail .zv-product-detail-hd .profile .title {
    font-size: 28px;
    margin-bottom: 24px;
  }
  .zv-product-detail .zv-product-detail-hd .profile .desc {
    font-size: 16px;
    line-height: 1.5;
    margin: 16px 0;
  }
  .zv-product-detail .zv-product-detail-hd .profile .meta {
    margin: -4px 0 0 -4px;
  }
  .zv-product-detail .zv-product-detail-hd .profile .meta li {
    padding: 4px 0 0 4px;
    width: 50%;
  }
  .zv-product-detail .zv-product-detail-hd .profile .meta li label {
    font-size: 14px;
    min-width: 4em;
  }
  .zv-product-detail .zv-product-detail-hd .profile .meta li span {
    font-size: 14px;
  }
  .zv-product-detail .zv-product-detail-hd .profile .tags li {
    margin: 0 12px 12px 0;
  }
  .zv-product-detail .zv-product-detail-hd .profile .tags li a {
    padding: 0 16px;
  }
  .zv-product-detail .zv-product-detail-hd .profile .attrs {
    margin-top: 24px;
  }
  .zv-product-detail .zv-product-detail-hd .profile .attrs ul li {
    margin-bottom: 8px;
    font-size: 14px;
  }
  .zv-product-detail .zv-product-detail-hd .profile .actions {
    margin-top: 24px;
    font-size: 16px;
  }
  .zv-product-detail .zv-product-detail-hd .gallery .gallery-item {
    padding: 24px 0;
  }
  .zv-product-detail .zv-product-detail-bd {
    padding: 24px 0;
  }
  .zv-product-detail .zv-product-detail-bd .sidebar {
    margin-right: 24px;
  }
  .zv-product-detail .zv-product-detail-bd .sidebar dl {
    margin-bottom: 24px;
  }
  .zv-product-detail .zv-product-detail-bd .sidebar dl dt {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 12px;
    padding-bottom: 12px;
  }
  .zv-product-detail .zv-product-detail-bd .sidebar dl dd {
    margin-bottom: 4px;
  }
  .zv-product-detail .zv-product-detail-bd .sidebar dl dd a {
    font-size: 14px;
  }
}
@media screen and (max-width: 992px) {
  .zv-product-detail .zv-product-detail-hd {
    flex-direction: column;
    padding-bottom: 16px;
  }
  .zv-product-detail .zv-product-detail-hd .profile {
    width: 100%;
    padding: 16px 0 0;
    order: 2;
  }
  .zv-product-detail .zv-product-detail-hd .profile .title {
    font-size: 24px;
    margin-bottom: 16px;
  }
  .zv-product-detail .zv-product-detail-hd .profile .desc {
    font-size: 14px;
    margin: 16px 0;
  }
  .zv-product-detail .zv-product-detail-hd .profile .meta {
    margin: -4px 0 0 -4px;
  }
  .zv-product-detail .zv-product-detail-hd .profile .meta li {
    padding: 4px 0 0 4px;
    width: 100%;
  }
  .zv-product-detail .zv-product-detail-hd .profile .meta li label {
    min-width: 0;
  }
  .zv-product-detail .zv-product-detail-hd .profile .tags li {
    margin: 0 8px 8px 0;
  }
  .zv-product-detail .zv-product-detail-hd .profile .tags li a {
    line-height: 28px;
    font-size: 12px;
    border-radius: 14px;
  }
  .zv-product-detail .zv-product-detail-hd .profile .attrs {
    margin-top: 16px;
  }
  .zv-product-detail .zv-product-detail-hd .profile .actions {
    margin-top: 16px;
    font-size: 14px;
  }
  .zv-product-detail .zv-product-detail-hd .gallery {
    width: 100%;
    max-width: none;
    padding: 16px 0 0;
  }
  .zv-product-detail .zv-product-detail-hd .gallery .gallery-item {
    padding: 0 0 32px;
  }
  .zv-product-detail .zv-product-detail-hd .gallery .swiper-pagination {
    bottom: 0;
    text-align: center;
  }
  .zv-product-detail .zv-product-detail-bd {
    padding: 16px 0;
    flex-direction: column;
  }
  .zv-product-detail .zv-product-detail-bd .sidebar {
    order: 2;
    max-width: none;
    margin-right: 0;
  }
  .zv-product-detail .zv-product-detail-bd .sidebar dl {
    margin-bottom: 16px;
  }
  .zv-product-detail .zv-product-detail-bd .sidebar dl dt {
    font-size: 14px;
    margin-bottom: 8px;
    padding-bottom: 8px;
  }
  .zv-product-detail .zv-product-detail-bd .sidebar .catalog {
    display: none;
  }
  .zv-product-detail .zv-product-detail-bd .sidebar .related dl {
    display: flex;
    flex-wrap: wrap;
    margin: -16px 0 0 -16px;
  }
  .zv-product-detail .zv-product-detail-bd .sidebar .related dl dt {
    width: 100%;
    margin: 16px 0 0 16px;
  }
  .zv-product-detail .zv-product-detail-bd .sidebar .related dl dd {
    width: 50%;
    padding: 16px 0 0 16px;
  }
  .zv-product-detail .zv-product-detail-bd .wrapper {
    max-width: none;
  }
}
.subblock{}
.subblock .category{}
.subblock .category ul{text-align: center;font-size: 0;margin: -15px;}
.subblock .category ul li{width:25%;display: inline-block;vertical-align: top;}
.category-box{position: relative;background: #000;overflow: hidden;margin: 15px;}
.category-box a{}
.category-box a::before, .category-box a::after{z-index: 1;content: "";position: absolute;left: 10px;right: 10px;top: 10px;bottom: 10px;transition: all 0.4s ease-in-out;-webkit-transition: all 0.4s ease-in-out;-moz-transition: all 0.4s ease-in-out;-o-transition: all 0.4s ease-in-out;}
.category-box > a::before{border-top: 1px solid #fff;border-bottom: 1px solid #fff;-webkit-transform: scale(0, 1);-moz-transform: scale(0, 1);-o-transform: scale(0, 1);transform: scale(0, 1);}
.category-box > a::after{border-left: 1px solid #fff;border-right: 1px solid #fff;-webkit-transform: scale(1, 0);-moz-transform: scale(1, 0);-o-transform: scale(1, 0);transform: scale(1, 0);}
.category-box:hover > a:before{border-top: 1px solid #fff;border-bottom: 1px solid #fff;-webkit-transform: scale(1, 1);-moz-transform: scale(1, 1);-o-transform: scale(1, 1);transform: scale(1, 1);}
.category-box:hover > a:after{border-left: 1px solid #fff;border-right: 1px solid #fff;-webkit-transform: scale(1, 1);-moz-transform: scale(1, 1);-o-transform: scale(1, 1);transform: scale(1, 1);}
.category-box a img{transition: ease all 0.5s;-webkit-transition: ease all 0.5s;-moz-transition: ease all 0.5s;-o-transition: ease all 0.5s;overflow: hidden;width: 100%;display: block;-moz-backface-visibility: hidden;-webkit-backface-visibility: hidden;backface-visibility: hidden;opacity: 0.8;}
.category-box:hover a.category-box-zoom{width: 110%;height: 110%;}
.category-box:hover img{transform: scale(1.2);-moz-transform: scale(1.2);-webkit-transform: scale(1.2);-o-transform: scale(1.2);opacity: 0.9;}
.category-box-detail{color: #282828;position: absolute;text-align: left;padding: 25px;top: 0;left: 0;right: 0;bottom: 0;display: flex;flex-direction: column;justify-content: center;align-items: center;text-align: center;}
.category-box-type{margin-bottom: 17px;}
.category-box-type h2{color: #fff;font-size: 20px;font-weight: 400;text-transform: uppercase;}
.category-box-detail a.btn{font-size: 16px;line-height: 16px;font-weight: 500;transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-webkit-transition: all 0.3s ease 0s;padding: 9px 23px;background: rgba(255,60,32,0.8);color: #fff !important;border: none;border: 1px solid transparent;display: inline-block;}

@media screen and (max-width: 1044px){
.subblock .category ul li, .hot-products-box ul li, .index-news-box ul li, .product-listing ul li, .certificate-listing ul li{width: 50%;}
}
@media screen and (max-width:768px){
.subblock .category ul li{ width:50%; max-width: 500px;}
.category-box-type h2 {font-size:14px; line-height:20px;}
.category-box-detail a.btn {font-size: 16px;line-height: 14px;padding: 6px 20px;}
}