@charset "utf-8";
/*初始化样式*/
*,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/*设置平滑*/
html, body {
  scroll-behavior: smooth;
}
body {
  font-size: 14px;
  color: #000;
  overflow-x: hidden;
  line-height: 1.8;
  font-family: Montserrat-Regular, '微软雅黑', "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}
/*字体引入*/
@font-face {
  font-family: Montserrat-Light;
  src: url("../webfonts/Montserrat-Light.ttf") format('truetype');
}
@font-face {
  font-family: Montserrat-Regular;
  src: url("../webfonts/Montserrat-Regular.ttf") format('truetype');
}
@font-face {
  font-family: Montserrat-Bold;
  src: url("../webfonts/Montserrat-Bold.ttf") format('truetype');
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}
ol,
ul {
  padding-left: 20px;
}
li::marker {
  color: var(--dominant-color);
}
img {
  vertical-align: top;
  border: 0;
}
input,
select,
textarea,
button {
  vertical-align: middle;
  font-family: Montserrat-Regular, '微软雅黑', "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;

}
textarea,
input {
  text-indent: 10px;
}
/*表单元素默认有20像素的缩进*/
input[type='submit'],
input[type='button'],
button {
  text-indent: 0;
  text-align: center;
  cursor: pointer;
}
label,
button,
a {
  cursor: pointer;
}
ins,
em,
b,
i {
  text-decoration: none;
  font-style: normal;
}
/* 去掉浏览器激活样式 */
select:focus,
textarea:focus,
input:focus,
button {
  outline: none;
  border: none;
}
/* 提示文字的初始样式 */
input::-webkit-input-placeholder,
input::-moz-input-placeholder,
textarea::-webkit-textarea-placeholder,
textarea::-moz-textarea-placeholder {
  color: #999;
  transition: color 0.5s;
}
/* 提示文字的激活样式 */
input:focus::-webkit-input-placeholder,
input:focus::-moz-input-placeholder,
input:hover::-webkit-input-placeholder,
input:hover::-moz-input-placeholder,
textarea:focus::-webkit-input-placeholder,
textarea:focus::-moz-input-placeholder,
textarea:hover::-webkit-input-placeholder,
textarea:hover::-moz-input-placeholder {
  color: #c2c2c2;
}
/* table */
table {
  border-collapse: collapse;
  border-spacing: 0;
  font: inherit;
}
/* a_link */
a {
  color: inherit;
  text-decoration: none;
}
a[href] {
  cursor: pointer;
}
a:hover {
  text-decoration: none;
  cursor: pointer;
}
li {
  max-width: 100%;
}
p {
  white-space: normal;
  max-width: 100%;
}
audio,
canvas,
progress,
video {
  vertical-align: baseline;
}
/*用来解决在安卓上的点击出现篮框问题*/
body {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/*解决ios上去除微信点击蓝色边框 */
a:focus,
input:focus,
p:focus,
div:focus {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
img[src=""],
img:not([src]) {
  opacity: 0;
}
font {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  font-family: inherit;
  font-style: inherit;
  text-transform: inherit;
}
/*默认input样式*/
.input {
  border: 1px solid #e5e5e5;
  width: 100%;
  height: 40px;
  color: #666;
}
input[type=checkbox] {
  appearance: none;
  width: 14px;
  height: 14px;
  border: 1px solid #333;
  position: relative;
  text-indent: 0;
}
input[type=checkbox]:checked {
  background: var(--dominant-color) !important;
  border-color: var(--dominant-color) !important;
}
input[type=checkbox]:checked ~ span {
  color: var(--dominant-color);
}
input[type=checkbox]:checked::after {
  content: '✔';
  color: #fff;
  position: absolute;
  top: -2px;
  left: 0;
  margin: auto;
  width: 14px;
  height: 14px;
}
input[type=radio] {
  border: 1px solid #e5e5e5;
  width: 14px;
  height: 14px;
}
textarea {
  resize: none;
  border: 1px solid #e5e5e5;
  width: 100%;
  min-height: 100px;
  padding: 10px 0;
}
select {
  height: 40px;
  width: 100%;
  padding: 0 20px;
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  color: #666;
  background-size: 11px;
}
.pc {
  display: block;
}
.phone {
  display: none;
}
/*滚动条样式*/
::-webkit-scrollbar {
  width: 6px;
  background-color: #eaeaea;
}
::-webkit-scrollbar-thumb {
  width: 5px;
  border-radius: 10px;
  background-color: var(--dominant-color);
}
::-webkit-scrollbar-corner {
  background-color: #eaeaea;
  height: 10px;
}
::-webkit-scrollbar:horizontal {
  height: 5px;
}
::-webkit-selection {
  background: var(--dominant-color);
  color: #fff;
}
::-moz-selection {
  background: var(--dominant-color);
  color: #fff;
}
/*限制行数*/
.clamp1,
.clamp2,
.clamp3,
.clamp4,
.clamp5,
.clamp6 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.clamp1 {
  -webkit-line-clamp: 1;
}
.clamp2 {
  -webkit-line-clamp: 2;
}
.clamp3 {
  -webkit-line-clamp: 3;
}
.clamp4 {
  -webkit-line-clamp: 4;
}
.clamp5 {
  -webkit-line-clamp: 5;
}
.clamp6 {
  -webkit-line-clamp: 6;
}
/*swiper样式设置*/
body .swiper-button-prev:focus,
body .swiper-button-next:focus,
body .swiper-pagination-bullet:focus {
  outline: none;
}
/*swiper默认样式*/
body .swiper-button-prev,
body .swiper-button-next {
  color: #000;
  width: 64px;
  height: 64px;
  flex-direction: row;
  transition: all 0.5s;
  background: #fff;
  border-radius: 50%;
  border: 1px solid #666;
  z-index: 2;
}
@media screen and (max-width: 1600px) {
  body .swiper-button-prev,
  body .swiper-button-next {
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 768px) {
  body .swiper-button-prev,
  body .swiper-button-next {
    width: 30px;
    height: 30px;
  }
}
body .swiper-button-prev:hover,
body .swiper-button-next:hover {
  background: var(--dominant-color);
  border-color: var(--dominant-color);
}
body .swiper-button-prev:hover::after,
body .swiper-button-next:hover::after {
  color: #fff;
}
body .swiper-button-prev {
  left: 0;
}
body .swiper-button-next {
  right: 0;
}
body .swiper-button-prev::after,
body .swiper-button-next::after {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  body .swiper-button-prev::after,
  body .swiper-button-next::after {
    font-size: 12px;
  }
}
/*默认弹窗样式*/
.pop-up {
  position: fixed;
  z-index: 99;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
}
.pop-up .mask {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}
.pop-up .pop-up-box {
  width: 90%;
  margin-left: 5%;
  height: 100%;
  max-height: 80vh;
  margin-top: 10vh;
}
.pop-up .pop-up-box .loading-box {
  position: relative;
  z-index: 2;
  max-width: 90%;
  height: 80%;
}
.pop-up .pop-up-box video {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.pop-up .pop-up-box .pop-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  z-index: 10;
  cursor: pointer;
  transition: 0.5s;
}
.pop-up .pop-up-box .pop-close i {
  font-size: 36px;
  color: #fff;
}
.form-susses {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 18px;
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.05);
  padding: 40px 50px;
  border-radius: 10px;
  height: fit-content;
  z-index: 999;
  background: #fff;
  width: fit-content;
  display: none;
  align-items: center;
}
.form-susses i {
  color: var(--dominant-color);
  margin-right: 10px;
}

.pop-up .pop-up-box iframe {
  height: auto;
  width: 100%;
  object-fit: contain;
}
/*20241108*/
.pop-up .pop-up-box iframe{
	width: 78vw;
	height: 70vh;
}
@media screen and (max-width: 1024px) {
	.pop-up .pop-up-box iframe{
		width: 90vw;
		height: 60vh;
	}
}
@media screen and (max-width: 768px) {
  input::placeholder,
  textarea::placeholder {
    font-size: 12px !important;
  }
  .pc {
    display: none;
  }
  .phone {
    display: block;
  }
}
/*-----默认配置------*/
.section {
  width: 90%;
  max-width: 1536px;
  margin: auto;
}
img {
  vertical-align: middle;
  max-width: 100%;
}
.imgBox {
  overflow: hidden;
  position: relative;
  height: 0;
  padding-bottom: 100%;
}
.imgBox img {
  width: 100%;
  max-width: 100%;
  transition: all 0.5s;
  height: 100%;
  object-fit: cover;
  position: absolute;
}
.imgBox video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}
.imgBox-hover:hover img {
  transition: all 0.5s;
  transform: scale(1.1);
}
/*头部样式*/
header {
  width: 100%;
  z-index: 10;
  transition: all 0.5s;
  position: fixed;
  top: 0;
  height: 90px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 5px 10px 5px rgba(0, 0, 0, 0.03);
  /*搜索*/
  /*搜索*/
  /*语言*/
  /*语言*/
}
@media screen and (max-width: 1024px) {
  header {
    height: 60px;
  }
}
header.z-active {
  z-index: 99;
}
header.active,
header.hover-active {
  background: #ffffff;
}
header.active .header-box .header-menu nav .first-item .first-item-title,
header.hover-active .header-box .header-menu nav .first-item .first-item-title,
header.active .language .language-title,
header.hover-active .language .language-title {
  color: #333;
}
header.active .search img,
header.hover-active .search img,
header.active .language .language-title img,
header.hover-active .language .language-title img {
  filter: none;
}
header.active .search::after,
header.hover-active .search::after {
  background: #333;
}
@media screen and (max-width: 1024px) {
  header {
    position: relative;
  }
}
header .header-phone-click {
  cursor: pointer;
  width: 22px;
  height: 16px;
  align-items: center;
  position: relative;
  right: 0;
  margin-right: 0;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  header .header-phone-click {
    display: flex;
    order: 3;
    margin-left: 0;
  }
}
header .header-phone-click .phone-click-line {
  height: 2px;
  background: #000;
  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: #000;
  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*/
}
header .header-box .logo {
  max-width:80px;
}
@media screen and (max-width: 1024px) {
  header .header-box .logo {
    width: 100%;
    justify-content: flex-start;
    max-width: 55px;
    display: block;
  }
  header .header-box .logo.pc {
    display: none;
  }
}
header .header-box .logo img {
  max-width: inherit;
  max-height: 100%;
  object-fit: contain;
  width: 100%;
}
header .header-box .header-menu {
  flex: 1;
  height: 100%;
  /*导航*/
  /*导航*/
}
@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 {
  width: 100%;
  color: #fff;
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
}
@media screen and (max-width: 1366px) {
  header .header-box .header-menu nav {
    margin-left: auto;
    margin-right: 40px;
  }
}
@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%;
  margin-right: 60px;
}
@media screen and (max-width: 1600px) {
  header .header-box .header-menu nav .first-item {
    margin-right: 30px;
  }
}
@media screen and (max-width: 1280px) {
  header .header-box .header-menu nav .first-item {
    margin-right: 15px;
  }
}
@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 .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;
  }
}
header .header-box .header-menu nav .first-item.active .first-box::after,
header .header-box .header-menu nav .first-item:hover .first-box::after {
  opacity: 1;
}
header .header-box .header-menu nav .first-item.active .first-item-title,
header .header-box .header-menu nav .first-item:hover .first-item-title {
  color: var(--dominant-color);
}
header .header-box .header-menu nav .first-item.active .first-item-title::after,
header .header-box .header-menu nav .first-item:hover .first-item-title::after {
  opacity: 1;
}
header .header-box .header-menu nav .first-item .first-item-title {
  font-size: 18px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #fff;
  transition: all 0.5s;
  width: 100%;
  /*font-family: Montserrat-Light;*/
  font-family: Montserrat-Bold;
}
@media screen and (max-width: 1600px) {
  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 {
    height: 50px;
    width: 100%;
    justify-content: flex-start;
    color: #333;
  }
}
header .header-box .header-menu nav .first-item .first-item-title::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 0;
  opacity: 0;
  border-width: 10px;
  border-style: solid;
  transition: all 0.5s;
  border-color: transparent transparent var(--dominant-color);
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .first-item-title::after {
    display: none;
  }
}
header .header-box .header-menu nav .first-item i {
  display: none;
  width: 50px;
  height: 50px;
  position: absolute;
  right: -10px;
  top: 0;
  bottom: 0;
  margin: auto;
  cursor: pointer;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item i {
    display: block;
  }
}
header .header-box .header-menu nav .first-item i::before,
header .header-box .header-menu nav .first-item i::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: #000;
}
header .header-box .header-menu nav .first-item i::before {
  width: 14px;
  height: 2px;
}
header .header-box .header-menu nav .first-item i::after {
  height: 14px;
  width: 2px;
}
header .header-box .header-menu nav .first-item i.active {
  transform: rotate(45deg);
}
header .header-box .header-menu nav .first-item .second-box {
  position: absolute;
  top: 90px;
  -webkit-box-shadow: 0 10px 50px rgba(54, 56, 79, 0.11);
  box-shadow: 0 10px 50px rgba(54, 56, 79, 0.11);
  width: 160px;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  background: #ffffff;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  padding: 20px 0;
  /*特殊*/
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box {
    width: 100%;
    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;
    left: 0;
  }
}
header .header-box .header-menu nav .first-item .second-box::before {
  content: '';
  position: absolute;
  height: 10px;
  left: 0;
  top: -10px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box::before {
    display: none;
  }
}
header .header-box .header-menu nav .first-item .second-box::after {
  position: absolute;
  left: 0;
  right: 0;
  top: -20px;
  margin: auto;
  width: 0;
  height: 0;
  border-width: 10px;
  border-style: solid;
  border-color: #eee transparent transparent;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box::after {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box .second-item {
    position: relative;
  }
}
header .header-box .header-menu nav .first-item .second-box .second-item i {
  bottom: auto;
  height: 40px;
}
header .header-box .header-menu nav .first-item .second-box .second-item .second-item-title {
  color: #666;
  display: block;
  font-size: 14px;
  transition: all 0.2s;
  padding: 10px 20px;
  line-height: 1.4;
  text-align: left;
}
@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: 10px;
    border-bottom: 1px solid #eee;
  }
}
@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 {
  color: var(--dominant-color);
}
header .header-box .header-menu nav .first-item .second-box .second-item:hover .three-box {
  opacity: 1;
  pointer-events: auto;
}
header .header-box .header-menu nav .first-item .second-box .three-box {
  width: 140px;
  padding: 30px;
  position: absolute;
  left: 100%;
  top: 0;
  background: var(--dominant-color);
  opacity: 0;
  pointer-events: none;
  height: 100%;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box .three-box {
    padding: 0;
    pointer-events: auto;
    position: initial;
    opacity: 1;
    display: none;
    border: none;
  }
}
header .header-box .header-menu nav .first-item .second-box .three-box.active {
  display: block;
}
header .header-box .header-menu nav .first-item .second-box .three-box .three-item-title {
  margin-bottom: 10px;
  display: block;
  color: #fff;
  font-size: 14px;
}
@media screen and (max-width: 1440px) {
  header .header-box .header-menu nav .first-item .second-box .three-box .three-item-title {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box .three-box .three-item-title {
    font-size: 12px;
    margin-bottom: 0;
    padding: 10px 20px;
  }
}
header .header-box .header-menu nav .first-item .second-box .three-box .three-item-title:hover {
  color: #fff;
  text-decoration: underline;
}
header .header-box .header-menu nav .first-item .second-box .three-box::after {
  content: '';
  width: 20px;
  height: 100%;
  left: -10px;
  position: absolute;
  top: 0;
  background: #fff;
  z-index: -1;
}
header .header-box .header-menu nav .first-item .second-box.product-second-box {
  width: 100vw;
  min-height: 338px;
  padding: 0;
  position: fixed;
  border-radius: 0;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box.product-second-box {
    position: relative;
  }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .product-box {
  align-items: flex-start;
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box.product-second-box .product-box {
    width: 100%;
  }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .left {
  flex-basis: 300px;
  background: #fff;
  border-radius: 10px 0 0 10px;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box.product-second-box .left {
    flex-basis: 100px;
  }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .left .p-title {
  margin-bottom: 20px;
  color: #888;
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .left .p-item {
  color: #333;
  margin-bottom: 10px;
  width: 100%;
  background: #f8f8f8;
  padding: 15px;
  font-size: 14px;
  transition: all 0.5s;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box.product-second-box .left .p-item {
    font-size: 12px;
    padding: 10px;
  }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .left .p-item:hover,
header .header-box .header-menu nav .first-item .second-box.product-second-box .left .p-item.active {
  background: #e7e7e7;
  color: #2f2f2f;
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .right {
  margin-left: 60px;
  flex: 1;
  border-radius: 0 10px 10px 0;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box.product-second-box .right {
    margin-left: 10px;
  }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .right .p-items {
  display: none;
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .right .p-items .p-title {
  color: #333;
  margin-bottom: 20px;
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .right .p-items.active {
  display: block;
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .right .p-items .p-item {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box.product-second-box .right .p-items .p-item {
    display: flex;
    overflow: auto;
    grid-gap: 10px;
  }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .right .p-items .p-item .item {
  background: #f1f2f4;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box.product-second-box .right .p-items .p-item .item {
    flex-shrink: 0;
    width: 130px;
  }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .right .p-items .p-item .item .imgBox {
  padding-bottom: 75%;
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .right .p-items .p-item .title {
  color: #333;
  text-align: center;
  margin-top: 10px;
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item {
  flex-basis: 20%;
  margin: 0;
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item {
    flex-basis: 100%;
  }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .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.product-second-box .second-item:nth-child(n + 6) {
    margin-top: 0;
  }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .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.product-second-box .second-item .img {
    display: none;
  }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .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.product-second-box .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.product-second-box .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.product-second-box .second-item .second-item-title:hover {
  color: var(--dominant-color);
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .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.product-second-box .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.product-second-box .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.product-second-box .second-item .three-box .three-item-title:hover {
  color: var(--dominant-color);
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .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.product-second-box .second-item:hover .three-box {
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 1025px) {
  header .header-box .header-menu nav .first-item:hover .second-box {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
header .header-box .header-menu nav .first-item:hover a {
  color: var(--dominant-color);
}
header .header-box .header-menu nav .logo {
  margin-left: auto;
  margin-right: auto;
}
header .header-box .header-menu nav .logo ~ .first-item {
  margin-left: 60px;
  margin-right: 0;
}
@media screen and (max-width: 1600px) {
  header .header-box .header-menu nav .logo ~ .first-item {
    margin-left: 30px;
  }
}
@media screen and (max-width: 1280px) {
  header .header-box .header-menu nav .logo ~ .first-item {
    margin-left: 15px;
  }
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .logo ~ .first-item {
    margin-left: 0;
  }
}
header .header-box .header-menu nav .shop {
  margin-left: 60px;
  background: #1e1e1e;
  border-radius: 25px;
  width: 120px;
  height: 50px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
}
@media screen and (max-width: 1600px) {
  header .header-box .header-menu nav .shop {
    margin-left: 30px;
  }
}
@media screen and (max-width: 1280px) {
  header .header-box .header-menu nav .shop {
    margin-left: 15px;
  }
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .shop {
    margin-left: 0;
    margin-top: 30px;
    height: 40px;
    font-size: 14px;
    width: 100%;
  }
}
header .header-box .header-menu nav .shop img {
  width: 19px;
  height: 19px;
  margin-right: 10px;
}
header .search {
  margin: 0 20px 0 40px;
  position: relative;
  cursor: pointer;
  transition: all 0.5s;
  justify-content: center;
}
header .search::after {
  /*content: '';*/
  top: 0;
  bottom: 0;
  right: 0;
  background: #fff;
  width: 1px;
  height: 16px;
}
@media screen and (max-width: 768px) {
  header .search::after {
    background: #333;
  }
}
@media screen and (max-width: 1024px) {
  header .search {
    margin-left: auto;
    display: none;
  }
}
header .search.phone-search {
  display: none !important;
}
@media screen and (max-width: 1024px) {
  header .search.phone-search {
    display: block !important;
  }
}
header .search .search-click {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  /*padding-right: 20px;*/
}
header .search img {
  width: 16px;
  filter: brightness(100);
}
@media screen and (max-width: 768px) {
  header .search img {
    filter: none;
  }
}
header .language {
  color: #fff;
  position: relative;
  cursor: pointer;
  width: 46px;
  height: 46px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  header .language {
    margin-top: 30px;
  }
}
header .language .language-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  grid-gap: 2px;
  font-family: Montserrat-Light;
}
@media screen and (max-width: 768px) {
  header .language .language-title {
    color: #333;
  }
}
header .language .language-title i {
  font-size: 14px;
  transform: translateY(1px);
}
header .language .language-title img {
  width: 16px;
  filter: brightness(100);
}
@media screen and (max-width: 768px) {
  header .language .language-title img {
    filter: none;
  }
}
header .language .language-show {
  position: absolute;
  top: 20px;
  padding-top: 50px;
  color: #333;
  left: 50%;
  margin: auto;
  width: 120px;
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) translateX(-50%);
  pointer-events: none;
}
header .language .language-show .language-show-box {
  background: var(--dominant-color);
}
header .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);
  display: block;
  text-align: center;
  transition: all 0.5s;
}
header .language .language-show .language-show-item:hover {
  background: var(--dominant-color);
  color: #fff;
}
header .language:hover .language-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) translateX(-50%);
  pointer-events: auto;
}
header .header-contact {
  margin-left: 50px;
  font-size: 14px;
  font-weight: 600;
  width: 133px;
  height: 42px;
  background: var(--dominant-color);
  color: #fff;
  border-radius: 21px;
}
@media screen and (max-width: 1024px) {
  header .header-contact {
    display: none;
  }
}
header .header-contact img {
  margin-right: 20px;
  width: 20px;
}
header .header-search-box {
  display: none;
}
header .header-search {
  position: fixed;
  top: 90px;
  left: 0;
  width: 100%;
  background: var(--dominant-color);
  height: 100px;
  z-index: 99;
}
@media screen and (max-width: 1024px) {
  header .header-search {
    top: 60px;
  }
}
header .header-search label {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
  display: block;
  width: 100%;
  position: relative;
}
header .header-search label input {
  width: 100%;
  height: 50px;
  border: none;
  border-bottom: 1px solid #eee;
  background: none;
  color: #fff;
}
header .header-search label input::placeholder {
  color: #fff;
}
header .header-search label button {
  width: 50px;
  height: 50px;
  background: none;
  color: #fff;
  font-size: 16px;
  position: absolute;
  right: 0;
  top: 0;
}
header .header-search label button img {
  width: 16px;
  filter: brightness(100);
}
header .header-search label i {
  position: absolute;
  font-size: 20px;
  right: -50px;
  top: 0;
  bottom: 0;
  margin: auto;
  height: fit-content;
}
@media screen and (min-width: 1025px) {
  .index header .logo {
    filter: none;
  }
  .index header .header-box .header-menu nav .first-item .first-item-title {
    color: rgba(255, 255, 255, 0.6);
  }
  .index header .header-box .header-menu nav .first-item:hover .first-item-title,
  .index header .header-box .header-menu nav .first-item.active .first-item-title {
    color: #fff;
  }
}
/*底部样式*/
.footer-email {
  height: 245px;
}
@media screen and (max-width: 768px) {
  .footer-email {
    height: auto;
    padding: 30px 0;
  }
}
.footer-email .footer-email-box {
  height: 100%;
}
@media screen and (max-width: 768px) {
  .footer-email .footer-email-box {
    flex-direction: column;
  }
}
.footer-email .footer-email-box .left {
  flex-basis: 360px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .footer-email .footer-email-box .left {
    flex-basis: auto;
  }
}
.footer-email .footer-email-box .left .title {
  font-size: 26px;
  font-family: Montserrat-Bold;
}
.footer-email .footer-email-box .left .summary {
  margin-top: 10px;
  font-size: 16px;
  font-family: Montserrat-Light;
}
.footer-email .footer-email-box .mid {
  flex-basis: 350px;
}
@media screen and (max-width: 768px) {
  .footer-email .footer-email-box .mid {
    flex-basis: 100%;
    margin-top: 30px;
    width: 100%;
  }
}
.footer-email .footer-email-box .mid input {
  flex-basis: 240px;
  background: #fff;
  border-radius: 18px;
  height: 36px;
  border: none;
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  .footer-email .footer-email-box .mid input {
    flex: 1;
  }
}
.footer-email .footer-email-box .mid button {
  width: 86px;
  height: 36px;
  border-radius: 18px;
  transition: all 0.5s;
  background: #fff;
}
.footer-email .footer-email-box .mid button:hover {
  opacity: 0.7;
}
.footer-email .footer-email-box .mid button img {
  width: 20px;
  transition: all 0.5s;
}
.footer-email .footer-email-box .right {
  flex-basis: 360px;
}
@media screen and (max-width: 1600px) {
  .footer-email .footer-email-box .right {
    flex-basis: 260px;
  }
}
@media screen and (max-width: 768px) {
  .footer-email .footer-email-box .right {
    flex-basis: auto;
    justify-content: flex-start;
    margin-top: 50px;
    width: 100%;
  }
}
.footer-email .footer-email-box .right a {
  transition: all 0.5s;
  margin-left: 10px;
  display: block;
}
.footer-email .footer-email-box .right a img {
  width: auto;
  height: 24px;
}
.footer-email .footer-email-box .right a:hover {
  opacity: 0.6;
}
.footer {
  z-index: 4;
  position: relative;
  background: #414141;
}
.footer .footer-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  .footer .footer-box {
    padding: 50px 0;
    flex-direction: column;
  }
}
.footer .footer-box .left {
  flex-basis: 380px;
}
@media screen and (max-width: 1600px) {
  .footer .footer-box .left {
    flex-basis: 300px;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer-box .left {
    flex-basis: auto;
  }
}
.footer .footer-box .right {
  flex: 1;
}
.footer .footer-menu {
  display: flex;
  justify-content: flex-end;
  flex-basis: 100%;
  grid-gap: 80px;
}
@media screen and (max-width: 768px) {
  .footer .footer-menu {
    flex-direction: column;
    grid-gap: 0;
  }
}
.footer .footer-menu .item {
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer .footer-menu .item {
    padding-bottom: 0;
  }
}
.footer .footer-menu .first-item {
  display: block;
  font-size: 18px;
  color: #fff;
  position: relative;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .footer .footer-menu .first-item {
    pointer-events: auto;
    height: 64px;
    line-height: 64px;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .footer .footer-menu .first-item i {
    width: 26px;
    height: 64px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    cursor: pointer;
    transition: all 0.5s;
    display: block;
  }
  .footer .footer-menu .first-item i::before,
  .footer .footer-menu .first-item i::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background: #fff;
    transition: all 0.5s;
  }
  .footer .footer-menu .first-item i::before {
    width: 12px;
    height: 2px;
  }
  .footer .footer-menu .first-item i::after {
    height: 12px;
    width: 2px;
  }
  .footer .footer-menu .first-item i.active::after {
    transform: rotate(90deg);
  }
}
.footer .footer-menu .first-summary {
  border-bottom: 1px solid #eee;
  font-size: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  color: #fff;
  margin-top: 20px;
}
.footer .footer-menu .bottom .b-item {
  display: flex;
  align-items: center;
  color: #fff;
  margin-bottom: 10px;
}
.footer .footer-menu .bottom .b-item .icon {
  margin-right: 20px;
}
.footer .footer-menu .second-box {
  margin-top: 20px;
}
@media screen and (max-width: 1600px) {
  .footer .footer-menu .second-box {
    min-width: auto;
  }
}
.footer .footer-menu .second-box img {
  max-width: 120px;
}
@media screen and (max-width: 768px) {
  .footer .footer-menu .second-box {
    margin-top: 20px;
    line-height: 1.6;
    border-top: none;
    padding-top: 0;
    display: none;
  }
}
.footer .footer-menu .second-box a,
.footer .footer-menu .second-box span {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  transition: all 0.5s;
  position: relative;
  width: fit-content;
  margin-bottom: 6px;
  line-height: 1.6;
  font-family: Montserrat-Light;
}
@media screen and (max-width: 768px) {
  .footer .footer-menu .second-box a,
  .footer .footer-menu .second-box span {
    width: 100%;
  }
}
.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: #fff;
}
.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: 0;
  }
}
.footer .footer-text .footer-logo {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .footer .footer-text .footer-logo {
    margin-bottom: 30px;
  }
}
.footer .footer-text .footer-logo img {
  max-width: 100px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .footer .footer-text .footer-logo img {
    max-width: 100px;
  }
}
.footer .footer-text .list {
  display: flex;
  flex-wrap: wrap;
}
.footer .footer-text .list .item {
  width: 100%;
  display: flex;
  align-items: baseline;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 1600px) {
  .footer .footer-text .list .item {
    flex-basis: 100%;
    margin-bottom: 10px;
  }
}
.footer .footer-text .list .item .sup {
  font-size: 20px;
}
.footer .footer-text .list .item .text {
  transform: translateY(-4px);
  font-size: 12px;
  margin-left: 10px;
  line-height: 1.6;
}
.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 {
  padding: 30px 0 ;
  flex-basis: 100%;
  color: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .footer .footer-text .footer-copyright {
    margin-top: 0;
    padding-top: 0;
    border: none;
    font-size: 12px;
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer-text .footer-copyright .c-div {
    width: 100%;
    text-align: center;
  }
}
.footer .footer-text .footer-copyright .c-div a {
  color: rgba(255, 255, 255, 0.3);
  transition: all 0.5s;
}
.footer .footer-text .footer-copyright .c-div a:hover {
  color: var(--dominant-color);
  text-decoration: underline;
}
.footer .footer-messages {
  flex-basis: 50%;
}
@media screen and (max-width: 768px) {
  .footer .footer-messages {
    width: 100%;
    margin-bottom: 30px;
    margin-top: 30px;
  }
}
.footer .footer-messages label {
  display: block;
  background: #414041;
  position: relative;
}
.footer .footer-messages label input {
  height: 50px;
  width: 100%;
  background: #414041;
  border: none;
  color: #fff;
}
.footer .footer-messages label button {
  position: absolute;
  right: 0;
  top: 0;
  height: 50px;
  width: 120px;
  background: #009de1;
  color: #fff;
}
.footer .footer-bottom {
  color: rgba(255, 255, 255, 0.6);
  padding-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer .footer-bottom .link {
  display: flex;
  align-items: center;
  grid-gap: 20px;
}
@media screen and (max-width: 768px) {
  .footer .footer-bottom .link {
    margin-bottom: 20px;
  }
}
.footer .footer-bottom .link .item {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: all 0.5s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .footer-bottom .link .item i {
  font-size: 18px;
  color: #fff;
  opacity: 0.6;
}
.footer .footer-bottom .link .item .show {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  display: none;
}
.footer .footer-bottom .link .item:hover {
  background: var(--dominant-color);
}
.footer .footer-bottom .link .item:hover .show {
  display: block;
}
.footer .footer-link {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 30px 0;
}
@media screen and (max-width: 768px) {
  .footer .footer-link {
    padding: 20px 0;
    border-top: none;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer-link .footer-link-box {
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer .footer-link .left {
  opacity: 0.3;
  line-height: 1.6;
}
.footer .footer-link .right {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .footer .footer-link .right {
    margin-top: 10px;
  }
}
.go-top {
  width: 140px;
  height: 50px;
  z-index: 1;
  font-size: 16px;
  border-radius: 25px;
  transition: all 0.5s;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
}
.go-top img {
  width: 16px;
  margin-left: 20px;
}
.go-top i {
  transition: all 0.5s;
}
.go-top:hover {
  background: var(--dominant-color) !important;
}
.go-top:hover i {
  color: #fff;
}
/*底部样式*/
/*根元素代码*/
:root {
  /*--dominant-color:#3a93bd;*/
  --dominant-color: #00a961;
  /*--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));
}
/*--------------------------------------------------------*/
/*通用*/
.index-padding {
  padding: 120px 0;
}
@media screen and (max-width: 1600px) {
  .index-padding {
    padding: 80px 0;
  }
}
@media screen and (max-width: 768px) {
  .index-padding {
    padding: 50px 0;
  }
}
.index-title {
  color: #9b9b9b;
}
.index-title .sup {
  color: var(--dominant-color);
  font-size: 16px;
}
.index-title .title {
  font-weight: 600;
  font-size: 40px;
  line-height: 1.3;
  color: var(--dominant-color);
}
@media screen and (max-width: 1600px) {
  .index-title .title {
    font-size: 32px;
  }
}
@media screen and (max-width: 1440px) {
  .index-title .title {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .index-title .title {
    font-size: 20px;
  }
}
.index-title .title span {
  color: #9b9b9b;
}
.index-title .tip {
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--dominant-color);
  font-size: 20px;
}
@media screen and (max-width: 1440px) {
  .index-title .tip {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .index-title .tip {
    font-size: 14px;
    margin-bottom: 6px;
  }
}
.index-title .summary {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (max-width: 1440px) {
  .index-title .summary {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .index-title .summary {
    font-size: 14px;
  }
}
.index-title .summary span {
  color: #000;
}
.index-title .summary2 {
  font-size: 18px;
  color: #666666;
  margin: 30px 0 40px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .index-title .summary2 {
    font-size: 14px;
  }
}
.index-title .summary3 {
  font-size: 16px;
  color: #666666;
  margin: 30px 0 40px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .index-title .summary3 {
    font-size: 14px;
  }
}
.index-title .summary3 a {
  color: var(--dominant-color);
}
.f-more {
  font-size: 18px;
  color: #000;
  line-height: 1;
  text-align: center;
  border-radius: 25px;
  transition: all 0.5s;
  padding: 16px 29px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  background: #fff;
  min-width: 160px;
}
.f-more::after {
  content: '→';
  margin-left: 10px;
  transition: all 0.5s;
}
@media screen and (max-width: 1600px) {
  .f-more {
    font-size: 14px;
  }
}
.f-more.black {
  background: #000;
  color: #fff;
}
.f-more:hover {
  opacity: 0.6;
}
.f-more-show {
  font-size: 16px;
  color: var(--dominant-color);
  line-height: 1;
  padding: 15px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: auto;
  cursor: pointer;
}
.zhan-wei {
  height: 90px;
}
@media screen and (max-width: 1024px) {
  .zhan-wei {
    height: 80px;
  }
}
@media screen and (max-width: 768px) {
  .zhan-wei {
    display: none;
  }
}
.zhan-wei2 {
  height: 100px;
}
@media screen and (max-width: 1024px) {
  .zhan-wei2 {
    height: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .zhan-wei2 {
    display: none;
  }
}
/*--------------------------------------------------------*/
/*--------------------------------------------------------*/
/*首页*/
/*轮播*/
.banner {
  width: 100%;
}
.banner .img {
  height: 100%;
}
.banner .img img,
.banner .img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .banner .img img,
  .banner .img video {
    /*height: 80vh;*/
  }
}
.banner .swiper-banner {
  height: 100%;
}
.banner .swiper-banner .text {
  margin: auto;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  top: 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: auto;
    bottom: 100px;
  }
}
.banner .swiper-slide {
  height: 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 .sup {
  transition: all 1s;
  transform: translateY(100px);
  opacity: 0;
  font-size: 20px;
  color: #000;
}
@media screen and (max-width: 1600px) {
  .banner .swiper-banner .text .sup {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .banner .swiper-banner .text .sup {
    font-size: 14px;
  }
}
.banner .swiper-banner .text .title {
  font-size: 112px;
  transition: all 1s;
  transform: translateY(100px);
  opacity: 0;
  width: 100%;
  line-height: 1.1;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
}
@media screen and (max-width: 1600px) {
  .banner .swiper-banner .text .title {
    font-size: 78px;
  }
}
@media screen and (max-width: 1366px) {
  .banner .swiper-banner .text .title {
    font-size: 60px;
  }
}
@media screen and (max-width: 768px) {
  .banner .swiper-banner .text .title {
    font-size: 32px;
    line-height: 1.3;
  }
}
.banner .swiper-banner .text .summary {
  margin-top: 20px;
  font-size: 20px;
  transition: all 1s;
  transform: translateY(100px);
  opacity: 0;
  width: 100%;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.6);
}
@media screen and (max-width: 1600px) {
  .banner .swiper-banner .text .summary {
    font-size: 22px;
  }
}
@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 .more {
  width: 220px;
  height: 58px;
  background: #fff;
  color: var(--dominant-color);
  border-right: none;
  transition: all 0.5s;
  position: relative;
  border-radius: 29px;
  font-size: 16px;
  text-transform: uppercase;
  border: 1px solid #494848;
}
@media screen and (max-width: 1600px) {
  .banner .swiper-banner .text .banner-more .more {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .banner .swiper-banner .text .banner-more .more {
    width: 160px;
    height: 50px;
    font-size: 14px;
  }
}
.banner .swiper-banner .text .banner-more .more i {
  font-size: 12px;
  margin-left: 4px;
  transform: translateY(1px);
}
@media screen and (max-width: 768px) {
  .banner .swiper-banner .text .banner-more .more img {
    height: 50px;
  }
}
.banner .swiper-banner .text .banner-more .more:hover {
  background: var(--dominant-color);
  color: #fff;
}
.banner .swiper-banner .swiper-slide-active .img {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.3s;
}
.banner .swiper-banner .swiper-slide-active .sup {
  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: 30px;
  width: 90%;
  max-width: 1720px;
  margin: auto;
  left: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .banner .swiper-banner .swiper-horizontal > .swiper-pagination-bullets,
  .banner .swiper-banner .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 30px;
  }
}
.banner .swiper-banner .swiper-pagination-bullet {
  --swiper-pagination-bullet-inactive-color: #fff;
  opacity: 0.4;
  --swiper-pagination-bullet-width: 12px;
  --swiper-pagination-bullet-height: 12px;
  --swiper-pagination-bullet-horizontal-gap: 5px;
  position: relative;
  border-radius: 50%;
}
.banner .swiper-banner .swiper-pagination-bullet::after {
  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: var(--dominant-color);
  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;
}
.new-product {
  position: relative;
}
.new-product .img img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .new-product .img img {
    height: 500px;
    object-fit: cover;
  }
}
.new-product .text {
  position: absolute;
  top: 15%;
  text-align: center;
  left: 0;
  right: 0;
  margin: auto;
}
.new-product .text .summary {
  font-size: 24px;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .new-product .text .summary {
    font-size: 16px;
  }
}
.new-product .text .more {
  color: #fff;
  margin-top: 30px;
  text-align: center;
}
.index1 {
  overflow: hidden;
  position: relative;
}
.index1 .page-title {
  position: absolute;
  top: 120px;
  left: 0;
  right: 0;
  z-index: 2;
}
.index1 .swiper-slide {
  height: auto;
}
.index1 .swiper-slide video {
  display: block;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .index1 .page-title {
    top: 50px;
  }
}
.index1 .big-swiper .swiper-slide::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.index1 .big-swiper img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .index1 .big-swiper img {
    height: 300px;
    object-fit: cover;
  }
}
.index1 .big-swiper .text {
  position: absolute;
  top: 15%;
  left: 0;
  right: 0;
  margin: auto;
  color: #fff;
  z-index: 2;
}
.index1 .big-swiper .text .title {
  font-size: 88px;
  font-family: 'Poppins-SemiBold';
}
@media screen and (max-width: 1600px) {
  .index1 .big-swiper .text .title {
    font-size: 54px;
  }
}
@media screen and (max-width: 1440px) {
  .index1 .big-swiper .text .title {
    font-size: 40px;
  }
}
@media screen and (max-width: 768px) {
  .index1 .big-swiper .text .title {
    font-size: 20px;
  }
}
.index1 .big-swiper .text .summary {
  font-size: 30px;
  max-width: 800px;
}
@media screen and (max-width: 1600px) {
  .index1 .big-swiper .text .summary {
    font-size: 20px;
  }
}
@media screen and (max-width: 1440px) {
  .index1 .big-swiper .text .summary {
    font-size: 14px;
  }
}
.index1 .small-box {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 1800px;
}
@media screen and (max-width: 768px) {
  .index1 .small-box {
    bottom: 20px;
  }
}
.index1 .small-box .swiper {
  padding-bottom: 100px;
}
@media screen and (max-width: 1600px) {
  .index1 .small-box .swiper {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  .index1 .small-box .swiper {
    padding-bottom: 0;
  }
}
.index1 .small-box .small-swiper {
  width: calc(100% - 200px);
  margin: auto;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .index1 .small-box .small-swiper {
    width: calc(100% - 80px);
  }
}
.index1 .small-box .small-swiper .swiper-slide {
  cursor: pointer;
  opacity: 0.3;
  transition: opacity 0.5s;
  padding-left: 100px;
}
@media screen and (max-width: 1600px) {
  .index1 .small-box .small-swiper .swiper-slide {
    padding-left: 50px;
  }
}
@media screen and (max-width: 768px) {
  .index1 .small-box .small-swiper .swiper-slide {
    padding-left: 20px;
    opacity: 1;
  }
}
.index1 .small-box .small-swiper .swiper-slide.swiper-slide-thumb-active,
.index1 .small-box .small-swiper .swiper-slide:hover {
  opacity: 1;
}
.index1 .small-box .small-swiper .swiper-slide.swiper-slide-thumb-active .more,
.index1 .small-box .small-swiper .swiper-slide:hover .more {
  opacity: 1;
}
.index1 .small-box .small-swiper .swiper-slide .title {
  font-size: 32px;
  line-height: 1.2;
  text-align: center;
}
@media screen and (max-width: 1600px) {
  .index1 .small-box .small-swiper .swiper-slide .title {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .index1 .small-box .small-swiper .swiper-slide .title {
    font-size: 16px;
  }
}
.index1 .small-box .small-swiper .swiper-slide .summary {
  margin-top: 10px;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 1600px) {
  .index1 .small-box .small-swiper .swiper-slide .summary {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .index1 .small-box .small-swiper .swiper-slide .summary {
    font-size: 12px;
    margin-bottom: 20px;
  }
}
.index1 .small-box .small-swiper .swiper-slide .more {
  display: block;
  transition: all 0.5s;
  opacity: 0;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .index1 .small-box .small-swiper .swiper-slide .more {
    font-size: 12px;
  }
}
.index1 .small-box .swiper-button-prev,
.index1 .small-box .swiper-button-next {
  background: #fff;
  width: 50px;
  height: 50px;
  border: none;
}
@media screen and (max-width: 768px) {
  .index1 .small-box .swiper-button-prev,
  .index1 .small-box .swiper-button-next {
    width: 30px;
    height: 30px;
  }
}
.index1 .small-box .swiper-button-prev::after,
.index1 .small-box .swiper-button-next::after {
  font-size: 16px;
  color: #666;
}
@media screen and (max-width: 768px) {
  .index1 .small-box .swiper-button-prev::after,
  .index1 .small-box .swiper-button-next::after {
    font-size: 16px;
  }
}
.index1 .small-box .swiper-button-prev:hover,
.index1 .small-box .swiper-button-next:hover {
  background: var(--dominant-color);
}
.index1 .small-box .swiper-button-prev:hover::after,
.index1 .small-box .swiper-button-next:hover::after {
  color: #fff;
}
.index2 .index2-box {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 35px;
}
@media screen and (max-width: 768px) {
  .index2 .index2-box {
    grid-gap: 20px;
    margin-top: 20px;
  }
}
.index2 .index2-box .item {
  background: #f1f2f4;
  border-radius: 10px;
  overflow: hidden;
}
.index2 .index2-box .item .imgBox {
  padding-bottom: 70%;
}
.index2 .index2-box .item .text {
  text-align: center;
  padding: 0 30px 100px 30px;
  max-width: 500px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .index2 .index2-box .item .text {
    padding: 20px;
  }
}
.index2 .index2-box .item .text .title {
  font-size: 32px;
  font-family: Montserrat-Bold;
  transition: all 0.5s;
}
@media screen and (max-width: 1600px) {
  .index2 .index2-box .item .text .title {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .index2 .index2-box .item .text .title {
    font-size: 16px;
  }
}
.index2 .index2-box .item .text .summary {
  color: #666;
  margin-top: 10px;
  margin-bottom: 20px;
}
.index2 .index2-box .item .text .more {
  color: var(--dominant-color);
}
.index2 .index2-box .item:hover .title {
  color: var(--dominant-color);
}
.index3 .contact3-box {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .index3 .contact3-box {
    margin-top: 20px;
  }
}
.index4 .index4-box .item {
  color: #fff;
  text-align: center;
}
.index4 .index4-box .item .number {
  font-size: 68px;
  font-family: Montserrat-Bold;
}
@media screen and (max-width: 1600px) {
  .index4 .index4-box .item .number {
    font-size: 48px;
  }
}
@media screen and (max-width: 768px) {
  .index4 .index4-box .item .number {
    font-size: 24px;
  }
}
.index4 .index4-box .item .summary {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .index4 .index4-box .item .summary {
    font-size: 14px;
  }
}
.index4 .index4-box .top,
.index4 .index4-box .bottom {
  grid-gap: 180px;
}
@media screen and (max-width: 1600px) {
  .index4 .index4-box .top,
  .index4 .index4-box .bottom {
    grid-gap: 120px;
  }
}
@media screen and (max-width: 768px) {
  .index4 .index4-box .top,
  .index4 .index4-box .bottom {
    flex-direction: column;
    grid-gap: 40px;
  }
}
.index4 .index4-box .bottom {
  margin-top: 120px;
}
@media screen and (max-width: 1600px) {
  .index4 .index4-box .bottom {
    margin-top: 80px;
  }
}
@media screen and (max-width: 768px) {
  .index4 .index4-box .bottom {
    margin-top: 40px;
  }
}
.index5 .index5-box {
  margin-top: 50px;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .index5 .index5-box {
    flex-direction: column;
    margin-top: 20px;
  }
}
.index5 .index5-box .left {
  flex-basis: 50%;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .index5 .index5-box .left {
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
    padding-bottom: 20px;
    flex-basis: 100%;
    width: 100%;
  }
}
.index5 .index5-box .left .item {
  position: relative;
}
.index5 .index5-box .left .item .text {
  position: absolute;
  bottom: 0;
  padding: 50px;
}
@media screen and (max-width: 768px) {
  .index5 .index5-box .left .item .text {
    padding: 20px;
  }
}
.index5 .index5-box .left .item .text .title {
  color: #fff;
  position: relative;
}
.index5 .index5-box .left .item .text .title span {
  font-size: 12px;
  background: var(--dominant-color);
  padding: 3px 5px;
  border-radius: 3px;
  position: relative;
  color: #fff;
  bottom: 3px;
}
.index5 .index5-box .left .item .text .title span::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-width: 4px;
  border-style: solid;
  transition: all 0.5s;
  border-color: transparent var(--dominant-color) transparent transparent;
}
.index5 .index5-box .left .item .text .summary {
  margin-top: 10px;
  color: #fff;
}
.index5 .index5-box .right {
  flex: 1;
  margin-left: 80px;
  grid-gap: 10px 0;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .index5 .index5-box .right {
    margin-left: 0;
  }
}
.index5 .index5-box .right .item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eee;
  margin-bottom: 40px;
  padding-bottom: 40px;
  transition: all 0.5s;
}
@media screen and (max-width: 1600px) {
  .index5 .index5-box .right .item {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 1366px) {
  .index5 .index5-box .right .item {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}
.index5 .index5-box .right .item .summary {
  color: #999;
  margin-top: 20px;
  margin-bottom: 30px;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .index5 .index5-box .right .item .summary {
    margin-bottom: 10px;
    margin-top: 10px;
  }
}
.index5 .index5-box .right .item .more {
  color: #999;
  transition: all 0.5s;
}
.index5 .index5-box .right .item:hover {
  border-color: var(--dominant-color);
}
.index5 .index5-box .right .item:hover .title,
.index5 .index5-box .right .item:hover .more {
  color: var(--dominant-color);
}
.index5 .index5-box .right .item:hover .summary {
  color: #333;
}
.index5 .index5-box .right .all-more {
  width: 220px;
  height: 58px;
  border-radius: 29px;
  background: var(--dominant-color);
  color: #fff;
}
.index5 .index5-box .right .all-more i {
  margin-left: 4px;
}
.index5 .index5-box .title {
  font-size: 24px;
  transition: all 0.5s;
}
@media screen and (max-width: 1600px) {
  .index5 .index5-box .title {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .index5 .index5-box .title {
    font-size: 16px;
  }
}
.index6 {
  border-radius: 10px;
  overflow: hidden;
  font-size: 36px;
  color: #fff;
  margin-bottom: 120px;
  position: relative;
}
@media screen and (max-width: 1600px) {
  .index6 {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .index6 {
    font-size: 20px;
    margin-bottom: 80px;
  }
}
.index6 .text {
  position: relative;
  z-index: 2;
}
.index6 .text img {
  margin-right: 10px;
}
.index6 .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.index6 .img img {
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
  width: 100%;
}
.index6:hover .img img {
  transform: scale(1.05);
}
.form {
  display: flex;
  grid-gap: 30px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .form {
    grid-gap: 10px;
  }
}
.form label {
  display: block;
  flex-basis: calc(50% - 15px);
}
@media screen and (max-width: 768px) {
  .form label {
    flex-basis: 100%;
  }
}
.form label.w100 {
  flex-basis: 100%;
}
.form select {
  height: 58px;
  padding-left: 20px;
  background: #f1f1f1;
  border: none;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .form select {
    font-size: 12px;
  }
}
.form input {
  width: 100%;
  height: 58px;
  border-radius: 10px;
  background: #f1f1f1;
  border: none;
  padding: 0 20px;
  text-indent: 0;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .form input {
    height: 50px;
    padding: 0 10px;
  }
}
.form textarea {
  border-radius: 10px;
  height: 154px;
  background: #f1f1f1;
  border: none;
  padding: 20px;
  text-indent: 0;
  font-size: 16px;
}
.form .a,
.form button {
  width: 100%;
  margin: auto;
  height: 58px;
  background: var(--dominant-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .form .a,
  .form button {
    font-size: 16px;
  }
}
.f-button {
  display: flex;
  width: 200px;
  height: 50px;
  background: #00abf1;
  border-radius: 4px;
  color: #fff;
  justify-content: center;
  align-items: center;
  font-size: 16px;
}
.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: 1;
  font-size: 36px;
  color: #333;
  position: relative;
  font-family: Montserrat-Bold;
}
@media screen and (max-width: 1600px) {
  .page-title .title {
    font-size: 26px;
  }
}
@media screen and (max-width: 768px) {
  .page-title .title {
    font-size: 20px;
  }
}
.page-title .title img {
  max-width: 200px;
}
.page-title .title2 {
  font-size: 22px;
  margin-top: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .page-title .title2 {
    font-size: 16px;
  }
}
.page-title .summary {
  margin-top: 20px;
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  font-family: Montserrat-Light;
}
@media screen and (max-width: 768px) {
  .page-title .summary {
    font-size: 12px;
    margin-top: 10px;
  }
}
.page-title .summary a:hover {
  text-decoration: underline;
}
.page-color-title {
  margin-top: 310px;
  font-size: 200px;
  background: linear-gradient(to top, white 55%, black 45%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1600px) {
  .page-color-title {
    margin-top: 130px;
    font-size: 120px;
  }
}
@media screen and (max-width: 1440px) {
  .page-color-title {
    margin-top: 130px;
    font-size: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .page-color-title {
    margin-top: 0;
    font-size: 60px;
  }
}
@media screen and (max-width: 768px) {
  .page-color-title {
    display: none;
  }
}
/*内页大图*/
.pageBanner {
  transition: all 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  /*height: 574px;*/
}
@media screen and (max-width: 1600px) {
  .pageBanner {
    /*height: 480px;*/
  }
}
@media screen and (max-width: 1440px) {
  .pageBanner {
    /*height: 420px;*/
  }
}
@media screen and (max-width: 768px) {
  .pageBanner {
    /*height: 200px;*/
  }
}
.pageBanner.aboutBanner {
  /*height: 780px;*/
}
@media screen and (max-width: 1600px) {
  .pageBanner.aboutBanner {
    /*height: 480px;*/
  }
}
@media screen and (max-width: 1440px) {
  .pageBanner.aboutBanner {
    /*height: 420px;*/
  }
}
@media screen and (max-width: 768px) {
  .pageBanner.aboutBanner {
    /*height: 200px;*/
  }
}
.pageBanner .img {
  width: 100%;
  height: 100%;
}
.pageBanner .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pageBanner .banner-box {
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 2;
  height: fit-content;
  text-align: center;
}
.pageBanner .banner-box .banner-title {
  color: #fff;
  font-size: 68px;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 1600px) {
  .pageBanner .banner-box .banner-title {
    font-size: 40px;
  }
}
@media screen and (max-width: 768px) {
  .pageBanner .banner-box .banner-title {
    font-size: 20px;
  }
}
.pageBanner .banner-box .banner-summary {
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .pageBanner .banner-box .banner-summary {
    font-size: 14px;
  }
}
.pageBanner .banner-box .banner-button {
  width: 210px;
  height: 60px;
  background: var(--dominant-color);
  border-radius: 4px;
  margin: 40px auto 0;
  transition: all 0.5s;
  text-transform: uppercase;
}
.pageBanner .banner-box .banner-button:hover {
  opacity: 0.7;
}
.pageBanner .banner-box .index-title {
  color: #fff;
}
.pageBanner .banner-box .index-title .title {
  color: #fff;
}
.pageBanner .banner-box .index-title .summary {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .pageBanner .banner-box .index-title .summary {
    display: none;
  }
}
.pageBanner .banner-box .about-play {
  display: inline-block;
  margin: 30px auto 0;
  font-size: 57px;
  cursor: pointer;
}
.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;
}
@keyframes sizing {
  0%,
  100% {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
}
/*内页侧边栏*/
/*内页导航*/
.page-menu {
  width: 100%;
  box-shadow: 0 5px 10px 5px rgba(0, 0, 0, 0.03);
}
.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;
  overflow: hidden;
  justify-content: center;
  grid-gap: 10px;
}
@media screen and (max-width: 768px) {
  .page-menu .menu-box {
    grid-gap: 20px;
    justify-content: flex-start;
    overflow: auto;
  }
  .page-menu .menu-box::-webkit-scrollbar {
    height: 0;
  }
}
.page-menu .menu-box a {
  color: #333333;
  font-size: 18px;
  transition: all 0.5s;
  position: relative;
  height: 68px;
  display: flex;
  align-items: center;
  padding: 0 30px;
}
@media screen and (max-width: 1600px) {
  .page-menu .menu-box a {
    font-size: 16px;
    height: 60px;
    padding: 0 20px;
  }
}
@media screen and (max-width: 1440px) {
  .page-menu .menu-box a {
    padding: 0 10px;
  }
}
@media screen and (max-width: 768px) {
  .page-menu .menu-box a {
    font-size: 14px;
    height: 50px;
    padding: 0;
    flex-shrink: 0;
  }
}
.page-menu .menu-box a.active,
.page-menu .menu-box a:hover {
  color: var(--dominant-color);
}
.page-menu .menu-box a.active::after,
.page-menu .menu-box a:hover::after {
  width: 100%;
}
.page-menu .menu-box a::after {
  content: '';
  width: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--dominant-color);
  height: 2px;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .page-menu {
    flex-direction: column;
    font-size: 14px;
    height: auto;
  }
}
.page-menu .first-menu {
  width: 100%;
  position: relative;
  background: #fff;
  margin-bottom: 10px;
}
.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;
}
.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: 16px;
  position: relative;
  color: #000;
  text-align: left;
  justify-content: flex-start;
  display: flex;
  align-items: center;
  padding: 15px 30px;
  border: 1px solid #ddd;
  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: #ed941e;
  color: #fff;
}
.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: #999999;
  flex-wrap: wrap;
  padding: 30px 0;
}
.location i {
  color: #9e9e9e;
}
.location span {
  margin: 0 12px;
}
.location a {
  color: #666;
  font-size: 16px;
}
.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: 4.167vw;
}
.pager a {
  width: 45px;
  height: 45px;
  margin: 0 6px;
  border: 1px solid #ddd;
  color: #6e6e6e;
  transition: all 0.5s;
  background: #fff;
  border-radius: 6px;
}
@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;
}
.pager2 {
  margin-top: 140px;
}
@media screen and (max-width: 768px) {
  .pager2 {
    margin-top: 50px;
    flex-direction: column-reverse;
  }
}
.pager2 .left .prev,
.pager2 .left .next {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  color: #000;
  transition: all 0.5s;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.04);
  margin-right: 20px;
  cursor: pointer;
}
.pager2 .left .prev:hover,
.pager2 .left .next:hover {
  background: #000;
  color: #fff;
}
.pager2 .right {
  flex-basis: calc(100% - 220px);
  color: #d5d5d5;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .pager2 .right {
    margin-bottom: 20px;
  }
}
.pager2 .right .line1 {
  height: 1px;
  flex: 1;
  background: #d5d5d5;
}
@media screen and (max-width: 768px) {
  .pager2 .right .line1 {
    display: none;
  }
}
.pager2 .right .number {
  flex-basis: 145px;
}
.pager2 .right .number .num {
  color: #000;
  margin-right: 6px;
}
.pager2 .right .number .max {
  margin-left: 6px;
}
.pager2 .right .line2 {
  height: 1px;
  flex-basis: 270px;
  background: #d5d5d5;
}
@media screen and (max-width: 768px) {
  .pager2 .right .line2 {
    display: none;
  }
}
/*内页左右结构*/
.page-box {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .page-box {
    flex-direction: column;
  }
}
.page-box .left {
  flex-basis: 340px;
  position: relative;
}
@media screen and (max-width: 1440px) {
  .page-box .left {
    flex-basis: 300px;
  }
}
@media screen and (max-width: 768px) {
  .page-box .left {
    width: 100%;
    flex-basis: 100%;
  }
}
.page-box .right {
  flex: 1;
  margin-left: 50px;
}
@media screen and (max-width: 768px) {
  .page-box .right {
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .page-box .right .right-content {
    padding: 10px;
  }
}
.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 {
  transition: all 0.5s;
  border-bottom: 2px solid #eee;
  position: relative;
  margin-bottom: 35px;
  padding-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .news .news-box .item {
    flex-direction: column;
  }
}
.news .news-box .item .img {
  border-radius: 10px;
  overflow: hidden;
  width: 490px;
}
@media screen and (max-width: 1600px) {
  .news .news-box .item .img {
    width: 400px;
  }
}
@media screen and (max-width: 768px) {
  .news .news-box .item .img {
    width: 100%;
  }
}
.news .news-box .item .img .imgBox {
  padding-bottom: 53%;
}
.news .news-box .item .text {
  margin-left: 30px;
  flex: 1;
  color: #666;
}
@media screen and (max-width: 768px) {
  .news .news-box .item .text {
    margin-left: 0;
    margin-top: 10px;
  }
}
.news .news-box .item .text .title {
  color: #000;
  transition: all 0.5s;
  font-size: 18px;
}
@media screen and (max-width: 1600px) {
  .news .news-box .item .text .title {
    font-size: 16px;
  }
}
.news .news-box .item .text .summary {
  margin: 10px 0 40px;
  font-size: 14px;
  line-height: 1.6;
  transition: all 0.5s;
  color: #666;
}
@media screen and (max-width: 768px) {
  .news .news-box .item .text .summary {
    font-size: 12px;
    margin: 10px 0;
    min-height: auto;
  }
}
.news .news-box .item .text .more {
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .news .news-box .item .text .more {
    font-size: 12px;
  }
}
.news .news-box .item .text .more i {
  transform: translateY(1px);
}
.news .news-box .item .time {
  color: #aaaaaa;
  transition: all 0.5s;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .news .news-box .item .time {
    margin-top: 10px;
  }
}
.news .news-box .item:hover .title {
  color: var(--dominant-color);
}
.news .news-box .item:hover .more {
  color: var(--dominant-color);
}
.activities .news .news-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 60px 30px;
  border-bottom: 2px solid #eee;
  padding-bottom: 120px;
}
@media screen and (max-width: 1600px) {
  .activities .news .news-box {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 768px) {
  .activities .news .news-box {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 20px;
    border-bottom: none;
    padding-bottom: 0;
  }
}
.activities .news .news-box .item {
  border: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .activities .news .news-box .item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
  }
}
.activities .news .news-box .text {
  margin-left: 0;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .activities .news .news-box .text {
    margin-top: 10px;
  }
}
.activities .news .news-box .text .time {
  color: #666;
}
.activities .news .news-box .text .summary {
  margin-bottom: 20px;
}
.activities .news .news-box .img {
  width: 100%;
}
.activities .activities-box {
  display: flex;
  flex-direction: column;
  margin-bottom: 120px;
  padding-bottom: 120px;
  border-bottom: 2px solid #eee;
}
@media screen and (max-width: 1600px) {
  .activities .activities-box {
    padding-bottom: 80px;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 768px) {
  .activities .activities-box {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}
.activities .activities-box .item {
  display: flex;
  justify-content: space-between;
  grid-gap: 30px;
}
@media screen and (max-width: 750px) {
  .activities .activities-box .item {
    flex-direction: column-reverse;
  }
}
.activities .activities-box .item .text {
  flex-basis: 50%;
}
.activities .activities-box .item .text .sup {
  background: var(--dominant-color);
  padding: 10px 21px;
  color: #fff;
  display: inline-block;
  border-radius: 4px;
  margin-top: 28px;
}
@media screen and (max-width: 1600px) {
  .activities .activities-box .item .text .sup {
    margin-top: 0;
  }
}
.activities .activities-box .item .text .title {
  font-size: 36px;
  margin-top: 16px;
  margin-bottom: 8px;
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 1600px) {
  .activities .activities-box .item .text .title {
    font-size: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .activities .activities-box .item .text .title {
    margin-top: 12px;
    font-size: 16px;
  }
}
.activities .activities-box .item .text .summary {
  color: #666666;
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin: 20px 0;
}
@media screen and (max-width: 1024px) {
  .activities .activities-box .item .text .summary {
    font-size: 14px;
  }
}
.activities .activities-box .item .text .i-items {
  grid-gap: 24px;
  margin-bottom: 60px;
  display: flex;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #d9d9d9;
}
@media screen and (max-width: 1600px) {
  .activities .activities-box .item .text .i-items {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .activities .activities-box .item .text .i-items {
    margin-bottom: 40px;
    margin-top: 24px;
    padding-top: 24px;
  }
}
.activities .activities-box .item .text .i-item:first-child {
  width: 160px;
}
@media screen and (max-width: 1024px) {
  .activities .activities-box .item .text .i-item:first-child {
    width: 120px;
  }
}
@media screen and (max-width: 750px) {
  .activities .activities-box .item .text .i-item:first-child {
    min-width: initial;
  }
}
.activities .activities-box .item .text .i-item:last-child {
  flex: 1;
}
.activities .activities-box .item .text .i-item .key {
  color: #999;
  font-size: 12px;
}
.activities .activities-box .item .text .i-item .value {
  font-size: 18px;
  margin-top: 8px;
}
@media screen and (max-width: 1600px) {
  .activities .activities-box .item .text .i-item .value {
    font-size: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .activities .activities-box .item .text .i-item .value {
    font-size: 14px;
  }
}
.activities .activities-box .item .img {
  flex-basis: 50%;
  border-radius: 10px;
  overflow: hidden;
}
.activities .activities-box .item .img .imgBox {
  padding-bottom: 57%;
}
.activities .activities-box .item .img .imgBox .img2 {
  opacity: 0;
}
@media screen and (max-width: 1024px) {
  .activities .activities-box .item .img .imgBox {
    padding-bottom: 100%;
  }
  .activities .activities-box .item .img .imgBox .img1 {
    opacity: 0;
  }
  .activities .activities-box .item .img .imgBox .img2 {
    opacity: 1;
  }
}
@media screen and (max-width: 750px) {
  .activities .activities-box .item .img .imgBox {
    padding-bottom: 50%;
  }
  .activities .activities-box .item .img .imgBox .img1 {
    opacity: 1;
  }
  .activities .activities-box .item .img .imgBox .img2 {
    opacity: 0;
  }
}
.activities .activities-box .item .more {
  width: 144px;
  height: 46px;
  background: #333333;
  border-radius: 6px;
  color: #fff;
  transition: all 0.5s;
  font-size: 16px;
}
.activities .activities-box .item .more:hover {
  background: var(--dominant-color);
}
.news-search {
  margin-bottom: 30px;
}
.news-search label {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
  display: block;
  width: 100%;
  position: relative;
}
.news-search label input {
  width: 100%;
  height: 50px;
  border: none;
  border-bottom: 2px solid #eee;
  background: none;
  color: #666;
  padding-left: 0;
  text-indent: 0;
}
.news-search label input::placeholder {
  color: #666;
}
.news-search label button {
  width: 50px;
  height: 50px;
  background: none;
  color: #666;
  font-size: 16px;
  position: absolute;
  right: 0;
  top: 0;
}
.news-search label button img {
  width: 16px;
  filter: brightness(0);
  opacity: 0.5;
}
.news-search label i {
  position: absolute;
  font-size: 20px;
  right: -50px;
  top: 0;
  bottom: 0;
  margin: auto;
  height: fit-content;
}
@media screen and (max-width: 768px) {
  .video {
    margin-top: 50px;
  }
}
.video .news .news-box {
  margin-top: 0;
  grid-gap: 30px;
  padding-bottom: 0;
  border-bottom: none;
}
@media screen and (max-width: 768px) {
  .video .news .news-box {
    grid-gap: 0;
  }
}
.video .news .news-box .text {
  margin-top: 10px;
}
.related-title {
  font-family: Montserrat-Bold;
  font-size: 26px;
  color: var(--dominant-color);
  text-transform: uppercase;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .related-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.news-detail-right .news .news-box {
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 0;
  border: none;
}
.news-detail-right .news .news-box .item {
  border-bottom: 2px solid #eee;
  margin-bottom: 30px;
  padding-bottom: 30px;
}
.news-detail-right .news .news-box .text {
  margin-top: 16px;
}
.news-detail-right .news .news-box .text .title {
  text-align: left;
  line-height: 1.5;
  margin-bottom: 0;
}
.news-detail-right .news .news-box .text .time {
  margin-top: 10px;
}
.page-menu2 .items {
  margin-bottom: 15px;
  background: #f8f8f9;
}
@media screen and (max-width: 768px) {
  .page-menu2 .items {
    margin-bottom: 10px;
  }
}
.page-menu2 .items.active .icon {
  transform: rotate(90deg);
}
.page-menu2 .items .first-item {
  height: 55px;
  font-size: 16px;
  color: #000;
  cursor: pointer;
  transition: all 0.5s;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .page-menu2 .items .first-item {
    font-size: 14px;
    height: 40px;
  }
}
.page-menu2 .items .first-item.active,
.page-menu2 .items .first-item:hover {
  background: var(--dominant-color);
  color: #fff;
}
.page-menu2 .items .first-item.active .icon,
.page-menu2 .items .first-item:hover .icon {
  color: #fff;
}
.page-menu2 .items .first-item .icon {
  width: 34px;
  height: 34px;
  color: #666;
  border-radius: 50%;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .page-menu2 .items .first-item .icon {
    width: 20px;
    height: 20px;
  }
}
.page-menu2 .items .second-box {
  border-top: 1px solid #eee;
  padding-top: 20px;
  padding-bottom: 10px;
  width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
  display: none;
}
.page-menu2 .items .second-box label {
  display: block;
  font-size: 14px;
  color: #999;
  cursor: pointer;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .page-menu2 .items .second-box label {
    font-size: 14px;
    margin: 10px 0;
  }
}
.page-menu2 .items .second-box label input {
  border: 1px solid #a7a7a7;
}
.page-menu2 .items .second-box label.active,
.page-menu2 .items .second-box label:hover {
  color: var(--dominant-color);
}
/*新闻详情*/
.news-detail .title {
  font-family: Montserrat-Bold;
  font-size: 26px;
  line-height: 1.1;
  text-align: center;
  margin: 0 auto 20px;
}
@media screen and (max-width: 1366px) {
  .news-detail .title {
    font-size: 26px;
  }
}
@media screen and (max-width: 768px) {
  .news-detail .title {
    font-size: 20px;
  }
}
.news-detail .mid {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
}
.news-detail .mid .item {
  display: flex;
  align-items: center;
  margin: 0 20px;
  color: #999;
}
.news-detail .mid .item .icon {
  width: 24px;
  height: 20px;
  margin-right: 10px;
}
.news-detail .mid .item .icon img {
  object-fit: contain;
  height: 100%;
}
.news-detail .details {
  display: flex;
  border-top: 2px solid #eee;
  margin-top: 30px;
  padding-top: 70px;
  grid-gap: 60px;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .news-detail .details {
    flex-direction: column;
    margin-top: 10px;
    padding-top: 30px;
  }
}
.news-detail .details .left {
  flex: 1;
  max-width: 1015px;
}
.news-detail .details .left .details-container {
  font-size: 16px;
  color: #666666;
  line-height: 1.8;
  min-height: 300px;
  border-bottom: 1px solid #eee;
  padding-bottom: 60px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .news-detail .details .left .details-container {
    font-size: 14px;
  }
  .news-detail .details .left .details-container img {
    max-width: 100% !important;
    height: auto !important;
  }
}
.news-detail .details .right {
  flex-basis: 400px;
}
@media screen and (max-width: 1440px) {
  .news-detail .details .right {
    flex-basis: 300px;
  }
}
@media screen and (max-width: 768px) {
  .news-detail .details .right {
    flex-basis: 100%;
    width: 100%;
  }
}
.news-detail .detail-pager a {
  font-size: 16px;
  transition: all 0.5s;
  font-family: Montserrat-Light;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .news-detail .detail-pager a {
    flex-basis: 100%;
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.news-detail .detail-pager a img {
  transition: all 0.5s;
}
.news-detail .detail-pager a:hover {
  color: var(--dominant-color);
}
.news-detail .detail-pager .share-box {
  margin-top: 50px;
  font-size: 16px;
  color: var(--dominant-color);
}
.news-detail .detail-pager .share-box .share {
  margin-left: 20px;
}
.news-detail .detail-pager .share-box .share a {
  margin-right: 4px;
}
.news-detail .detail-pager .share-box .share img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
/*联系我们*/
.contact .contact1 {
  position: relative;
  max-width: 800px;
}
@media screen and (max-width: 768px) {
  .contact .contact1 {
    flex-direction: column;
  }
}
.contact .contact1 .item {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .contact .contact1 .item {
    position: initial;
    width: 100%;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
.contact .contact1 .item .icon {
  border-radius: 50%;
  font-size: 42px;
  color: var(--dominant-color);
}
@media screen and (max-width: 1600px) {
  .contact .contact1 .item .icon {
    font-size: 36px;
  }
}
@media screen and (max-width: 1440px) {
  .contact .contact1 .item .icon {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  .contact .contact1 .item .icon {
    font-size: 20px;
  }
}
.contact .contact1 .item .text {
  text-align: center;
}
.contact .contact1 .item .text .key {
  font-size: 26px;
  color: #000;
  margin-bottom: 4px;
  margin-top: 10px;
  font-family: Montserrat-Bold;
}
@media screen and (max-width: 1600px) {
  .contact .contact1 .item .text .key {
    font-size: 24px;
  }
}
@media screen and (max-width: 1440px) {
  .contact .contact1 .item .text .key {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .contact .contact1 .item .text .key {
    font-size: 18px;
  }
}
.contact .contact1 .item .text .value {
  font-size: 16px;
  color: #666;
  font-family: Montserrat-Light;
}
@media screen and (max-width: 768px) {
  .contact .contact1 .item .text .value {
    font-size: 14px;
  }
}
.contact .contact2 .contact2-box {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .contact .contact2 .contact2-box {
    margin-top: 10px;
  }
}
.contact .contact2 .contact2-box .form {
  grid-gap: 20px;
}
.contact .contact2 .contact2-box .form label {
  position: relative;
  flex-basis: calc((100% - 60px) / 4);
}
@media screen and (max-width: 1280px) {
  .contact .contact2 .contact2-box .form label {
    position: relative;
    flex-basis: calc((100% - 20px) / 2);
  }
}

@media screen and (max-width: 768px) {
  .contact .contact2 .contact2-box .form label {
    flex-basis: 100% !important;
  }
}
.contact .contact2 .contact2-box .form label span {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 150px;
  color: #000;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .contact .contact2 .contact2-box .form label span {
    font-size: 14px;
  }
}
.contact .contact2 .contact2-box .form label.w66 {
  flex-basis: calc(((100% - 40px) / 3 * 2) + 20px);
}
.contact .contact2 .contact2-box .form label.w100 {
  flex-basis: 100%;
}
.contact .contact2 .contact2-box .form label input,
.contact .contact2 .contact2-box .form label select {
  background: none;
  border: 1px solid #eee;
  text-indent: 0;
  font-size: 16px;
  border-radius: 0;
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  .contact .contact2 .contact2-box .form label input,
  .contact .contact2 .contact2-box .form label select {
    font-size: 12px;
    padding-left: 10px;
  }
}
.contact .contact2 .contact2-box .form label textarea {
  background: none;
  border: 1px solid #eee;
  padding: 20px;
  font-size: 16px;
  height: 220px;
  border-radius: 0;
  font-family: '微软雅黑';
}
@media screen and (max-width: 768px) {
  .contact .contact2 .contact2-box .form label textarea {
    height: 100px;
    padding: 10px;
  }
}
.contact .contact2 .contact2-box .form label img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.contact .contact2 .contact2-box .form label .check-box {
  width: 18px;
  height: 18px;
  margin-right: 6px;
}
.contact .contact2 .contact2-box .form .tip {
  color: #666;
  width: 100%;
  align-items: baseline;
}
.contact .contact2 .contact2-box .form .tip label {
  width: 24px;
  flex-basis: auto !important;
}
.contact .contact2 .contact2-box .form .tip input {
  width: 16px;
  height: 16px;
  padding: 0;
}
.contact .contact2 .contact2-box .form .tip span {
  flex: 1;
}
.contact .contact2 .contact2-box .form button {
  width: 210px;
  height: 58px;
  border-radius: 3px;
  margin: 45px auto 0;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .contact .contact2 .contact2-box .form button {
    margin-top: 10px;
  }
}
.contact .contact2 .contact2-box .form button:hover {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .contact .contact3 {
    padding-top: 0;
  }
}
.contact .contact3 .contact3-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}
@media screen and (max-width: 768px) {
  .contact .contact3 .contact3-box {
    grid-template-columns: repeat(1, 1fr);
  }
}
.contact .contact3 .contact3-box img {
  transition: all 0.5s;
}
.contact .contact3 .contact3-box .item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.contact .contact3 .contact3-box .item .text {
  position: absolute;
  top: 15%;
  left: 50px;
  right: 50px;
  text-align: center;
}
.contact .contact3 .contact3-box .item .text .title {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
}
@media screen and (max-width: 1600px) {
  .contact .contact3 .contact3-box .item .text .title {
    font-size: 24px;
  }
}
@media screen and (max-width: 1440px) {
  .contact .contact3 .contact3-box .item .text .title {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .contact .contact3 .contact3-box .item .text .title {
    font-size: 16px;
  }
}
.contact .contact3 .contact3-box .item .text .summary {
  margin-top: 20px;
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .contact .contact3 .contact3-box .item .text .summary {
    font-size: 14px;
  }
}
.contact .contact3 .contact3-box .item .text .more {
  color: #fff;
  margin-top: 30px;
  transition: all 0.5s;
}
.contact .contact3 .contact3-box .item:hover .more {
  color: var(--dominant-color);
}
/*服务支持*/
@media screen and (max-width: 768px) {
  .support .top {
    flex-direction: column;
  }
}
.support .top .left {
  flex-basis: 400px;
}
@media screen and (max-width: 768px) {
  .support .top .left {
    flex-basis: auto;
    width: 100%;
  }
}
.support .top .left label {
  display: block;
  position: relative;
}
.support .top .left label input {
  width: 100%;
  height: 50px;
  border-radius: 6px;
  border: 1px solid #eee;
}
.support .top .left label button {
  position: absolute;
  top: 0;
  right: 0;
  height: 50px;
  width: 80px;
  background: none;
}
.support .top .left label button img {
  width: 18px;
}
.support .top .right {
  flex: 1;
  margin-left: 50px;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .support .top .right {
    margin-left: 0;
    margin-top: 30px;
    width: 100%;
  }
}
.support .top .right form {
  display: flex;
  grid-gap: 30px;
  flex-wrap: wrap;
}
.support .bottom {
  margin-top: 30px;
}
.support .bottom .item {
  padding: 30px 40px;
  font-size: 16px;
  border-bottom: 1px solid #eee;
}
@media screen and (max-width: 768px) {
  .support .bottom .item {
    padding: 20px 0;
    flex-wrap: wrap;
  }
}
.support .bottom .item .title {
  flex: 1;
  margin-right: 30px;
}
@media screen and (max-width: 768px) {
  .support .bottom .item .title {
    flex-basis: 100%;
    margin-bottom: 6px;
  }
}
.support .bottom .item .type,
.support .bottom .item .time {
  flex-basis: 300px;
}
@media screen and (max-width: 1600px) {
  .support .bottom .item .type,
  .support .bottom .item .time {
    flex-basis: 200px;
  }
}
@media screen and (max-width: 768px) {
  .support .bottom .item .type,
  .support .bottom .item .time {
    flex-basis: 80px;
    font-size: 12px;
  }
}
.support .bottom .item .download {
  flex-basis: 100px;
  background: none;
}
@media screen and (max-width: 768px) {
  .support .bottom .item .download {
    margin-right: 0;
    margin-left: auto;
  }
}
.support .bottom .item .download img {
  width: 19px;
}
.support .bottom .item-top {
  background: var(--dominant-color);
  color: #fff;
}
@media screen and (max-width: 768px) {
  .support .bottom .item-top {
    display: none;
  }
}
.elo .elo1 {
  grid-gap: 30px;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .elo .elo1 {
    flex-direction: column;
  }
}
.elo .elo1 .left {
  flex-basis: 50%;
}
@media screen and (max-width: 768px) {
  .elo .elo1 .left {
    width: 100%;
  }
}
.elo .elo1 .left .imgBox {
  border-radius: 10px;
  padding-bottom: 88%;
}
.elo .elo1 .right {
  flex-basis: 50%;
}
.elo .elo1 .right .summary {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  font-family: Montserrat-Light;
}
@media screen and (max-width: 768px) {
  .elo .elo1 .right .summary {
    font-size: 14px;
  }
}
.elo .elo1 .right .sub {
  font-size: 16px;
  color: #333;
  font-family: Montserrat-Bold;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .elo .elo1 .right .sub {
    font-size: 14px;
  }
}
.elo .elo1 .right .tip {
  margin-top: 20px;
  border: 1px solid #eee;
  padding: 30px;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .elo .elo1 .right .tip {
    padding: 20px;
  }
}
.elo .elo1 .right .tip .item {
  margin-bottom: 20px;
}
.elo .elo1 .right .tip .item .key {
  font-family: Montserrat-Bold;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .elo .elo1 .right .tip .item .key {
    font-size: 14px;
  }
}
.elo .elo1 .right .tip .item .value {
  color: #666;
}
.elo .elo2 .form {
  max-width: 580px;
  margin: 50px auto 80px;
}
@media screen and (max-width: 768px) {
  .elo .elo2 .form {
    margin: 20px auto 40px;
  }
}
.elo .elo2 .form form {
  width: 100%;
}
.elo .elo2 .form label {
  width: 100%;
  position: relative;
}
.elo .elo2 .form label input {
  width: 100%;
  background: none;
  border: 1px solid #cbcbcb;
  height: 56px;
}
.elo .elo2 .form label button {
  position: absolute;
  right: 0;
  top: 0;
  width: 90px;
  height: 56px;
}
.elo .elo2 .form label button img {
  width: 20px;
  filter: brightness(10);
}
.elo .elo2 .elo-tab {
  font-size: 16px;
  color: #666666;
  font-family: Montserrat-Light;
  grid-gap: 60px;
}
@media screen and (max-width: 768px) {
  .elo .elo2 .elo-tab {
    grid-gap: 20px;
    font-size: 14px;
    flex-wrap: wrap;
  }
}
.elo .elo2 .elo-tab .item {
  cursor: pointer;
}
.elo .elo2 .elo-tab .item:hover,
.elo .elo2 .elo-tab .item.active {
  color: var(--dominant-color);
}
.elo .elo2 .tab-change {
  margin-top: 30px;
  border-top: 1px solid #cbcbcb;
}
@media screen and (max-width: 768px) {
  .elo .elo2 .tab-change {
    border-top: none;
  }
}
.elo .elo2 .tab-change .item {
  display: none;
}
.elo .elo2 .tab-change .item.active {
  display: block;
}
@media screen and (max-width: 768px) {
  .elo .elo2 .tab-change .item.active {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 21px;
  }
}
.elo .elo2 .tab-change .item .lists {
  display: flex;
  border-bottom: 1px solid #cbcbcb;
}
@media screen and (max-width: 768px) {
  .elo .elo2 .tab-change .item .lists {
    flex-direction: column;
    border: 1px solid #cbcbcb;
    padding: 10px;
  }
}
.elo .elo2 .tab-change .item .lists .list {
  margin: 50px auto;
  flex-basis: calc((100% - 300px) / 3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid #cbcbcb;
  padding: 10px 80px;
}
@media screen and (max-width: 1600px) {
  .elo .elo2 .tab-change .item .lists .list {
    padding: 10px 40px;
  }
}
@media screen and (max-width: 768px) {
  .elo .elo2 .tab-change .item .lists .list {
    padding: 0;
    border-right: none;
    margin: 0;
  }
}
.elo .elo2 .tab-change .item .lists .list:first-child {
  font-size: 36px;
  font-family: Montserrat-Bold;
  align-items: center;
  padding: 0 20px;
  flex-basis: 300px;
  transition: all 0.5s;
}
@media screen and (max-width: 1600px) {
  .elo .elo2 .tab-change .item .lists .list:first-child {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .elo .elo2 .tab-change .item .lists .list:first-child {
    font-size: 16px;
    flex-basis: auto;
    align-items: flex-start;
    border-bottom: 1px solid #cbcbcb;
    margin-bottom: 10px;
    padding: 0 0 10px;
  }
}
.elo .elo2 .tab-change .item .lists .list:nth-child(2) img {
  max-width: 180px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .elo .elo2 .tab-change .item .lists .list:nth-child(2) img {
    max-width: 100%;
  }
}
.elo .elo2 .tab-change .item .lists .list:nth-child(3) {
  line-height: 2.3;
}
@media screen and (max-width: 768px) {
  .elo .elo2 .tab-change .item .lists .list:nth-child(3) {
    line-height: 1.4;
  }
}
.elo .elo2 .tab-change .item .lists .list .ttt {
  font-size: 18px;
  font-family: Montserrat-Light;
}
@media screen and (max-width: 768px) {
  .elo .elo2 .tab-change .item .lists .list .ttt {
    font-size: 14px;
    margin-top: 10px;
  }
}
.elo .elo2 .tab-change .item .lists .list .tips {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .elo .elo2 .tab-change .item .lists .list .tips {
    margin-top: 10px;
  }
}
.elo .elo2 .tab-change .item .lists .list .tips .value {
  margin-left: 6px;
  font-family: Montserrat-Light;
}
.elo .elo2 .tab-change .item .lists .list .tips .value1 {
  color: #fff;
  background: var(--dominant-color);
  padding: 2px 6px;
  border-radius: 3px;
}
.elo .elo2 .tab-change .item .lists:hover .list:first-child {
  color: var(--dominant-color);
}
.elo .elo3 .elo3-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}
@media screen and (max-width: 768px) {
  .elo .elo3 .elo3-box {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 20px;
  }
}
.elo .elo3 .elo3-box .item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.elo .elo3 .elo3-box .item .imgBox {
  padding-bottom: 108%;
}
.elo .elo3 .elo3-box .item .text {
  position: absolute;
  font-size: 36px;
  text-align: center;
  color: #fff;
  z-index: 2;
  bottom: 90px;
  padding: 20px;
  left: 0;
  right: 0;
}
@media screen and (max-width: 1600px) {
  .elo .elo3 .elo3-box .item .text {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .elo .elo3 .elo3-box .item .text {
    font-size: 16px;
    bottom: 40px;
  }
}
.elo .elo3 .elo3-box .item .text .more {
  background: var(--dominant-color);
  color: #fff;
  border-radius: 10px;
  width: 260px;
  height: 60px;
  margin: 50px auto 0;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .elo .elo3 .elo3-box .item .text .more {
    width: 150px;
    height: 50px;
    font-size: 14px;
  }
}
/*产品中心*/
@media screen and (max-width: 768px) {
  .product .product-top {
    margin-top: 40px;
  }
}
.product .product-top .t-left {
  font-size: 16px;
}
.product .product-top .t-left span {
  color: var(--dominant-color);
  margin-right: 4px;
}
.product .product-top .t-right {
  font-size: 14px;
  color: #666;
}
.product .product-top .t-right label {
  margin-left: 10px;
}
.product .product-top .t-right label select {
  width: 130px;
  padding-left: 10px;
  outline: 1px solid #eee;
  border: none;
  text-transform: uppercase;
}
.product .index2 .index2-box {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .product .index2 .index2-box {
    grid-template-columns: repeat(1, 1fr);
  }
}
.product .index2 .index2-box .item {
  position: relative;
}
.product .index2 .index2-box .item .vs {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  z-index: 2;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .product .index2 .index2-box .item .vs {
    opacity: 1;
  }
}
.product .index2 .index2-box .item .vs::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-width: 50px;
  border-style: solid;
  transition: all 0.5s;
  transform: rotate(45deg);
  z-index: 0;
  border-color: transparent transparent var(--dominant-color);
}
.product .index2 .index2-box .item .vs .vs-img {
  margin-left: 16px;
  margin-top: 10px;
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 2;
  background: url('../images/img73.png') no-repeat center / contain;
}
.product .index2 .index2-box .item .tip {
  color: #fff;
  position: absolute;
  top: 10px;
  left: 10px;
  border-radius: 3px;
  padding: 4px 10px;
  z-index: 2;
}
.product .index2 .index2-box .item .tip1 {
  background: #ff3636;
}
.product .index2 .index2-box .item .tip2 {
  background: #ff7836;
}
.product .index2 .index2-box .item .imgBox {
  padding-bottom: 75%;
}
.product .index2 .index2-box .item .text {
  display: block;
  padding-bottom: 35px;
  transform: translateY(40px);
  transition: all 0.5s;
}
.product .index2 .index2-box .item .text .title {
  color: #000;
  font-size: 24px;
  font-family: Montserrat-Regular;
}
.product .index2 .index2-box .item .text .sub,
.product .index2 .index2-box .item .text .summary,
.product .index2 .index2-box .item .text .more {
  font-size: 16px;
  transition: all 0.5s;
}
.product .index2 .index2-box .item .text .sub {
  color: #333;
}
.product .index2 .index2-box .item .text .more {
  opacity: 0;
}
.product .index2 .index2-box .item:hover .vs {
  opacity: 1;
  pointer-events: auto;
}
.product .index2 .index2-box .item:hover .text {
  transform: translateY(0);
}
.product .index2 .index2-box .item:hover .text .more {
  opacity: 1;
}
.product-vs .item-over {
  overflow: auto;
}
.product-vs .items {
  display: flex;
}
@media screen and (max-width: 768px) {
  .product-vs .items {
    width: 800px;
  }
}
.product-vs .items:nth-child(odd) {
  background: #f8f8f9;
}
.product-vs .items:nth-child(1) {
  border-top: 1px solid #eee;
}
.product-vs .items:nth-child(1) .title {
  font-size: 24px;
  color: var(--dominant-color);
}
@media screen and (max-width: 1600px) {
  .product-vs .items:nth-child(1) .title {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .product-vs .items:nth-child(1) .title {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .product-vs .items:nth-child(1) img {
    width: 100px;
  }
}
.product-vs .items:nth-child(1) .more {
  color: var(--dominant-color);
}
.product-vs .items:nth-child(1) label {
  width: 100%;
}
.product-vs .items:nth-child(1) select {
  width: 100%;
  background: none;
  outline: 1px solid #eee;
  border: none;
}
.product-vs .items:nth-child(1) .item {
  padding: 35px 30px;
}
@media screen and (max-width: 768px) {
  .product-vs .items:nth-child(1) .item {
    padding: 10px;
  }
}
.product-vs .items .item {
  flex-basis: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #666;
  text-align: center;
  border-right: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 20px 30px;
}
@media screen and (max-width: 768px) {
  .product-vs .items .item {
    font-size: 12px;
    padding: 10px;
    flex-basis: calc((100% - 140px) / 3);
  }
}
.product-vs .items .item:nth-child(1) {
  border-left: 1px solid #eee;
  color: #333;
  font-size: 16px;
  align-items: flex-start;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .product-vs .items .item:nth-child(1) {
    font-size: 12px;
    flex-basis: 140px;
  }
}
.product-vs .items .item span {
  font-size: 16px;
  color: #333;
}
@media screen and (max-width: 768px) {
  .product-vs .items .item span {
    font-size: 12px;
  }
}
.filter-phone-title {
  background: var(--dominant-color);
  color: #fff;
}
@media screen and (max-width: 768px) {
  .filter-phone-title {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    height: 40px;
    cursor: pointer;
  }
}
.product-menu {
  background: #f8f8f9;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .product-menu {
    position: fixed;
    height: 80vh;
    bottom: 0;
    left: -100vw;
    right: 0;
    width: 100%;
    z-index: 99;
    background: #fff;
    border-top: 1px solid #eee;
    padding: 20px;
    transition: all 0.5s;
  }
}
@media screen and (max-width: 768px) {
  .product-menu::before {
    content: '';
    height: 100vh;
    width: 100%;
    bottom: 0;
    left: -100vw;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    z-index: 0;
    transition: all 0.5s;
  }
}
.product-menu.active {
  left: 0;
}
.product-menu.active::before {
  left: 0;
}
@media screen and (max-width: 768px) {
  .product-menu::after {
    content: '';
    height: 80vh;
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: #fff;
    position: absolute;
    z-index: 0;
  }
}
@media screen and (max-width: 768px) {
  .product-menu .items {
    position: relative;
    z-index: 2;
    height: 60vh;
    overflow: auto;
  }
}
.product-menu .filter-close {
  color: #333;
}
@media screen and (max-width: 768px) {
  .product-menu .filter-close {
    color: #333;
    z-index: 3;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    font-size: 20px;
  }
}
.product-menu .filter-close i {
  font-size: 20px;
}
.product-menu i {
  cursor: pointer;
  font-size: 14px;
  transition: all 0.5s;
  transform: translateY(1px);
}
.product-menu i.active {
  transform: rotate(180deg);
}
@media screen and (max-width: 768px) {
  .product-menu i {
    margin-right: 10px;
  }
}
.product-menu .first-item {
  font-size: 20px;
  color: var(--dominant-color);
}
@media screen and (max-width: 768px) {
  .product-menu .first-item {
    font-size: 18px;
    display: none;
  }
}
.product-menu .second-box {
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  .product-menu .second-box {
    padding-left: 0;
  }
}
.product-menu .second-box .second-item {
  margin-top: 20px;
}
.product-menu .second-box .second-item-title {
  font-size: 18px;
  color: var(--dominant-color);
}
@media screen and (max-width: 768px) {
  .product-menu .second-box .second-item-title {
    font-size: 16px;
    justify-content: space-between;
    display: flex;
  }
}
.product-menu .three-box {
  padding-left: 20px;
  display: none;
}
.product-menu .three-box .three-item {
  margin-top: 10px;
}
.product-menu .three-box .three-item-title {
  font-size: 15px;
}
.product-menu .four-box {
  padding-left: 20px;
}
.product-menu .four-box label {
  display: block;
  margin-top: 10px;
}
.product-detail {
  background: #fff;
}
.product-detail .page-menu {
  box-shadow: none;
  border-bottom: 1px solid #eee;
  margin-bottom: 50px;
  position: sticky;
  top: 90px;
  z-index: 2;
  background: #fff
}

.product-detail .features .product-detail-top {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .product-detail .features .product-detail-top {
    flex-direction: column;
    margin-bottom: 30px;
  }
  .product-detail .page-menu {
    top: 0;
  }
}
.product-detail .features .product-detail-top .p-left {
  width: 50%;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  .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: 80%;
}
.product-detail .features .product-detail-top .p-left .swiper-big .swiper-button-prev,
.product-detail .features .product-detail-top .p-left .swiper-big .swiper-button-next {
  background: none;
  border: none;
}
.product-detail .features .product-detail-top .p-left .swiper-big .swiper-button-prev:hover::after,
.product-detail .features .product-detail-top .p-left .swiper-big .swiper-button-next:hover::after {
  color: var(--dominant-color);
}
.product-detail .features .product-detail-top .p-left .swiper-small {
  margin-top: 20px;
}
.product-detail .features .product-detail-top .p-left .swiper-small .swiper-slide {
  border: 1px solid transparent;
}
.product-detail .features .product-detail-top .p-left .swiper-small .swiper-slide-thumb-active {
  border: 1px solid var(--dominant-color);
}
.product-detail .features .product-detail-top .p-left .detail-vs {
  background: #fff;
  position: absolute;
  bottom: 30px;
  border-radius: 6px;
  border: 1px solid #dbdbdb;
  font-size: 16px;
  text-transform: uppercase;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
  width: 180px;
  height: 40px;
  color: var(--dominant-color);
  transition: all 0.5s;
}
.product-detail .features .product-detail-top .p-left .detail-vs img {
  margin-right: 10px;
  width: 20px;
  transition: all 0.5s;
}
.product-detail .features .product-detail-top .p-left .detail-vs:hover {
  background: var(--dominant-color);
  color: #fff;
}
.product-detail .features .product-detail-top .p-left .detail-vs:hover img {
  filter: contrast(0) brightness(2);
}
.product-detail .features .product-detail-top .p-right {
  flex-basis: 50%;
  margin-left: 100px;
}
@media screen and (max-width: 768px) {
  .product-detail .features .product-detail-top .p-right {
    margin-left: 0;
  }
}
.product-detail .features .product-detail-top .p-right .text {
  margin-top: 10px;
}
.product-detail .features .product-detail-top .p-right .text .title {
  font-size: 68px;
  line-height: 1.5;
  font-family: Montserrat-Bold;
}
@media screen and (max-width: 1600px) {
  .product-detail .features .product-detail-top .p-right .text .title {
    font-size: 40px;
  }
}
@media screen and (max-width: 1440px) {
  .product-detail .features .product-detail-top .p-right .text .title {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .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: 36px;
  line-height: 1.2;
  margin: 6px 0;
}
@media screen and (max-width: 1600px) {
  .product-detail .features .product-detail-top .p-right .text .tip {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .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: 16px;
  color: #666;
  line-height: 1.8;
  font-family: Montserrat-Light;
  margin-top: 30px;
}
.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: 768px) {
  .product-detail .features .product-detail-top .p-right .summary {
    font-size: 14px;
  }
}
.product-detail .features .product-detail-top .p-right .btn_p {
  width: 260px;
  border-radius: 10px;
  height: 60px;
  background: var(--dominant-color);
  color: #fff;
  margin-top: 60px;
  font-size: 16px;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .product-detail .features .product-detail-top .p-right .btn_p {
    margin-top: 30px;
    width: 100%;
    height: 50px;
    font-size: 12px;
  }
}
.product-detail .features .product-detail-top .p-right .btn_p:hover {
  opacity: 0.8;
}
.product-detail .features .detail-box {
  font-size: 16px;
  color: #666;
}
.product-detail .features .detail-box .detail-button {
  background: var(--dominant-color);
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .product-detail .features .detail-box .detail-button {
    padding: 10px 0;
  }
}
.product-detail .features .detail-box .detail-button .detail-button-box {
  overflow: auto;
}
.product-detail .features .detail-box .detail-button .detail-button-box a {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  border-radius: 22.5px;
  width: 150px;
  margin-right: 40px;
  transition: all 0.5s;
}
@media screen and (max-width: 1280px) {
  .product-detail .features .detail-box .detail-button .detail-button-box a {
    margin-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .product-detail .features .detail-box .detail-button .detail-button-box a {
    flex-shrink: 0;
    font-size: 12px;
    width: 100px;
    margin-right: 6px;
    height: 30px;
  }
}
.product-detail .features .detail-box .detail-button .detail-button-box a.active,
.product-detail .features .detail-box .detail-button .detail-button-box a:hover {
  background: var(--dominant-color-hover);
}
.product-detail .features .detail-box .detail-page-box .page-title .title {
  text-align: center;
  text-transform: uppercase;
}
.product-detail .features .detail-box .detail-page-box .page {
  scroll-margin-top: 100px;
}

.product-detail .features .detail-box .detail-page-box .page1 {
  max-width: 1160px;
  position: relative;
  cursor: pointer;
}
.product-detail .features .detail-box .detail-page-box .page1 .imgBox {
  padding-bottom: 58%;
  border-radius: 10px;
}
.product-detail .features .detail-box .detail-page-box .page1 .play-button {
  width: 57px;
  height: 57px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  color: #fff;
  font-size: 57px;
}
.product-detail .features .detail-box .detail-page-box .page2 {
  text-align: center;
}
.product-detail .features .detail-box .detail-page-box .page2 .sub {
  margin-top: 30px;
  font-size: 26px;
  color: #333;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .product-detail .features .detail-box .detail-page-box .page2 .sub {
    font-size: 16px;
  }
  .product-detail .features .detail-box .detail-page-box .page {
    scroll-margin-top: 50px;
  }
}
.product-detail .features .detail-box .detail-page-box .page2 .summary {
  max-width: 1200px;
  margin: auto;
  color: #666;
  font-size: 16px;
  font-family: Montserrat-Light;
}
.product-detail .features .detail-box .detail-page-box .page2 .page2-box {
  margin-top: 40px;
}
.product-detail .features .detail-box .detail-page-box .page2 .page2-box .swiper-slide {
  border-radius: 10px;
  overflow: hidden;
}
.product-detail .features .detail-box .detail-page-box .page2 .page2-box .swiper-button-prev,
.product-detail .features .detail-box .detail-page-box .page2 .page2-box .swiper-button-next {
  width: 38px;
  height: 38px;
}
.product-detail .features .detail-box .detail-page-box .page2 .page2-box .swiper-button-prev {
  left: 40px;
}
.product-detail .features .detail-box .detail-page-box .page2 .page2-box .swiper-button-next {
  right: 40px;
}
.product-detail .features .detail-box .detail-page-box .page3 .table {
  margin-top: 30px;
  background: #fff;
  padding: 60px 100px;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .product-detail .features .detail-box .detail-page-box .page3 .table {
    padding: 20px;
  }
}
.product-detail .features .detail-box .detail-page-box .page3 .table .title {
  text-align: center;
  font-size: 26px;
  color: #333;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .product-detail .features .detail-box .detail-page-box .page3 .table .title {
    font-size: 18px;
  }
}
.product-detail .features .detail-box .detail-page-box .page3 .table .items {
  max-height: 850px;
  overflow: hidden;
  position: relative;
}
.product-detail .features .detail-box .detail-page-box .page3 .table .items.active {
  max-height: 100%;
}
.product-detail .features .detail-box .detail-page-box .page3 .table .items.active::after {
  display: none;
}
.product-detail .features .detail-box .detail-page-box .page3 .table .items::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 300px;
  bottom: 0;
  left: 0;
  background: linear-gradient(to top, #ffffff, rgba(255, 255, 255, 0));
}
.product-detail .features .detail-box .detail-page-box .page3 .table .item {
  margin-bottom: 60px;
}
.product-detail .features .detail-box .detail-page-box .page3 .table table {
  border-top: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
  width: 100%;
}
.product-detail .features .detail-box .detail-page-box .page3 .table table tr:nth-child(odd) {
  background: #f8f8f9;
}
.product-detail .features .detail-box .detail-page-box .page3 .table table tr td {
  width: 50%;
  padding: 20px 30px;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .product-detail .features .detail-box .detail-page-box .page3 .table table tr td {
    font-size: 14px;
    padding: 10px;
  }
}
.product-detail .features .detail-box .detail-page-box .page3 .table table tr td:nth-child(1) {
  color: #333;
}
.product-detail .features .detail-box .detail-page-box .page3 .table .more {
  color: var(--dominant-color);
  text-align: center;
  font-size: 16px;
  width: 200px;
  margin: 100px auto 0;
  cursor: pointer;
  transition: all 0.5s;
  text-transform: uppercase;
}
.product-detail .features .detail-box .detail-page-box .page3 .table .more:hover {
  opacity: 0.8;
}
.product-detail .features .detail-box .detail-page-box .page4 .page4-box {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
}
@media screen and (max-width: 768px) {
  .product-detail .features .detail-box .detail-page-box .page4 .page4-box {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }
}
.product-detail .features .detail-box .detail-page-box .page4 .page4-box .item .img {
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 10px;
}
.product-detail .features .detail-box .detail-page-box .page4 .page4-box .item .img .imgBox {
  padding-bottom: 113%;
}
.product-detail .features .detail-box .detail-page-box .page4 .page4-box .item .text {
  text-align: center;
  margin-top: 10px;
}
.product-detail .features .detail-box .detail-page-box .page4 .page4-box .item .text img {
  width: 15px;
  margin-left: 10px;
  transform: translateY(-1px);
}
.product-detail .features .detail-box .detail-page-box .page4 .page4-box .item1 {
  grid-column: 1 / 3;
  grid-row: 1;
  padding: 50px 30px;
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .product-detail .features .detail-box .detail-page-box .page4 .page4-box .item1 {
    padding: 20px;
  }
}
@media screen and (max-width: 768px) {
  .product-detail .features .detail-box .detail-page-box .page4 .page4-box .item1 .swiper {
    padding-bottom: 40px;
  }
}
.product-detail .features .detail-box .detail-page-box .page4 .page4-box .item1 .swiper-slide {
  display: flex;
}
@media screen and (max-width: 768px) {
  .product-detail .features .detail-box .detail-page-box .page4 .page4-box .item1 .swiper-slide {
    flex-direction: column;
  }
}
.product-detail .features .detail-box .detail-page-box .page4 .page4-box .item1 .swiper-slide .left {
  flex-basis: 250px;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .product-detail .features .detail-box .detail-page-box .page4 .page4-box .item1 .swiper-slide .left {
    flex-basis: 100%;
    width: 100%;
    margin-top: 0;
  }
}
.product-detail .features .detail-box .detail-page-box .page4 .page4-box .item1 .swiper-slide .left .imgBox {
  padding-bottom: 58%;
}
.product-detail .features .detail-box .detail-page-box .page4 .page4-box .item1 .swiper-slide .right {
  flex: 1;
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  .product-detail .features .detail-box .detail-page-box .page4 .page4-box .item1 .swiper-slide .right {
    margin-left: 0;
    margin-top: 30px;
  }
}
.product-detail .features .detail-box .detail-page-box .page4 .page4-box .item1 .swiper-slide .right .title {
  font-size: 36px;
  color: var(--dominant-color);
  font-family: Montserrat-Bold;
}
@media screen and (max-width: 1600px) {
  .product-detail .features .detail-box .detail-page-box .page4 .page4-box .item1 .swiper-slide .right .title {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .product-detail .features .detail-box .detail-page-box .page4 .page4-box .item1 .swiper-slide .right .title {
    font-size: 16px;
  }
}
.product-detail .features .detail-box .detail-page-box .page4 .page4-box .item1 .swiper-slide .right .summary {
  margin-top: 30px;
  line-height: 1.6;
}
@media screen and (max-width: 1600px) {
  .product-detail .features .detail-box .detail-page-box .page4 .page4-box .item1 .swiper-slide .right .summary {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .product-detail .features .detail-box .detail-page-box .page4 .page4-box .item1 .swiper-slide .right .summary {
    margin-top: 10px;
    font-size: 12px;
  }
}
.product-detail .features .detail-box .detail-page-box .page4 .page4-box .item1 .swiper-slide .right .download-click {
  margin-top: 30px;
  width: 170px;
  height: 46px;
  border-radius: 10px;
  border: 1px solid var(--dominant-color);
  text-transform: uppercase;
  color: var(--dominant-color);
  transition: all 0.5s;
}
.product-detail .features .detail-box .detail-page-box .page4 .page4-box .item1 .swiper-slide .right .download-click .icon {
  margin-right: 6px;
  width: 18px;
  height: 18px;
  background: var(--dominant-color);
  color: #fff;
  border-radius: 50%;
}
.product-detail .features .detail-box .detail-page-box .page4 .page4-box .item1 .swiper-slide .right .download-click .icon i {
  font-size: 10px;
}
@media screen and (max-width: 768px) {
  .product-detail .features .detail-box .detail-page-box .page4 .page4-box .item1 .swiper-slide .right .download-click {
    font-size: 12px;
  }
}
.product-detail .features .detail-box .detail-page-box .page4 .page4-box .item1 .swiper-slide .right .download-click:hover {
  opacity: 0.6;
}
.product-detail .features .detail-box .detail-page-box .page4 .page4-box .swiper-pagination {
  width: 250px;
}
@media screen and (max-width: 768px) {
  .product-detail .features .detail-box .detail-page-box .page4 .page4-box .swiper-pagination {
    width: 100%;
  }
}
.product-detail .features .detail-box .detail-page-box .page5 .page5-box {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}
@media screen and (max-width: 768px) {
  .product-detail .features .detail-box .detail-page-box .page5 .page5-box {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 20px;
    margin-top: 20px;
  }
}
.product-detail .features .detail-box .detail-page-box .page5 .page5-box .item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.product-detail .features .detail-box .detail-page-box .page5 .page5-box .item .imgBox {
  padding-bottom: 130%;
}
.product-detail .features .detail-box .detail-page-box .page5 .page5-box .item .text {
  position: absolute;
  font-size: 24px;
  text-align: center;
  font-family: Montserrat-Bold;
  color: #fff;
  z-index: 2;
  bottom: 40px;
  padding: 20px;
  left: 0;
  right: 0;
}
@media screen and (max-width: 1600px) {
  .product-detail .features .detail-box .detail-page-box .page5 .page5-box .item .text {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .product-detail .features .detail-box .detail-page-box .page5 .page5-box .item .text {
    font-size: 16px;
    bottom: 30px;
  }
}
.product-detail .features .detail-box .detail-page-box .page6 .index2 .index2-box {
  margin-top: 50px;
}
.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: 768px) {
  .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: 768px) {
  .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: 768px) {
  .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: 768px) {
  .product-detail .specification .items .item .table tr .value {
    width: calc(100% - 100px);
  }
}
/*关于我们*/
.about {
  overflow: hidden;
}
.about .about01 {
  max-width: 1400px;
  text-align: center;
}
.about .about01 .top .title {
  font-size: 48px;
  font-family: Montserrat-Bold;
}
@media screen and (max-width: 1600px) {
  .about .about01 .top .title {
    font-size: 40px;
  }
}
@media screen and (max-width: 1440px) {
  .about .about01 .top .title {
    font-size: 36px;
  }
}
@media screen and (max-width: 768px) {
  .about .about01 .top .title {
    font-size: 20px;
  }
}
.about .about01 .top .summary {
  color: #666;
  margin-top: 50px;
  line-height: 1.8;
  font-family: Montserrat-Light;
}
@media screen and (max-width: 768px) {
  .about .about01 .top .summary {
    margin-top: 20px;
  }
}
.about .about01 .number {
  margin-top: 100px;
  color: #fff;
  grid-gap: 120px 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 1440px) {
  .about .about01 .number {
    flex-wrap: wrap;
    grid-gap: 80px 20px;
  }
}
@media screen and (max-width: 768px) {
  .about .about01 .number {
    grid-gap: 20px;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 40px;
  }
}
.about .about01 .number .text {
  align-items: baseline;
  text-align: left;
}
.about .about01 .number .text .title {
  position: relative;
  font-size: 48px;
  color: var(--dominant-color);
  font-family: Montserrat-Bold;
}
@media screen and (max-width: 1600px) {
  .about .about01 .number .text .title {
    font-size: 40px;
  }
}
@media screen and (max-width: 768px) {
  .about .about01 .number .text .title {
    font-size: 20px;
  }
}
.about .about01 .number .text .summary {
  font-size: 18px;
  color: #333;
}
@media screen and (max-width: 768px) {
  .about .about01 .number .text .summary {
    font-size: 12px;
  }
}
.about .about02 .swiper-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.5s;
}
.about .about02 .swiper-slide:hover::after {
  opacity: 0;
}
.about .about02 img {
  width: 100%;
}
.about .about03 .about03-box {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
}
@media screen and (max-width: 768px) {
  .about .about03 .about03-box {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    margin-top: 20px;
  }
}
.about .about03 .about03-box .item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.about .about03 .about03-box .item .imgBox {
  padding-bottom: 138%;
}
.about .about03 .about03-box .item .text {
  position: absolute;
  font-size: 24px;
  text-align: center;
  font-family: Montserrat-Bold;
  color: #fff;
  z-index: 2;
  top: 70%;
  padding: 20px;
  left: 0;
  right: 0;
}
@media screen and (max-width: 1600px) {
  .about .about03 .about03-box .item .text {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .about .about03 .about03-box .item .text {
    font-size: 16px;
    top: 50%;
  }
}
.about .about04 {
  overflow: hidden;
}
.about .about04 .about04-box {
  margin-top: 50px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .about .about04 .about04-box {
    margin-top: 20px;
  }
}
.about .about04 .about04-box .text-swiper {
  overflow: initial;
  margin: auto;
  max-width: 660px;
}
@media screen and (max-width: 768px) {
  .about .about04 .about04-box .text-swiper {
    width: 90%;
  }
}
.about .about04 .about04-box .text-swiper .swiper-slide {
  background: rgba(241, 242, 244);
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.03);
  padding: 60px;
  opacity: 0.3;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .about .about04 .about04-box .text-swiper .swiper-slide {
    padding: 20px;
  }
}
.about .about04 .about04-box .text-swiper .swiper-slide .year {
  font-size: 36px;
  font-family: Montserrat-Bold;
  color: var(--dominant-color);
}
@media screen and (max-width: 1600px) {
  .about .about04 .about04-box .text-swiper .swiper-slide .year {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  .about .about04 .about04-box .text-swiper .swiper-slide .year {
    font-size: 24px;
  }
}
.about .about04 .about04-box .text-swiper .swiper-slide .text {
  font-size: 14px;
  color: #666;
  margin-top: 20px;
  line-height: 1.6;
}
.about .about04 .about04-box .text-swiper .swiper-slide .text li {
  margin-bottom: 10px;
}
.about .about04 .about04-box .text-swiper .swiper-slide.swiper-slide-active {
  opacity: 1;
  background: #fff;
}
.about .about04 .about04-box .text-swiper .swiper-slide-prev {
  transform-origin: center right;
  transform: scale(0.8) translateX(19%);
}
.about .about04 .about04-box .text-swiper .swiper-slide-next {
  transform-origin: center left;
  transform: scale(0.8) translateX(-19%);
}
.about .about04 .about04-box .text-swiper .swiper-slide-active {
  position: relative;
  z-index: 2;
}
.about .about04 .about04-box .swiper-button-prev,
.about .about04 .about04-box .swiper-button-next {
  width: 54px;
  height: 54px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #000;
  font-size: 20px;
  transition: all 0.5s;
  cursor: pointer;
}
.about .about04 .about04-box .swiper-button-prev:hover,
.about .about04 .about04-box .swiper-button-next:hover {
  background: var(--dominant-color);
  color: #fff;
}
.about .about04 .about04-box .swiper-button-prev {
  left: -100px;
}
.about .about04 .about04-box .swiper-button-next {
  right: -100px;
}
.about .about04 .about04-box .time-swiper {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .about .about04 .about04-box .time-swiper {
    margin-top: 10px;
  }
}
.about .about04 .about04-box .time-swiper::after {
  content: '';
  position: absolute;
  top: 33px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #d1d1d1;
}
.about .about04 .about04-box .time-swiper .swiper-slide {
  padding-top: 24px;
  cursor: pointer;
}
.about .about04 .about04-box .time-swiper .swiper-slide .point {
  width: 20px;
  height: 20px;
  border-radius: 50px;
  background: #dbdbdb;
  margin: auto;
  position: relative;
  border: 2px solid #fff;
  z-index: 2;
}
.about .about04 .about04-box .time-swiper .swiper-slide .point::after {
  content: '';
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  transition: all 0.5s;
}
.about .about04 .about04-box .time-swiper .swiper-slide .year {
  font-size: 14px;
  color: #666;
  text-align: center;
  margin-top: 10px;
  transition: all 0.5s;
}
.about .about04 .about04-box .time-swiper .swiper-slide.swiper-slide-thumb-active .point {
  background: var(--dominant-color);
}
.about .about04 .about04-box .time-swiper .swiper-slide.swiper-slide-thumb-active .year {
  opacity: 1;
  color: var(--dominant-color);
  font-size: 36px;
}
@media screen and (max-width: 768px) {
  .about .about04 .about04-box .time-swiper .swiper-slide.swiper-slide-thumb-active .year {
    font-size: 20px;
  }
}
.about .about05 {
  padding-top: 0;
}
.about .about05 .about05-box {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}
@media screen and (max-width: 768px) {
  .about .about05 .about05-box {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 20px;
  }
}
.about .about05 .about05-box .item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.about .about05 .about05-box .item .imgBox {
  padding-bottom: 111%;
}
.about .about05 .about05-box .item .text {
  position: absolute;
  text-align: center;
  color: #333;
  z-index: 2;
  top: 0;
  padding: 20px;
  left: 0;
  right: 0;
}
.about .about05 .about05-box .item .text .icon {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: #fff;
  margin: 100px auto;
}
@media screen and (max-width: 768px) {
  .about .about05 .about05-box .item .text .icon {
    margin: 30px auto;
    width: 80px;
    height: 80px;
  }
}
.about .about05 .about05-box .item .text .icon img {
  transform: scale(1);
}
@media screen and (max-width: 1600px) {
  .about .about05 .about05-box .item .text .icon img {
    width: 30px;
  }
}
.about .about05 .about05-box .item .text .title {
  font-size: 24px;
  font-family: Montserrat-Bold;
}
@media screen and (max-width: 1600px) {
  .about .about05 .about05-box .item .text .title {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .about .about05 .about05-box .item .text .title {
    font-size: 16px;
  }
}
.about .about05 .about05-box .item .text .summary {
  max-width: 280px;
  margin: 10px auto;
}
.about .about06 {
  max-width: 1200px;
  display: grid;
  grid-gap: 30px;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 768px) {
  .about .about06 {
    grid-gap: 20px;
    grid-template-columns: repeat(2, 1fr);
  }
}
/*搜索结果*/
.search {
  padding-top: 0;
}
.search .search-menu {
  padding: 80px 0;
  grid-gap: 60px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .search .search-menu {
    padding: 40px 0;
    grid-gap: 20px;
  }
}
.search .search-menu a {
  font-size: 16px;
  color: #666;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .search .search-menu a {
    font-size: 13px;
  }
}
.search .search-menu a.active,
.search .search-menu a:hover {
  color: var(--dominant-color);
}
.search .search-box {
  max-width: 1000px;
}
.solution .solution-box {
  padding-bottom: 0;
}
.solution .solution-box .item-list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}
@media screen and (max-width: 768px) {
  .solution .solution-box .item-list {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 20px;
    margin-top: 20px;
  }
}
.solution .solution-box .item-list .item {
  overflow: hidden;
  position: relative;
}
.solution .solution-box .item-list .item .imgBox {
  padding-bottom: 53%;
  border-radius: 10px;
}
.solution .solution-box .item-list .item .text {
  transition: all 0.5s;
  padding: 30px;
  position: absolute;
  bottom: 0;
  text-align: center;
  color: #fff;
  width: 100%;
  transform: translateY(calc(100% - 100px));
}
@media screen and (max-width: 768px) {
  .solution .solution-box .item-list .item .text {
    padding: 20px;
    transform: translateY(calc(100% - 70px));
  }
}
.solution .solution-box .item-list .item .text .title {
  font-size: 24px;
  font-family: Montserrat-Bold;
}
@media screen and (max-width: 768px) {
  .solution .solution-box .item-list .item .text .title {
    font-size: 20px;
  }
}
.solution .solution-box .item-list .item .text .summary {
  margin: 20px auto;
  max-width: 500px;
  line-height: 1.6;
  opacity: 0;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .solution .solution-box .item-list .item .text .summary {
    margin: 10px auto;
  }
}
.solution .solution-box .item-list .item .text .more {
  opacity: 0;
  transition: all 0.5s;
  text-transform: uppercase;
  color: var(--dominant-color);
}
.solution .solution-box .item-list .item:hover .text {
  transform: translateY(0);
}
.solution .solution-box .item-list .item:hover .text .summary,
.solution .solution-box .item-list .item:hover .text .more {
  opacity: 1;
}
.solution-list .solution-box .item {
  padding: 110px 0;
  align-items: inherit;
  transition: all 0.5s;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .solution-list .solution-box .item {
    padding: 20px 0;
  }
}
.solution-list .solution-box .item .item-box {
  grid-gap: 30px;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .solution-list .solution-box .item .item-box {
    flex-direction: column !important;
    grid-gap: 20px;
  }
}
.solution-list .solution-box .item .item-box:hover .title {
  color: var(--dominant-color);
}
.solution-list .solution-box .item .item-box:hover .more {
  color: var(--dominant-color);
}
.solution-list .solution-box .item .left {
  overflow: hidden;
  flex-basis: 50%;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .solution-list .solution-box .item .left {
    width: 100%;
  }
}
.solution-list .solution-box .item .left .imgBox {
  padding-bottom: 52%;
}
.solution-list .solution-box .item .right {
  margin-top: 30px;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .solution-list .solution-box .item .right {
    margin-top: 0;
  }
}
.solution-list .solution-box .item .right .title {
  color: #000;
  transition: all 0.5s;
  display: flex;
  align-items: center;
  font-size: 32px;
}
@media screen and (max-width: 1600px) {
  .solution-list .solution-box .item .right .title {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .solution-list .solution-box .item .right .title {
    font-size: 16px;
  }
}
.solution-list .solution-box .item .right .summary {
  margin: 26px 0 50px;
  font-size: 14px;
  line-height: 1.6;
  transition: all 0.5s;
  color: #666;
}
@media screen and (max-width: 768px) {
  .solution-list .solution-box .item .right .summary {
    font-size: 12px;
    margin: 10px 0;
  }
}
.solution-list .solution-box .item .right .more {
  font-size: 16px;
  color: #666;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .solution-list .solution-box .item .right .more {
    font-size: 12px;
  }
}
.solution-list .solution-box .item:nth-child(even) {
  background: #f1f2f4;
}
.solution-list .solution-box .item:nth-child(even) .item-box {
  flex-direction: row-reverse;
}
.solution-more {
  border-top: 1px solid #eee;
  padding-top: 60px;
}
.solution-more .more {
  border-radius: 23px;
  background: var(--dominant-color);
  color: #fff;
  font-size: 16px;
  padding: 14px 20px;
  cursor: pointer;
}
.solution-detail .box2-swiper {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .solution-detail .box2-swiper {
    margin-top: 20px;
  }
}
.solution-detail .box2-swiper .imgBox {
  padding-bottom: 47%;
  border-radius: 10px;
}
.solution-detail .box2-swiper .text {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  margin: auto;
  color: #fff;
  width: calc(100% - 400px);
}
@media screen and (max-width: 768px) {
  .solution-detail .box2-swiper .text {
    width: calc(100%);
    position: initial;
    color: #333;
    margin-top: 20px;
  }
}
.solution-detail .box2-swiper .text .title {
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .solution-detail .box2-swiper .text .title {
    font-size: 16px;
  }
}
.solution-detail .box2-swiper .text .summary {
  margin-top: 20px;
  font-family: Montserrat-Light;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .solution-detail .box2-swiper .text .summary {
    margin-top: 10px;
  }
}
.solution-detail .box2-swiper .swiper-button-prev,
.solution-detail .box2-swiper .swiper-button-next {
  width: 38px;
  height: 38px;
  border: none;
  top: auto;
  bottom: 100px;
}
@media screen and (max-width: 768px) {
  .solution-detail .box2-swiper .swiper-button-prev,
  .solution-detail .box2-swiper .swiper-button-next {
    display: none;
  }
}
.solution-detail .box2-swiper .swiper-button-prev {
  left: 100px;
}
.solution-detail .box2-swiper .swiper-button-next {
  right: 100px;
}
.solution-detail .box3 .box3-box {
  margin-top: 50px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .solution-detail .box3 .box3-box {
    margin-top: 20px;
  }
}
.solution-detail .box3 .line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 5px;
  background: #f8f8f9;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .solution-detail .box3 .line {
    display: none;
  }
}
.solution-detail .box3 .line .line-color {
  width: 100%;
  height: 0;
  background: var(--dominant-color);
}
.solution-detail .box3 .item {
  align-items: flex-start;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .solution-detail .box3 .item {
    flex-direction: column;
  }
}
.solution-detail .box3 .item:last-child {
  margin-bottom: 0;
}
.solution-detail .box3 .item .left {
  flex-basis: 50%;
  padding-right: 60px;
}
@media screen and (max-width: 768px) {
  .solution-detail .box3 .item .left {
    flex-basis: 100%;
    width: 100%;
    padding-right: 0;
  }
}
.solution-detail .box3 .item .left .imgBox {
  padding-bottom: 70%;
}
.solution-detail .box3 .item .right {
  flex-basis: 50%;
  position: relative;
  padding-left: 60px;
}
@media screen and (max-width: 768px) {
  .solution-detail .box3 .item .right {
    padding-left: 0;
    margin-top: 30px;
  }
}
.solution-detail .box3 .item .right .title {
  font-size: 32px;
  font-family: Montserrat-Bold;
  margin-top: -6px;
  transition: all 0.5s;
}
@media screen and (max-width: 1600px) {
  .solution-detail .box3 .item .right .title {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .solution-detail .box3 .item .right .title {
    font-size: 16px;
  }
}
.solution-detail .box3 .item .right .summary {
  margin-top: 30px;
  font-size: 16px;
  line-height: 1.6;
  font-family: Montserrat-Light;
  color: #666;
}
@media screen and (max-width: 768px) {
  .solution-detail .box3 .item .right .summary {
    margin-top: 10px;
    font-size: 14px;
  }
}
.solution-detail .box3 .item .right .icon {
  width: 26px;
  height: 26px;
  background: #fff;
  border: 1px solid var(--dominant-color);
  position: absolute;
  top: 0;
  left: -13px;
  border-radius: 50%;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .solution-detail .box3 .item .right .icon {
    display: none;
  }
}
.solution-detail .box3 .item .right .icon::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  z-index: 2;
  background: var(--dominant-color);
}
.solution-detail .box3 .item .right:hover .title {
  color: var(--dominant-color);
}
.solution-detail .box4 .box4-box {
  margin-top: 50px;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .solution-detail .box4 .box4-box {
    font-size: 14px;
    margin-top: 20px;
  }
}
.solution-detail .box4 .box4-box .item {
  border-bottom: 1px solid #d5d5d5;
  margin-bottom: 2px;
}
.solution-detail .box4 .box4-box .item:first-child {
  border-top: 1px solid #d5d5d5;
}
.solution-detail .box4 .box4-box .item .b-top {
  height: 100px;
  cursor: pointer;
  color: #333333;
}
@media screen and (max-width: 768px) {
  .solution-detail .box4 .box4-box .item .b-top {
    height: 50px;
  }
}
.solution-detail .box4 .box4-box .item .b-top .title {
  font-size: 24px;
  transition: all 0.5s;
}
@media screen and (max-width: 1600px) {
  .solution-detail .box4 .box4-box .item .b-top .title {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .solution-detail .box4 .box4-box .item .b-top .title {
    font-size: 16px;
  }
}
.solution-detail .box4 .box4-box .item .b-top .fa-angle-right {
  transition: all 0.5s;
  margin-right: 10px;
}
.solution-detail .box4 .box4-box .item .b-top.active {
  color: var(--dominant-color);
}
.solution-detail .box4 .box4-box .item .b-top.active .fa-angle-right {
  transform: rotate(-90deg);
}
.solution-detail .box4 .box4-box .item .b-bottom {
  display: none;
  margin-top: -20px;
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .solution-detail .box4 .box4-box .item .b-bottom {
    padding: 20px;
  }
}
.solution-detail .box4 .box4-box .item .b-bottom li {
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .solution-detail .box4 .box4-box .item .b-bottom li {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}
.solution-detail .box5 .index2 {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .solution-detail .box5 .index2 {
    margin-top: 20px;
  }
}
.solution-detail .box5 .index2 .item .text {
  padding-bottom: 50px;
}
.solution-detail .box6 .swiper {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .solution-detail .box6 .swiper {
    margin-top: 20px;
  }
}
.solution-detail .box6 .swiper-slide {
  display: flex;
}
@media screen and (max-width: 768px) {
  .solution-detail .box6 .swiper-slide {
    flex-direction: column;
  }
}
.solution-detail .box6 .swiper-slide .left {
  flex-basis: 52%;
}
.solution-detail .box6 .swiper-slide .left .imgBox {
  padding-bottom: 50%;
  border-radius: 10px;
}
.solution-detail .box6 .swiper-slide .right {
  flex: 1;
  margin-left: 50px;
  margin-right: 50px;
}
@media screen and (max-width: 768px) {
  .solution-detail .box6 .swiper-slide .right {
    margin-left: 0;
    margin-right: 0;
    margin-top: 20px;
  }
}
.solution-detail .box6 .swiper-slide .right .title {
  font-size: 32px;
}
@media screen and (max-width: 1600px) {
  .solution-detail .box6 .swiper-slide .right .title {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .solution-detail .box6 .swiper-slide .right .title {
    font-size: 16px;
  }
}
.solution-detail .box6 .swiper-slide .right .summary,
.solution-detail .box6 .swiper-slide .right .more {
  color: #666;
  transition: all 0.5s;
  margin-top: 30px;
  line-height: 1.4;
}
.solution-detail .box6 .button {
  position: absolute;
  left: calc(50% + 80px);
  bottom: 0;
  display: flex;
  width: 92px;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .solution-detail .box6 .button {
    left: auto;
    right: 0;
  }
}
.solution-detail .box6 .button .swiper-button-prev,
.solution-detail .box6 .button .swiper-button-next {
  position: initial;
  width: 46px;
  height: 46px;
  border-radius: 3px;
  border: none;
}
.solution-inquiry {
  width: 262px;
  height: 62px;
  background: var(--dominant-color);
  font-size: 18px;
  border-radius: 10px;
  color: #fff;
  margin: 80px auto 0;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .solution-inquiry {
    font-size: 14px;
    width: 150px;
    height: 50px;
  }
}
.solution-inquiry:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .faq {
    margin-top: 40px;
  }
}
.faq .item {
  border-bottom: 2px solid #eee;
  margin-bottom: 30px;
  padding-bottom: 30px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .faq .item {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
.faq .item .q {
  transition: all 0.5s;
  width: 24px;
  height: 24px;
  border-radius: 3px;
  border: 1px solid #eee;
  margin-right: 10px;
}
.faq .item .top .title {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .faq .item .top .title {
    font-size: 16px;
  }
}
.faq .item .top .q {
  border-color: var(--dominant-color);
  color: var(--dominant-color);
  transition: all 0.5s;
}
.faq .item .top.active .q {
  background: var(--dominant-color);
  color: #fff;
}
.faq .item .top.active .title {
  color: var(--dominant-color);
}
.faq .item .bottom {
  display: none;
  margin-top: 10px;
}
.faq .item .bottom .title {
  align-items: baseline;
  font-size: 16px;
  font-family: Montserrat-Light;
  color: #666;
}
@media screen and (max-width: 768px) {
  .faq .item .bottom .title {
    font-size: 14px;
  }
}
.faq .item .bottom .title span {
  flex: 1;
}
.faq .item .bottom .q {
  background: #f0f0f0;
}
.after-sale {
  margin-top: 100px;
}
@media screen and (max-width: 1600px) {
  .after-sale {
    margin-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  .after-sale {
    margin-top: 20px;
  }
}
.after-sale input,
.after-sale select,
.after-sale textarea {
  border-color: #d7d7d7 !important;
}
.download-search form {
  max-width: 550px;
  background: #f3f2f2;
  border-radius: 33px;
  position: relative;
}
.download-search form label {
  display: block;
}
.download-search form input {
  height: 66px;
  width: 100%;
  border: none;
  background: none;
  padding-left: 30px;
  font-size: 16px;
  padding-right: 76px;
}
.download-search form input::placeholder {
  color: #999;
}
.download-search form button {
  position: absolute;
  height: 66px;
  width: 66px;
  right: 0;
  top: 0;
  background: none;
}
.download-search form button img {
  width: 20px;
}
.download {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}
@media screen and (max-width: 768px) {
  .download {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 20px;
    margin-top: 40px;
  }
}
.download .item {
  background: #f8f8f9;
  transition: all 0.5s;
  border-radius: 10px;
  padding: 20px 30px;
  min-height: 165px;
  position: relative;
}
.download .item .tip {
  color: #999;
  transition: all 0.5s;
}
.download .item .title {
  font-size: 24px;
  transition: all 0.5s;
  font-family: Montserrat-Bold;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .download .item .title {
    font-size: 20px;
  }
}
.download .item .click {
  position: absolute;
  right: 30px;
  bottom: 20px;
  text-transform: uppercase;
  color: var(--dominant-color);
  transition: all 0.5s;
}
.download .item .click .icon {
  margin-right: 10px;
  background: var(--dominant-color);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  transition: all 0.5s;
}
.download .item .click .icon i {
  font-size: 10px;
  color: #fff;
  transition: all 0.5s;
}
.download .item:hover {
  background: var(--dominant-color);
}
.download .item:hover .tip,
.download .item:hover .title {
  color: #fff;
}
.download .item:hover .click {
  color: #fff;
}
.download .item:hover .click .icon {
  background: #fff;
}
.download .item:hover .click .icon i {
  color: var(--dominant-color);
}
.tools .tools01 .top .title {
  font-size: 36px;
  font-family: Montserrat-Bold;
  margin-bottom: 20px;
  text-align: center;
}
.tools .tools01 .top .summary {
  font-size: 16px;
  color: #666;
  text-align: center;
  max-width: 1280px;
  margin: auto;
  font-family: Montserrat-Light;
  line-height: 1.6;
}
.tools .tools01 .bottom {
  background: #fbfbfb;
  max-width: 1280px;
  margin: 60px auto 0;
  padding: 60px 60px 80px;
}
.tools .tools01 .bottom .bottom-title {
  color: var(--dominant-color);
  font-family: Montserrat-Bold;
  font-size: 22px;
  margin-bottom: 40px;
  text-align: center;
}
.tools .tools01 .bottom .button-box {
  grid-gap: 30px;
}
.tools .tools01 .bottom .button-box .button {
  transition: opacity 0.5s;
}
.tools .tools01 .bottom .button-box .button:hover {
  opacity: 0.7;
}
.tools .tools01 .bottom .img {
  text-align: center;
  margin-top: 60px;
}
.tools .tools03 .item-list {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 768px) {
  .tools .tools03 .item-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.tools .tools03 .item-list .item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.tools .tools03 .item-list .item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000000);
}
.tools .tools03 .item-list .item .imgBox {
  padding-bottom: 150%;
}
@media screen and (max-width: 768px) {
  .tools .tools03 .item-list .item .imgBox {
    padding-bottom: 100%;
  }
}
.tools .tools03 .item-list .item .text {
  z-index: 2;
}
.tools .tools03 .item-list .item .text .title {
  font-size: 32px;
}
@media screen and (max-width: 1600px) {
  .tools .tools03 .item-list .item .text .title {
    font-size: 24px;
  }
}
@media screen and (max-width: 1440px) {
  .tools .tools03 .item-list .item .text .title {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .tools .tools03 .item-list .item .text .title {
    font-size: 16px;
  }
}
.tools .tools04 .tools04-box {
  margin-top: 60px;
}
@media screen and (max-width: 1440px) {
  .tools .tools04 .tools04-box {
    margin-top: 20px;
  }
}
.tools .tools04 .tools04-box .video {
  max-width: 960px;
  margin: auto;
  position: relative;
}
.tools .tools04 .tools04-box .video::after {
  content: '';
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.tools .tools04 .tools04-box .video .video-overlay {
  color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: fit-content;
  z-index: 2;
  text-align: center;
}
.tools .tools04 .tools04-box .video .video-overlay i {
  font-size: 57px;
}
@media screen and (max-width: 768px) {
  .tools .tools04 .tools04-box .video .video-overlay i {
    font-size: 40px;
  }
}
.tools .tools04 .tools04-box .button {
  background: var(--dominant-color);
  font-size: 18px;
  width: 310px;
  height: 60px;
  border-radius: 10px;
  color: #fff;
  margin: 40px auto 0;
}
@media screen and (max-width: 768px) {
  .tools .tools04 .tools04-box .button {
    font-size: 14px;
  }
}
.tools .tools05 {
  margin-top: 120px;
}
.tools .tools05 .number {
  margin-top: 40px;
  display: flex;
  justify-content: space-around;
}
.tools .tools06 .swiper-box {
  position: relative;
  max-width: 1200px;
  margin: 40px auto 0;
}
.tools .tools06 .swiper-box .swiper {
  width: calc(100% - 200px);
}
@media screen and (max-width: 768px) {
  .tools .tools06 .swiper-box .swiper {
    width: calc(100% - 100px);
  }
}
.tools .tools06 .swiper-box .swiper .swiper-slide {
  padding: 20px;
  border-radius: 10px;
  overflow: hidden;
  background: #f1f2f4;
}
@media screen and (max-width: 768px) {
  .tools .tools06 .swiper-box .swiper .swiper-slide {
    padding: 10px;
  }
}
.tools .tools06 .swiper-box .swiper-button-prev,
.tools .tools06 .swiper-box .swiper-button-next {
  width: 38px;
  height: 38px;
}
.tools .tools07 .swiper-box {
  position: relative;
  max-width: 1200px;
  margin: 40px auto 0;
}
.tools .tools07 .swiper-box .swiper {
  width: calc(100% - 200px);
}
@media screen and (max-width: 768px) {
  .tools .tools07 .swiper-box .swiper {
    width: calc(100% - 100px);
  }
}
.tools .tools07 .swiper-box .swiper .swiper-slide .img {
  border-radius: 50%;
  width: 94px;
  height: 94px;
  overflow: hidden;
  margin: auto;
}
.tools .tools07 .swiper-box .swiper .swiper-slide .text {
  text-align: center;
  color: #888;
  margin-top: 20px;
  line-height: 1.8;
}
.tools .tools07 .swiper-box .swiper-button-prev,
.tools .tools07 .swiper-box .swiper-button-next {
  width: 38px;
  height: 38px;
}
.tools .tools09 .tools09-box {
  display: flex;
  flex-direction: column-reverse;
}
.tools .tools09 .tabs-change {
  margin-top: 40px;
}
.tools .tools09 .tabs-change .item {
  display: none;
  font-size: 22px;
  text-align: center;
  color: #333;
}
@media screen and (max-width: 1600px) {
  .tools .tools09 .tabs-change .item {
    font-size: 18px;
  }
}
.tools .tools09 .tabs-change .item.active {
  display: block;
}
.tools .tools09 .tabs {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
}
@media screen and (max-width: 768px) {
  .tools .tools09 .tabs {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }
}
.tools .tools09 .tabs .item {
  background: #f1f2f4;
  transition: all 0.5s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 190px;
  cursor: pointer;
}
@media screen and (max-width: 1600px) {
  .tools .tools09 .tabs .item {
    height: 150px;
  }
}
@media screen and (max-width: 768px) {
  .tools .tools09 .tabs .item {
    height: 100px;
  }
}
.tools .tools09 .tabs .item .num {
  color: var(--dominant-color);
  font-size: 36px;
  font-family: Montserrat-Bold;
  transition: all 0.5s;
}
@media screen and (max-width: 1600px) {
  .tools .tools09 .tabs .item .num {
    font-size: 30px;
  }
}
@media screen and (max-width: 1440px) {
  .tools .tools09 .tabs .item .num {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .tools .tools09 .tabs .item .num {
    font-size: 18px;
  }
}
.tools .tools09 .tabs .item .text {
  font-size: 24px;
  color: #333;
  transition: all 0.5s;
  margin-top: 10px;
  text-align: center;
}
@media screen and (max-width: 1600px) {
  .tools .tools09 .tabs .item .text {
    font-size: 20px;
  }
}
@media screen and (max-width: 1440px) {
  .tools .tools09 .tabs .item .text {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .tools .tools09 .tabs .item .text {
    margin-top: 4px;
    font-size: 12px;
  }
}
.tools .tools09 .tabs .item:hover,
.tools .tools09 .tabs .item.active {
  background: var(--dominant-color);
}
.tools .tools09 .tabs .item:hover .num,
.tools .tools09 .tabs .item.active .num,
.tools .tools09 .tabs .item:hover .text,
.tools .tools09 .tabs .item.active .text {
  color: #fff;
}
.tools .tools10 .swiper-box {
  position: relative;
  margin: 40px auto 0;
}
.tools .tools10 .swiper-box .swiper {
  width: calc(100% - 100px);
}
@media screen and (max-width: 768px) {
  .tools .tools10 .swiper-box .swiper {
    width: calc(100% - 100px);
  }
}
.tools .tools10 .swiper-box .swiper .swiper-slide {
  height: auto;
  background: #fff;
  padding: 40px 20px 60px;
  border-radius: 10px;
  overflow: hidden;
}
.tools .tools10 .swiper-box .swiper .swiper-slide .text {
  text-align: center;
  color: #888;
  margin-top: 20px;
  line-height: 1.8;
}
.tools .tools10 .swiper-box .swiper .swiper-slide .text .title {
  font-size: 32px;
  line-height: 1.2;
  color: #333;
}
@media screen and (max-width: 1600px) {
  .tools .tools10 .swiper-box .swiper .swiper-slide .text .title {
    font-size: 18px;
  }
}
.tools .tools10 .swiper-box .swiper .swiper-slide .text .summary {
  margin-top: 20px;
}
.tools .tools10 .swiper-box .swiper-button-prev,
.tools .tools10 .swiper-box .swiper-button-next {
  width: 38px;
  height: 38px;
}
.security .item {
  display: none;
}
.security .item.active {
  display: block;
}
.wiki {
  position: relative;
}
.wiki img {
  width: 100%;
}
.wiki .text {
  position: absolute;
  top: 30%;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 1000px;
  margin: auto;
  color: #fff;
  text-align: center;
  font-size: 26px;
}
@media screen and (max-width: 768px) {
  .wiki .text {
    top: 0;
    font-size: 14px;
    height: fit-content;
  }
}
.wiki .text .more {
  width: 200px;
  height: 58px;
  background: var(--dominant-color);
  font-size: 14px;
  border-radius: 3px;
  margin: 50px auto 0;
}
@media screen and (max-width: 768px) {
  .wiki .text .more {
    width: 120px;
    height: 40px;
    font-size: 12px;
    margin-top: 20px;
  }
}
/*网格布局*/
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.grid-gap-10 {
  grid-gap: 0.521vw;
}
.grid-gap-20 {
  grid-gap: 1.042vw;
}
.grid-gap-30 {
  grid-gap: 1.5625vw;
}
.grid-gap-40 {
  grid-gap: 2.083vw;
}
@media screen and (max-width: 1600px) {
  .grid-1600-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid-1600-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-1600-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-1600-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid-1600-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (max-width: 1280px) {
  .grid-1280-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid-1280-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-1280-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-1280-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid-1280-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .grid-768-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid-768-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-768-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-768-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid-768-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}
/*弹性布局*/
.flex-center,
.flex-left,
.flex-right,
.flex-between {
  display: flex;
}
.flex-center {
  align-items: center;
  justify-content: center;
}
.flex-left {
  align-items: center;
  justify-content: flex-start;
}
.flex-right {
  align-items: center;
  justify-content: flex-end;
}
.flex-between {
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .flex-phone-direction-column {
    flex-direction: column;
  }
  .flex-phone-direction-column-r {
    flex-direction: column-reverse;
  }
  .flex-phone-direction-row {
    flex-direction: row;
  }
  .flex-phone-direction-row-r {
    flex-direction: row-reverse;
  }
}
.firight {
  position: fixed;
  right: clamp(20px, 0.4rem, 40px);
  bottom: 15%;
  z-index: 9;
}
@media screen and (max-width: 768px) {
  .firight {
    right: 0;
  }
}
.firight a {
  width: clamp(40px, 0.5rem, 50px);
  height: clamp(40px, 0.5rem, 50px);
  background-color: var(--dominant-color);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.03);
  border-radius: 50%;
  transition: all 0.5s;
  color: #fff;
}
.firight a p {
  text-align: center;
  font-size: 14px;
  color: #666;
}
@media screen and (max-width: 768px) {
  .t {
    display: none;
  }
}
.frimg {
  height: 35px;
  line-height: 35px;
}
.frimg img {
  max-width: 70%;
}
.wxfr {
  position: relative;
}
.frewm {
  position: absolute;
  right: 100px;
  top: 10%;
  display: none;
  max-width: fit-content;
  width: 140px;
}
@media screen and (max-width: 768px) {
  .frewm {
    top: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: 100%;
  }
}
/*# sourceMappingURL=style.css.map */
.imgBox iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}