@charset "utf-8";
/*根元素代码*/
:root {
  /*--dominant-color:#3a93bd;*/
  --dominant-color: #e02028;
  /*--linear-color:linear-gradient(to right ,#3a93bd 14%,#0079b2);*/
  --linear-color: linear-gradient(223deg, rgba(99, 229, 242, 0.2), rgba(58, 174, 239, 0.8));
}
/*头部样式*/
header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
  transition: all 0.5s;
  height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
header.active {
  background: rgba(255, 255, 255, 1);
}
header.z-active {
  z-index: 99;
}
@media screen and (max-width: 768px) {
  header {
    height: 60px;
    background: #ffffff;
  }
  header .header-phone-click .phone-click-line,
  header .header-phone-click .phone-click-line::before, header .header-phone-click .phone-click-line::after{
    background: #000000 !important;
  }
  .logo2{opacity: 1 !important;}
  .logo1{opacity: 0 !important;}
  header .header-phone-click.active .phone-click-line{
    background: transparent !important;
  }
  header .header-box .header-menu{
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
}
header .header-phone-click {
  cursor: pointer;
  width: 22px;
  height: 16px;
  align-items: center;
  position: relative;
  right: 5%;
}
@media screen and (max-width: 768px) {
  header .header-phone-click {
    display: flex;
  }
}
header .header-phone-click .phone-click-line {
  height: 2px;
  background: #fff;
  width: 100%;
  transition: all 0.5s;
  overflow: hidden;
}
header .header-phone-click .phone-click-line::before,
header .header-phone-click .phone-click-line::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: all 0.5s;
}
header .header-phone-click .phone-click-line::before {
  top: 0;
  transition: all 0.5s;
}
header .header-phone-click .phone-click-line::after {
  bottom: 0;
  transition: all 0.5s;
}
header .header-phone-click.active .phone-click-line {
  background: transparent;
  transition: all 0.5s;
}
header .header-phone-click.active .phone-click-line::before {
  margin: auto;
  transition: all 0.5s;
  transform: translateY(7px) rotate(45deg);
}
header .header-phone-click.active .phone-click-line::after {
  margin: auto;
  transition: all 0.5s;
  transform: translateY(-7px) rotate(-45deg);
}
header .header-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  /*logo*/
  /*logo*/
}
@media screen and (max-width: 768px) {
  header .header-box {
    width: 100%;
    max-width: 100%;
  }
}
header .header-box .logo {
  width: 167px;
  height: 44px;
  position: relative;
}
@media screen and (max-width: 768px) {
  header .header-box .logo {
    width: 100%;
    margin-left: 5%;
    justify-content: flex-start;
    max-width: 100px;
  }
}
header .header-box .logo img {
  height: 100%;
  object-fit: contain;
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.logo1{
  opacity: 1;
}
.logo2{
  opacity: 0;
}
header.active .logo1{
  opacity: 0;
}
header.active .logo2{
  opacity: 1;
}
header .header-box .header-menu {
  flex-basis: calc(100% - 250px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  /*导航*/
  /*导航*/
  /*搜索*/
  /*搜索*/
  /*语言*/
  /*语言*/
}
@media screen and (max-width: 1440px) {
  header .header-box .header-menu {
    flex-basis: calc(100% - 150px);
    justify-content: flex-end;
  }
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu {
    width: 100%;
    position: absolute;
    background: #fff;
    top: 60px;
    height: 100vh;
    z-index: 10;
    left: 0;
    margin-left: 0;
    padding: 30px 5% 30px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: none;
    overflow: auto;
  }
}
header .header-box .header-menu nav {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
@media screen and (max-width: 1440px) {
  header .header-box .header-menu nav {
    margin-left: auto;
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    height: auto;
  }
}
header .header-box .header-menu nav .first-item {
  margin-right: 40px;
  transition: all 0.2s;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .header-box .header-menu nav .first-item:last-child {
  display: none;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item:last-child {
    display: block;
  }
}
header .header-box .header-menu nav .first-item .first-box {
  position: relative;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .first-box {
    border-bottom: 1px solid #eee;
  }
}
@media screen and (max-width: 1600px) {
  header .header-box .header-menu nav .first-item {
    margin-right: 30px;
  }
}
@media screen and (max-width: 1366px) {
  header .header-box .header-menu nav .first-item {
    margin-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item {
    height: auto;
    width: 100%;
    margin-right: 0;
    justify-content: flex-start;
    position: relative;
    flex-direction: column;
    align-items: flex-start;
  }
}
header .header-box .header-menu nav .first-item.active .first-item-title {
  color: #fff;
}
header .header-box .header-menu nav .first-item.active .first-item-title::after {
  width: 100%;
}
header .header-box .header-menu nav .first-item .first-item-title {
  font-size: 16px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.2s;
}
header.active .header-box .header-menu nav .first-item .first-item-title{
  color: #272727;
}
header.active .header-box .header-menu nav .first-item.active .first-item-title{
  color: #DD2028;
}
header.active .header-box .header-menu nav .first-item.active .first-item-title::after{
  background: #DD2028;
}
header.active .header-box .header-menu nav .first-item .first-item-title::after{
  background: #DD2028;
}
header.active .header-box .header-menu nav .first-item:hover .first-item-title{
  color: #DD2028;
}
header.active .header-box .header-menu .language{
  background: #F5F7F9;
}
header.active .header-box .header-menu .language .language-title{
  color: #272727;
}
@media screen and (max-width: 1280px) {
  header .header-box .header-menu nav .first-item .first-item-title {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .first-item-title {
    color: #222;
    height: 50px;
    width: 100%;
    justify-content: flex-start;
  }
}
header .header-box .header-menu nav .first-item .first-item-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  background: #fff;
  left: 0;
  width: 0;
  height: 2px;
  transition: all 0.2s;
}
header .header-box .header-menu nav .first-item i {
  display: none;
  width: 50px;
  height: 50px;
  position: absolute;
  right: -10px;
  top: 0;
  bottom: 0;
  margin: auto;
  cursor: pointer;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item i {
    display: block;
  }
}
header .header-box .header-menu nav .first-item i::before,
header .header-box .header-menu nav .first-item i::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: #000;
}
header .header-box .header-menu nav .first-item i::before {
  width: 14px;
  height: 2px;
}
header .header-box .header-menu nav .first-item i::after {
  height: 14px;
  width: 2px;
}
header .header-box .header-menu nav .first-item i.active {
  transform: rotate(45deg);
}
header .header-box .header-menu nav .first-item .second-box {
  position: absolute;
  top: 90px;
  -webkit-box-shadow: 0 10px 50px rgba(54, 56, 79, 0.11);
  box-shadow: 0 10px 50px rgba(54, 56, 79, 0.11);
  width: 100%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  /*特殊*/
}
@media screen and (max-width: 1600px) {
  header .header-box .header-menu nav .first-item .second-box {
    padding: 20px;
  }
}
@media screen and (max-width: 1440px) {
  header .header-box .header-menu nav .first-item .second-box {
    padding: 10px;
  }
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box {
    position: relative;
    top: 0;
    background: none;
    opacity: 1;
    visibility: visible;
    transform: translate(0);
    padding: 0;
    box-shadow: none;
    border: none;
    display: none;
    transition: all 0s;
    pointer-events: auto;
  }
}
header .header-box .header-menu nav .first-item .second-box .second-item {
  margin: 0 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box .second-item {
    margin: 10px 0 0;
  }
}
header .header-box .header-menu nav .first-item .second-box .second-item .second-item-title {
  color: #222;
  display: block;
  padding: 10px;
  font-size: 14px;
  transition: all 0.2s;
  text-align: center;
}
@media screen and (max-width: 1440px) {
  header .header-box .header-menu nav .first-item .second-box .second-item .second-item-title {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box .second-item .second-item-title {
    color: #000;
    text-align: left;
    padding: 0 10px;
  }
}
@media screen and (min-width: 769px) {
  header .header-box .header-menu nav .first-item .second-box .second-item .second-item-title:hover {
    color: var(--dominant-color);
  }
}
header .header-box .header-menu nav .first-item .second-box .second-product {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box .second-product {
    padding-bottom: 30px;
    width: 100%;
  }
  header .header-box .header-menu nav .first-item .second-box .second-product::-webkit-scrollbar:horizontal {
    height: 2px;
  }
}
header .header-box .header-menu nav .first-item .second-box .second-product .second-item {
  flex-basis: 20%;
  margin: 0;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box .second-product .second-item {
    flex-basis: 100%;
  }
}
header .header-box .header-menu nav .first-item .second-box .second-product .second-item:nth-child(n + 6) {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box .second-product .second-item:nth-child(n + 6) {
    margin-top: 0;
  }
}
header .header-box .header-menu nav .first-item .second-box .second-product .second-item .img {
  height: 40px;
  position: relative;
  display: block;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box .second-product .second-item .img {
    display: none;
  }
}
header .header-box .header-menu nav .first-item .second-box .second-product .second-item .img img {
  height: auto;
  max-height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
header .header-box .header-menu nav .first-item .second-box .second-product .second-item .second-item-title {
  color: #222;
  text-align: left;
  padding: 0;
  transition: all 0.5s;
  margin-top: 10px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box .second-product .second-item .second-item-title {
    margin-top: 10px;
    padding: 0 10px;
    position: relative;
    width: 100%;
  }
}
header .header-box .header-menu nav .first-item .second-box .second-product .second-item .second-item-title:hover {
  color: var(--dominant-color);
}
header .header-box .header-menu nav .first-item .second-box .second-product .second-item .three-box {
  margin-top: 10px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box .second-product .second-item .three-box {
    margin-top: 0;
    display: none;
    padding-left: 30px;
    margin-bottom: 10px;
  }
}
header .header-box .header-menu nav .first-item .second-box .second-product .second-item .three-box .three-item-title {
  display: block;
  transition: all 0.5s;
  font-size: 12px;
  color: #999;
  width: fit-content;
}
header .header-box .header-menu nav .first-item .second-box .second-product .second-item .three-box .three-item-title:hover {
  color: var(--dominant-color);
}
header .header-box .header-menu nav .first-item .second-box .second-product .second-item .three-box .three-item-title.news {
  color: var(--dominant-color);
  font-size: 12px;
}
header .header-box .header-menu nav .first-item .second-box .second-product .second-item:hover .three-box {
  opacity: 1;
  visibility: visible;
}
header .header-box .header-menu nav .first-item .second-box.product {
  background: #ffffff;
}
@media screen and (min-width: 769px) {
  header .header-box .header-menu nav .first-item:hover .first-item-title {
    color: #fff;
  }
  header .header-box .header-menu nav .first-item:hover .first-item-title::after {
    width: 100%;
  }
  header .header-box .header-menu nav .first-item:hover .second-box {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}
header .header-box .header-menu .search {
  margin-right: 20px;
}
@media screen and (max-width: 1440px) {
  header .header-box .header-menu .search {
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu .search {
    width: 100%;
    margin: 30px 0;
  }
}
header .header-box .header-menu .search label {
  display: block;
  position: relative;
  width: 220px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 1080px) {
  header .header-box .header-menu .search label {
    width: 150px;
  }
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu .search label {
    width: 100%;
    border: 1px solid #000000;
  }
}
header .header-box .header-menu .search label input {
  height: 100%;
  width: 100%;
  background: none;
  border: none;
  color: #999;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu .search label input {
    color: #000;
  }
}
header .header-box .header-menu .search label button {
  background: none;
  width: 50px;
  height: 30px;
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  transition: all 0s;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu .search label button {
    opacity: 1;
  }
}
header .header-box .header-menu .search label button i {
  font-size: 18px;
  transition: all 0s;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu .search label button i {
    color: #000;
  }
}
header .header-box .header-menu .search label button:hover {
  opacity: 1;
  transform: scale(1.05);
}
header .header-box .header-menu .language {
  color: #fff;
  position: relative;
  cursor: pointer;
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu .language {
    display: none;
  }
}
header .header-box .header-menu .language .language-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu .language .language-title {
    color: #000;
    font-size: 14px;
    justify-content: flex-start;
  }
}
header .header-box .header-menu .language .language-title .language-icon {
  font-size: 22px;
  transition: all 0s;
}
header .header-box .header-menu .language .language-title .language-icon:hover {
  transform: scale(1.05);
}
header .header-box .header-menu .language .language-title .language-text {
  margin-left: 6px;
  display: none;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu .language .language-title .language-text {
    display: block;
  }
}
header .header-box .header-menu .language .language-show {
  position: absolute;
  top: 0;
  padding-top: 60px;
  color: #333;
  right: 0;
  width: 120px;
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  pointer-events: none;
}
header .header-box .header-menu .language .language-show .language-show-item {
  padding: 10px 0;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 50px rgba(54, 56, 79, 0.11);
  box-shadow: 0 10px 50px rgba(54, 56, 79, 0.11);
}
header .header-box .header-menu .language .language-show .language-show-item a {
  text-align: center;
  display: block;
  height: 40px;
  line-height: 40px;
  transition: all 0.5s;
}
header .header-box .header-menu .language .language-show .language-show-item a:hover {
  background: var(--dominant-color);
  color: #fff;
}
header .header-box .header-menu .language:hover .language-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
/*头部样式*/
/*底部样式*/
.footer {
  padding: 80px 0 30px;
  background: #1a1a1a;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 30px 0;
  }
}
.footer .footer-menu {
  display: flex;
  justify-content: space-between;
}
.footer .footer-menu .item{
  flex: 1;
}
.footer .footer-menu .item:last-child{
  flex: none;
  width: 360px;
}
@media screen and (max-width: 768px) {
  .footer .footer-menu {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer-menu .item {
    margin-bottom: 30px;
    flex: none;
  }
  .footer .footer-menu .item:nth-child(2),
  .footer .footer-menu .item:nth-child(3),
  .footer .footer-menu .item:nth-child(4) {
    display: none;
  }
}
.footer .footer-menu .first-item {
  display: block;
  font-size: 20px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .footer .footer-menu .first-item {
    font-size: 14px;
  }
}
.footer .footer-menu .second-box {
  margin-top: 20px;
}
.footer .footer-menu .second-box img {
  max-width: 88px;
}
@media screen and (max-width: 768px) {
  .footer .footer-menu .second-box {
    margin-top: 10px;
    line-height: 1.6;
  }
}
.footer .footer-menu .second-box a,
.footer .footer-menu .second-box span {
  display: block;
  opacity: 0.6;
  color: #fff;
  font-size: 14px;
  transition: all 0.5s;
  position: relative;
  width: fit-content;
  margin-bottom: 10px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .footer .footer-menu .second-box a,
  .footer .footer-menu .second-box span {
    font-size: 12px;
  }
}
.footer .footer-menu .second-box a::after {
  width: 0;
  background: var(--dominant-color);
  height: 1px;
  bottom: 0;
  left: 0;
  position: absolute;
  transition: all 0.5s;
}
.footer .footer-menu .second-box a:hover {
  color: var(--dominant-color);
}
.footer .footer-menu .second-box a:hover::after {
  width: 100%;
}
.footer .footer-text {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .footer .footer-text {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 0;
  }
}
.footer .footer-text .footer-logo {
  filter: brightness(0);
}
.footer .footer-text .footer-logo img {
  max-width: 127px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .footer .footer-text .footer-logo img {
    max-width: 100px;
  }
}
.footer .footer-text .footer-code {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: 0;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .footer .footer-text .footer-code {
    margin-left: 0;
    margin-right: auto;
    margin-top: 20px;
  }
}
.footer .footer-text .footer-code .item {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: #c7c7c7;
  margin-right: 15px;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .footer .footer-text .footer-code .item {
    width: 24px;
    height: 24px;
    margin-right: 10px;
  }
}
.footer .footer-text .footer-code .item .show {
  position: absolute;
  width: 100px;
  bottom: 40px;
  left: 50%;
  margin-left: -50px;
  opacity: 0;
  transition: all 0.5s;
  transform: translateY(10px);
  visibility: hidden;
}
.footer .footer-text .footer-code .item:last-child {
  margin-right: 0;
  padding-right: 0;
}
.footer .footer-text .footer-code .item .fab {
  color: #fff;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .footer .footer-text .footer-code .item .fab {
    font-size: 12px;
  }
}
.footer .footer-text .footer-code .item:hover {
  background: var(--dominant-color);
}
.footer .footer-text .footer-code .item:hover .show {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}
.footer .footer-text .footer-copyright {
  flex-basis: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 20px;
  padding-top: 20px;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer .footer-text .footer-copyright {
    margin-top: 20px;
    padding-top: 10px;
    font-size: 12px;
  }
}
.footer .footer-text .footer-copyright .c-div a {
  transition: all 0.5s;
}
.footer .footer-text .footer-copyright .c-div a:hover {
  color: var(--dominant-color);
  text-decoration: underline;
}
.go-top {
  width: 60px;
  height: 60px;
  position: fixed;
  bottom: 30px;
  right: 50px;
  background: #fff !important;
  z-index: 1;
  color: #333;
  font-size: 20px;
  border-radius: 50%;
  display: none;
  justify-content: center;
  align-items: center;
  transform: rotate(180deg);
  box-shadow: 0 10px 50px rgba(54, 56, 79, 0.15);
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .go-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}
.go-top i {
  transition: all 0.5s;
}
.go-top:hover {
  background: var(--dominant-color) !important;
}
.go-top:hover i {
  color: #fff;
}
/*底部样式*/
/*--------------------------------------------------------*/
/*通用*/
.index-padding {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .index-padding {
    padding: 50px 0;
  }
}
.index-title {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .index-title {
    margin-bottom: 20px;
  }
}
.index-title.textL {
  text-align: left;
}
.index-title.colorW {
  color: #fff;
}
.index-title .title {
  font-weight: 900;
  line-height: 1;
  font-size: 40px;
  font-family: HarmonyOS_Sans_SC_Bold;
}
@media screen and (max-width: 1600px) {
  .index-title .title {
    font-size: 36px;
  }
}
@media screen and (max-width: 1366px) {
  .index-title .title {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .index-title .title {
    font-size: 20px;
  }
}
.index-title .summary {
  font-size: 16px;
  color: #404040;
  margin-top: 20px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .index-title .summary {
    font-size: 12px;
  }
}
.f-more {
  font-size: 16px;
  color: #404040;
  line-height: 1;
  text-align: center;
  width: fit-content;
  border: 1px solid #8f8f8f;
  padding: 10px 20px;
  border-radius: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.5s;
}
@media screen and (max-width: 1600px) {
  .f-more {
    font-size: 16px;
  }
}
@media screen and (max-width: 1280px) {
  .f-more {
    font-size: 14px;
  }
}
@media screen and (max-width: 1280px) {
  .f-more {
    font-size: 12px;
  }
}
.f-more .icon {
  display: flex;
  position: relative;
  overflow: hidden;
  margin-left: 10px;
  font-weight: 600;
  font-size: 20px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .f-more .icon {
    font-size: 14px;
  }
}
.f-more .icon .i1 {
  transition: all 0.5s;
}
.f-more .icon .i2 {
  position: absolute;
  top: 0;
  left: -150%;
  transition: all 0.5s;
}
.f-more .icon.colorW {
  color: #fff;
}
.f-more .icon.colorB {
  color: #222;
}
.f-more .icon .m1 {
  opacity: 0.3;
}
.f-more .icon .m2 {
  opacity: 0.6;
}
.f-more .icon .m3 {
  opacity: 1;
}
.f-more .icon img {
  transition: all 0.5s;
}
.f-more:hover {
  /*.i1 {
      transform: translateX(100%);
    }
    .i2 {
      left: 0;
    }*/
}
.f-more:hover .m1 {
  animation: f-more-animation1 0.7s;
}
.f-more:hover .m2 {
  animation: f-more-animation2 0.7s;
  transition-delay: 0.5s;
}
.f-more:hover .m3 {
  animation: f-more-animation3 0.7s;
  transition-delay: 1s;
}
.f-more:hover .icon .m1,
.f-more:hover .icon .m2,
.f-more:hover .icon .m3 {
  transition: all 0s;
  color: var(--dominant-color);
}
.f-more.colorW {
  color: #fff;
}
.f-more.colorW img {
  filter: brightness(100);
}
.f-more.flex-left {
  justify-content: flex-start;
}
/* .f-more:hover {
  background: var(--dominant-color);
  color: #fff;
  border-color: var(--dominant-color);
} */
/*
@keyframes f-more-animation1 {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.3;
  }
  75% {
    opacity: 0.3;
  }
  100% {
    opacity: 0;
  }
}

@keyframes f-more-animation2 {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 0.6;
  }
  75% {
    opacity: 0.6;
  }
  100% {
    opacity: 0;
  }
}

@keyframes f-more-animation3 {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
*/
/*首页*/
/*轮播*/
.banner {
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: -1;
}
.banner.product-page-banner {
  margin-top: 60px;
}
.banner .img {
  height: 100%;
}
.banner .img img,
.banner .img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner .swiper-banner {
  height: 100%;
}
.banner .swiper-banner .text {
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  color: #fff;
  text-align: left;
  height: fit-content;
}
@media screen and (max-width: 1366px) {
  .banner .swiper-banner .text {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .banner .swiper-banner .text {
    top: 20%;
    bottom: auto;
  }
}
.banner .swiper-banner .text .img {
  transition: all 1s;
  transform: translateY(100px);
  opacity: 0;
}
.banner .swiper-banner .text .img img {
  max-width: 724px;
  width: 37.708vw;
}
.banner .swiper-banner .text .title {
  font-size: 40px;
  transition: all 1s;
  font-family: HarmonyOS_Sans_SC_Bold;
  transform: translateY(100px);
  opacity: 0;
  width: 100%;
  line-height: 1.4;
  color: #fff;
  text-align: left;
}
@media screen and (max-width: 1600px) {
  .banner .swiper-banner .text .title {
    font-size: 38px;
  }
}
@media screen and (max-width: 1366px) {
  .banner .swiper-banner .text .title {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .banner .swiper-banner .text .title {
    font-size: 20px;
  }
}
.banner .swiper-banner .text .summary {
  margin-top: 20px;
  font-size: 28px;
  transition: all 1s;
  transform: translateY(100px);
  opacity: 0;
  width: 100%;
  margin-bottom: 80px;
}
@media screen and (max-width: 1600px) {
  .banner .swiper-banner .text .summary {
    font-size: 24px;
  }
}
@media screen and (max-width: 1366px) {
  .banner .swiper-banner .text .summary {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .banner .swiper-banner .text .summary {
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
.banner .swiper-banner .text .banner-more {
  transition: all 1s;
  transform: translateY(100px);
  opacity: 0;
  text-align: left;
  margin-top: 40px;
}
.banner .swiper-banner .text .banner-more .f-more {
  color: #fff;
  border-color: #fff;
  margin-left: 0;
}
.banner .swiper-banner .text .banner-more .f-more .icon {
  transition: all 0s;
}
.index4 .f-more:hover,
.banner .swiper-banner .text .banner-more .f-more:hover {
  border-color: var(--dominant-color);
  color: var(--dominant-color);
}
.banner .swiper-banner .text .banner-more .f-more:hover .icon .m1,
.banner .swiper-banner .text .banner-more .f-more:hover .icon .m2,
.banner .swiper-banner .text .banner-more .f-more:hover .icon .m3 {
  transition: all 0s;
  color: var(--dominant-color);
}
.banner .swiper-banner .swiper-slide-active .img {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.3s;
}
.banner .swiper-banner .swiper-slide-active .title {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.5s;
}
.banner .swiper-banner .swiper-slide-active .summary {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.7s;
}
.banner .swiper-banner .swiper-slide-active .numbers {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.7s;
}
.banner .swiper-banner .swiper-slide-active .tip {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.9s;
}
.banner .swiper-banner .swiper-slide-active .banner-more {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.9s;
}
.banner .swiper-banner .swiper-horizontal > .swiper-pagination-bullets,
.banner .swiper-banner .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 60px;
  width: 90%;
  max-width: 1720px;
  margin: auto;
  left: 0;
  right: 0;
  text-align: left;
}
.banner .swiper-banner .swiper-pagination-bullet {
  --swiper-pagination-bullet-inactive-color: transparent;
  opacity: 0.8;
  --swiper-pagination-bullet-width: 25px;
  --swiper-pagination-bullet-height: 25px;
  --swiper-pagination-bullet-horizontal-gap: 10px;
  position: relative;
}
.banner .swiper-banner .swiper-pagination-bullet::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
  opacity: 0.8;
}
.banner .swiper-banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
  --swiper-pagination-color: transparent;
  opacity: 1;
}
.banner .swiper-banner .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  background: var(--dominant-color);
  opacity: 0;
}
.banner .swiper-banner .swiper-pager {
  display: flex;
  position: absolute;
  bottom: 10%;
  left: 0;
  right: 0;
  z-index: 1;
  width: 90%;
  max-width: 1740px;
  margin: auto;
  align-items: center;
  color: #fff;
}
.banner .swiper-banner .swiper-pagination-progressbar {
  position: initial;
  max-width: 700px;
  margin: 0 20px;
}
@media screen and (max-width: 768px) {
  .banner .swiper-banner .swiper-pagination-progressbar {
    max-width: 50%;
  }
}
.banner .swiper-banner .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #fff;
}
.banner .swiper-banner .swiper-pagination-progressbar.swiper-pagination-horizontal {
  height: 2px;
}
.banner .swiper-line {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
}
.banner .swiper-line .swiper-wrapper {
  justify-content: center;
}
.banner .swiper-line .swiper-wrapper .swiper-slide {
  text-align: center;
  flex: 1;
  flex-basis: 0;
  cursor: pointer;
  margin-right: 10px;
  opacity: 0.5;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .banner .swiper-line .swiper-wrapper .swiper-slide {
    width: 10px;
  }
}
.banner .swiper-line .swiper-wrapper .swiper-slide.active {
  opacity: 1;
}
.banner .swiper-line .swiper-wrapper .swiper-slide.active .line span {
  animation: lineMove 6s ease;
}
.banner .swiper-line .swiper-wrapper .swiper-slide:hover {
  opacity: 1;
}
.banner .swiper-line .swiper-wrapper .swiper-slide .text {
  font-size: 16px;
  font-family: HarmonyOS_Sans_SC_Bold;
}
@media screen and (max-width: 768px) {
  .banner .swiper-line .swiper-wrapper .swiper-slide .text {
    display: none;
  }
}
.banner .swiper-line .swiper-wrapper .swiper-slide .line {
  height: 3px;
  background: #a6b5c3;
}
@media screen and (max-width: 768px) {
  .banner .swiper-line .swiper-wrapper .swiper-slide .line {
    height: 2px;
  }
}
.banner .swiper-line .swiper-wrapper .swiper-slide .line span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--dominant-color);
}
@keyframes lineMove {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
/*板块一*/
.index1 {
  margin-top: 100vh;
}
.index1 .index1-box {
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.index1 .index1-box .item {
  flex-basis: calc(50% - 10px);
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .index1 .index1-box .item {
    flex-basis: 100%;
    padding-bottom: 0;
    margin-bottom: 20px;
  }
}
.index1 .index1-box .item .imgBox {
  margin: auto;
  width: 100%;
  /* padding-bottom: 67%; */
  padding-bottom: 54%;
  text-align: center;
  overflow: initial;
}
.index1 .index1-box .item .imgBox img {
  max-width: 67%;
  left: 0;
  right: 0;
  margin: auto;
}
.index1 .index1-box .item .text {
  padding: 10% 20px 0;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1600px) {
  .index1 .index1-box .item .text {
    padding: 10% 20px 0;
  }
}
@media screen and (max-width: 768px) {
  .index1 .index1-box .item .text {
    position: relative;
    padding: 10% 0 30px;
  }
}
.index1 .index1-box .item .text .title {
  font-size: 40px;
  color: #272727;
  line-height: 1;
  font-family: HarmonyOS_Sans_SC_Medium;
  margin-bottom: 10px;
}
@media screen and (max-width: 1600px) {
  .index1 .index1-box .item .text .title {
    font-size: 26px;
  }
}
@media screen and (max-width: 768px) {
  .index1 .index1-box .item .text .title {
    font-size: 16px;
    font-family: HarmonyOS_Sans_SC_Bold;
  }
}
.index1 .index1-box .item .text .summary {
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 20px;
  color: #272727;
}
@media screen and (max-width: 1600px) {
  .index1 .index1-box .item .text .summary {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .index1 .index1-box .item .text .summary {
    font-size: 12px;
    margin-top: 0;
    margin-bottom: 10px;
  }
}
.index1 .index1-box .item .text .f-more {
  border: none;
}
.index2 {
  background: #fff;
}
.index2 .index2-box {
  display: flex;
  justify-content: space-between;
  grid-gap: 20px;
  flex-wrap: wrap;
}
.index2 .index2-box .item {
  flex: 1 0 auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .index2 .index2-box .item {
    flex-basis: 100%;
  }
}
.index2 .index2-box .item .img .imgBox {
  padding-bottom: 135%;
}
.index2 .index2-box .item .text {
  position: absolute;
  top: 10%;
  left: 0;
  right: 0;
  z-index: 1;
}
.index2 .index2-box .item .text .icon {
  width: 120px;
  height: 42px;
  margin: auto;
}
.index2 .index2-box .item .text .title {
  color: #fff;
  text-align: center;
  font-size: 24px;
  margin-top: 20px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1600px) {
  .index2 .index2-box .item .text .title {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .index2 .index2-box .item .text .title {
    font-size: 16px;
  }
}
.index2 .index2-box .item .text .f-more {
  border: none;
  opacity: 0;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  transition: all 0.5s;
  color: #fff;
  padding: 0;
}
.index1 .index1-box .item .text .f-more:hover{
  text-decoration: underline;
}
.index2 .index2-box .item .text .f-more:hover{
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .index2 .index2-box .item .text .f-more {
    opacity: 1;
  }
}
.index2 .index2-box .item:hover .f-more {
  opacity: 1;
}
@keyframes icon-animation1 {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes icon-animation2 {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes icon-animation3 {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*板块三*/
.index3 {
  background: #fff;
}
.index3 .index3-box {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 20px;
}
@media screen and (max-width: 768px) {
  .index3 .index3-box {
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 20px;
  }
}
.index3 .index3-box .item {
  box-shadow: 0 0 8px 5px rgba(0, 0, 0, 0.035);
  flex-basis: calc((100% - 40px) / 3);
  position: relative;
}
@media screen and (max-width: 768px) {
  .index3 .index3-box .item {
    flex-basis: 100%;
  }
}
.index3 .index3-box .item .img .imgBox {
  padding-bottom: 37%;
}
@media screen and (max-width: 1280px) {
  .index3 .index3-box .item .img .imgBox {
    padding-bottom: 45%;
  }
}
.index3 .index3-box .item:nth-child(1) {
  flex-basis: calc(((100% - 40px) / 3 * 2) + 20px);
}
@media screen and (max-width: 768px) {
  .index3 .index3-box .item:nth-child(1) {
    flex-basis: 100%;
  }
}
.index3 .index3-box .item:nth-child(1) .text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.index3 .index3-box .item:nth-child(1) .text .time {
  color: #fff;
}
.index3 .index3-box .item:nth-child(1) .text .title {
  color: #fff !important;
}
.index3 .index3-box .item:nth-child(1) .text .f-more {
  color: #fff !important;
  border-bottom: 1px solid #fff;
  margin-top: 20px;
  border-radius: 0;
}
/* .index3 .index3-box .item:nth-child(2) {
  margin-right: 0;
  background: url('../images/img3.png') no-repeat center / cover;
} */
/* .index3 .index3-box .item:nth-child(2) {
  margin-right: 0;
  position: relative;
  z-index: 1;
}
.index3 .index3-box .item:nth-child(2)::before {
  content: '';
  background: url('../images/img3.png') no-repeat center / cover !important;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
}
.index3 .index3-box .item:nth-child(2)::after {
  content: '';
  background: url('../images/img75.jpg') no-repeat center / cover !important;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0;
}
.index3 .index3-box .item:nth-child(2):hover::after{
  opacity: 1;
}
.index3 .index3-box .item:nth-child(2):hover .text{
  opacity: 0;
} */
.new-bja{position: absolute;z-index: -1;top: 0;right: 0;bottom: 0;left: 0;}
.new-bjb{position: absolute;z-index: 1;top: 0;right: 0;bottom: 0;left: 0;opacity: 0;}
.new-bja img,.new-bjb img{width: 100%;height: 100%;display: block;object-fit: cover;}
.index3 .index3-box .item:hover .new-bjb{opacity: 1;}
.index3 .index3-box .item .title{transition: all 0s !important;}
.index3 .index3-box .item .f-more{transition: all 0s !important;}
.index3 .index3-box .item:nth-child(2) .text .title {
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 1910px) {
  .index3 .index3-box .item:nth-child(2) .text .title {
    -webkit-line-clamp: 1;
  }
}
.index3 .index3-box .item:nth-child(2) .text .summary {
  -webkit-line-clamp: 4;
}
@media screen and (max-width: 1910px) {
  .index3 .index3-box .item:nth-child(2) .text .summary {
    -webkit-line-clamp: 2;
  }
}
.index3 .index3-box{position: relative;z-index: 1;}
/* .index3 .index3-box .item:nth-child(3n)::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -2;
  background: url('../images/img4.png') no-repeat center / cover;
}
.index3 .index3-box .item:nth-child(3n+1)::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -2;
  background: url('../images/img5.png') no-repeat center / cover;
}
.index3 .index3-box .item:nth-child(3n+2)::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -2;
  margin-right: 0;
  background: url('../images/img6.png') no-repeat center / cover;
}
.index3 .index3-box .item:nth-child(3n)::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  transition: all 0.5s;
  background: url('../images/img76.jpg') no-repeat center / cover;
}
.index3 .index3-box .item:nth-child(3n+1)::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  transition: all 0.5s;
  background: url('../images/img77.jpg') no-repeat center / cover;
}
.index3 .index3-box .item:nth-child(3n+2)::after {
  margin-right: 0;
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  transition: all 0.5s;
  background: url('../images/img78.jpg') no-repeat center / cover;
}
.index3 .index3-box .item:nth-child(3n):hover::after{
  opacity: 1;
}
.index3 .index3-box .item:nth-child(3n+1):hover::after{
  opacity: 1;
}
.index3 .index3-box .item:nth-child(3n+2):hover::after{
  opacity: 1;
} */
.index3 .index3-box .item .text {
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .index3 .index3-box .item .text {
    padding: 20px;
  }
}
.index3 .index3-box .item .text .time {
  font-size: 16px;
  color: #404040;
}
.index3 .index3-box .item .text .title {
  color: #272727;
  font-size: 20px;
  font-family: HarmonyOS_Sans_SC_Medium;
  transition: all 0.5s;
  text-align: left;
}
@media screen and (max-width: 1440px) {
  .index3 .index3-box .item .text .title {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .index3 .index3-box .item .text .title {
    font-size: 14px;
  }
}
.index3 .index3-box .item .text .summary {
  font-size: 16px;
  color: #666666;
  line-height: 1.6;
  margin: 30px 0;
  font-family: HarmonyOS_Sans_SC_Medium;
}
@media screen and (max-width: 1440px) {
  .index3 .index3-box .item .text .summary {
    font-size: 14px;
    margin: 20px 0;
  }
}
@media screen and (max-width: 768px) {
  .index3 .index3-box .item .text .summary {
    font-size: 12px;
  }
}
.index3 .index3-box .item .text .f-more {
  border: none;
  padding: 0;
  margin-left: 0;
}
.index3 .index3-box .item .text .f-more:hover {
  background: none;
}
.index3 .index3-box .item:hover .text .title,
.index3 .index3-box .item:hover .text .f-more {
  color: var(--dominant-color);
}
/*板块四*/
.index4 .f-more {
  margin-top: 50px;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .index4 .f-more {
    margin-top: 20px;
    margin-bottom: 30px;
  }
}
.index4 .index4-box {
  position: relative;
  display: flex;
  justify-content: space-evenly;
}
@media screen and (max-width: 768px) {
  .index4 .index4-box {
    justify-content: space-between;
  }
}
.index4 .index4-box .item {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .index4 .index4-box .item {
    flex-basis: 26%;
  }
}
.index4 .index4-box .item .num {
  font-size: 60px;
  color: var(--dominant-color);
  font-family: HarmonyOS_Sans_SC_Bold;
}
@media screen and (max-width: 768px) {
  .index4 .index4-box .item .num {
    font-size: 18px;
  }
}
.index4 .index4-box .item .num span {
  font-family: HarmonyOS_Sans_SC_Bold;
}
.index4 .index4-box .item .summary {
  font-size: 16px;
  color: #949494;
}
@media screen and (max-width: 768px) {
  .index4 .index4-box .item .summary {
    font-size: 12px;
    line-height: 1.4;
  }
}
.goTop {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  position: absolute;
  transition: all 0.5s;
  z-index: 1000;
  top: -70px;
  left: 0;
  right: 0;
  margin: auto;
}
.goTop:hover .button span {
  transform: translateY(-10px);
}
@media screen and (max-width: 768px) {
  .goTop {
    transform: scale(0.5);
  }
}
.goTop .lazy {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background-size: cover;
  -webkit-animation-name: spin;
  animation-name: spin;
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}
.goTop .button {
  width: 80px;
  height: 80px;
  color: var(--dominant-color);
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.goTop .button span {
  transition: all 0.5s;
}
.goTop svg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: calc(100% - 55px);
  height: calc(100% - 55px);
}
.goTop svg.cm {
  transition: none;
  opacity: 1;
}
.goTop svg .p1 {
  animation: circleRotate 4s linear infinite;
  transform-origin: 50% 50%;
}
.goTop svg circle {
  fill: #fff;
  stroke: transparent;
}
.goTop svg .p2 {
  animation: circleRotateReverse 4s linear infinite;
}
.goTop.button-div {
  display: block;
  width: 60px;
  height: 60px;
  top: 0;
  margin-left: 0;
  transform-origin: 0;
  transform: scale(1);
}
.goTop.button-div .button {
  width: 30px;
  height: 30px;
}
.goTop.button-div .button span {
  font-size: 14px;
  transform: translateY(0) !important;
}
/*--------------------------------------------------------*/
/*内页*/
/*内页通用*/
.page-title {
  text-align: left;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .page-title {
    margin-bottom: 20px;
  }
}
.page-title.textC {
  text-align: center;
}
.page-title.colorW {
  color: #fff;
}
.page-title .title {
  font-size: 36px;
  line-height: 1.2;
  font-family: HarmonyOS_Sans_SC_Bold;
}
@media screen and (max-width: 1600px) {
  .page-title .title {
    font-size: 26px;
  }
}
@media screen and (max-width: 768px) {
  .page-title .title {
    font-size: 20px;
  }
}
.page-title .summary {
  color: #666;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .page-title .summary {
    font-size: 12px;
  }
}
/*内页大图*/
.pageBanner {
  transition: all 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 560px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .pageBanner {
    height: 200px;
    margin-top: 60px;
  }
  .pageBanner.productBanner {
    height: 400px;
  }
}
.pageBanner .img {
  width: 100%;
}
.pageBanner .img img {
  width: 100%;
}
.pageBanner .banner-box {
  position: absolute;
}
.pageBanner .banner-box .banner-title {
  font-size: 46px;
  text-align: center;
  font-family: HarmonyOS_Sans_SC_Bold;
}
@media screen and (max-width: 1600px) {
  .pageBanner .banner-box .banner-title {
    font-size: 36px;
  }
}
@media screen and (max-width: 1366px) {
  .pageBanner .banner-box .banner-title {
    font-size: 26px;
  }
}
@media screen and (max-width: 768px) {
  .pageBanner .banner-box .banner-title {
    font-size: 20px;
  }
}
.pageBanner .banner-box .banner-summary {
  font-size: 6.25vw;
  font-family: Outfit-ExtraBold;
  line-height: 1;
  text-transform: capitalize;
}
@media screen and (max-width: 768px) {
  .pageBanner .banner-box .banner-summary {
    font-size: 20px;
  }
}
.pageBanner .banner-box .banner-search {
  width: 540px;
  margin: 20px auto 0;
}
@media screen and (max-width: 768px) {
  .pageBanner .banner-box .banner-search {
    width: 100%;
  }
}
.pageBanner .banner-box .banner-search label {
  border-radius: 27px;
  overflow: hidden;
  position: relative;
  display: block;
  background: #fff;
}
.pageBanner .banner-box .banner-search label i {
  top: 0;
  left: 20px;
  bottom: 0;
  margin: auto;
  position: absolute;
  color: #666;
  height: fit-content;
  font-size: 20px;
}
.pageBanner .banner-box .banner-search label input {
  width: 100%;
  height: 54px;
  border: none;
  color: #666;
  padding-left: 30px;
  text-indent: 20px;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .pageBanner .banner-box .banner-search label input {
    height: 40px;
  }
}
.pageBanner .banner-box .banner-search label input::placeholder {
  font-size: 16px;
}
.pageBanner .banner-box .banner-search label button {
  background: var(--dominant-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 120px;
  border-radius: 27px;
  height: calc(100%);
  font-size: 16px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .pageBanner .banner-box .banner-search label button {
    width: 80px;
    font-size: 12px;
  }
}
.pageBanner .swiper {
  width: 100%;
  height: 100%;
}
.pageBanner .swiper .swiper-pagination {
  bottom: 30px;
  top: auto;
  width: 80px;
  height: 3px;
  text-align: center;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 12px;
  overflow: hidden;
  --swiper-theme-color: #fff;
}
.aboutBanner {
  height: 100vh;
  position: sticky;
  top: 0;
}
.aboutBanner .banner-box .banner-title {
  text-align: left;
}
@media screen and (max-width: 768px) {
  .aboutBanner .banner-box .banner-title {
    font-size: 24px;
  }
}
.aboutBanner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/*内页侧边栏*/
/*内页导航*/
.page-menu {
  width: 100%;
}
.page-menu .page-phone-click {
  display: none;
}
@media screen and (max-width: 768px) {
  .page-menu .page-phone-click {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    background: var(--dominant-color);
    color: #fff;
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .page-menu {
    width: 100%;
  }
}
.page-menu .menu-box {
  display: flex;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  height: auto;
}
@media screen and (max-width: 768px) {
  .page-menu .menu-box {
    flex-direction: column;
    font-size: 14px;
    height: auto;
    display: none;
  }
}
.page-menu .menu-box .first-menu {
  width: 100%;
  position: relative;
}
.page-menu .menu-box .first-menu .f-title {
  font-size: 16px;
  position: relative;
  color: #666;
  text-align: left;
  justify-content: flex-start;
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
  line-height: 1.4;
}
@media screen and (max-width: 1280px) {
  .page-menu .menu-box .first-menu .f-title {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .page-menu .menu-box .first-menu .f-title {
    padding: 0;
    height: 40px;
    line-height: 40px;
    text-align: center;
    justify-content: center;
  }
}
.page-menu .menu-box .first-menu .f-title::after {
  content: '';
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  margin: auto;
  position: absolute;
  background: var(--dominant-color);
  transition: all 0.5s;
}
.page-menu .menu-box .first-menu .f-title::after i {
  opacity: 1;
}
.page-menu .menu-box .first-menu .f-title i {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  height: fit-content;
  font-size: 12px;
  opacity: 0;
  color: var(--dominant-color);
  transition: all 0.5s;
}
.page-menu .menu-box .first-menu .f-title.active,
.page-menu .menu-box .first-menu .f-title:hover {
  color: var(--dominant-color);
}
.page-menu .menu-box .first-menu .f-title.active::after,
.page-menu .menu-box .first-menu .f-title:hover::after {
  width: 100%;
}
.page-menu .menu-box .first-menu .f-title.active i,
.page-menu .menu-box .first-menu .f-title:hover i {
  opacity: 1;
}
.page-menu .menu-box .first-menu .s-box a {
  font-size: 0.833vw;
  text-align: left;
  padding: 20px 30px;
  justify-content: flex-start;
  background: #f5f5f5;
  border-bottom: 1px solid #ddd;
}
.page-menu .menu-box .first-menu .s-box a::after {
  display: none;
}
@media screen and (max-width: 1600px) {
  .page-menu .menu-box .first-menu .s-box a {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .page-menu .menu-box .first-menu .s-box a {
    font-size: 12px;
    justify-content: center;
    padding: 0;
  }
}
/*面包屑*/
.location {
  background: #f9f9f9;
  margin-top: 70px;
  display: flex;
  align-items: center;
  padding: 15px 0;
  color: #666;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .location {
    margin-top: 60px;
  }
}
.location a {
  color: #666;
  font-size: 14px;
  margin: 0 8px;
}
.location a i {
  color: var(--dominant-color);
  margin-right: 4px;
}
@media screen and (max-width: 768px) {
  .location a {
    font-size: 12px;
  }
}
.location a:hover {
  text-decoration: underline;
}
/*分页*/
.pager {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .pager {
    margin-top: 50px;
  }
}
.pager a {
  width: 48px;
  height: 48px;
  margin: 0 10px;
  border: 1px solid #ddd;
  border-radius: 50%;
  color: #6e6e6e;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .pager a {
    width: 30px;
    height: 30px;
    font-size: 12px;
    margin: 0 4px;
  }
}
.pager a:hover,
.pager a.active {
  background: var(--dominant-color);
  border-color: var(--dominant-color);
  color: #fff;
}
/*内页左右结构*/
.page-box {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .page-box {
    flex-direction: column;
  }
}
.page-box .left {
  width: 220px;
}
@media screen and (max-width: 1280px) {
  .page-box .left {
    width: 180px;
  }
}
@media screen and (max-width: 768px) {
  .page-box .left {
    width: 100%;
    margin-bottom: 30px;
  }
}
.page-box .right {
  flex-basis: calc(100% - 220px - 8%);
}
@media screen and (max-width: 1280px) {
  .page-box .right {
    flex-basis: calc(100% - 220px);
  }
}
/*地图*/
#mapContainer {
  width: 100%;
  height: 560px;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  #mapContainer {
    height: 300px;
  }
}
#tip {
  height: 30px;
  background-color: #fff;
  padding-left: 10px;
  padding-right: 10px;
  position: absolute;
  font-size: 12px;
  right: 10px;
  bottom: 20px;
  border-radius: 3px;
  line-height: 30px;
  border: 1px solid #ccc;
}
div.info-top {
  position: relative;
  background: none repeat scroll 0 0 #F9F9F9;
  border-bottom: 1px solid #CCC;
  border-radius: 5px 5px 0 0;
}
div.info-top div {
  display: inline-block;
  color: #333333;
  font-size: 14px;
  font-weight: bold;
  line-height: 31px;
  padding: 0 10px;
  text-align: left;
}
div.info-top img {
  position: absolute;
  top: 10px;
  right: 10px;
  transition-duration: 0.25s;
}
div.info-top img:hover {
  box-shadow: 0px 0px 5px #000;
}
div.info-middle {
  font-size: 12px;
  padding: 10px;
  line-height: 21px;
  text-align: left;
}
div.info-bottom {
  height: 0px;
  width: 100%;
  clear: both;
  text-align: center;
}
div.info-bottom img {
  position: relative;
  z-index: 104;
}
.pages {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  margin-bottom: 30px;
  border-top: 1px solid #eee;
  padding-top: 50px;
}
.pages .prev,
.pages .next {
  flex-basis: 100%;
  transition: all 0.5s;
  font-size: 20px;
  color: var(--dominant-color);
  margin-bottom: 20px;
  display: inline-block;
}
.pages .prev:hover,
.pages .next:hover {
  text-decoration: underline;
}
.product-sticky {
  position: sticky;
  border-bottom: 1px solid #eee;
  top: 60px;
  margin-top: 60px;
  background: #fff;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .product-sticky {
    position: relative;
    top: 0;
    margin-top: 60px;
  }
}
.product-sticky .product-sticky-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-sticky .product-sticky-box .title {
  display: flex;
  align-items: center;
}
.product-sticky .product-sticky-box .title .back {
  font-size: 12px;
  display: flex;
  align-items: center;
}
.product-sticky .product-sticky-box .title .back i::after {
  content: 'prev';
  font-family: swiper-icons;
}
.product-sticky .product-sticky-box .title .back div {
  font-family: HarmonyOS_Sans_SC_Bold;
}
.product-sticky .product-sticky-box .title .back .m3 {
  opacity: 0.3;
}
.product-sticky .product-sticky-box .title .back .m2 {
  opacity: 0.6;
}
.product-sticky .product-sticky-box .title .back:hover {
  color: var(--dominant-color);
}
.product-sticky .product-sticky-box .title span {
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .product-sticky .product-sticky-box {
    flex-direction: column;
    align-items: flex-start;
  }
  .product-sticky .product-sticky-box .title {
    display: none;
  }
}
.product-sticky .product-sticky-box .tab {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #999;
}
.product-sticky .product-sticky-box .tab .item {
  margin: 0 10px;
  color: #999;
  transition: all 0.5s;
  position: relative;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .product-sticky .product-sticky-box .tab .item {
    padding: 10px 0;
    font-size: 12px;
  }
}
.product-sticky .product-sticky-box .tab .item::after {
  content: '';
  height: 2px;
  width: 0;
  background: var(--dominant-color);
  position: absolute;
  left: 0;
  bottom: -1px;
  transition: all 0.5s;
}
.product-sticky .product-sticky-box .tab .item.active {
  color: var(--dominant-color);
}
.product-sticky .product-sticky-box .tab .item.active::after {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .product-sticky .product-sticky-box .tab .item:hover {
    color: var(--dominant-color);
  }
  .product-sticky .product-sticky-box .tab .item:hover::after {
    width: 100%;
  }
}
/*响应式*/
@media screen and (max-width: 1024px) {
  /*header*/
  header .header-menu .header-box-bg .header-box {
    height: 80px;
  }
  header .section .header-box .menu-box .menu-list .firstItem:last-child span {
    display: inline-block;
  }
  header .section .header-box .menu-box .menu-list .firstItem:last-child img {
    display: none;
  }
  header .section .header-box .menu-box .menu-list .firstItem:last-child .firstItem-title {
    border: none;
  }
}
@media screen and (max-width: 768px) {
  header .header-menu .header-box {
    padding: 0;
    height: 60px;
  }
  header .header-menu .header-box .logo {
    margin-left: 5%;
    position: relative;
    z-index: 100;
    width: 50%;
  }
  header .header-menu .header-box .menu-box {
    background: none;
    display: flex;
    align-items: center;
    height: 60px;
    position: absolute;
    z-index: 10;
    top: 0 !important;
    width: 100%;
    justify-content: flex-end;
  }
  header .header-menu .header-box .menu-box .phone-click {
    cursor: pointer;
    width: 22px;
    height: 16px;
    display: flex;
    align-items: center;
    position: relative;
    right: 5%;
  }
  header .header-menu .header-box .menu-box .phone-click .phone-line {
    height: 2px;
    background: #fff;
    width: 100%;
    transition: all 0.5s;
    overflow: hidden;
  }
  header .header-menu .header-box .menu-box .phone-click .phone-line::before,
  header .header-menu .header-box .menu-box .phone-click .phone-line::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: all 0.5s;
  }
  header .header-menu .header-box .menu-box .phone-click .phone-line::before {
    top: 0;
    transition: all 0.5s;
  }
  header .header-menu .header-box .menu-box .phone-click .phone-line::after {
    bottom: 0;
    transition: all 0.5s;
  }
  header .header-menu .header-box .menu-box .phone-click.active .phone-line {
    background: rgba(255, 255, 255, 0) !important;
    transition: all 0.5s;
  }
  header .header-menu .header-box .menu-box .phone-click.active .phone-line::before {
    margin: auto;
    transition: all 0.5s;
    transform: translateY(7px) rotate(45deg);
  }
  header .header-menu .header-box .menu-box .phone-click.active .phone-line::after {
    margin: auto;
    transition: all 0.5s;
    transform: translateY(-7px) rotate(-45deg);
  }
  header .header-menu .header-box .menu-box .phone-show {
    display: none;
    position: absolute;
    width: 100%;
    background: #fff;
    top: 60px;
    height: 100vh;
    z-index: 10;
    left: 0;
    margin-left: 0;
    padding-top: 30px;
  }
  header .header-menu .header-box .menu-box .menu-list {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    height: auto;
  }
  header .header-menu .header-box .menu-box .menu-list .language {
    display: block;
  }
  header .header-menu .header-box .menu-box .menu-list .firstItem {
    height: auto;
    width: 100%;
    border-bottom: 1px solid #eee;
    display: block;
  }
  header .header-menu .header-box .menu-box .menu-list .firstItem.active .firstItem-title a {
    color: var(--dominant-color);
  }
  header .header-menu .header-box .menu-box .menu-list .firstItem.active .firstItem-title a::after {
    background: var(--dominant-color);
  }
  header .header-menu .header-box .menu-box .menu-list .firstItem .firstItem-title {
    height: 50px;
    width: 100%;
    padding: 0;
    position: relative;
  }
  header .header-menu .header-box .menu-box .menu-list .firstItem .firstItem-title a {
    color: #2a2a2a;
    font-size: 14px;
    display: block;
    width: 100%;
  }
  header .header-menu .header-box .menu-box .menu-list .firstItem .firstItem-title a:hover {
    color: var(--dominant-color);
  }
  header .header-menu .header-box .menu-box .menu-list .firstItem .firstItem-title a:hover::after {
    background: var(--dominant-color);
  }
  header .header-menu .header-box .menu-box .menu-list .firstItem .firstItem-title i {
    width: 50px;
    height: 50px;
    position: absolute;
    right: -10px;
    top: 0;
    bottom: 0;
    margin: auto;
    cursor: pointer;
    transition: all 0.5s;
  }
  header .header-menu .header-box .menu-box .menu-list .firstItem .firstItem-title i.active {
    transform: rotate(45deg);
  }
  header .header-menu .header-box .menu-box .menu-list .firstItem .firstItem-title i::before {
    content: '';
    width: 16px;
    position: absolute;
    height: 2px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background: #000;
  }
  header .header-menu .header-box .menu-box .menu-list .firstItem .firstItem-title i::after {
    content: '';
    height: 16px;
    position: absolute;
    width: 2px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background: #000;
  }
  header .header-menu .header-box .menu-box .menu-list .firstItem .firstItem-title::after {
    display: none;
  }
  header .header-menu .header-box .menu-box .menu-list .firstItem .second-box {
    top: 0 !important;
    border-top: none;
    box-shadow: none;
    position: relative;
    left: 0;
    font-size: 12px;
    transform: translateX(0);
    width: 100%;
    margin-left: 20px;
  }
  header .header-menu .header-box .menu-box .menu-list .firstItem .second-box .second-box-list {
    margin-top: 0;
    padding: 2px;
    background: none;
    justify-content: flex-start;
    flex-direction: column;
  }
  header .header-menu .header-box .menu-box .menu-list .firstItem .second-box .second-box-list::after {
    left: 20px;
    right: auto;
    display: none;
  }
  header .header-menu .header-box .menu-box .menu-list .firstItem .second-box a {
    text-align: left;
    margin-bottom: 10px;
    color: #333;
    padding: 0;
    height: auto;
  }
  header .header-menu .header-box .menu-box .menu-list .firstItem .second-box a:hover {
    color: #333;
    text-decoration: underline;
  }
  header .header-menu .header-box .menu-box .menu-list-phone {
    background: #fff;
    border-top: 1px solid #e5e5e5;
    position: absolute;
    height: 100vh;
    left: 0;
    width: 100%;
    top: 50px;
    padding: 20px;
    display: none;
    z-index: 10;
  }
  header .header-menu .header-box .menu-box .menu-list-phone .menu-list-box {
    display: flex;
    justify-content: space-between;
    height: 100%;
  }
  header .header-menu .header-box .menu-box .menu-list-phone .menu-aside {
    border-right: 1px solid #e1e3e6;
    height: 100%;
    overflow: hidden;
    width: 120px;
  }
  header .header-menu .header-box .menu-box .menu-list-phone .menu-aside .item {
    margin-bottom: 30px;
    position: relative;
    padding-left: 10px;
  }
  header .header-menu .header-box .menu-box .menu-list-phone .menu-aside .item a {
    display: block;
  }
  header .header-menu .header-box .menu-box .menu-list-phone .menu-aside .item.active::after {
    content: '';
    width: 4px;
    height: 15px;
    background: var(--dominant-color);
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    position: absolute;
  }
  header .header-menu .header-box .menu-box .menu-list-phone .menu-content {
    flex: auto;
    width: calc(100% - 120px);
    padding: 0 10px;
  }
  header .header-menu .header-box .menu-box .menu-list-phone .menu-content .item-content {
    display: none;
  }
  header .header-menu .header-box .menu-box .menu-list-phone .menu-content .item-content.active {
    display: block;
  }
  header .header-menu .header-box .menu-box .menu-list-phone .menu-content .item-list {
    display: flex;
    flex-wrap: wrap;
  }
  header .header-menu .header-box .menu-box .menu-list-phone .menu-content .item-list .item {
    width: 50%;
    padding: 0 20px;
    margin-bottom: 20px;
  }
  header .header-menu .header-box .menu-box .menu-list-phone .menu-content .item-list .item .title {
    font-size: 12px;
    color: #666;
    text-align: center;
  }
  header .header-menu .header-box .menu-box .menu-list-phone .menu-content .item-list .item .summary {
    font-size: 12px;
    text-align: center;
  }
  header .header-menu .header-box .menu-box .menu-list-phone .menu-content .item-list .item .imgBox {
    height: auto;
  }
  header .header-menu .header-box .menu-box .menu-list-phone .menu-content .item-list .item .news-img {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header .header-menu .header-box .menu-box .menu-list-phone .menu-content .item-list .item .news-title {
    text-align: center;
    font-size: 12px;
  }
  header .header-menu .header-box .menu-box .menu-list-phone .menu-content .item-list .item .second-item-support-link a {
    display: block;
    color: #666;
    font-size: 12px;
    margin-top: 10px;
  }
  header .information {
    margin-top: 0;
    margin-left: 20px;
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  .phone-search-click {
    position: fixed;
    top: 0;
    right: calc(5% + 50px);
    display: flex;
    bottom: 0;
    align-items: center;
    width: 20px;
    z-index: 100;
    cursor: pointer;
    height: 80px;
  }
}
/*放大镜*/
div.zoomDiv {
  z-index: 99;
  position: absolute;
  top: 0;
  left: 0;
  background: #ffffff;
  border: 1px solid #CCCCCC;
  display: none;
  text-align: center;
  overflow: hidden;
}
@media screen and (max-width: 1600px) {
}
div.zoomDiv img {
  max-width: inherit;
}
div.zoomMask {
  position: absolute;
  background: rgba(0, 0, 0, 0.2);
  cursor: move;
  z-index: 1;
}
/*# sourceMappingURL=index.css.map */