@charset "utf-8";
/*根元素代码*/
:root {
  /*--dominant-color:#3a93bd;*/
  --dominant-color: #dab866;
  /*--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-top {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .header-top {
    display: none;
  }
}
.header-top .top-tel {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-top .top-tel .item {
  padding-left: 50px;
  margin-left: 40px;
}
.header-top .top-tel .item .key {
  font-size: 14px;
}
.header-top .top-tel .item .value {
  font-size: 32px;
  font-weight: 600;
  color: var(--dominant-color);
  line-height: 1;
}
header {
  width: 100%;
  z-index: 11;
  transition: all 0.5s;
  position: sticky;
  top: 0;
  background: var(--dominant-color);
  height: 60px;
}
header.z-active {
  z-index: 99;
}
@media screen and (max-width: 1024px) {
  header {
    height: 60px;
  }
}
header .header-phone-click {
  cursor: pointer;
  width: 22px;
  height: 16px;
  align-items: center;
  position: relative;
  right: 5%;
}
@media screen and (max-width: 1024px) {
  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: 1024px) {
  header .header-box {
    width: 100%;
    max-width: 100%;
  }
}
header .header-box .logo {
  max-width: 180px;
  height: 60px;
  display: none;
}
@media screen and (max-width: 1024px) {
  header .header-box .logo {
    width: 100%;
    margin-left: 5%;
    justify-content: flex-start;
    max-width: 120px;
    height: 60px;
    display: flex;
    filter: grayscale(0) brightness(10);
  }
}
header .header-box .logo img {
  max-width: inherit;
  max-height: 100%;
  object-fit: contain;
  width: 100%;
}
header .header-box .header-menu {
  flex-basis: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  /*导航*/
  /*导航*/
  /*搜索*/
  /*搜索*/
  /*语言*/
  /*语言*/
}
header .header-box .header-menu .header-code {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 20px;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu .header-code {
    display: none;
  }
}
header .header-box .header-menu .header-code .item {
  width: 30px;
  position: relative;
  margin-left: 20px;
}
header .header-box .header-menu .header-code .item .code-show {
  width: 150px;
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  z-index: 2;
}
header .header-box .header-menu .header-code .item:hover .code-show {
  display: block;
}
@media screen and (max-width: 1440px) {
  header .header-box .header-menu {
    justify-content: flex-end;
  }
}
@media screen and (max-width: 1024px) {
  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: flex-end;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  header .header-box .header-menu nav {
    margin-left: auto;
    margin-right: 0;
  }
}
@media screen and (max-width: 1024px) {
  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 {
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
  flex: 1;
}
header .header-box .header-menu nav .first-item::after {
  content: '';
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  height: 100%;
  margin: auto;
  background: rgba(255, 255, 255, 0.2);
  position: absolute;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item::after {
    display: none;
  }
}
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) {
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1024px) {
  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;
    margin-left: 0;
  }
}
header .header-box .header-menu nav .first-item.active .first-item-title {
  color: #000;
}
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: #fff;
  transition: all 0.2s;
  width: 100%;
  padding: 5px 0;
}
@media screen and (max-width: 1366px) {
  header .header-box .header-menu nav .first-item .first-item-title {
    font-size: 16px;
  }
}
@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: 1024px) {
  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 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: 60px;
  -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: flex-start;
  pointer-events: none;
  flex-direction: column;
  background: var(--dominant-color);
  /*特殊*/
}
@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 {
  position: relative;
  width: 100%;
}
@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: #fff;
  display: block;
  font-size: 14px;
  transition: all 0.2s;
  text-align: center;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@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-item .second-item-title:hover {
  background: #ceac5b;
  color: #fff;
}
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: 1025px) {
  header .header-box .header-menu nav .first-item:hover::after {
    background: var(--dominant-color);
  }
  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 nav .first-item:hover {
  background: #ceac5b;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item:hover {
    background: none;
  }
}
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: 140px;
  height: 40px;
  background: #fff;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 30px;
}
@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: #000;
  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;
}
@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: 50px;
  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;
  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: 30px 0;
  background: #3a3a3a;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 30px 0;
  }
}
.footer .footer-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.footer .footer-menu {
  display: flex;
  justify-content: space-between;
  flex-basis: 100%;
}
@media screen and (max-width: 768px) {
  .footer .footer-menu {
    flex-direction: column;
  }
}
.footer .footer-menu .item:last-child .first-item {
  border-bottom: none;
  padding-bottom: 0;
}
.footer .footer-menu .item:nth-last-child(1) .first-item,
.footer .footer-menu .item:nth-last-child(2) .first-item {
  pointer-events: none;
}
.footer .footer-menu .item:nth-last-child(1) .first-item::before,
.footer .footer-menu .item:nth-last-child(2) .first-item::before,
.footer .footer-menu .item:nth-last-child(1) .first-item::after,
.footer .footer-menu .item:nth-last-child(2) .first-item::after {
  display: none;
}
.footer .footer-menu .tel {
  font-size: 18px;
  color: var(--dominant-color);
  font-weight: 600;
  margin-top: 6px;
}
.footer .footer-menu .first-item {
  display: block;
  font-size: 16px;
  color: #ddd;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer .footer-menu .first-item {
    font-size: 14px;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
  .footer .footer-menu .first-item::before,
  .footer .footer-menu .first-item::after {
    content: '';
    position: absolute;
    margin: auto;
    background: #fff;
  }
  .footer .footer-menu .first-item::before {
    width: 1px;
    height: 16px;
    right: 8px;
    top: 2px;
  }
  .footer .footer-menu .first-item::after {
    width: 16px;
    height: 1px;
    right: 0;
    top: 10px;
  }
}
.footer .footer-menu .second-box {
  margin-top: 20px;
}
.footer .footer-menu .second-box img {
  max-width: 120px;
}
@media screen and (max-width: 768px) {
  .footer .footer-menu .second-box {
    margin-top: 10px;
    line-height: 1.6;
    display: none;
  }
}
.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-right {
  flex-basis: 350px;
  display: flex;
  align-items: center;
  color: #fff;
  margin-left: auto;
  justify-content: space-between;
}
@media screen and (max-width: 1280px) {
  .footer .footer-right {
    display: none;
  }
}
.footer .footer-right .tel {
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .footer .footer-right .tel {
    font-size: 14px;
  }
}
.footer .footer-text {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  flex-basis: 100%;
}
@media screen and (max-width: 768px) {
  .footer .footer-text {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 30px;
  }
}
.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;
  }
}
.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.2);
  margin-top: 20px;
  padding-top: 20px;
  color: #666768;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer .footer-text .footer-copyright {
    margin-top: 0;
    padding-top: 0;
    border: none;
    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: 50px 0;
}
@media screen and (max-width: 768px) {
  .index-padding {
    padding: 30px 0;
  }
}
.index-padding-bottom {
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .index-padding-bottom {
    padding-bottom: 50px;
  }
}
.index-title {
  text-align: center;
  margin-bottom: 38px;
  color: var(--dominant-color);
}
@media screen and (max-width: 768px) {
  .index-title {
    margin-bottom: 20px;
  }
}
.index-title.textL {
  text-align: left;
}
.index-title.textL .line {
  margin-left: 0;
}
.index-title.colorW {
  color: #fff;
}
.index-title .title {
  font-weight: 600;
  line-height: 1;
  font-size: 40px;
}
@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 .tip {
  font-size: 22px;
  margin-top: 6px;
  font-weight: 600;
}
.index-title .tip span {
  color: #faf332;
}
.index-title .summary {
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 10px;
  line-height: 2;
  color: #696969;
}
@media screen and (max-width: 768px) {
  .index-title .summary {
    font-size: 12px;
  }
}
.index-title .line {
  width: 40px;
  height: 3px;
  background: var(--dominant-color);
  margin: auto;
}
.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);
}
/*首页*/
/*轮播*/
.banner {
  width: 100%;
}
.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;
  transform: translateY(100px);
  opacity: 0;
  width: 100%;
  line-height: 1.4;
  color: #fff;
}
@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;
}
.banner .swiper-banner .text .banner-more .f-more:hover {
  border-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: 10px;
  width: 90%;
  max-width: 1720px;
  margin: auto;
  left: 0;
  right: 0;
}
.banner .swiper-banner .swiper-pagination-bullet {
  --swiper-pagination-bullet-inactive-color: transparent;
  opacity: 0.8;
  --swiper-pagination-bullet-width: 15px;
  --swiper-pagination-bullet-height: 15px;
  --swiper-pagination-bullet-horizontal-gap: 5px;
  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);
}
.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;
}
@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);
}
/*板块一*/
.index1 {
  max-width: 1380px;
}
.index1 .index1-box-menu {
  display: flex;
  grid-gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .index1 .index1-box-menu {
    grid-gap: 10px;
  }
}
.index1 .index1-box-menu a {
  border: 1px solid #ddd;
  border-radius: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
  color: #666;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
}
@media screen and (max-width: 1024px) {
  .index1 .index1-box-menu a {
    width: 47%;
  }
}
.index1 .index1-box-menu a:hover {
  background-color: #dab866;
  border: 1px solid #dab866;
  color: #fff;
}
.index1 .index1-box {
  overflow: hidden;
  position: relative;
}
.index1 .index1-box .swiper {
  width: calc(100% - 100px);
  position: initial;
}
.index1 .index1-box .swiper .swiper-slide {
  border: 1px solid #eee;
}
.index1 .index1-box .swiper .swiper-slide .text {
  display: block;
  color: #333;
  font-size: 16px;
  background: #f7f7f7;
  margin-top: 0;
  padding: 0 20px;
  line-height: 40px;
  overflow: hidden;
  transition: all 0.5s ease;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .index1 .index1-box .swiper .swiper-slide .text {
    font-size: 14px;
  }
}
.index1 .index1-box .swiper .swiper-slide .img {
  position: relative;
  overflow: hidden;
}
.index1 .index1-box .swiper .swiper-slide .content {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .index1 .index1-box .swiper .swiper-slide .content {
    display: none;
  }
}
.index1 .index1-box .swiper .swiper-slide .content .title {
  margin-top: 10%;
  margin-bottom: 5%;
  font-size: 16px;
  padding-left: 20%;
  color: #fff;
  position: relative;
}
.index1 .index1-box .swiper .swiper-slide .content .title::after {
  content: '';
  position: absolute;
  left: 5%;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  width: 10%;
  height: 2px;
  background: #fff;
}
.index1 .index1-box .swiper .swiper-slide .content .summary {
  padding: 0 20%;
  color: #fff;
  height: 6rem;
  line-height: 1.5rem;
  overflow: hidden;
}
.index1 .index1-box .swiper .swiper-slide:hover .content {
  top: 0;
}
.index1 .index1-box .swiper .swiper-slide:hover .text {
  background: var(--dominant-color);
  color: #fff;
}
.index1 .index1-box .swiper .swiper-button-prev {
  left: 0;
}
.index1 .index1-box .swiper .swiper-button-next {
  right: 0;
}
.index1 .index1-box .swiper .swiper-button-prev,
.index1 .index1-box .swiper .swiper-button-next {
  border-radius: 0;
  border: 1px solid #eee;
  width: 40px;
  height: 60px;
}
.index1 .index1-box .swiper .swiper-button-prev::after,
.index1 .index1-box .swiper .swiper-button-next::after {
  color: #999;
}
.index1 .index1-box .swiper .swiper-button-prev:hover,
.index1 .index1-box .swiper .swiper-button-next:hover {
  background: var(--dominant-color);
}
.index1 .index1-box .swiper .swiper-button-prev:hover::after,
.index1 .index1-box .swiper .swiper-button-next:hover::after {
  color: #fff;
}
.index2 .index2-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 15px;
}
@media screen and (max-width: 768px) {
  .index2 .index2-box {
    grid-template-columns: repeat(2, 1fr);
  }
}
.index2 .index2-box .item {
  background: #fff;
  transition: all 0.5s;
}
.index2 .index2-box .item .imgBox {
  padding-bottom: 75%;
}
.index2 .index2-box .item .text {
  padding: 20px;
  text-align: center;
}
.index2 .index2-box .item .text .title {
  font-size: 18px;
}
.index2 .index2-box .item .text .summary {
  color: #999;
  line-height: 1.6;
}
.index2 .index2-box .item .text .more {
  border: 1px solid #eee;
  color: #999;
  width: 120px;
  margin: 20px auto 0;
  padding: 6px 20px;
}
.index2 .index2-box .item:hover {
  box-shadow: 0 3px 15px 2px rgba(0, 0, 0, 0.2);
  margin-top: -10px;
  background: var(--dominant-color);
}
.index2 .index2-box .item:hover .text .title {
  color: #fff;
}
.index2 .index2-box .item:hover .text .summary {
  color: #fff;
}
.index2 .index2-box .item:hover .text .more {
  color: #fff;
  border-color: #fff;
}
@media screen and (max-width: 1440px) {
  .index3 {
    padding-bottom: 50px !important;
  }
}
.index3 .index3-box {
  text-align: center;
}
.index3 .index3-box .mid-img {
  margin: auto;
  width: fit-content;
  position: relative;
}
.index3 .index3-box .mid-img .img2 {
  position: absolute;
  bottom: -200px;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 1440px) {
  .index3 .index3-box .mid-img .img2 {
    width: 45%;
  }
}
.index3 .index3-box .mid-img .mid-text {
  position: absolute;
  z-index: 2;
  max-width: 240px;
  text-align: left;
}
@media screen and (max-width: 1440px) {
  .index3 .index3-box .mid-img .mid-text {
    max-width: 180px;
  }
}
@media screen and (max-width: 768px) {
  .index3 .index3-box .mid-img .mid-text {
    position: initial;
    display: flex;
    align-items: center;
    max-width: 100% !important;
    border-bottom: 1px solid #d3d3d3;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .index3 .index3-box .mid-img .mid-text .left {
    margin-right: 10px;
  }
}
.index3 .index3-box .mid-img .mid-text .title {
  font-size: 24px;
  color: var(--dominant-color);
  font-weight: 600;
}
@media screen and (max-width: 1440px) {
  .index3 .index3-box .mid-img .mid-text .title {
    font-size: 18px;
  }
}
.index3 .index3-box .mid-img .mid-text .summary {
  color: #696969;
}
@media screen and (max-width: 1440px) {
  .index3 .index3-box .mid-img .mid-text .summary {
    font-size: 12px;
  }
}
.index3 .index3-box .mid-img .mid-text1 {
  left: 5%;
  bottom: 10%;
  max-width: 220px;
}
@media screen and (max-width: 1440px) {
  .index3 .index3-box .mid-img .mid-text1 {
    max-width: 180px;
  }
}
.index3 .index3-box .mid-img .mid-text2 {
  left: 25%;
  top: 15%;
}
.index3 .index3-box .mid-img .mid-text3 {
  right: 25%;
  top: 15%;
}
.index3 .index3-box .mid-img .mid-text4 {
  right: 5%;
  bottom: 10%;
  max-width: 220px;
}
@media screen and (max-width: 1440px) {
  .index3 .index3-box .mid-img .mid-text4 {
    max-width: 180px;
  }
}
.index3 .index3-bottom {
  background: var(--dominant-color);
}
.index3 .index3-bottom .section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  height: 150px;
}
.index3 .index3-bottom .section .key {
  font-size: 20px;
}
.index3 .index3-bottom .section .value {
  font-size: 16px;
}
.index4 {
  margin-top: 100px;
}
@media screen and (max-width: 1440px) {
  .index4 {
    margin-top: 30px;
  }
}
.index4 .index4-box img {
  width: 100%;
}
.index5 {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .index5 {
    padding: 50px 0;
  }
}
.index5 .index5-box {
  max-width: 1480px;
  display: flex;
  grid-gap: 40px;
}
@media screen and (max-width: 768px) {
  .index5 .index5-box {
    flex-direction: column;
  }
}
.index5 .index5-box .item {
  flex: 1;
}
.index5 .index5-box .item .m-summary {
  color: #595959;
}
.index5 .index5-box .item .m-bottom {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  margin-top: 20px;
  color: #696969;
}
.index5 .index5-box .item .m-bottom .m-item img {
  transition: all 0.5s;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .index5 .index5-box .item .m-bottom .m-item img {
    width: 60%;
  }
}
.index5 .index5-box .item .m-bottom .m-item:hover img {
  transform: rotateY(180deg);
}
.index5 .index5-number {
  display: flex;
  max-width: 1480px;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .index5 .index5-number {
    flex-wrap: wrap;
  }
}
.index5 .index5-number .item {
  position: relative;
  border-left: 1px solid #ccc;
  padding-left: 2vw;
  flex-basis: 25%;
  color: #696969;
}
@media screen and (max-width: 768px) {
  .index5 .index5-number .item {
    flex-basis: 50%;
    margin-bottom: 20px;
  }
}
.index5 .index5-number .item .num {
  color: var(--dominant-color);
}
.index5 .index5-number .item .num span {
  font-size: 40px;
  font-weight: 600;
  color: #000;
}
@media screen and (max-width: 768px) {
  .index5 .index5-number .item .num span {
    font-size: 20px;
  }
}
.index5 .index5-number .item:after {
  content: '';
  position: absolute;
  left: -1px;
  top: 0;
  width: 2px;
  height: 30px;
  background: #ceac5b;
  z-index: 1;
}
.index6 .index6-box .tab {
  display: flex;
  align-items: center;
  justify-content: center;
}
.index6 .index6-box .tab .item {
  border-radius: 20px;
  border: 1px solid #ccc;
  color: #696969;
  padding: 6px 40px;
  margin: 0 10px;
}
.index6 .index6-box .tab .item.active {
  background: var(--dominant-color);
  color: #fff;
}
.index6 .index6-box .tab-show {
  margin-top: 40px;
}
.index6 .index6-box .tab-show .items {
  display: none;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .index6 .index6-box .tab-show .items {
    flex-direction: column;
  }
}
.index6 .index6-box .tab-show .items.active {
  display: flex;
}
.index6 .index6-box .tab-show .items .left {
  flex-basis: 40%;
}
.index6 .index6-box .tab-show .items .left .item {
  background: #fff;
}
.index6 .index6-box .tab-show .items .left .item .text {
  padding: 10px 0;
}
.index6 .index6-box .tab-show .items .left .item .text .title {
  font-size: 16px;
}
.index6 .index6-box .tab-show .items .left .item .text .summary {
  margin-top: 6px;
  color: #696969;
}
.index6 .index6-box .tab-show .items .right {
  flex-basis: 55%;
}
@media screen and (max-width: 768px) {
  .index6 .index6-box .tab-show .items .right {
    margin-top: 20px;
  }
}
.index6 .index6-box .tab-show .items .right .item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eee;
}
.index6 .index6-box .tab-show .items .right .item:first-child {
  border-top: 1px solid #eee;
}
.index6 .index6-box .tab-show .items .right .item .time {
  padding: 30px 0;
  flex-basis: 120px;
  text-align: center;
  color: #696969;
  border-right: 1px solid #eee;
}
@media screen and (max-width: 768px) {
  .index6 .index6-box .tab-show .items .right .item .time {
    flex-basis: 70px;
  }
}
.index6 .index6-box .tab-show .items .right .item .time .day {
  font-size: 40px;
  line-height: 1.2;
  color: #888;
}
@media screen and (max-width: 768px) {
  .index6 .index6-box .tab-show .items .right .item .time .day {
    font-size: 20px;
  }
}
.index6 .index6-box .tab-show .items .right .item .text {
  flex: 1;
  padding-left: 30px;
  color: #696969;
}
.index6 .index6-box .tab-show .items .right .item .text .title {
  font-size: 16px;
}
.index6 .index6-box .tab-show .items .right .item .text .summary {
  margin-top: 10px;
}
.index7 .index7-box {
  display: flex;
  background: #eee;
}
@media screen and (max-width: 768px) {
  .index7 .index7-box {
    flex-direction: column;
  }
}
.index7 .index7-box .text {
  flex-basis: 30%;
  background: var(--dominant-color);
  color: #fff;
  padding: 20px;
}
.index7 .index7-box .text .title {
  font-size: 18px;
}
.index7 .index7-box .text .img {
  margin-top: 20px;
  max-width: 140px;
  text-align: center;
}
.index7 .index7-box .text .img img {
  margin-bottom: 10px;
}
.index7 .index7-box .messages {
  flex-basis: 40%;
  padding: 20px;
  margin-top: 0;
}
.index7 .index7-box .messages span {
  margin-bottom: 10px;
  display: block;
  color: #696969;
  font-size: 16px;
}
.index7 .index7-box .map {
  flex-basis: 30%;
}
.index8 {
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  .index8 {
    padding: 20px 0 40px;
  }
}
.index8 .section {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .index8 .section {
    flex-direction: column;
    align-items: flex-start;
  }
}
.index8 .text {
  color: #fff;
}
.index8 .text .title {
  font-size: 32px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .index8 .text .title {
    font-size: 18px;
  }
}
.index8 .text .summary {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .index8 .text .summary {
    font-size: 14px;
  }
}
.index8 .form {
  flex-basis: 45%;
}
@media screen and (max-width: 768px) {
  .index8 .form {
    flex-basis: 100%;
    margin-top: 30px;
    width: 100%;
  }
}
.index8 .form label button {
  color: #fff;
  background-color: #f6ac1d;
  right: 5px;
  height: 40px;
  border-radius: 30px;
  top: 5px;
  width: 100px;
  font-size: 18px;
}
.form1 label {
  display: block;
  position: relative;
  overflow: hidden;
}
.form1 label input {
  width: 100%;
  border-radius: 30px;
  background: #fff;
  height: 50px;
  text-indent: 20px;
  border: none;
}
.form1 label button {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  right: 0;
}
.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;
  position: relative;
}
.page-title.textC {
  text-align: center;
}
.page-title.colorW {
  color: #fff;
}
.page-title .title {
  line-height: 2.4;
  font-size: 24px;
  color: var(--dominant-color);
  display: inline-block;
  position: relative;
}
.page-title .title::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 4px;
  bottom: 0;
  left: 0;
  background: var(--dominant-color);
  z-index: 2;
}
@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: 350px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .pageBanner {
    height: 200px;
  }
  .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;
}
@keyframes sizing {
  0%,
  100% {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
}
/*内页侧边栏*/
/*内页导航*/
.page-menu {
  width: 100%;
}
.page-menu .top-title {
  font-size: 20px;
  background: var(--dominant-color);
  position: relative;
  color: #fff;
  padding: 20px 30px;
  border-radius: 10px 10px 0 0;
  line-height: 1.2;
}
.page-menu .top-title span {
  font-size: 16px;
}
.page-menu .top-title .img {
  width: 100px;
  position: absolute;
  right: 0;
  bottom: -20px;
  z-index: -1;
  animation: sizing 1s infinite linear;
}
.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;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .page-menu .menu-box {
    display: none;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .page-menu {
    flex-direction: column;
    font-size: 14px;
    height: auto;
    margin-bottom: 20px;
  }
}
.page-menu .first-menu {
  width: 100%;
  position: relative;
  background: #fff;
}
.page-menu .first-menu.active span {
  background: #15808f;
}
.page-menu .first-menu.active span .f-title {
  color: #fff;
}
.page-menu .first-menu.active span i::before,
.page-menu .first-menu.active span i::after {
  background: #fff;
}
.page-menu .first-menu span {
  position: relative;
  width: 100%;
}
.page-menu .first-menu span i {
  position: absolute;
  top: 0;
  bottom: 0;
  font-size: 12px;
  transition: all 0.5s;
  border-radius: 50%;
  width: 50px;
  height: 100%;
  display: flex;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
}
.page-menu .first-menu span i::before,
.page-menu .first-menu span i::after {
  content: '';
  position: absolute;
  background: #000;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.page-menu .first-menu span i::before {
  width: 14px;
  height: 2px;
}
.page-menu .first-menu span i::after {
  height: 14px;
  width: 2px;
}
.page-menu .first-menu span:hover i::before,
.page-menu .first-menu span:hover i::after {
  background: #fff;
}
.page-menu .first-menu span:hover .f-title {
  background: #ed941e;
  color: #fff;
}
.page-menu .first-menu .f-title {
  font-size: 14px;
  position: relative;
  color: #707070;
  text-align: left;
  justify-content: flex-start;
  display: flex;
  align-items: center;
  padding: 15px 30px;
  border: 1px solid #e8e8e8;
  border-top: none;
  line-height: 1.4;
  transition: all 0.5s;
}
@media screen and (max-width: 1280px) {
  .page-menu .first-menu .f-title {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .page-menu .first-menu .f-title {
    padding: 0;
    height: 40px;
    line-height: 40px;
    text-align: center;
    justify-content: center;
  }
}
.page-menu .first-menu .f-title.active,
.page-menu .first-menu .f-title:hover {
  background: rgba(218, 184, 102, 0.2);
}
.page-menu .first-menu .f-title.active::after,
.page-menu .first-menu .f-title:hover::after {
  width: 100%;
}
.page-menu .first-menu .s-box {
  display: none;
}
.page-menu .first-menu .s-box a {
  font-size: 16px;
  text-align: left;
  justify-content: flex-start;
  background: #fff;
  border: 1px solid #ddd;
  width: 100%;
  padding: 15px 40px;
  display: block;
}
.page-menu .first-menu .s-box a::after {
  display: none;
}
.page-menu .first-menu .s-box a:hover {
  background: #ed941e;
  color: #fff;
}
@media screen and (max-width: 1600px) {
  .page-menu .first-menu .s-box a {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .page-menu .first-menu .s-box a {
    font-size: 12px;
    height: 40px;
    text-align: center;
    justify-content: center;
    line-height: 40px;
    padding: 0;
  }
}
/*面包屑*/
.location {
  display: flex;
  align-items: center;
  color: #666;
  flex-wrap: wrap;
}
.location i {
  color: var(--dominant-color);
}
@media screen and (max-width: 768px) {
  .location {
    display: none;
  }
}
.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: 30px;
}
.pager a {
  width: 40px;
  height: 40px;
  margin: 0 6px;
  border: 1px solid #ddd;
  border-radius: 50%;
  color: #6e6e6e;
  transition: all 0.5s;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
@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;
  position: relative;
}
.page-box .left .fadeImg {
  display: none;
}
@media screen and (max-width: 768px) {
  .page-box .left .fadeImg {
    display: none !important;
  }
}
@media screen and (max-width: 1280px) {
  .page-box .left {
    width: 180px;
  }
}
@media screen and (max-width: 768px) {
  .page-box .left {
    width: 100%;
  }
}
.page-box .right {
  width: calc(100% - 220px - 5%);
}
@media screen and (max-width: 1280px) {
  .page-box .right {
    width: calc(100% - 220px);
  }
}
@media screen and (max-width: 768px) {
  .page-box .right {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .page-box .right .right-content {
    padding: 10px;
  }
}
/*地图*/
#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;
}
/*新闻资讯*/
.news .news-box .item {
  padding: 20px 40px 20px 20px;
  display: flex;
  justify-content: space-between;
  transition: all 0.5s;
  background: #fff;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .news .news-box .item {
    flex-direction: column;
    margin-bottom: 20px;
    padding: 0 0 15px;
  }
}
.news .news-box .item .img {
  flex-basis: calc(200 / 1200 * 100%);
}
@media screen and (max-width: 1024px) {
  .news .news-box .item .img {
    flex-basis: calc(400 / 1200 * 100%);
  }
}
.news .news-box .item .img .imgBox {
  padding-bottom: calc(220 / 340 * 100%);
}
@media screen and (max-width: 500px) {
  .news .news-box .item .img .imgBox {
    padding-bottom: calc(240 / 450 * 100%);
  }
}
.news .news-box .item .text {
  padding-top: 20px;
  flex: 1;
  margin-left: 40px;
  font-size: 14px;
  color: #666;
}
@media screen and (max-width: 1366px) {
  .news .news-box .item .text {
    padding-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .news .news-box .item .text {
    margin-top: 10px;
    margin-left: 0;
    padding: 10px;
  }
}
.news .news-box .item .text .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .news .news-box .item .text .top {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}
.news .news-box .item .text .top .time {
  font-size: 18px;
  color: #999;
}
@media screen and (max-width: 768px) {
  .news .news-box .item .text .top .time {
    font-size: 14px;
  }
}
.news .news-box .item .text .title {
  font-size: 18px;
  color: #222;
  transition: all 0.5s;
  width: fit-content;
  margin-bottom: 10px;
}
@media screen and (max-width: 1600px) {
}
@media screen and (max-width: 768px) {
  .news .news-box .item .text .title {
    font-size: 16px;
    line-height: 1.4;
  }
}
.news .news-box .item .text .summary {
  font-size: 14px;
  line-height: 1.4;
}
@media screen and (max-width: 1600px) {
}
@media screen and (max-width: 768px) {
  .news .news-box .item .text .summary {
    font-size: 12px;
    line-height: 1.4;
  }
}
.news .news-box .item .text .more {
  padding: 5px 20px;
  border-radius: 30px;
  border: 1px solid #d5d5d5;
  margin-right: 0;
  margin-left: auto;
  width: 100px;
  text-align: center;
  transition: all 0.5s;
  margin-top: 10px;
}
.news .news-box .item:hover .title {
  color: var(--dominant-color);
}
.news .news-box .item:hover .more {
  background: var(--dominant-color);
  border-color: var(--dominant-color);
  color: #fff;
}
/*新闻详情*/
.news-detail {
  padding: 30px;
  background: #fff;
  /*返回页*/
}
@media screen and (max-width: 768px) {
  .news-detail {
    padding: 30px 0;
  }
}
.news-detail .news-text .title {
  font-size: 24px;
  text-align: center;
  line-height: 1.4;
  font-family: HarmonyOS_Sans_SC_Medium;
}
@media screen and (max-width: 1366px) {
  .news-detail .news-text .title {
    font-size: 26px;
  }
}
@media screen and (max-width: 768px) {
  .news-detail .news-text .title {
    font-size: 20px;
  }
}
.news-detail .news-text .mid {
  display: flex;
  align-items: center;
  margin: 10px 0;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .news-detail .news-text .mid {
    margin: 4px 0;
  }
}
.news-detail .news-text .mid .m-item {
  display: flex;
  align-items: center;
  color: #999;
  margin-right: 20px;
  padding-right: 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .news-detail .news-text .mid .m-item {
    margin-right: 10px;
    padding-right: 10px;
    font-size: 12px;
  }
}
.news-detail .news-text .mid .m-item::after {
  content: '';
  position: absolute;
  background: #999;
  width: 1px;
  height: 14px;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  opacity: 0.6;
}
.news-detail .news-text .mid .m-item:last-child::after {
  display: none;
}
.news-detail .news-text .mid .m-item .m-img {
  margin-right: 10px;
  margin-bottom: 3px;
}
.news-detail .news-detail-box {
  margin: 30px 0;
  padding: 40px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  min-height: 300px;
}
@media screen and (max-width: 768px) {
  .news-detail .news-detail-box {
    margin: 10px 0 30px;
    padding: 10px 0 20px;
  }
  .news-detail .news-detail-box p,
  .news-detail .news-detail-box span,
  .news-detail .news-detail-box div {
    font-size: 14px !important;
  }
}
.news-detail .news-detail-box img {
  max-width: 100% !important;
  height: auto !important;
  margin: 10px auto;
}
.news-detail .details-pager {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .news-detail .details-pager {
    flex-direction: column-reverse;
  }
}
.news-detail .details-pager .left {
  flex-basis: 70%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .news-detail .details-pager .left {
    margin-top: 40px;
    flex-basis: 100%;
    width: 100%;
  }
}
.news-detail .details-pager .left a {
  font-size: 16px;
  display: inline-block;
  margin: 6px 0;
  color: #666;
  transition: all 0.5s;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .news-detail .details-pager .left a {
    margin: 5px 0;
    font-size: 14px;
    width: 100%;
    text-align: left;
  }
}
.news-detail .details-pager .left a:hover {
  color: #222;
}
.news-detail .details-pager .back {
  background: var(--dominant-color);
  border-radius: 50px;
  width: 150px;
  height: 48px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .news-detail .details-pager .back {
    width: 100%;
    height: 40px;
  }
}
.news-detail .details-pager .back img {
  margin-left: 20px;
}
/*联系我们*/
.contact .contact-title {
  color: #000;
  font-size: 36px;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 1600px) {
  .contact .contact-title {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .contact .contact-title {
    font-size: 18px;
  }
}
.contact .contact-box {
  padding: 30px;
  background: #fff;
}
.contact .contact-box1 {
  display: flex;
}
@media screen and (max-width: 768px) {
  .contact .contact-box1 {
    flex-direction: column;
  }
}
.contact .contact-box1 .left {
  flex-basis: 40%;
  color: #000;
  padding-right: 30px;
}
.contact .contact-box1 .left .title {
  font-size: 24px;
  font-weight: 600;
  color: var(--dominant-color);
  margin-bottom: 6px;
}
@media screen and (max-width: 768px) {
  .contact .contact-box1 .left .title {
    font-size: 18px;
  }
}
.contact .contact-box1 .left .summary {
  font-size: 14px;
  line-height: 2;
  color: #888;
}
@media screen and (max-width: 768px) {
  .contact .contact-box1 .left .summary {
    font-size: 14px;
  }
}
.contact .contact-box1 .left .summary img {
  width: 120px;
  margin-top: 20px;
}
.contact .contact-box1 .right {
  flex-basis: 60%;
}
@media screen and (max-width: 768px) {
  .contact .contact-box1 .right {
    margin-top: 50px;
  }
}
/*关于我们*/
.about {
  z-index: 2;
  position: relative;
  padding: 50px 0;
  /*关于我们*/
}
.about .about1 {
  background: #fff;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .about .about1 {
    padding: 20px;
  }
}
.about .about1 .top {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .about .about1 .top {
    flex-direction: column;
  }
}
.about .about1 .top .left {
  flex-basis: 50%;
}
.about .about1 .top .left .img {
  position: relative;
}
.about .about1 .top .left .img img {
  width: 70%;
}
.about .about1 .top .left .img .title {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  color: var(--dominant-color);
  font-weight: 600;
  font-size: 34px;
}
@media screen and (max-width: 768px) {
  .about .about1 .top .left .img .title {
    font-size: 20px;
  }
}
.about .about1 .top .left .img .title span {
  font-size: 14px;
  font-weight: 400;
  display: block;
  color: #888;
  line-height: 1;
}
.about .about1 .top .left .summary {
  color: #888;
  line-height: 2;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .about .about1 .top .left .summary {
    margin-top: 20px !important;
  }
}
.about .about1 .top .right {
  flex-basis: 45%;
}
.about .about1 .number {
  display: flex;
  margin: 40px 0 20px;
}
@media screen and (max-width: 768px) {
  .about .about1 .number {
    flex-wrap: wrap;
  }
}
.about .about1 .number .item {
  flex-basis: 25%;
  text-align: center;
  border-left: 1px solid #eee;
}
@media screen and (max-width: 768px) {
  .about .about1 .number .item {
    flex-basis: 50%;
    margin-bottom: 20px;
    padding: 0 20px;
    border: none ;
  }
}
.about .about1 .number .item:last-child {
  border-right: 1px solid #eee;
}
.about .about1 .number .item .num {
  color: var(--dominant-color);
}
.about .about1 .number .item .num span {
  font-size: 30px;
}
@media screen and (max-width: 768px) {
  .about .about1 .number .item .num span {
    font-size: 18px;
  }
}
.about .about1 .number .item .summary {
  color: #888;
}
.about .about2 {
  margin-top: 40px;
  background: #fff;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .about .about2 {
    padding: 20px;
  }
}
.about .about2 .title {
  font-size: 26px;
  font-weight: 600;
  color: var(--dominant-color);
}
@media screen and (max-width: 768px) {
  .about .about2 .title {
    font-size: 20px;
  }
}
.about .about2 .title span {
  font-size: 20px;
  color: #333;
}
.about .about2 .summary {
  color: #888;
  margin-top: 10px;
  margin-bottom: 40px;
}
.about .about2 .about2-box2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}
@media screen and (max-width: 768px) {
  .about .about2 .about2-box2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.about .about2 .about2-box2 .text {
  text-align: center;
  padding: 10px;
  color: #888;
  transition: all 0.5s;
}
.about .about2 .about2-box2 .item {
  transition: all 0.5s;
}
.about .about2 .about2-box2 .item:hover {
  background-color: #dab866;
  box-shadow: 0 3px 15px 2px rgba(0, 0, 0, 0.2);
  margin-top: -10px;
}
.about .about2 .about2-box2 .item:hover .text {
  color: #fff;
}
.about .about2 .about2-box3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}
@media screen and (max-width: 768px) {
  .about .about2 .about2-box3 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.about .about2 .about2-box3 .text {
  text-align: center;
  padding: 10px;
  color: #888;
  transition: all 0.5s;
}
.about .about2 .about2-box3 .item {
  transition: all 0.5s;
  background: #f7f7f7;
}
.about .about2 .about2-box3 .item .title {
  font-size: 16px;
  color: #333;
  margin-top: 6px;
}
.about .about3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}
@media screen and (max-width: 768px) {
  .about .about3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.about .about3 .item {
  background: #fff;
  padding: 20px;
}
.about .about3 .item .imgBox {
  padding-bottom: 75%;
}
.about .about3 .item .title {
  text-align: center;
  margin-top: 10px;
}
/*connect*/
.connect-box {
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.03);
  display: flex;
  height: 560px;
}
@media screen and (max-width: 768px) {
  .connect-box {
    height: auto;
    flex-direction: column;
    box-shadow: none;
  }
}
.connect-box .select {
  flex-basis: 210px;
  overflow: auto;
}
@media screen and (max-width: 1280px) {
  .connect-box .select {
    flex-basis: 180px;
  }
}
@media screen and (max-width: 768px) {
  .connect-box .select {
    box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.03);
  }
}
.connect-box .select .item {
  padding: 26px 30px;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  transition: all 0.5s;
}
@media screen and (max-width: 1280px) {
  .connect-box .select .item {
    padding: 26px 20px;
  }
}
@media screen and (max-width: 768px) {
  .connect-box .select .item {
    padding: 20px;
  }
}
.connect-box .select .item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 30px;
  background: #ddd;
  width: calc(100% - 60px);
  height: 1px;
  transition: all 0.5s;
}
@media screen and (max-width: 1280px) {
  .connect-box .select .item::after {
    left: 20px;
    width: calc(100% - 40px);
  }
}
.connect-box .select .item .icon {
  width: 24px;
  height: 24px;
  margin-right: 20px;
  opacity: 0.4;
  transition: all 0.5s;
}
@media screen and (max-width: 1280px) {
  .connect-box .select .item .icon {
    margin-right: 10px;
  }
}
.connect-box .select .item .title {
  font-size: 16px;
  color: #666;
}
@media screen and (max-width: 1280px) {
  .connect-box .select .item .title {
    font-size: 14px;
  }
}
.connect-box .select .item.active,
.connect-box .select .item:hover {
  background: var(--dominant-color);
}
.connect-box .select .item.active::after,
.connect-box .select .item:hover::after {
  background: var(--dominant-color);
}
.connect-box .select .item.active .title,
.connect-box .select .item:hover .title {
  color: #fff;
}
.connect-box .select .item.active .icon,
.connect-box .select .item:hover .icon {
  opacity: 1;
}
.connect-box .text {
  padding: 30px;
  flex-basis: calc(45% - 100px);
}
@media screen and (max-width: 1280px) {
  .connect-box .text {
    flex-basis: calc(45% - 70px);
  }
}
@media screen and (max-width: 768px) {
  .connect-box .text {
    box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.03);
    margin: 30px 0;
    padding: 20px;
  }
}
.connect-box .text .b-title {
  font-size: 28px;
  color: #222;
  font-family: HarmonyOS_Sans_SC_Medium;
  margin-bottom: 10px;
}
@media screen and (max-width: 1280px) {
  .connect-box .text .b-title {
    font-size: 20px;
  }
}
.connect-box .text .item {
  display: flex;
  border-top: 1px solid #ddd;
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  .connect-box .text .item {
    padding: 20px 0;
  }
}
.connect-box .text .item .icon {
  border-radius: 50%;
  background: var(--dominant-color);
  width: 48px;
  height: 48px;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .connect-box .text .item .icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    padding: 8px;
  }
}
.connect-box .text .item .icon i {
  color: #fff;
  font-size: 24px;
}
.connect-box .text .item .title {
  flex: 1;
}
.connect-box .text .item .title .sup {
  font-size: 18px;
}
@media screen and (max-width: 1280px) {
  .connect-box .text .item .title .sup {
    font-size: 16px;
  }
}
.connect-box .text .item .title .sub {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}
.connect-box .map {
  flex-basis: calc(55% - 110px);
}
.oem .oem1 .oem1-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .oem .oem1 .oem1-box {
    grid-template-columns: repeat(1, 1fr);
  }
}
.oem .oem1 .oem1-box .item {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 20px 0 #0000000a;
}
.oem .oem1 .oem1-box .item .img {
  width: 50px;
  height: 50px;
  margin: auto;
}
.oem .oem1 .oem1-box .item .text {
  margin-top: 10px;
}
.oem .oem1 .oem1-box .item .text .title {
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
}
.oem .oem1 .oem1-box .item .text .summary {
  color: #888;
  margin-top: 10px;
}
.oem .oem1 .oem1-box2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .oem .oem1 .oem1-box2 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.oem .oem1 .oem1-box2 .item {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 20px 0 #0000000a;
}
.oem .oem1 .oem1-box2 .item .img {
  width: 120px;
  height: 120px;
  margin: auto;
}
.oem .oem1 .oem1-box2 .item .line {
  background: #649c9e;
  width: 30px;
  height: 3px;
  margin: 20px auto 0;
}
.oem .oem1 .oem1-box2 .item .text {
  margin-top: 10px;
}
.oem .oem1 .oem1-box2 .item .text .title {
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .oem .oem1 .oem1-box2 .item .text .title {
    font-size: 16px;
  }
}
.oem .oem1 .oem1-box2 .item .text .summary {
  color: #888;
  margin-top: 10px;
}
.oem .oem1 .oem1-box3 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .oem .oem1 .oem1-box3 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.oem .oem1 .oem1-box3 .item {
  background: #fff;
  padding: 20px;
  position: relative;
  transition: all 0.5s;
}
.oem .oem1 .oem1-box3 .item:hover {
  box-shadow: 0 0 12px 2px rgba(184, 197, 210, 0.36);
  transform: translateY(-10px);
}
.oem .oem1 .oem1-box3 .item .img {
  margin: auto;
}
.oem .oem1 .oem1-box3 .item .line {
  background: #649c9e;
  width: 30px;
  height: 3px;
  margin: 20px auto 0;
}
.oem .oem1 .oem1-box3 .item .text {
  margin-top: 10px;
}
.oem .oem1 .oem1-box3 .item .text .title {
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .oem .oem1 .oem1-box3 .item .text .title {
    font-size: 16px;
  }
}
.oem .oem1 .oem1-box3 .item .text .summary {
  color: #888;
  margin-top: 10px;
  text-align: center;
}
.oem .oem1 .oem-summary {
  margin-bottom: 30px;
  color: #888;
}
/*产品中心*/
.product .form1 {
  overflow: hidden;
  margin-bottom: 30px;
}
.product .form1 input {
  border-radius: 0;
}
.product .form1 button {
  width: 120px;
  background: #ed941e;
  color: #fff;
}
.product .items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 25px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .product .items {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
  }
}
.product .items .item {
  cursor: pointer;
  background: #fff;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .product .items .item {
    padding-bottom: 20px;
  }
}
.product .items .item:hover .item {
  width: 100%;
  box-shadow: 0 10px 20px 0 hsla(195, 6%, 74%, 0.5);
  z-index: 2;
}
@media screen and (min-width: 769px) {
  .product .items .item:hover .item .text .small-img {
    display: flex;
  }
}
.product .items .item .text {
  text-align: center;
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 10px;
}
.product .items .item .text .title {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .product .items .item .text .title {
    font-size: 14px;
  }
}
.product .items .item .text .summary {
  color: var(--dominant-color);
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .product .items .item .text .summary {
    font-size: 12px;
    line-height: 1.4;
    padding: 0 10px;
  }
}
.product .items .item:hover .text {
  background: var(--dominant-color);
}
.product .items .item:hover .text .title {
  color: #fff;
}
.product .items .item-box {
  position: relative;
  box-shadow: 0 2px 5px 5px rgba(0, 0, 0, 0.01);
  transition: all 0.5s;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .product .items .item-box {
    box-shadow: 0 2px 5px 5px rgba(0, 0, 0, 0.05);
  }
}
.product .items .item-box .imgBox {
  padding-bottom: 83%;
}
.product .items .item-box .imgBox img {
  object-fit: contain;
}
.product-detail {
  background: #fff;
  padding: 20px;
  margin-bottom: 50px;
}
.product-detail .features {
  overflow: hidden;
}
.product-detail .features .product-detail-top {
  margin-bottom: 80px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 500px) {
  .product-detail .features .product-detail-top {
    flex-direction: column;
    margin-bottom: 30px;
  }
}
.product-detail .features .product-detail-top .p-left {
  width: 50%;
}
@media screen and (max-width: 500px) {
  .product-detail .features .product-detail-top .p-left {
    width: 100%;
    margin-bottom: 30px;
  }
}
.product-detail .features .product-detail-top .p-left .swiper-big .imgBox {
  padding-bottom: 100%;
  border: 1px solid #eee;
}
.product-detail .features .product-detail-top .p-left .swiper-small-box {
  position: relative;
  margin-top: 20px;
}
.product-detail .features .product-detail-top .p-left .swiper-small-box .swiper-button-prev,
.product-detail .features .product-detail-top .p-left .swiper-small-box .swiper-button-next {
  color: var(--dominant-color);
  width: 40px;
  height: 40px;
  border: none;
}
@media screen and (max-width: 500px) {
  .product-detail .features .product-detail-top .p-left .swiper-small-box .swiper-button-prev,
  .product-detail .features .product-detail-top .p-left .swiper-small-box .swiper-button-next {
    display: none;
  }
}
.product-detail .features .product-detail-top .p-left .swiper-small-box .swiper-button-prev::after,
.product-detail .features .product-detail-top .p-left .swiper-small-box .swiper-button-next::after {
  font-size: 16px;
}
.product-detail .features .product-detail-top .p-left .swiper-small-box .swiper-button-prev {
  justify-content: flex-start;
  left: 0;
}
.product-detail .features .product-detail-top .p-left .swiper-small-box .swiper-button-next {
  justify-content: flex-end;
  right: 0;
}
.product-detail .features .product-detail-top .p-left .swiper-small {
  width: calc(100% - 50px);
  margin: auto;
  padding: 2px;
}
@media screen and (max-width: 500px) {
  .product-detail .features .product-detail-top .p-left .swiper-small {
    width: 100%;
  }
}
.product-detail .features .product-detail-top .p-left .swiper-small .swiper-slide {
  border: 1px solid #eee;
  padding: 10px;
  cursor: pointer;
  background: #fff;
}
.product-detail .features .product-detail-top .p-left .swiper-small .swiper-slide.swiper-slide-thumb-active {
  border-color: var(--dominant-color);
}
.product-detail .features .product-detail-top .p-left .swiper-small .swiper-slide .imgBox {
  padding-bottom: 100%;
}
.product-detail .features .product-detail-top .p-right {
  flex-basis: 47%;
}
.product-detail .features .product-detail-top .p-right .text {
  padding-bottom: 10px;
  margin-bottom: 20px;
  margin-top: 20px;
}
.product-detail .features .product-detail-top .p-right .text .title {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 600;
}
@media screen and (max-width: 500px) {
  .product-detail .features .product-detail-top .p-right .text .title {
    font-size: 20px;
  }
}
.product-detail .features .product-detail-top .p-right .text .tip {
  font-size: 20px;
  line-height: 1.2;
  margin: 6px 0;
}
@media screen and (max-width: 500px) {
  .product-detail .features .product-detail-top .p-right .text .tip {
    font-size: 16px;
    line-height: 1.2;
    margin-top: 4px;
  }
}
.product-detail .features .product-detail-top .p-right .summary {
  font-size: 14px;
  color: #888;
  line-height: 1.6;
}
.product-detail .features .product-detail-top .p-right .summary ul {
  list-style: disc;
  padding-left: 20px;
}
.product-detail .features .product-detail-top .p-right .summary ul li {
  margin-bottom: 4px;
  list-style: disc;
}
.product-detail .features .product-detail-top .p-right .summary ul li::marker {
  color: #000;
}
.product-detail .features .product-detail-top .p-right .summary p {
  margin-bottom: 4px;
}
@media screen and (max-width: 1600px) {
  .product-detail .features .product-detail-top .p-right .summary {
    font-size: 14px;
    line-height: 1.6;
  }
}
@media screen and (max-width: 500px) {
  .product-detail .features .product-detail-top .p-right .summary {
    font-size: 14px;
  }
}
.product-detail .features .product-detail-bottom .font74 {
  font-size: 74px;
}
@media screen and (max-width: 1600px) {
  .product-detail .features .product-detail-bottom .font74 {
    font-size: 40px;
  }
}
@media screen and (max-width: 1440px) {
  .product-detail .features .product-detail-bottom .font74 {
    font-size: 36px;
  }
}
@media screen and (max-width: 500px) {
  .product-detail .features .product-detail-bottom .font74 {
    font-size: 28px;
  }
}
.product-detail .features .product-detail-bottom .font60 {
  font-size: 60px;
}
@media screen and (max-width: 1600px) {
  .product-detail .features .product-detail-bottom .font60 {
    font-size: 40px;
  }
}
@media screen and (max-width: 1440px) {
  .product-detail .features .product-detail-bottom .font60 {
    font-size: 28px;
  }
}
@media screen and (max-width: 1280px) {
  .product-detail .features .product-detail-bottom .font60 {
    font-size: 26px;
  }
}
@media screen and (max-width: 500px) {
  .product-detail .features .product-detail-bottom .font60 {
    font-size: 28px;
  }
}
.product-detail .features .product-detail-bottom .item {
  position: relative;
}
.product-detail .features .product-detail-bottom .item .img img {
  width: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 933px) and (orientation: landscape) {
  .product-detail .features .product-detail-bottom .item .img img {
    height: 500px;
  }
}
@media screen and (max-width: 500px) {
}
.product-detail .features .product-detail-bottom .item .text {
  position: absolute;
  top: 6.771vw;
  left: 0;
  right: 0;
  z-index: 2;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 500px) {
  .product-detail .features .product-detail-bottom .item .text {
    top: 10%;
    text-align: left;
  }
}
.product-detail .features .product-detail-bottom .item .text .title {
  font-family: HarmonyOS_Sans_SC_Bold;
  line-height: 1.2;
}
@media screen and (max-width: 500px) {
  .product-detail .features .product-detail-bottom .item .text .title br {
    display: none;
  }
}
.product-detail .features .product-detail-bottom .item .text .title.colorStyle {
  /* 设置文本的颜色为白色，以便于背景渐变的颜色遮罩 */
  color: white;
  /* 使用 blend-mode 实现文本颜色与背景渐变颜色的混合 */
  -webkit-background-clip: text;
  /* 使用 color 作为遮罩，实际看到的是背景渐变 */
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  /* 防止文本阴影遮挡背景渐变 */
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  background-clip: text;
}
.product-detail .features .product-detail-bottom .item .text .summary {
  margin-top: 10px;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1600px) {
  .product-detail .features .product-detail-bottom .item .text .summary {
    font-size: 22px;
    margin-top: 0;
  }
}
@media screen and (max-width: 1440px) {
  .product-detail .features .product-detail-bottom .item .text .summary {
    font-size: 18px;
  }
}
@media screen and (max-width: 500px) {
  .product-detail .features .product-detail-bottom .item .text .summary {
    font-size: 14px;
    justify-content: flex-start;
  }
}
.product-detail .features .product-detail-bottom .item .text .summary .summary2 {
  /* 设置文本的颜色为白色，以便于背景渐变的颜色遮罩 */
  color: white;
  /* 设置文本的背景为线性渐变 */
  background: linear-gradient(135deg, #01ef8e, #4ae5fd);
  /* 使用 blend-mode 实现文本颜色与背景渐变颜色的混合 */
  background-clip: text;
  -webkit-background-clip: text;
  /* 使用 color 作为遮罩，实际看到的是背景渐变 */
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  /* 防止文本阴影遮挡背景渐变 */
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  position: relative;
  padding-left: 20px;
  margin-left: 20px;
  font-family: HarmonyOS_Sans_SC_Medium;
}
@media screen and (max-width: 500px) {
  .product-detail .features .product-detail-bottom .item .text .summary .summary2 {
    padding-left: 10px;
    margin-left: 10px;
  }
}
.product-detail .features .product-detail-bottom .item .text .summary .summary2::after {
  content: '';
  left: 0;
  top: -2px;
  bottom: 0;
  margin: auto;
  position: absolute;
  background: #fff;
  width: 1px;
  height: 50%;
}
.product-detail .features .product-detail-bottom .item .text .summary-text {
  margin-top: 30px;
  font-size: 20px;
  font-family: HarmonyOS_Sans_SC_Light;
}
@media screen and (max-width: 1600px) {
  .product-detail .features .product-detail-bottom .item .text .summary-text {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.6;
  }
}
@media screen and (max-width: 500px) {
  .product-detail .features .product-detail-bottom .item .text .summary-text {
    font-size: 14px;
    line-height: 1.5 !important;
    margin-top: 10px;
  }
  .product-detail .features .product-detail-bottom .item .text .summary-text br {
    display: none;
  }
}
.product-detail .features .product-detail-bottom .item .text .summary-text p {
  font-family: HarmonyOS_Sans_SC_Light;
}
.product-detail .features .product-detail-bottom .item .text .list-box .l-box {
  margin-top: 20px;
  display: flex;
  align-items: center;
}
.product-detail .features .product-detail-bottom .item .text .list-box .l-box .l-img {
  width: 48px;
  height: 48px;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1440px) {
  .product-detail .features .product-detail-bottom .item .text .list-box .l-box .l-img {
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 500px) {
  .product-detail .features .product-detail-bottom .item .text .list-box .l-box .l-img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
  }
}
.product-detail .features .product-detail-bottom .item .text .list-box .l-box .l-img img {
  object-fit: contain;
}
.product-detail .features .product-detail-bottom .item .text .list-box .l-box .l-text {
  flex: 1;
}
.product-detail .features .product-detail-bottom .item .text .list-box .l-box .l-text .key {
  font-size: 20px;
}
@media screen and (max-width: 1600px) {
  .product-detail .features .product-detail-bottom .item .text .list-box .l-box .l-text .key {
    font-size: 18px;
  }
}
@media screen and (max-width: 1440px) {
  .product-detail .features .product-detail-bottom .item .text .list-box .l-box .l-text .key {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 4px;
  }
}
.product-detail .features .product-detail-bottom .item .text .list-box .l-box .l-text .value {
  font-size: 16px;
  font-family: HarmonyOS_Sans_SC_Light;
}
@media screen and (max-width: 1440px) {
  .product-detail .features .product-detail-bottom .item .text .list-box .l-box .l-text .value {
    font-size: 12px;
    line-height: 1.4;
  }
}
.product-detail .features .product-detail-bottom .item .text .type {
  font-size: 28px;
  padding: 4px 0;
  color: #fff;
  display: block;
  width: fit-content;
  margin-top: 50px;
}
@media screen and (max-width: 500px) {
  .product-detail .features .product-detail-bottom .item .text .type {
    font-size: 14px;
    margin-top: 10px;
  }
}
.product-detail .features .product-detail-bottom .item .item-bottom {
  display: flex;
  position: absolute;
  bottom: 5.208vw;
  left: 0;
  right: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  backdrop-filter: blur(30px);
  padding: 40px 0;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 -2px 0px 1px rgba(255, 255, 255, 0.25);
}
@media screen and (max-width: 500px) {
  .product-detail .features .product-detail-bottom .item .item-bottom {
    overflow: auto;
    padding: 20px 10px;
    bottom: 30px;
    flex-wrap: wrap;
  }
}
.product-detail .features .product-detail-bottom .item .item-bottom .i-box {
  flex: 1 0 0;
  position: relative;
  transition: all 0.5s;
}
.product-detail .features .product-detail-bottom .item .item-bottom .i-box:hover {
  transform: translateY(-20px);
}
.product-detail .features .product-detail-bottom .item .item-bottom .i-box:hover::after {
  transform: translateY(20px);
}
@media screen and (max-width: 500px) {
  .product-detail .features .product-detail-bottom .item .item-bottom .i-box {
    flex-basis: 33.3%;
    margin: 6px 0;
    pointer-events: none;
  }
  .product-detail .features .product-detail-bottom .item .item-bottom .i-box:nth-of-type(3n)::after {
    display: none;
  }
}
.product-detail .features .product-detail-bottom .item .item-bottom .i-box::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 80%;
  width: 1px;
  background: #fff;
  opacity: 0.2;
  margin: auto;
  transition: all 0.5s;
}
.product-detail .features .product-detail-bottom .item .item-bottom .i-box:last-child::after {
  display: none;
}
.product-detail .features .product-detail-bottom .item .item-bottom .i-box .i-img {
  width: 60px;
  height: 60px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1600px) {
  .product-detail .features .product-detail-bottom .item .item-bottom .i-box .i-img {
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 1366px) {
  .product-detail .features .product-detail-bottom .item .item-bottom .i-box .i-img {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 500px) {
  .product-detail .features .product-detail-bottom .item .item-bottom .i-box .i-img {
    width: 30px;
    height: 30px;
  }
}
.product-detail .features .product-detail-bottom .item .item-bottom .i-box .i-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.product-detail .features .product-detail-bottom .item .item-bottom .i-box .i-title {
  text-align: center;
  color: #fff;
  font-size: 20px;
  margin-top: 10px;
}
@media screen and (max-width: 1600px) {
  .product-detail .features .product-detail-bottom .item .item-bottom .i-box .i-title {
    font-size: 18px;
  }
}
@media screen and (max-width: 1366px) {
  .product-detail .features .product-detail-bottom .item .item-bottom .i-box .i-title {
    font-size: 16px;
  }
}
@media screen and (max-width: 1280px) {
  .product-detail .features .product-detail-bottom .item .item-bottom .i-box .i-title {
    font-size: 14px;
  }
}
@media screen and (max-width: 500px) {
  .product-detail .features .product-detail-bottom .item .item-bottom .i-box .i-title {
    font-size: 12px;
  }
}
.product-detail .features .product-detail-bottom .item.item1 .text .summary-text {
  opacity: 0.6;
  line-height: 1.6;
  font-family: HarmonyOS_Sans_SC_Regular;
}
.product-detail .features .product-detail-bottom .item.item2 .text {
  top: 0;
  bottom: 0;
  height: fit-content;
  text-align: left;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}
@media screen and (max-width: 1600px) {
  .product-detail .features .product-detail-bottom .item.item2 .text {
    max-width: 90%;
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .product-detail .features .product-detail-bottom .item.item2 .text {
    top: 10%;
    margin-top: inherit;
    max-width: 84%;
  }
}
.product-detail .features .product-detail-bottom .item.item2 .text .title,
.product-detail .features .product-detail-bottom .item.item2 .text .summary,
.product-detail .features .product-detail-bottom .item.item2 .text .summary-text {
  max-width: 540px;
  width: 100%;
}
@media screen and (max-width: 1600px) {
  .product-detail .features .product-detail-bottom .item.item2 .text .title,
  .product-detail .features .product-detail-bottom .item.item2 .text .summary,
  .product-detail .features .product-detail-bottom .item.item2 .text .summary-text {
    max-width: 45%;
  }
}
@media screen and (max-width: 500px) {
  .product-detail .features .product-detail-bottom .item.item2 .text .title,
  .product-detail .features .product-detail-bottom .item.item2 .text .summary,
  .product-detail .features .product-detail-bottom .item.item2 .text .summary-text {
    max-width: 100%;
  }
}
.product-detail .features .product-detail-bottom .item.item2 .text .summary {
  justify-content: flex-start;
}
.product-detail .features .product-detail-bottom .item.item3 .text {
  top: 0;
  bottom: 0;
  height: fit-content;
  text-align: left;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 500px) {
  .product-detail .features .product-detail-bottom .item.item3 .text {
    margin-top: 0;
    top: 10%;
  }
}
.product-detail .features .product-detail-bottom .item.item3 .text .title,
.product-detail .features .product-detail-bottom .item.item3 .text .summary {
  max-width: 720px;
  width: 100%;
}
@media screen and (max-width: 1600px) {
  .product-detail .features .product-detail-bottom .item.item3 .text .title,
  .product-detail .features .product-detail-bottom .item.item3 .text .summary {
    max-width: 45%;
  }
}
@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 500px) {
  .product-detail .features .product-detail-bottom .item.item3 .text .title,
  .product-detail .features .product-detail-bottom .item.item3 .text .summary {
    max-width: 100%;
  }
}
.product-detail .features .product-detail-bottom .item.item3 .text .summary-text {
  max-width: 640px;
  width: 100%;
}
@media screen and (max-width: 1600px) {
  .product-detail .features .product-detail-bottom .item.item3 .text .summary-text {
    max-width: 45%;
  }
}
@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 500px) {
  .product-detail .features .product-detail-bottom .item.item3 .text .summary-text {
    max-width: 100%;
  }
}
.product-detail .features .product-detail-bottom .item.item3 .text .summary {
  justify-content: flex-start;
}
.product-detail .features .product-detail-bottom .item.item4 {
  padding: 6% 0;
}
.product-detail .features .product-detail-bottom .item.item4 .item4-box {
  max-width: 1400px;
  display: flex;
  flex-wrap: wrap;
}
.product-detail .features .product-detail-bottom .item.item4 .item4-box .i-box {
  flex-basis: 25%;
  padding: 3% 0;
  transition: all 0.5s;
}
@media screen and (max-width: 500px) {
  .product-detail .features .product-detail-bottom .item.item4 .item4-box .i-box {
    flex-basis: 50%;
  }
}
.product-detail .features .product-detail-bottom .item.item4 .item4-box .i-box .img {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1600px) {
  .product-detail .features .product-detail-bottom .item.item4 .item4-box .i-box .img {
    height: 50px;
  }
}
@media screen and (max-width: 500px) {
  .product-detail .features .product-detail-bottom .item.item4 .item4-box .i-box .img {
    height: 30px;
  }
}
.product-detail .features .product-detail-bottom .item.item4 .item4-box .i-box .img img {
  max-height: 100%;
  width: auto;
  min-height: auto;
}
.product-detail .features .product-detail-bottom .item.item4 .item4-box .i-box .title {
  margin-top: 20px;
  font-size: 24px;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 1600px) {
  .product-detail .features .product-detail-bottom .item.item4 .item4-box .i-box .title {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .product-detail .features .product-detail-bottom .item.item4 .item4-box .i-box .title {
    font-size: 12px;
    margin-top: 14px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 769px) {
  .product-detail .features .product-detail-bottom .item.item4 .item4-box .i-box:hover {
    transform: translateY(-20px);
  }
}
.product-detail .features .product-detail-bottom .item.item5 {
  padding: 8% 0;
  background: #000;
}
.product-detail .features .product-detail-bottom .item.item5 .item5-box img {
  width: 100%;
}
.product-detail .features .product-detail-bottom .item.item5 .item5-box .img {
  transition: all 0.5s;
}
.product-detail .features .product-detail-bottom .item.item5 .item5-box .list {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: #131313;
  transition: all 0.5s;
  border: 1px solid transparent;
}
@media screen and (max-width: 500px) {
  .product-detail .features .product-detail-bottom .item.item5 .item5-box .list {
    border-radius: 10px;
  }
}
.product-detail .features .product-detail-bottom .item.item5 .item5-box .list .l-text {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  color: #fff;
  padding: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 500px) {
  .product-detail .features .product-detail-bottom .item.item5 .item5-box .list .l-text {
    padding: 0 10px;
  }
}
.product-detail .features .product-detail-bottom .item.item5 .item5-box .list .l-text.l-text-top {
  bottom: auto;
}
@media screen and (max-width: 500px) {
  .product-detail .features .product-detail-bottom .item.item5 .item5-box .list .l-text.l-text-top {
    bottom: 0;
  }
  .product-detail .features .product-detail-bottom .item.item5 .item5-box .list .l-text.l-text-top.l-text-top2 {
    flex-direction: row;
    top: 0;
    bottom: auto;
    height: calc((100% - 24px) / 3);
  }
  .product-detail .features .product-detail-bottom .item.item5 .item5-box .list .l-text.l-text-top.l-text-top2 .l-text-icon {
    margin-bottom: 10px;
  }
  .product-detail .features .product-detail-bottom .item.item5 .item5-box .list .l-text.l-text-top.l-text-top2.l-text-top3 {
    height: calc((100% - 12px) / 2);
  }
}
.product-detail .features .product-detail-bottom .item.item5 .item5-box .list .l-text.l-flex-top {
  flex-direction: column-reverse;
  padding: 10px 35px;
  justify-content: center;
}
@media screen and (max-width: 500px) {
  .product-detail .features .product-detail-bottom .item.item5 .item5-box .list .l-text.l-flex-top {
    padding: 0 10px;
    text-align: center;
  }
}
.product-detail .features .product-detail-bottom .item.item5 .item5-box .list .l-text.l-flex-top .title {
  margin-top: 20px;
}
@media screen and (max-width: 500px) {
  .product-detail .features .product-detail-bottom .item.item5 .item5-box .list .l-text.l-flex-top .title {
    margin-top: 0;
  }
}
.product-detail .features .product-detail-bottom .item.item5 .item5-box .list .l-text .l-text-icon {
  width: 60px;
  height: 60px;
  text-align: center;
  transition: all 0.5s;
  align-items: center;
  justify-content: center;
  display: flex;
}
@media screen and (max-width: 1600px) {
  .product-detail .features .product-detail-bottom .item.item5 .item5-box .list .l-text .l-text-icon {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 500px) {
  .product-detail .features .product-detail-bottom .item.item5 .item5-box .list .l-text .l-text-icon {
    width: 20px;
    height: 20px;
  }
}
.product-detail .features .product-detail-bottom .item.item5 .item5-box .list .l-text .l-text-icon img {
  width: auto;
  max-height: 100%;
}
.product-detail .features .product-detail-bottom .item.item5 .item5-box .list .l-text .title {
  font-size: 24px;
  line-height: 1.2;
  font-family: HarmonyOS_Sans_SC_Bold;
}
@media screen and (max-width: 1600px) {
  .product-detail .features .product-detail-bottom .item.item5 .item5-box .list .l-text .title {
    font-size: 20px;
  }
}
@media screen and (max-width: 500px) {
  .product-detail .features .product-detail-bottom .item.item5 .item5-box .list .l-text .title {
    font-size: 14px;
  }
}
.product-detail .features .product-detail-bottom .item.item5 .item5-box .list .l-text .title img {
  height: 52px;
  width: auto;
  margin-bottom: 10px;
}
@media screen and (max-width: 1600px) {
  .product-detail .features .product-detail-bottom .item.item5 .item5-box .list .l-text .title img {
    height: 40px;
  }
}
@media screen and (max-width: 500px) {
  .product-detail .features .product-detail-bottom .item.item5 .item5-box .list .l-text .title img {
    height: 14px;
    margin-bottom: 4px;
  }
}
.product-detail .features .product-detail-bottom .item.item5 .item5-box .list .l-text .title.colorStyle {
  /* 设置文本的颜色为白色，以便于背景渐变的颜色遮罩 */
  color: white;
  /* 使用 blend-mode 实现文本颜色与背景渐变颜色的混合 */
  /* 使用 color 作为遮罩，实际看到的是背景渐变 */
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  /* 防止文本阴影遮挡背景渐变 */
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  background: linear-gradient(to right, #4ae5fd, #549aff);
  background-clip: text;
  -webkit-background-clip: text;
}
.product-detail .features .product-detail-bottom .item.item5 .item5-box .list .l-text .summary {
  font-size: 16px;
  opacity: 0.6;
}
@media screen and (max-width: 1600px) {
  .product-detail .features .product-detail-bottom .item.item5 .item5-box .list .l-text .summary {
    font-size: 14px;
  }
}
@media screen and (max-width: 500px) {
  .product-detail .features .product-detail-bottom .item.item5 .item5-box .list .l-text .summary {
    font-size: 12px;
    line-height: 1;
    margin-top: 4px;
  }
}
.product-detail .features .product-detail-bottom .item.item5 .item5-box .list:hover {
  box-shadow: 0 0 20px 5px rgba(83, 185, 254, 0.2);
  border-color: rgba(83, 185, 254, 0.5);
}
.product-detail .features .product-detail-bottom .item.item5 .item5-box .list:hover .l-text-icon {
  transform: scale(1.05);
}
.product-detail .features .product-detail-bottom .item.item5 .item5-box .list:hover .img {
  transform: scale(1.05);
}
.product-detail .features .product-detail-bottom .item.item5 .item5-box .top {
  width: 100%;
  display: flex;
  grid-gap: 10px;
}
@media screen and (max-width: 1024px) {
  .product-detail .features .product-detail-bottom .item.item5 .item5-box .top {
    flex-wrap: wrap;
  }
}
.product-detail .features .product-detail-bottom .item.item5 .item5-box .top .left {
  flex-basis: 50%;
}
@media screen and (max-width: 1024px) {
  .product-detail .features .product-detail-bottom .item.item5 .item5-box .top .left {
    flex-basis: 100%;
  }
}
@media screen and (max-width: 500px) {
  .product-detail .features .product-detail-bottom .item.item5 .item5-box .top .left {
    flex-basis: 100%;
  }
}
.product-detail .features .product-detail-bottom .item.item5 .item5-box .top .left .t-top .imgBox {
  padding-bottom: calc(270 / 695 * 100%);
}
@media screen and (max-width: 500px) {
  .product-detail .features .product-detail-bottom .item.item5 .item5-box .top .left .t-top .imgBox {
    padding-bottom: 120px;
  }
}
.product-detail .features .product-detail-bottom .item.item5 .item5-box .top .left .t-bottom {
  margin-top: 10px;
  display: flex;
  grid-gap: 10px;
}
@media screen and (max-width: 500px) {
}
.product-detail .features .product-detail-bottom .item.item5 .item5-box .top .left .t-bottom .bottom-left {
  flex-basis: calc(325 / 695 * 100%);
}
@media screen and (max-width: 500px) {
  .product-detail .features .product-detail-bottom .item.item5 .item5-box .top .left .t-bottom .bottom-left {
    flex-basis: calc(50% - 5px);
  }
}
.product-detail .features .product-detail-bottom .item.item5 .item5-box .top .left .t-bottom .bottom-left .imgBox {
  padding-bottom: calc(240 / 325 * 100%);
}
@media screen and (max-width: 500px) {
  .product-detail .features .product-detail-bottom .item.item5 .item5-box .top .left .t-bottom .bottom-left .imgBox {
    padding-bottom: calc(80% + 12px);
  }
}
.product-detail .features .product-detail-bottom .item.item5 .item5-box .top .left .t-bottom .bottom-right {
  flex-basis: calc(360 / 695 * 100%);
}
@media screen and (max-width: 500px) {
  .product-detail .features .product-detail-bottom .item.item5 .item5-box .top .left .t-bottom .bottom-right {
    flex-basis: calc(50% - 5px);
  }
}
.product-detail .features .product-detail-bottom .item.item5 .item5-box .top .left .t-bottom .bottom-right .list {
  margin-bottom: 10px;
}
.product-detail .features .product-detail-bottom .item.item5 .item5-box .top .left .t-bottom .bottom-right .list:last-child {
  margin-bottom: 0;
}
.product-detail .features .product-detail-bottom .item.item5 .item5-box .top .left .t-bottom .bottom-right .imgBox {
  padding-bottom: calc(115 / 360 * 100%);
}
@media screen and (max-width: 500px) {
  .product-detail .features .product-detail-bottom .item.item5 .item5-box .top .left .t-bottom .bottom-right .imgBox {
    padding-bottom: 40%;
  }
}
.product-detail .features .product-detail-bottom .item.item5 .item5-box .top .right {
  flex-basis: 50%;
}
@media screen and (max-width: 1024px) {
  .product-detail .features .product-detail-bottom .item.item5 .item5-box .top .right {
    flex-basis: 100%;
  }
}
.product-detail .features .product-detail-bottom .item.item5 .item5-box .top .right .t-top .imgBox {
  padding-bottom: calc(160 / 695 * 100%);
}
@media screen and (max-width: 500px) {
  .product-detail .features .product-detail-bottom .item.item5 .item5-box .top .right .t-top .imgBox {
    padding-bottom: 70px;
  }
}
.product-detail .features .product-detail-bottom .item.item5 .item5-box .top .right .t-bottom {
  margin-top: 10px;
  display: flex;
  grid-gap: 10px;
}
@media screen and (max-width: 500px) {
}
.product-detail .features .product-detail-bottom .item.item5 .item5-box .top .right .t-bottom .bottom-left {
  flex-basis: calc(325 / 695 * 100%);
}
@media screen and (max-width: 500px) {
  .product-detail .features .product-detail-bottom .item.item5 .item5-box .top .right .t-bottom .bottom-left {
    flex-basis: calc(50% - 5px);
  }
}
.product-detail .features .product-detail-bottom .item.item5 .item5-box .top .right .t-bottom .bottom-left .imgBox {
  padding-bottom: calc(350 / 325 * 100%);
}
@media screen and (max-width: 500px) {
  .product-detail .features .product-detail-bottom .item.item5 .item5-box .top .right .t-bottom .bottom-left .imgBox {
    padding-bottom: calc(105% + 24px);
  }
}
.product-detail .features .product-detail-bottom .item.item5 .item5-box .top .right .t-bottom .bottom-right {
  flex-basis: calc(360 / 695 * 100%);
}
@media screen and (max-width: 500px) {
  .product-detail .features .product-detail-bottom .item.item5 .item5-box .top .right .t-bottom .bottom-right {
    flex-basis: calc(50% - 5px);
  }
}
.product-detail .features .product-detail-bottom .item.item5 .item5-box .top .right .t-bottom .bottom-right .list {
  margin-bottom: 10px;
}
.product-detail .features .product-detail-bottom .item.item5 .item5-box .top .right .t-bottom .bottom-right .list:last-child {
  margin-bottom: 0;
}
.product-detail .features .product-detail-bottom .item.item5 .item5-box .top .right .t-bottom .bottom-right .imgBox {
  padding-bottom: calc(110 / 360 * 100%);
}
@media screen and (max-width: 500px) {
  .product-detail .features .product-detail-bottom .item.item5 .item5-box .top .right .t-bottom .bottom-right .imgBox {
    padding-bottom: 35%;
  }
}
.product-detail .features .product-detail-bottom .item.item5 .item5-box .bottom {
  margin-top: 10px;
  display: flex;
  grid-gap: 10px;
  position: relative;
}
@media screen and (max-width: 500px) {
  .product-detail .features .product-detail-bottom .item.item5 .item5-box .bottom {
    flex-wrap: wrap;
  }
}
.product-detail .features .product-detail-bottom .item.item5 .item5-box .bottom .list {
  flex: 1;
  flex-basis: 0;
}
@media screen and (max-width: 500px) {
  .product-detail .features .product-detail-bottom .item.item5 .item5-box .bottom .list {
    flex: auto;
  }
  .product-detail .features .product-detail-bottom .item.item5 .item5-box .bottom .list:nth-child(1) {
    order: 3;
    flex-basis: calc(50% - 5px);
  }
  .product-detail .features .product-detail-bottom .item.item5 .item5-box .bottom .list:nth-child(1) .imgBox {
    padding-bottom: 152px;
  }
  .product-detail .features .product-detail-bottom .item.item5 .item5-box .bottom .list:nth-child(2) {
    flex-basis: calc(50% - 5px);
    height: fit-content;
  }
  .product-detail .features .product-detail-bottom .item.item5 .item5-box .bottom .list:nth-child(3) {
    position: absolute;
    top: 82px;
    left: 0;
    height: 70px;
    width: calc(50% - 5px);
  }
  .product-detail .features .product-detail-bottom .item.item5 .item5-box .bottom .list .l-text-icon {
    margin-bottom: 10px;
  }
}
.product-detail .features .product-detail-bottom .item.item5 .item5-box .bottom .list .imgBox {
  padding-bottom: calc(160 / 460 * 100%);
}
@media screen and (max-width: 500px) {
  .product-detail .features .product-detail-bottom .item.item5 .item5-box .bottom .list .imgBox {
    padding-bottom: 70px;
  }
}
.product-detail .features .product-detail-bottom .item.item5 .item5-box .bottom .list .title {
  font-family: HarmonyOS_Sans_SC_Regular;
}
.product-detail .features .product-detail-bottom .item.item6 {
  background: #000;
}
@media screen and (max-width: 500px) {
  .product-detail .features .product-detail-bottom .item.item6 {
    padding: 80px 0;
  }
}
.product-detail .features .product-detail-bottom .item.item6 .index-banner {
  height: auto;
}
@media screen and (max-width: 500px) {
  .product-detail .features .product-detail-bottom .item.item6 .index-banner {
    height: 0;
    overflow: hidden;
  }
}
.product-detail .features .product-detail-bottom .item.item6 .index-banner .swiper-line {
  bottom: 100px;
}
.product-detail .features .product-detail-bottom .item.item6 .index-banner .swiper-line .text {
  position: initial;
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 500px) {
  .product-detail .features .product-detail-bottom .item.item6 .index-banner .swiper-line {
    bottom: 20px;
  }
}
.product-detail .features .product-detail-bottom .item.item6 .item6-swiper .swiperBig {
  overflow: visible;
}
.product-detail .features .product-detail-bottom .item.item6 .item6-swiper .swiperBig .swiper-slide {
  border-radius: 10px;
  overflow: hidden;
}
.product-detail .features .product-detail-bottom .item.item6 .item6-swiper .swiperSmall {
  transition: all 0.5s;
  position: relative;
  margin: 40px auto 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  width: fit-content;
}
@media screen and (max-width: 500px) {
  .product-detail .features .product-detail-bottom .item.item6 .item6-swiper .swiperSmall {
    width: auto;
    overflow: auto;
    margin-top: 20px;
  }
}
.product-detail .features .product-detail-bottom .item.item6 .item6-swiper .swiperSmall .swiperSmall2 {
  display: flex;
  align-items: center;
  transition: all 0.5s;
}
.product-detail .features .product-detail-bottom .item.item6 .item6-swiper .swiperSmall .swiper-slide {
  color: #fff;
  width: auto;
  font-size: 20px;
  position: relative;
  padding-bottom: 5px;
  opacity: 0.6;
  cursor: pointer;
  margin-right: 40px;
}
@media screen and (max-width: 500px) {
  .product-detail .features .product-detail-bottom .item.item6 .item6-swiper .swiperSmall .swiper-slide {
    font-size: 16px;
    margin-right: 20px;
  }
}
.product-detail .features .product-detail-bottom .item.item6 .item6-swiper .swiperSmall .swiper-slide:last-child {
  margin-right: 0 !important;
}
.product-detail .features .product-detail-bottom .item.item6 .item6-swiper .swiperSmall .swiper-slide::after {
  content: '';
  width: 0;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fff;
  transition: all 0.5s;
}
.product-detail .features .product-detail-bottom .item.item6 .item6-swiper .swiperSmall .swiper-slide.active {
  opacity: 1;
}
.product-detail .features .product-detail-bottom .item.item6 .item6-swiper .line {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fff;
  height: 2px;
  width: 100px;
  transition: all 0.5s;
}
.product-detail .features .product-detail-bottom .item.item6 .text {
  position: initial;
  margin-bottom: 40px;
}
.product-detail .features .product-detail-bottom .item.item7 {
  height: 100vh;
}
.product-detail .features .product-detail-bottom .item.item7 .img {
  height: 100%;
}
.product-detail .features .product-detail-bottom .item.item7 .img img {
  height: 100%;
  object-fit: cover;
}
.product-detail .features .product-detail-bottom .item.item7 .move-img {
  transform: scale(0.5);
  width: 100%;
  font-weight: 900;
  font-size: 10vw;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: fit-content;
  max-width: 800px;
  /* 设置文本的颜色为白色，以便于背景渐变的颜色遮罩 */
  color: white;
  /* 使用 blend-mode 实现文本颜色与背景渐变颜色的混合 */
  /* 使用 color 作为遮罩，实际看到的是背景渐变 */
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  /* 防止文本阴影遮挡背景渐变 */
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  text-align: center;
  font-family: HarmonyOS_Sans_SC_Medium;
}
.product-detail .features .product-detail-bottom .item.item8 {
  position: relative !important;
  background: #fff;
}
.product-detail .features .product-detail-bottom .item.item8 img {
  max-width: 100%;
  width: 100%;
}
.product-detail .features .detail-box {
  font-size: 16px;
  color: #666;
}
.product-detail .features .detail-box .title {
  font-size: 18px;
  color: #fff;
  padding: 15px;
  background: var(--dominant-color);
  text-align: center;
  margin-bottom: 20px;
}
.product-detail .specification {
  scroll-margin-top: 100px;
}
.product-detail .specification .items .item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.8);
}
.product-detail .specification .items .item:last-child {
  border-bottom: none;
}
.product-detail .specification .items .item .item-title {
  display: flex;
  justify-content: space-between;
  padding: 15px 30px;
  background: #222;
  font-size: 20px;
  color: #fff;
  align-items: center;
  cursor: pointer;
}
@media screen and (max-width: 500px) {
  .product-detail .specification .items .item .item-title {
    font-size: 14px;
    padding: 5px 20px;
  }
}
.product-detail .specification .items .item .item-title i {
  margin-top: 2px;
  transition: all 0.5s;
}
.product-detail .specification .items .item.active i {
  transform: rotate(180deg);
}
.product-detail .specification .items .item:nth-of-type(1) .table {
  display: block;
}
.product-detail .specification .items .item .table {
  width: 100%;
}
.product-detail .specification .items .item .table table {
  width: 100%;
}
.product-detail .specification .items .item .table tbody {
  width: 100%;
}
.product-detail .specification .items .item .table tr {
  display: block;
  padding: 20px 10% 20px 40px;
  min-height: 62px;
  font-size: 14px;
  line-height: 1.6;
}
@media screen and (max-width: 500px) {
  .product-detail .specification .items .item .table tr {
    padding: 10px 10px;
    font-size: 12px;
    min-height: 30px;
  }
}
.product-detail .specification .items .item .table tr:nth-child(even) {
  background: #f9fafb;
}
.product-detail .specification .items .item .table tr .key {
  width: 300px;
}
@media screen and (max-width: 500px) {
  .product-detail .specification .items .item .table tr .key {
    width: 120px;
    padding-right: 10px;
  }
}
.product-detail .specification .items .item .table tr .value {
  width: calc(100% - 300px);
  color: #666;
}
@media screen and (max-width: 500px) {
  .product-detail .specification .items .item .table tr .value {
    width: calc(100% - 100px);
  }
}
.product-detail .related-products-width {
  width: 100%;
}
.product-detail .related-products {
  scroll-margin-top: 160px;
  padding-top: 0;
  padding-bottom: 0;
}
.product-detail .related-products .related-products-box .product-box {
  margin-bottom: 0;
}
.product-detail .related-products .page-title {
  justify-content: space-between;
}
@media screen and (max-width: 500px) {
  .product-detail .related-products .page-title .swiper-button {
    display: none;
  }
}
.product-detail .related-products .page-title .swiper-button .prev,
.product-detail .related-products .page-title .swiper-button .next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #999;
  cursor: pointer;
  transition: all 0.5s;
  color: #999;
}
@media screen and (max-width: 500px) {
  .product-detail .related-products .page-title .swiper-button .prev,
  .product-detail .related-products .page-title .swiper-button .next {
    width: 30px;
    height: 30px;
  }
}
.product-detail .related-products .page-title .swiper-button .prev:hover,
.product-detail .related-products .page-title .swiper-button .next:hover {
  background: var(--dominant-color);
  color: #fff;
}
.product-detail .related-products .page-title .swiper-button .prev {
  margin-right: 20px;
  transform: rotate(180deg);
}
.product-detail .related-products .product-box {
  padding: 20px 0 50px;
}
@media screen and (max-width: 1600px) {
}
@media screen and (max-width: 500px) {
  .product-detail .related-products .product-box {
    padding: 10px 5px 50px;
    overflow: hidden;
  }
}
.product-detail .related-products .product-box .items {
  display: flex;
  grid-gap: 0;
  margin-top: 0;
}
@media screen and (max-width: 500px) {
  .product-detail .related-products .swiper-pagination {
    text-align: center !important;
  }
}
.swiper-pagination-bullet-active {
  --swiper-pagination-color: var(--dominant-color);
}
/*搜索结果*/
.search .search-box {
  /*grid-template-columns: repeat(3, 1fr);
    display: grid;
    grid-gap: 30px;
    border-top: 1px solid #eee;
    padding-top: 40px;*/
  /*.img {
      border: 1px solid #eee;
    }

    .text {
      margin-top: 10px;

      .title {
        font-size: 16px;
      }

      .summary {
        font-size: 14px;
        color: #666;
      }
    }*/
  /*@media screen and (max-width: 768px) {
      grid-template-columns: repeat(2, 1fr);
      grid-gap: 20px;
    }*/
}
.search .search-box .download-box .item .time {
  flex-basis: 180px;
}
@media screen and (max-width: 768px) {
  .search .search-box .download-box .item .time {
    flex-basis: 70px;
  }
}
.search .search-box .type {
  flex-basis: 180px;
}
@media screen and (max-width: 768px) {
  .search .search-box .type {
    flex-basis: 60px;
  }
}
/*响应式*/
/*放大镜*/
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;
}
.pro_btn {
  text-align: left;
  margin-top: 40px;
  display: flex;
}
.pro_btn a {
  display: inline-block;
  width: 80px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  margin: 10px 20px 10px 0;
  position: relative;
}
.btn_p {
  background: #86b300;
}
.btn_l {
  background: #f6ac1d;
}
a.hvr-ripple-out {
  display: block;
  transform: translateZ(0px);
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 1px;
  backface-visibility: hidden;
  position: relative;
  border-radius: 4px;
}
@keyframes hvr-ripple-out {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}
a.hvr-ripple-out::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  animation-duration: 1s;
  border-width: 6px;
  border-style: solid;
  border-color: #86b300;
  border-image: initial;
  border-radius: 4px;
}
a.hvr-ripple-out:hover::before {
  animation-name: hvr-ripple-out;
}
@keyframes hvr-ripple-out1 {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}
a.hvr-ripple-out1 {
  display: block;
  transform: translateZ(0px);
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 1px;
  backface-visibility: hidden;
  position: relative;
  border-radius: 4px;
}
a.hvr-ripple-out1::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  animation-duration: 1s;
  border-width: 6px;
  border-style: solid;
  border-color: #f6ac1d;
  border-image: initial;
  border-radius: 4px;
}
a.hvr-ripple-out1:hover::before {
  animation-name: hvr-ripple-out1;
}
.messages {
  margin-top: 50px;
}
.messages .title {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
}
.messages .title span {
  font-size: 14px;
  color: #888;
  display: block;
  line-height: 1;
}
@media screen and (max-width: 1600px) {
  .messages .title {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .messages .title {
    font-size: 18px;
  }
}
.messages .summary {
  text-align: center;
  margin-bottom: 20px;
  color: #888;
}
.messages form {
  display: flex;
  flex-wrap: wrap;
}
.messages label {
  display: block;
  width: calc((100% - 10px) / 2);
  margin-right: 10px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .messages label {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.messages label:first-child {
  width: 100%;
  margin-right: 0;
}
.messages label:nth-of-type(3) {
  margin-right: 0;
}
.messages label:nth-of-type(5) {
  margin-right: 0;
}
.messages label textarea {
  height: 120px;
}
.messages label input {
  width: 100%;
  height: 50px;
  border: 1px solid #eee;
}
.messages button {
  height: 50px;
  width: 100%;
  color: #fff;
  background: var(--dominant-color);
  font-size: 16px;
}
.page-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .page-top {
    justify-content: center;
  }
}
.page-top.product-location {
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 20px;
}
.page-menu2 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .page-menu2 {
    justify-content: flex-start;
    width: 100%;
    flex-wrap: wrap;
  }
}
.page-menu2 a {
  font-size: 16px;
  position: relative;
  height: 100%;
  padding: 20px 30px;
  display: block;
}
@media screen and (max-width: 768px) {
  .page-menu2 a {
    padding: 10px 10px;
    font-size: 14px;
    flex-wrap: wrap;
  }
}
.page-menu2 a:hover::after {
  width: 90%;
}
.page-menu2 a:last-child::before {
  display: none;
}
.page-menu2 a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: 3px;
  background: var(--dominant-color);
  width: 0;
  transition: all 0.3s;
}
.page-menu2 a::before {
  content: '';
  position: absolute;
  right: 0;
  height: 16px;
  width: 1px;
  background: #ccc;
  top: 0;
  bottom: 0;
  margin: auto;
}
.service2 {
  max-width: 1200px;
}
.service2 .title {
  font-size: 28px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .service2 .title {
    font-size: 20px;
  }
}
.service2 .summary {
  font-size: 18px;
  text-align: center;
  color: #999;
}
.service2 .service2-box {
  display: flex;
  flex-wrap: wrap;
}
.service2 .service2-box .item {
  padding: 50px 0;
  flex-basis: 20%;
}
@media screen and (max-width: 768px) {
  .service2 .service2-box .item {
    flex-basis: calc(100% / 3);
    padding: 20px 0;
  }
}
.service2 .service2-box .item:nth-child(n + 6) {
  flex-basis: 25%;
}
@media screen and (max-width: 768px) {
  .service2 .service2-box .item:nth-child(n + 6) {
    flex-basis: calc(100% / 3);
  }
}
.service2 .service2-box .item .img {
  width: 80px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .service2 .service2-box .item .img {
    width: 40px;
  }
}
.service2 .service2-box .item .title {
  font-size: 18px;
  color: #999;
  text-align: center;
  margin: 20px auto 10px;
}
@media screen and (max-width: 768px) {
  .service2 .service2-box .item .title {
    font-size: 14px;
  }
}
.service2 .service2-box .item img {
  width: 100%;
}
.service2 .service2-box .item .number {
  font-size: 46px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .service2 .service2-box .item .number {
    font-size: 20px;
  }
}
.service3 {
  background: #fff;
  padding: 30px;
}
.service3 .service3-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
}
@media screen and (max-width: 768px) {
  .service3 .service3-box {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }
}
.service3 .service3-box .item {
  border: 1px solid #eee;
  text-align: center;
}
#flaosBox {
  position: fixed;
  width: 75px;
  z-index: 2;
  right: 5px;
  top: 50%;
  margin-top: -145px;
}
@media screen and (max-width: 768px) {
  #flaosBox {
    display: none;
  }
}
#flaosBox li {
  margin-bottom: 2px;
  overflow: hidden;
  height: 56px;
  width: 75px;
  cursor: pointer;
  position: relative;
  background: rgba(218, 184, 102, 0.8);
  max-width: initial;
}
#flaosBox li.queryshow {
  overflow: visible;
}
#flaosBox li.queryshow .box-inner {
  width: 75px;
  position: relative;
  right: auto;
}
#flaosBox li .box-inner {
  width: 225px;
  height: 56px;
  position: absolute;
  right: -150px;
}
#flaosBox li .box-inner a {
  display: block;
  width: 75px;
  float: left;
  height: 20px;
  padding-top: 36px;
  line-height: 18px;
  color: #fff !important;
  text-align: center;
  font-size: 12px;
}
#flaosBox li .box-inner a.icon-tels {
  background: url('../images/icon_tel.png') center 7px no-repeat;
}
#flaosBox li .box-inner a.icon-code {
  background: url('../images/icon_code.png') center 7px no-repeat;
}
#flaosBox li .box-inner a:hover {
  color: #fff;
}
#flaosBox li .box-inner a.icon-top {
  background: url('../images/icon_top.png') center 7px no-repeat;
}
span.box-hide {
  display: block;
  width: 150px;
  float: left;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  line-height: 56px;
  color: #fff;
}
.querycode {
  position: absolute;
  width: 120px;
  height: 120px;
  left: -120px;
  display: none;
}
.querycode img {
  width: 120px;
}
/*# sourceMappingURL=index.css.map */