@charset "utf-8";

/* CSS Document */

* {
  outline: none;
}

/*主题*/

:root {
  --head_height: 5rem;
  --colour1: #193c86;
  --colour2: #2b61d4;
  --colour3: #6fd8ed;
  --dark: #262626;
  --title: #262626;
  --text: #333;
  --small_text: #999;
  --tips_text: #ccc;
  --grey_bg: #f7f7f7;
  --grey_bg2: #f0f0f0;
  --text-bg: #193c86;
  --border_colour: rgba(0, 0, 0, 0.08);
  --shadow: rgb(40, 43, 109, 0.1);
}

body {
  margin: 0px;
  padding: 0px;
  background: #f5f6fc;
  position: relative;
}
body.head-fixed-top {
  padding-top: var(--head_height);
}
body.modal-open,
body.menu-open {
  width: 100vw;
  height: 100vh;
  padding-right: 8px;
  overflow: hidden !important;
}

body,
html {
  font-family: "Roboto", "PingFang SC", "Microsoft Yahei", Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75em;
  color: var(--text);
}

.font-weight-light {
  font-family: "Roboto", "PingFang SC", "Microsoft Yahei", Arial, sans-serif;
  font-weight: 300 !important;
}

.font-weight-normal {
  font-family: "Roboto", "PingFang SC", "Microsoft Yahei", Arial, sans-serif;
  font-weight: 400 !important;
}

.font-weight-medium {
  font-family: "Roboto", "PingFang SC", "Microsoft Yahei", Arial, sans-serif;
  font-weight: 500 !important;
}

.font-weight-bold {
  font-family: "Roboto", "PingFang SC", "Microsoft Yahei", Arial, sans-serif;
  font-weight: 700 !important;
}

.font-weight-bolder {
  font-family: "Roboto", "PingFang SC", "Microsoft Yahei", Arial, sans-serif;
  font-weight: 900 !important;
}

@font-face {
  font-family: "Roboto";
  src: local("☺"), url(../font/Roboto-Light.ttf);
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: local("☺"), url(../font/Roboto-Regular.ttf);
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: local("☺"), url(../font/Roboto-Medium.ttf);
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: local("☺"), url(../font/Roboto-Bold.ttf);
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: local("☺"), url(../font/Roboto-Black.ttf);
  font-weight: 900;
  font-style: normal;
}

a:link {
  color: inherit;
}

/*未访问样式*/

a:hover {
  text-decoration: none;
}

a:focus {
  text-decoration: none;
}

a:hover,
a:focus,
input:hover,
input:focus,
button:focus,
button:hover {
  outline: none;
}
a,
button {
  cursor: pointer;
}
a.text-link {
  color: inherit;
}
a.text-link:hover {
  color: var(--colour2) !important;
  text-decoration: underline !important;
}

.title {
  font-weight: 400;
  color: var(--title);
}

.white {
  color: #fff;
}
.white-bg {
  background-color: #fff;
}
.red {
  color: red;
}
.colour1 {
  color: var(--colour1);
}

.colour2 {
  color: var(--colour2);
}

.colour-bg1 {
  background-color: var(--colour1);
}

.colour-bg2 {
  background-color: var(--colour2);
}

.colour1-btn {
  color: #fff !important;
  background-color: var(--colour1);
}

.colour1-btn:hover {
  background-color: var(--colour2);
}

.colour-grey-btn {
  color: var(--text) !important;
  background-color: var(--grey_bg);
}

.colour-grey-btn:hover {
  background-color: var(--colour1);
}

.colour-white-btn {
  color: var(--text) !important;
  background-color: #fff;
}

.colour-white-btn:hover {
  background-color: var(--colour1);
}

dd,
dl,
dt,
ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

input {
  margin: 0;
  outline: none;
}

h1,
.h1 {
  font-size: 3rem;
}

h2,
.h2 {
  font-size: 2.5rem;
}

h3,
.h3 {
  font-size: 2rem;
}

h4,
.h4 {
  font-size: 1.5rem;
}

h5,
.h5 {
  font-size: 1.25rem;
}

h6,
.h6 {
  font-size: 1.125rem;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0.75rem;
  font-weight: 400;
  line-height: 1.4;
}

i {
  font-weight: normal;
}

hr {
  width: 100%;
  border: none;
  border-top: 1px solid #ebebeb;
  margin: 1.5rem 0px;
}

p {
  margin-bottom: 1.25em;
  font-size: 0.9375rem;
  line-height: 1.5em;
  color: var(--text);
}
.h1:last-child,
.h2:last-child,
.h3:last-child,
.h4:last-child,
.h5:last-child,
.h6:last-child,
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child {
  margin-bottom: 0em;
}

pre {
  display: block;
  border: none;
  background: none;
  font-size: 1rem;
  line-height: 1.75em;
  color: var(--text);
  padding: 0px;
  white-space: pre-wrap;
  font-family: "Roboto", "PingFang SC", "Microsoft Yahei", Arial, sans-serif;
}

section {
  position: relative;
  overflow: hidden;
}
img {
  max-width: 100%;
}

/*页面滚动条*/

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #ebebeb;
}

::-webkit-scrollbar-thumb {
  background-color: var(--text-bg);
}

/*滚动条背景*/

/*滚动容器滚动条定制*/
/*lenis 禁止容器*/
[data-lenis-prevent]::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.scroll-box {
  padding-right: 2vw;
  overflow-y: auto;
}

.scroll-box::-webkit-scrollbar-thumb {
  background: #1d1d1d;
}

.scroll-box::-webkit-scrollbar {
  /*背景*/
  width: 10px;
  background-color: #eaeaea;
}

.scroll-box::-webkit-scrollbar-thumb {
  /*滚动条*/
  border: solid 2px #eaeaea;
  width: 6px;
  border-radius: 10px;
  background-color: var(--colour1);
}

.scroll-box::-webkit-scrollbar-corner {
  background-color: #eaeaea;
}

.scroll-box::-webkit-scrollbar {
  height: 10px;
}

/*滚动条设置*/

/*页面选中*/

::selection {
  background: var(--text-bg);
  color: #fff;
}

::-moz-selection {
  background: var(--text-bg);
  color: #fff;
}

::-webkit-selection {
  background: var(--text-bg);
  color: #fff;
}

/*表单*/

form > div {
  margin-bottom: 1rem;
}

form > div:last-child {
  margin-bottom: 0;
}

form div.row {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

form div.row > div {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

form p {
  margin-bottom: 0.375rem;
  font-size: 85%;
  opacity: 0.8;
}

form input,
form select {
  padding: 0 1rem;
  width: 100%;
  line-height: 3.25em;
  height: 3.25em;
  font-size: 1rem;
  color: var(--text);
  border-radius: 0.25rem;
  border: 1px solid #e0e0e0;
}

form select {
  color: var(--text);
  padding-right: 2.5rem;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  background-image: url(../images/arrow-down.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 0.75rem) center;
  background-size: 1rem 1rem;
  border-radius: 0.25rem;
}

form select option {
  font-weight: normal;
  display: block;
  min-height: 2em;
  padding: 0px 2px 1px;
  white-space: nowrap;
}

textarea,
form textarea{
  padding: 1rem;
  width: 100%;
  line-height: 1.5em;
  height: 10em;
  font-size: 1rem;
  color: var(--text);
  border-radius: 0.25rem;
  border: 1px solid #e0e0e0;
}

form button.btn {
  padding: 0 3rem;
  font-size: 1rem;
  line-height: 2.75rem;
  border: none;
  color: #fff;
  background: var(--colour2);
  cursor: pointer;
  transition: all 0.4s;
}

form button.btn:hover {
  color: #fff;
  background: var(--colour3);
}
.form-check-label {
  padding-left: 1.5rem;
}
.form-check-input {
  margin-top: 0.375rem;
  width: 0.9375rem;
  height: 0.9375rem;
}

/*input特殊展示效果*/
.input-box {
  position: relative;
}
.input-box label {
  position: absolute;
  z-index: 1;
  left: 0.625rem;
  top: 1.125em;
  font-size: 1rem;
  line-height: 1em;
  margin: 0;
  padding: 0 0.5rem;
  color: #999;
  background: #fff;
  transition: all 0.4s;
  transform-origin: left top;
}
.input-box :focus-within ~ label,
.input-box .not-empty ~ label {
  transform: scale(0.733) translateY(calc(-2em)) translateX(calc(0.25rem));
  user-select: none;
}

/*表格边框样式*/

table,
tbody,
tr,
td {
  border: none;
}

table tr {
  border-right: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}

table td {
  line-height: 1.5em;
  padding: 0.75rem 1.125rem;
  border-left: 1px solid #e6e6e6;
  border-top: 1px solid #e6e6e6;
}

table td p {
  margin: 0px;
}

/*页面内容宽度*/

.container {
  max-width: 1550px;
  width: 90%;
}
.small-content {
  max-width: 50vw;
  margin: auto;
}
.sticky {
  position: sticky;
  top: 0;
}

/*图片包含*/

.obj-contain {
  -o-object-fit: contain;
  object-fit: contain;
}

/*图片裁切*/

.obj-cover,
.obj-cover img {
  -o-object-fit: cover;
  object-fit: cover;
}

.obj-cover img {
  width: 100%;
  height: 100%;
}

/*图片放大*/

.zoom-img {
  overflow: hidden;
}

.zoom-img img {
  width: 100%;
  transform: scale(1);
  transition: all ease 0.6s;
}

.zoom-img:hover img {
  transform: scale(1.075);
}

/*响应式图片等比居中*/

.img-center {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
}

.img-center img {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.zoom-img:hover .img-center img,
.zoom-img.img-center:hover img {
  -webkit-transform: translate(-50%, -50%) scale(1.075);
  transform: translate(-50%, -50%) scale(1.075);
}
/*弹出设置*/
.modal .modal-dialog {
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100%;
}
.modal-content {
  border: none;
}
/*背景裁切*/

.bg-cover {
  background-position: center;
  background-size: cover;
}

.bg-fixed {
  background-attachment: fixed;
}

/*视频相关*/

a.video-btn {
  position: relative;
  padding: 0;
}

a.video-btn img.obj-cover {
  width: 100%;
  height: 100%;
}

a.video-btn:before {
  content: "";
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: 5rem;
  height: 5rem;
  background: url(../images/play.png) center no-repeat;
  background-size: 100%;
  transform: translate(-50%, -50%);
}

a.video-btn:after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0%;
  top: 0%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
  transition: all 0.4s;
}

a.video-btn:hover:after {
  content: "";
  transform: translate(0, 100%);
}

.video-box {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 0px;
  padding-bottom: 56.25%;
  background: #000;
}

.video-box:before {
  content: "\b20";
  font-family: "iconfont" !important;
  font-weight: normal;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 3.5rem;
  height: 3.5rem;
  line-height: 3.5rem;
  font-size: 1.5rem;
  text-align: center;
  color: #fff;
  background-color: var(--colour1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
  transition: all 0.4s;
}

.video-box:hover:before {
  content: "\b20";
  background-color: var(--colour2);
}

.video-box.play:before {
  content: "\b20";
  opacity: 0;
}

.video-box video {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /*object-fit: contain;*/
  /*尺寸不匹配加黑边*/
  object-fit: cover;
  /*内容自适应裁切*/
  overflow-clip-margin: content-box;
  overflow: clip;
  /*元素溢出容器的时候隐藏，同时不会有滚动定位等行为。*/
  opacity: 0.8;
  transition: all 0.4s;
}

.video-box.play video {
  opacity: 1;
}

/*视频列表*/

.video-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}

.video-list li {
  padding: 1.25rem 0.75rem;
  width: 33.33%;
}

.video-list li a .img {
  position: relative;
  display: block;
  padding-bottom: 65%;
  overflow: hidden;
}

.video-list li a .img:before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4rem;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    var(--colour1) 100%
  );
  transition: all 0.6s;
}

.video-list li a:hover .img:before {
  transform: translate(0%, 100%);
}

.video-list li a .img:after {
  content: "\b88";
  position: absolute;
  z-index: 3;
  left: 1rem;
  bottom: 1rem;
  display: inline-block;
  font-family: "iconfont" !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.5rem;
  line-height: 1.125em;
  color: #fff;
  text-align: center;
  transition: all 0.4s;
}

.video-list li a:hover .img:after {
  content: "\b88";
  opacity: 0;
}

.video-list li a .img img {
  width: 100%;
  height: 100%;
}

.video-list li a .info {
  margin-top: 1rem;
  font-size: 1.125rem;
  line-height: 1.125em;
  font-weight: 500;
  color: var(--title);
  transition: all 0.4s;
}

.video-list li a:hover .info {
  color: var(--colour1);
}

.video-list li a:hover .info:hover {
  color: var(--colour2);
}

/*视频弹出*/

#video-modal .close {
  position: absolute;
  z-index: 3;
  top: 1rem;
  right: 1rem;
  opacity: 1;
  border-radius: 50%;
  overflow: hidden;
}

#video-modal .close span {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  font-size: 1rem;
  font-weight: normal;
  color: #fff;
  background: var(--colour1);
  transition: all 0.4s;
}

#video-modal .close:hover span {
  background: var(--colour2);
}

#video-modal .modal-dialog {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  width: 96%;
  margin: 2rem auto;
  -webkit-transform: translate(0, calc(-40% + 50vh));
  transform: translate(0, calc(-40% + 50vh));
}

#video-modal.show .modal-dialog {
  -webkit-transform: translate(0, calc(-50% + 50vh));
  transform: translate(0, calc(-50% + 50vh));
}

#video-modal .modal-body {
  padding: 0;
  font-size: 0;
}

#video-modal .modal-body video {
  width: 100%;
  height: 100%;
}

/*边距盒子*/

.padding-box {
  padding-top: 8vw;
  padding-bottom: 8vw;
}

.padding-top {
  padding-top: 8vw;
}

.padding-bottom {
  padding-bottom: 8vw;
}

.small-padding-box {
  padding-top: 5vw;
  padding-bottom: 5vw;
}

.small-padding-top {
  padding-top: 5vw;
}

.small-padding-bottom {
  padding-bottom: 5vw;
}

.main {
  position: relative;
  z-index: 2;
  background: var(--grey_bg);
}

.grey-box {
  background: var(--grey_bg);
}

.grey-box2 {
  background: var(--grey_bg2);
}

.white-box {
  background: #fff;
}

.clear-box:after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
}
/*设置swiper wow*/
.swiper .swiper-wrapper .swiper-slide.wow:nth-of-type(2) {
  animation-delay: 0.3s;
}
.swiper .swiper-wrapper .swiper-slide.wow:nth-of-type(3) {
  animation-delay: 0.5s;
}
/*设置swiper按钮*/
.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: "iconfont" !important;
  font-size: 1.5rem;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 3.5rem;
  height: 3.5rem;
  line-height: 3.5rem;
  text-align: center;
  border-radius: 50%;
  color: var(--colour1);
  background: #fff;
  transition: all 0.4s;
}
.swiper-button-next:hover:after,
.swiper-button-prev:hover:after {
  color: #fff;
  background: var(--colour1);
}
.swiper-button-next:after {
  content: "\b15";
}
.swiper-button-prev:after {
  content: "\b68";
}

/*定位按钮样式*/
.btn-position .swiper-button-prev {
  left: 0;
}
.btn-position .swiper-button-next {
  right: 0;
}
.btn-position .swiper-button-next,
.btn-position .swiper-button-prev {
  z-index: 2;
  width: auto;
  height: auto;
  opacity: 0;
}
.swiper:hover .btn-position .swiper-button-next,
.swiper:hover .btn-position .swiper-button-prev {
  opacity: 1 !important;
}
.btn-position .swiper-button-next:before,
.btn-position .swiper-button-prev:before {
  font-family: "iconfont" !important;
  font-size: 1.5rem;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 2.5rem;
  height: 3.5rem;
  line-height: 3.5rem;
  text-align: center;
  font-size: 1.5rem;
  border-radius: 0.25rem;
  color: #fff;
  background: rgb(0, 0, 0, 0.6);
  transition: all 0.4s;
}

.btn-position .swiper-button-next:hover:before,
.btn-position .swiper-button-prev:hover:before {
  color: #fff;
  background: var(--colour2);
}

/*内页翻页*/

.page-box {
  padding-top: 1.5rem;
}

.page {
  font-size: 0;
  color: var(--text);
}

.page span {
  display: inline-block;
  padding: 0 14px;
  margin: 0 4px;
  font-size: 14px;
  line-height: 3em;
  color: var(--text);
}

.page a {
  display: inline-block;
  margin: 0 1px;
  padding: 0 18px;
  font-size: 14px;
  line-height: 3em;
  color: #666;
  background: #f7f7f7;
  transition: all 0.4s;
}

.page a:first-of-type {
  border-radius: 4px 0 0 4px;
}

.page a:last-of-type {
  border-radius: 0 4px 4px 0;
}

.page a.active {
  font-weight: bold;
  color: #fff;
  background: var(--colour2);
}

.page input {
  display: inline-block;
  width: 4rem;
  padding: 0px 10px;
  font-size: 14px;
  line-height: 3em;
  height: 3em;
  color: #666;
  border-radius: 4px;
  border: 1px solid var(--grey_bg);
  overflow: hidden;
  transition: all 0.4s;
}

.page button {
  padding: 0 18px;
  margin: 0px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  line-height: 3em;
  color: #666;
  border: 1px solid var(--border_colour);
  background: var(--grey_bg);
  cursor: pointer;
  transition: all 0.4s;
}

.page form {
  display: inline-block;
}

.grey-box .page a,
.products-list .page a {
  background: #fff;
}

.grey-box .page a.active,
.products-list .page a.active {
  color: #fff;
  background: var(--colour2);
}
.page a:hover,
.page button:hover {
  color: #fff !important;
  background: var(--colour2);
}

@media (max-width: 767.8px) {
  .page {
    font-size: 13px;
    line-height: 2.5em;
  }
  .page a,
  .page span {
    padding: 0 14px;
    font-size: 13px;
    line-height: 2.5em;
  }
  .page input {
    font-size: 13px;
    line-height: 2.5em;
  }
  .page button {
    padding: 0 14px;
    font-size: 13px;
    line-height: 2.5em;
  }
  .page input {
    font-size: 13px;
    line-height: 2.5em;
    height: 2.5em;
  }
}

/*下拉选项*/
.select {
  position: relative;
  z-index: 2;
}

.select > div {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 0.25rem;
  background: var(--grey_bg);
  margin: 0;
  padding: 0.5rem 0;
}

.select > a {
  display: block;
  outline: none;
  width: 100%;
  padding: 0px 1em;
  font-size: 0.9375rem;
  line-height: 3em;
  height: 3em;
  color: #666;
  border: none;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.25rem;
  transition: all 0.4s;
}

.select > a .icon {
  float: right;
}
.select > div a {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  line-height: 1.5em;
  color: var(--text);
  white-space: pre-wrap;
}

.select > div a.disabled {
  opacity: 0.5;
}

.select > div a:hover {
  color: var(--colour2);
  background: #fff;
}

/* 按钮 */

.layout-btn {
  position: relative;
  display: inline-block;
  width: auto;
  min-width: 12.5em;
  height: 3.25rem;
  background: var(--colour2);
  transform: translate3d(0px, 0%, 0px);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  transition-delay: 0.6s;
  border-radius: 0.25rem;
  overflow: hidden;
}

.layout-btn:before {
  content: "";
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--grey_bg);
  border-radius: 50% 50% 0 0;
  transform: translateY(100%) scaleY(0.5);
  transition: all 0.6s ease;
}

.layout-btn:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--colour2);
  border-radius: 0;
  transform: translateY(0) scaleY(1);
  transition: all 0.6s ease;
}

.layout-btn > div {
  position: relative;
  z-index: 8;
  top: 50%;
  width: 100%;
  height: 1.5rem;
  margin-top: -0.75rem;
  overflow: hidden;
}

.layout-btn > div > span {
  position: absolute;
  z-index: 1;
  left: 0;
  height: 1.5rem;
  line-height: 1.5rem;
  top: 0;
  font-size: 0.875rem;
  width: 100%;
  text-align: center;
  transition: transform 0.5s ease;
}

.layout-btn > div > span:first-of-type {
  color: #333;
  transform: translateY(1.5rem);
}

.layout-btn > div > span:last-of-type {
  color: #fff;
  transform: translateY(0);
}

.layout-btn:hover {
  background: var(--colour3);
  transition: background 0.2s linear;
  transition-delay: 0.6s;
}

.layout-btn:hover:before {
  border-radius: 0;
  transform: translateY(0) scaleY(1);
  transition-delay: 0s;
}

.layout-btn:hover:after {
  border-radius: 0 0 50% 50%;
  transform: translateY(-100%) scaleY(0.5);
  transition-delay: 0s;
}

.layout-btn:hover > div > span:first-of-type {
  transform: translateY(0);
}

.layout-btn:hover > div > span:last-of-type {
  transform: translateY(-1.5rem);
}
.layout-btn.small {
  max-width: 10rem;
  height: 3.25rem;
  font-size: 0.875rem;
  box-shadow: none;
}
/*头部*/

#head {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  color: #fff;
  background: var(--colour2);
  border-bottom: hidden;
  transform: translate(0%, 0%);
  transition: all 0.6s;
}
body.head-fixed-top #head {
  position: fixed;
  z-index: 1050;
  top: 0;
  left: 0;
  right: 0;
}
body.down.donw-hide #head {
  transform: translate(0%, -100%);
}

/*头部标志*/
.head-conent {
  position: relative;
  display: flex;
  height: var(--head_height);
  transition: all 0.4s;
}

.navbar-brand {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: normal;
  padding: 0px;
  margin: 0px;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.navbar-brand img {
  width: auto;
  height: 50%;
}

.navbar-brand > div {
  padding-left: 1rem;
  border-top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: normal;
  font-family: "BdCn";
  font-size: 1.5rem;
  color: #fff;
}
.navbar-brand > div span {
  display: inline-block;
  margin-right: 0.25em;
}

/*头部按钮*/

.head-btn-search {
  flex-grow: 1;
  display: flex;
  align-items: center;
  padding: 0 2rem;
  height: 100%;
}
.head-btn-search input {
  padding: 0 0.5rem;
  font-size: 0.875rem;
  line-height: 2.75rem;
  width: calc(100% - 3rem);
  max-width: 37.5rem;
  border: none;
  border-radius: 0.25rem 0 0 0.25rem;
}
.head-btn-search .icon {
  margin-left: 1px;
  display: inline-block;
  width: 2.75rem;
  height: 2.75rem;
  font-size: 1.25rem;
  line-height: 2.75rem;
  color: var(--colour2);
  text-align: center;
  border-radius: 0 0.25rem 0.25rem 0;
  background: #fff;
  transition: all 0.4s;
}
.head-btn-search .icon:hover {
  color: #fff;
  background: var(--colour3);
}

.head-btn-search .icon.wap-icon {
  margin-left: 1px;
  display: none;
  width: 2.25rem;
  height: 2.25rem;
  line-height: 2.25rem;
  font-size: 1.25rem;
  color: #fff;
  text-align: center;
  border-radius: 0;
  background: none;
  transition: all 0.4s;
}

.head-wap-btn {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
  height: 100%;
}

.head-wap-btn .dropdown,
.head-wap-btn .head-btn-loading,
.head-wap-btn .head-btn-cart {
  display: flex;
  align-items: center;
}

.head-wap-btn .dropdown:hover > a,
.head-wap-btn .head-btn-loading:hover a .icon,
.head-wap-btn .head-btn-cart:hover a .icon {
  opacity: 0.7;
}

.head-btn-member > a {
  font-weight: bold;
}

.head-wap-btn .dropdown > a > div {
  display: flex;
  padding: 0 1.125em 0 0.875em;
  border-radius: 2em;
  transition: all 0.4s;
}

.head-wap-btn .dropdown > a span.icon,
.head-wap-btn .head-btn-loading span.icon,
.head-wap-btn .head-btn-cart span.icon {
  display: inline-block;
  font-size: 1.375rem;
  width: 2.25rem;
  height: 2.25rem;
  line-height: 2.25rem;
  text-align: center;
  color: #fff;
  border-radius: 50%;
  transition: all 0.4s;
}
.head-wap-btn .head-btn-cart a {
  position: relative;
}
.head-wap-btn .head-btn-cart span.qty {
  position: absolute;
  right: 0.125rem;
  top: 0rem;
  border-radius: 50%;
  font-size: 0.625rem;
  width: 0.875rem;
  height: 0.875rem;
  line-height: 0.875rem;
  text-align: center;
  color: var(--colour2);
  border-radius: 50%;
  background: #fff;
}
.head-wap-btn .dropdown:hover > a span.icon {
  color: #fff;
}
.head-wap-btn .head-btn-member:hover > a > div {
  color: #fff !important;
}

.head-wap-btn .head-btn-member > a span {
  font-weight: normal;
}

.head-wap-btn .head-nav {
  left: 50%;
  padding: 0.5rem 0;
  margin-top: 0;
  border-radius: 0 0 0.25rem 0.25rem;
  border: none;
  box-shadow: 0 0 0.5rem var(--shadow);
  transform: translate(-50%, 0%);
}

.head-wap-btn .head-nav a {
  display: block;
  padding: 0 1em;
  font-size: 0.875rem;
  color: var(--text);
  height: 3rem;
  line-height: 3rem;
  border-bottom: rgba(0, 0, 0, 0.1);
}

.head-wap-btn .head-nav a:hover {
  color: #fff !important;
  background: var(--colour2);
}

.head-wap-btn .head-nav a:last-of-type {
  border-bottom: none;
}

.head-wap-btn .head-nav svg {
  width: 1.375rem;
  height: 1.375rem;
  margin-right: 0.375rem;
}
.head-wap-btn .head-nav .navbar-toggler {
  width: var(--head_height);
  height: var(--head_height);
  color: #fff;
  border-radius: 0;
  border: none;
}

.head-wap-btn .from-box {
  position: fixed;
  z-index: 10;
  right: 0;
  top: var(--head_height);
  max-width: none;
  padding: 2rem;
  width: 30rem;
  max-width: 90vw;
  height: calc(100vh - var(--head_height));
  font-size: 0.9375rem;
  color: var(--text);
  border: none;
  background: #fff;
  transform: translate(100%, 0%);
  transition: all 0.6s ease;
  overflow: auto;
}
.head-wap-btn .show .from-box {
  transform: translate(0%, 0%);
}
.head-wap-btn .from-box a {
  color: var(--text);
  transition: all 0.4s;
}
.head-wap-btn .from-box a:hover {
  color: var(--colour2);
}
.head-wap-btn .from-box a.for-got {
  font-size: 0.875rem;
  transition: all 0.4s;
}

.navbar-toggler span {
  width: 1.25rem;
  height: 0.125rem;
  background-color: #fff;
  display: block;
  margin: 0.25rem auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navbar-toggler:hover {
  cursor: pointer;
}

.navbar-toggler span:nth-child(1) {
  transform: translateY(0.375rem) rotate(45deg);
}

.navbar-toggler span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler span:nth-child(3) {
  transform: translateY(-0.375rem) rotate(-45deg);
}

.navbar-toggler.collapsed span {
  opacity: 1;
  transform: translateY(0) rotate(0);
}

/*头部导航*/

#head .navbar-collapse {
  flex-grow: 0;
  flex-shrink: 0;
  height: 100%;
}

#head .navbar-nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  height: 100%;
  padding: 0 1%;
  margin-left: 1rem;
}

#head .navbar-nav > li {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 1rem;
  margin: 0;
}

#head .navbar-nav > li > a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 0;
  font-size: 0.9375rem;
  line-height: 1.25em;
  font-weight: bold;
  color: inherit;
  text-align: center;
  white-space: nowrap;
  text-transform: Capitalize;
  border-radius: 0.25rem;
  color: #fff;
}

#head .navbar-nav > li:hover > a {
  opacity: 0.7;
}

#head .navbar-nav > li.show > a {
  opacity: 0.7;
}

#head .navbar-nav > li > a:after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: -1px;
  left: 0%;
  width: 100%;
  height: 0.125rem;
  opacity: 0.7;
  background-color: #fff;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scaleX(0);
  transform-origin: 100%;
}

#head .navbar-nav > li.show > a:after,
#head .navbar-nav > li:hover > a:after {
  transform: scaleX(1);
  transform-origin: 0%;
}
#head .navbar-nav > li > .dropdown-menu {
  margin: 0;
  left: 50%;
  padding: 1rem 1.5rem;
  min-width: 11rem;
  border: none;
  box-shadow: 0 0 1rem var(--shadow);
  border-radius: 0 0 0.25rem 0.25rem;
  transform: translate(-50%, 0%);
}
#head .navbar-nav > li > .dropdown-menu a {
  display: block;
  padding-top: 0.6875rem;
  padding-bottom: 0.6875rem;
  line-height: 1.25em;
  font-size: 0.9375rem;
  font-weight: bold;
  color: var(--text);
  white-space: nowrap;
}
#head .navbar-nav > li > .dropdown-menu a:hover {
  color: var(--colour2);
}
#head .navbar-nav .head-pNav {
  position: static;
}
#head .navbar-nav .head-pNav > .dropdown-menu {
  width: 100%;
  left: 0;
  top: 100%;
  padding: 0;
  margin-top: 0;
  border-radius: 0px;
  border: none;
  box-shadow: 0 0 0.5rem var(--shadow);
  transform: translate(0%, 0%);
}
#head .navbar-nav .head-pNav .head-pNav-conent {
  display: flex;
  justify-content: center;
  width: 100%;
}

#head .head-pNav .nav {
  width: 13.75rem;
  max-height: calc(95vh - var(--head_height));
  background: var(--grey_bg2);
  overflow: auto;
}
#head .head-pNav .nav li {
  display: block;
  width: 100%;
  border-bottom: 1px solid var(--border_colour);
}
#head .head-pNav .nav li a {
  display: block;
  padding: 1rem 1rem;
  white-space: wrap;
}
#head .head-pNav .nav li a.active {
  position: relative;
  color: var(--colour2);
  background: #fff;
}

#head .navbar-nav .head-pNav .tab-content {
  width: calc(100% - 13.75rem);
  max-height: calc(95vh - var(--head_height));
}
#head .navbar-nav .head-pNav .tab-content .tab-pane,
#head .navbar-nav .head-pNav .tab-content .tab-pane ul {
  height: 100%;
}
#head .navbar-nav .head-pNav .tab-content .tab-pane {
  position: relative;
  width: 100%;
}
#head .navbar-nav .head-pNav2 {
  width: 13.75rem;
  max-height: calc(95vh - var(--head_height));
  background: var(--grey_bg);
  overflow: auto;
}
#head .navbar-nav .head-pNav2 li {
  position: static;
}
#head .navbar-nav .head-pNav2 li > a {
  position: relative;
  display: block;
  padding: 0.5rem 1rem;
  line-height: 2.5em;
  font-size: 0.9375rem;
  font-weight: bold;
  color: var(--text);
  white-space: nowrap;
}
#head .navbar-nav .head-pNav2 li.active > a {
  color: var(--colour2);
  background: #fff;
}

#head .head-pNav .nav li a.active:after,
#head .navbar-nav .head-pNav2 li.active > a:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0px;
  left: 0%;
  width: 0.1875rem;
  height: 100%;
  background-color: var(--colour2);
  transition: all 0.4s;
}
#head .head-pNav .nav li a.active:before,
#head .navbar-nav .head-pNav2 li.active > a:before {
  content: "\b22";
  font-family: "iconfont" !important;
  font-size: 0.75rem;
  font-style: normal;
  position: absolute;
  right: 0.75rem;
  color: inherit;
  transform: rotate(-90deg);
}

#head .navbar-nav .head-pNav2 li .dropdown-menu {
  position: absolute;
  top: 0;
  right: 0%;
  left: auto;
  margin: 0;
  width: calc(100% - 13.75rem);
  height: 100%;
  padding: 1.5rem;
  overflow: auto;
  border: 0;
  border-radius: 0;
  transition: all 0.4s;
}
#head .navbar-nav .head-pNav2 li.active .dropdown-menu {
  display: block;
}
#head .navbar-nav .head-pNav2 .nav-pList {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  font-size: 0;
}
#head .navbar-nav .head-pNav2 .nav-pList a {
  display: inline-block;
  width: 22%;
  margin: 1.5%;
  text-align: center;
  border-radius: 0.5rem;
  transition: all 0.4s;
}
#head .navbar-nav .head-pNav2 .nav-pList a:hover {
}
#head .navbar-nav .head-pNav2 .nav-pList a .img,
#head .navbar-nav .head-pNav2 .nav-pList a .img img {
  width: 100%;
}
#head .navbar-nav .head-pNav2 .nav-pList a .title {
  padding: 0.5rem 0;
  font-weight: bold;
  transition: all 0.4s;
}
#head .navbar-nav .head-pNav2 .nav-pList a:hover .title {
  color: var(--colour2);
}
/*头部搜索*/

#search-modal .modal-dialog {
  margin: 0;
  width: 100vw;
  max-width: none;
  transition: all 0.4s;
  opacity: 0;
}
#search-modal.show .modal-dialog {
  opacity: 1;
}

#search-modal .modal-content {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 0;
  border: none;
  height: 100vh;
}
#search-modal .search-close {
  position: absolute;
  right: 1vw;
  top: 1vw;
  z-index: 2;
  font-size: 1.5rem;
  width: 3.5rem;
  height: 3.5rem;
  line-height: 3.5rem;
  text-align: center;
  border: none;
  background: var(--grey_bg);
  border-radius: 0.25rem;
  transition: all 0.4s;
}
#search-modal .search-close:hover {
  background: var(--colour2);
  color: #fff;
}

#search-modal .search-close .icon {
  font-size: inherit;
  color: inherit;
}
#search-modal .modal-header {
  width: 800px;
  max-width: 90%;
  padding: 0rem;
  border-bottom: none;
}

#search-modal .modal-header form {
  display: flex;
  justify-content: center;
  width: 100%;
}

#search-modal .modal-header input,
#search-modal .modal-header button {
  border: none;
  border-radius: 0;
  background: none;
}

#search-modal .modal-header input {
  padding: 0 1.5rem;
  font-size: 1.25rem;
  font-weight: 500;
  width: 0;
  background: var(--grey_bg);
  transition: all 0.8s;
}
#search-modal.show .modal-header input {
  width: 100%;
  border-radius: 0.25rem 0 0 0.25rem;
  transition-delay: 0.3s;
}

#search-modal .modal-header button {
  cursor: pointer;
  padding: 0 2rem;
  color: #fff;
  font-size: 1.5rem;
  background: var(--colour2);
  border-radius: 0 0.25rem 0.25rem 0;

  transition: all 0.4s;
}
#search-modal .modal-header button:hover {
  color: #fff;
  background: var(--colour3);
}
#search-modal .modal-header button span {
  color: inherit;
  font-size: inherit;
}
#search-modal .modal-body {
  width: 800px;
  max-width: 90%;
  flex: 0 0 auto !important;
  padding: 2rem 1.5rem;
}
#search-modal.show .modal-body {
  animation-name: fadeInUp;
  animation-duration: 1.125s;
  animation-fill-mode: both;
  animation-delay: 0.8s;
}
#search-modal .hot-search {
  margin-top: 2rem;
}
#search-modal .hot-search strong {
  font-size: 0.875rem;
  margin-right: 0.5rem;
}
#search-modal .hot-search a {
  display: inline-block;
  padding: 0 1em;
  margin: 0.25rem;
  font-size: 0.875rem;
  line-height: 2.5em;
  color: var(--dark);
  border-radius: 2em;
  background: var(--grey_bg);
  transition: all 0.4s;
}

#search-modal .hot-search a:hover {
  color: #fff;
  background: var(--colour2);
}

/*手机菜单*/

#wap-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1051;
  width: 100%;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  background-color: rgba(29, 37, 48, 0.25);
}

#wap-menu .menu-head {
  display: flex;
  justify-content: space-between;
  background: #fff;
  width: 100%;
  max-width: 25rem;
}

#wap-menu .menu-head .head-btn-Language {
  display: flex;
  justify-content: space-between;
  width: var(--head_height);
  height: var(--head_height);
  background: #fff;
  display: flex;
}

#wap-menu .menu-head .dropdown > a {
  display: flex;
  font-size: 0;
  align-items: center;
  height: 100%;
  margin-left: 0.75rem;
  padding: 0;
  font-size: 0.9375rem;
  line-height: 2.25rem;
  color: var(--text);
}

#wap-menu .menu-head .dropdown > a > div {
  width: var(--head_height);
  white-space: nowrap;
}

#wap-menu .menu-head .dropdown > a span {
  vertical-align: middle;
}

#wap-menu .menu-head .dropdown > a span.icon {
  display: inline-block;
  margin-right: 0.25rem;
  font-size: 1.5rem;
  color: inherit;
}

#wap-menu .menu-head .dropdown-menu {
  padding: 0.5rem 0;
  margin-top: 0;
  border-radius: 0px;
  border: none;
  box-shadow: 0 0 0.5rem var(--shadow);
}

#wap-menu .menu-head .dropdown .dropdown-menu a {
  display: block;
  padding: 0 1em;
  font-size: 0.875rem;
  color: var(--text);
  height: 3rem;
  line-height: 3rem;
  border-bottom: rgba(0, 0, 0, 0.1);
}

#wap-menu .menu-head .dropdown .dropdown-menu a:hover {
  color: #fff !important;
  background: var(--colour1);
}

#wap-menu .menu-head .dropdown .dropdown-menu a:last-of-type {
  border-bottom: none;
}

#wap-menu .menu-head .dropdown .dropdown-menu svg {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.25rem;
}

#wap-menu .menu-head .menu-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: inherit;
  flex: 1;
  margin-right: 1rem;
  height: var(--head_height);
}

#wap-menu .menu-head .menu-logo img {
  width: auto;
  height: 1.25rem;
}

#wap-menu .menu-head .close {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: var(--grey_bg);
  border-radius: 0 0 0.25rem 0;
  opacity: 1;
}

#wap-menu .menu-head .close span {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--text);
}

#wap-menu .menu-body {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 25rem;
  height: calc(100vh - var(--head_height));
  background-color: #fff;
  overflow: auto;
}

#wap-menu .menu-body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

#wap-menu .menu-search form {
  display: flex;
  padding: 0.5rem 0;
  margin-top: 1rem;
  margin-bottom: 2rem;
  margin-left: 4vw;
  margin-right: 4vw;
  border-bottom: 2px solid #fff;
}

#wap-menu .menu-nav {
  flex-shrink: 1;
  width: 100%;
  padding: 1.5rem 1rem;
}

#wap-menu .navbar-nav li {
  position: relative;
  margin: 0;
  border-radius: 0.5rem;
  border-top: 1px solid var(--border_colour);
  background: #fff;
}
#wap-menu .navbar-nav li:first-of-type {
  border-top: none;
}

#wap-menu .navbar-nav li > a {
  display: block;
  padding: 0.875rem 0;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 2em;
  color: var(--text);
}

#wap-menu .navbar-nav li .menu-down {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.5rem;
  display: block;
  width: 2.75rem;
  text-align: center;
  transform: rotate(45deg);
  transition: all 0.4s;
}
#wap-menu .navbar-nav li .menu-down:not(.collapsed) {
  transform: rotate(0deg);
}

#wap-menu .navbar-nav li .subnav {
  padding: 0;
  border-radius: 0;
  border: none;
}

#wap-menu .navbar-nav li .subnav a {
  display: block;
  width: 100%;
  padding: 0.5rem;
  font-size: 1rem;
  font-weight: normal;
  color: var(--text);
}
#wap-menu .navbar-nav li .subnav a:last-of-type {
  margin-bottom: 1.25rem;
}
#wap-menu .navbar-nav li .subnav .pSubnav {
  margin-left: -1.5rem;
  margin-right: -1.5rem;
  padding: 0 1.5rem;
  max-width: none;
  display: flex;
  overflow: auto;
}
#wap-menu .navbar-nav li .subnav .pSubnav::-webkit-scrollbar {
  width: 0;
  height: 0;
}

#wap-menu .navbar-nav li .subnav .pSubnav a {
  display: block;
  flex-shrink: 0;
  width: 40%;
  padding: 0;
  margin-left: 4%;
  font-size: 0.75rem;
  line-height: 1.25em;
  font-weight: 600;
  text-align: center;
}
#wap-menu .navbar-nav li .subnav .pSubnav a:first-of-type {
  margin-left: 0%;
}

#wap-menu .navbar-nav li .subnav .pSubnav a span {
  display: block;
  margin: 0.5rem 0;
}

/*head end*/

/*banner*/
.banner-box {
  padding-top: 3rem;
}
.banner-box > .container {
  display: flex;
  justify-content: space-between;
}
/*banner-nav*/
.index-nav {
  position: relative;
  flex-shrink: 0;
  width: 23%;
  max-width: 20rem;
  min-width: 16rem;
  padding: 2rem 0 2rem 2rem;
  margin-right: 1rem;
  background: #fff;
}
.index-nav ul li {
  position: static;
}
.index-nav ul li a {
  display: flex;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  line-height: 1.5em;
  font-weight: bold;
  color: var(--title);
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  overflow: hidden;
  transition: all 0.4s;
}
.index-nav ul li:hover > a {
  padding-left: 0.75rem;
  color: #fff;
  background: var(--colour2);
}

.index-nav ul li a img {
  width: 1.5rem;
  margin-right: 0.75rem;
  transition: all 0.4s;
}

.index-nav ul li:hover > a img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.index-nav .dropdown-menu {
  margin: 0;
  padding: 2rem 2rem 2rem 0;
  min-width: 20rem;
  height: 100%;
  border: 0;
  border-radius: 0;
}
.index-nav .dropdown-menu > div {
  height: 100%;
  padding-left: 2rem;
  border-left: 1px solid var(--border_colour);
}

.index-nav .dropdown-menu .title {
  white-space: nowrap;
}
.index-nav .dropdown-menu .title a {
  display: inline-block;
  margin-left: 0.75rem;
  font-size: 0.75rem;
  font-weight: normal;
  color: var(--small_text);
  vertical-align: middle;
}

.index-nav .dropdown-menu > div > a {
  position: relative;
}
.index-nav .dropdown-menu > div > a:hover {
  padding-left: 0.75rem;
}
.index-nav .dropdown-menu > div > a:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  left: -0.5rem;
  margin-top: -0.25rem;
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 0.25rem solid transparent;
  border-right: 0.25rem solid transparent;
  border-bottom: 0.25rem solid transparent;
  border-left: 0.25rem solid var(--colour2);
  opacity: 0;
  transition: all 0.4s;
}
.index-nav .dropdown-menu > div > a:hover:before {
  content: "";
  left: 0;
  opacity: 1;
}
.index-nav .dropdown-menu a:hover {
  color: var(--colour2);
}
/*banner-swiper*/
.swiper-btn > div {
  cursor: pointer;
}
.banner {
  position: relative;
  left: 0;
  top: 0;
  flex-shrink: 1;
  width: 77%;
  overflow: hidden;
}
.banner .bigimg,
.banner .bigimg .swiper-wrapper,
.banner .bigimg .swiper-slide,
.banner .bigimg .slide-inner {
  height: 100%;
}
.banner .bigimg .swiper-slide {
  width: 100%;
  overflow: hidden;
}
.banner .bigimg .swiper-slide .picimg {
  width: 100%;
}

.banner .bigimg .swiper-slide .slide-inner picture,
.banner .bigimg .swiper-slide .slide-inner img {
  width: 100%;
  min-height: 100%;
}
.banner .bigimg .swiper-slide .text {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  display: flex;
  justify-items: center;
  align-items: center;
  text-align: center;
}
.banner .bigimg .swiper-slide .text > div {
  width: 100%;
}
.banner .bigimg .swiper-slide .text .title {
  margin-bottom: 0.25rem;
  font-weight: bold;
  text-shadow: 0 0 1rem var(--shadow);
}
.banner .bigimg .swiper-slide .text .subtitle {
  font-weight: 400;
  text-shadow: 0 0 1rem var(--shadow);
}
.banner .bigimg .swiper-slide .text .layout-btn {
  margin-top: 2rem;
  max-width: 10rem;
  height: 3.25rem;
  font-size: 0.875rem;
  box-shadow: none;
}
.banner .bigimg .swiper-slide .text img {
  width: auto;
  max-width: 70%;
  margin: auto;
}
.banner .bigimg .swiper-slide .pos {
  position: absolute;
  left: 0;
  top: 42%;
  transform: translateY(-50%);
  z-index: 2;
  width: 100%;
}
.banner .bigimg .swiper-slide .pos img {
  width: 350px;
}
.banner .bigimg .swiper-slide .video_ves {
  position: relative;
  width: 100%;
  height: 100%;
}
.banner .bigimg .swiper-slide .video_ves video {
  position: absolute;
  top: 0%;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner .bigimg .swiper-slide .bac {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.4;
}
.banner .swiper-pagination {
  z-index: 10;
  top: auto;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  width: auto;
  height: auto;
  display: flex;
  background: none;
  counter-reset: compteListe;
}
.banner .swiper-pagination span {
  position: relative;
  display: block;
  margin: 0.5rem !important;
  width: 2.5rem;
  height: 0.175rem;
  background: initial;
  background: #fff;
  border-radius: 0%;
  opacity: 0.5;
}

.banner .swiper-pagination span:before {
  counter-increment: compteListe 1;
  content: "0" counter(compteListe);
  position: absolute;
  bottom: 100%;
  left: 0;
  display: inline-block;
  margin: 0;
  width: 100%;
  font-size: 0.9375rem;
  line-height: 2em;
  color: #fff;
}
.banner .swiper-pagination span.swiper-pagination-bullet-active {
  opacity: 1;
}
/*公共*/
.nav-title {
  color: var(--title);
}
.hover-btn {
  display: inline-block;
  position: relative;
  padding: 0 2.25em;
  font-size: 0.875rem;
  line-height: 3.25em;
  color: #fff !important;
  border: 1px solid var(--colour1);
  border-radius: 0.25rem;
  overflow: hidden;
  transition: all 0.4s;
}

.hover-btn:hover {
  color: var(--colour1) !important;
}

.hover-btn span {
  position: relative;
  z-index: 3;
  color: inherit;
  vertical-align: middle;
}

.hover-btn:before {
  transition: all 0.6s;
  transform: scale(0);
  position: absolute;
  left: 0%;
  bottom: 0%;
  z-index: 2;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background: #fff;
  content: "";
}

.hover-btn:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--colour1);
  content: "";
}

.hover-btn:hover:before {
  transition: all 0.6s;
  transform: scale(13);
}

/*wow 图片遮罩*/
.wow-img {
  position: relative;
}
.wow-img:after {
  content: "";
  position: absolute;
  z-index: 10;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scaleX(1);
  transform-origin: 100%;
}

.wow-img.animated:after {
  transform: scaleX(0);
  transform-origin: 0%;
}

/*wow递减延迟*/
.wowlist .wow:nth-of-type(2) {
  animation-delay: 0.3s;
}
.wowlist .wow:nth-of-type(3) {
  animation-delay: 0.5s;
}
.wowlist .wow:nth-of-type(4) {
  animation-delay: 0.6s;
}
.wowlist .wow:nth-of-type(5) {
  animation-delay: 0.7s;
}
.wowlist .wow:nth-of-type(6) {
  animation-delay: 0.8s;
}
.wowlist .wow:nth-of-type(7) {
  animation-delay: 0.9s;
}
.wowlist .wow:nth-of-type(8) {
  animation-delay: 1s;
}
.wowlist .wow:nth-of-type(9) {
  animation-delay: 1.1s;
}
.wowlist .wow:nth-of-type(10) {
  animation-delay: 1.2s;
}
.wowlist .wow:nth-of-type(11) {
  animation-delay: 1.3s;
}
.wowlist .wow:nth-of-type(12) {
  animation-delay: 1.4s;
}

/*首页标题*/
.index-more {
  display: inline-block;
  padding: 0 1.5em;
  font-size: 0.875rem;
  line-height: 2.5rem;
  color: var(--colour2);
  border-radius: 0.25rem;
  transition: all 0.4s;
}
.index-more:hover {
  color: #fff;
  border: 1px solid var(--colour2);
  background: var(--colour2);
}
/*首页产品推荐*/
.index-product {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1rem;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}
.index-product li {
  width: 25%;
  padding: 0.5rem;
  min-height: 10rem;
}
.index-product li a {
  display: flex;
  align-items: center;
  padding: 0.75rem;
  min-height: 100%;
  background: #fff;
  border: 1px solid var(--border_colour);
  border-radius: 0.25rem;
  transition: all 0.4s;
}
.index-product li a:hover {
  border: 1px solid var(--colour2);
  box-shadow: 0 0 1rem var(--shadow);
}
.index-product li .img {
  flex-shrink: 0;
  width: 7rem;
  max-width: 35%;
}
.index-product li .info {
  padding-left: 0.75rem;
}
.index-product li .info .title {
  transition: all 0.4s;
}
.index-product li a:hover .info .title {
  color: var(--colour2);
}
.index-product li .info small {
  color: var(--small_text);
}
.index-product li .info .more span {
  font-size: 0.75rem;
  color: var(--small_text);
  transition: all 0.4s;
}
.index-product li a:hover .info .more span {
  color: var(--colour2);
}
.index-product li .info .more span.icon {
  opacity: 0;
}
.index-product li a:hover .info .more span.icon {
  margin-left: 0.375rem;
  opacity: 1;
}
/*首页 按栏目*/
.index-class {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1rem;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}
.index-class li {
  width: 16.66%;
  padding: 0.5rem;
}
.index-class li a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0.75rem;
  min-height: 100%;
  background: #fff;
  border: 1px solid var(--border_colour);
  border-radius: 0.25rem;
  transition: all 0.4s;
}
.index-class li a:hover {
  border: 1px solid var(--colour2);
  box-shadow: 0 0 1rem var(--shadow);
}
.index-class li .img {
}
.index-class li .img img {
  width: 4rem;
}
.index-class li .info {
  width: 100%;
}
.index-class li .info .title {
  text-align: center;
  color: var(--title);
  transition: all 0.4s;
}
.index-class li a:hover .info .title {
  color: var(--colour2);
}
.index-class li .info small {
  color: var(--small_text);
}
.index-class li .info .more span {
  font-size: 0.75rem;
  color: var(--small_text);
  transition: all 0.4s;
}
.index-class li a:hover .info .more span {
  color: var(--colour2);
}
.index-class li .info .more span.icon {
  opacity: 0;
}
.index-class li a:hover .info .more span.icon {
  margin-left: 0.375rem;
  opacity: 1;
}
/*首页按工具*/
.index-tool {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1rem;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}
.index-tool li {
  width: 25%;
  padding: 0.5rem;
}
.index-tool li a {
  display: flex;
  flex-wrap: wrap;
  padding: 1.5rem 1.125rem;
  min-height: 100%;
  background: #fff;
  border: 1px solid var(--border_colour);
  border-radius: 0.25rem;
  transition: all 0.4s;
}
.index-tool li a:hover {
  border: 1px solid var(--colour2);
  box-shadow: 0 0 1rem var(--shadow);
}
.index-tool li a .img {
  width: 6rem;
}
.index-tool li a .info {
  display: flex;
  align-items: center;
  margin-left: 1rem;
  width: calc(100% - 7rem);
}
.index-tool li a .title {
  margin-bottom: 0.25rem;
  font-weight: bold;
  color: var(--title);
  transition: all 0.4s;
}
.index-tool li a:hover .title {
  color: var(--colour2);
}
.index-tool li a .text {
  font-size: 0.875rem;
  line-height: 1.25em;
  color: var(--small_text);
}
.index-tool li a .tag {
  width: 100%;
  margin-top: 1rem;
}
.index-tool li a .tag span {
  display: inline-block;
  padding: 0 1rem;
  margin-right: 0.25rem;
  font-size: 0.75rem;
  line-height: 2em;
  color: var(--text);
  border-radius: 2em;
  background: var(--grey_bg);
  transition: all 0.4s;
}
.index-tool li a:hover .tag span {
  color: #fff;
  background: var(--colour3);
}
.index-tool li .more {
  margin-top: 0.5rem;
}
.index-tool li .more span {
  font-size: 0.75rem;
  color: var(--small_text);
  transition: all 0.4s;
}
.index-tool li a:hover .more span {
  color: var(--colour2);
}
.index-tool li .more span.icon {
  opacity: 0;
}
.index-tool li a:hover .more span.icon {
  margin-top: 0.375rem;
  opacity: 1;
}
/*首页承芯微*/
.index-solution {
  margin-top: 2rem;
}
.index-solution .swiper-pagination {
  display: none;
  margin-top: 0.5rem;
  position: static;
}

.index-solution > .swiper-wrapper {
  display: flex;
}
.index-solution .swiper-slide {
  height: auto;
  min-height: 100%;
  border: 1px solid var(--border_colour);
  background: #fff;
  border-radius: 0.25rem;
}
.index-solution .img {
  display: block;
  overflow: hidden;
}
.index-solution .img img {
  width: 100%;
}
.index-solution .subnav {
  position: relative;
  padding: 2rem;
  font-size: 0.875rem;
}
.index-solution .subnav a {
  display: inline-block;
  margin-right: 0.5rem;
  color: var(--text);
  transition: all 0.4s;
}
.index-solution .subnav a:hover {
  color: var(--colour2);
}
.index-solution a.title {
  display: block;
}
.index-solution .swiper-slide:hover a.title {
  color: var(--colour2);
}
.index-solution a.more {
  position: absolute;
  z-index: 2;
  right: 1rem;
  top: -1.5em;
  padding: 0 1rem;
  height: 3em;
  line-height: 3em;
  border-radius: 0.25rem;
  text-align: center;
  background: var(--colour2);
  font-size: 0.75rem;
  color: #fff;
}
.index-solution a.more:hover {
  background: var(--colour3);
  color: #fff;
}
.index-solution a.more span {
  font-size: inherit;
  color: inherit;
}

/*新闻*/

.index-news {
  margin-top: 2rem;
  overflow: visible;
}
.index-news .swiper-pagination {
  display: none;
  margin-top: 0.5rem;
  position: static;
}
.index-news .swiper-slide {
  display: flex;
  flex-wrap: wrap;
  opacity: 0.5;
  width: 60rem;
  height: auto;
  background: #fff;
  border-radius: 0.25rem;
  overflow: hidden;
}
.index-news .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.index-news .swiper-slide .img {
  display: flex;
  align-items: center;
  width: 50%;
  overflow: hidden;
}
.index-news .swiper-slide .img img {
  width: 100%;
  min-height: 100%;
}
.index-news .swiper-slide .info {
  width: 50%;
  padding: 5%;
}
.index-news .swiper-slide .info small {
  display: inline-block;
  padding: 0 1em;
  border-radius: 2em;
  background: var(--grey_bg);
  margin-bottom: 0.5rem;
}
.index-news .swiper-slide .info .title {
  display: block;
}
.index-news .swiper-slide:hover .info .title {
  color: var(--colour2);
}
.index-news .swiper-slide .info .text {
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.875rem;
}
.index-news .swiper-slide .info .text p {
  font-size: 0.875rem;
  color: var(--small_text);
}
.index-news .swiper-slide .info .more {
  display: inline-block;
  padding: 0 1.125em;
  margin-top: 1.75rem;
  font-size: 0.875rem;
  line-height: 2.25rem;
  color: #fff;
  border-radius: 0.25rem;
  background: var(--colour2);
  transition: all 0.4s;
}
.index-news .swiper-slide .info .more:hover {
  background: var(--colour3);
}
/*样品申请*/
.foot-sample {
  position: relative;
  display: flex;
  align-items: center;
  padding: 3.5rem;
  margin-top: 2rem;
}
.foot-sample .img {
  width: 12rem;
}
.foot-sample .info {
  margin-left: 5%;
  width: 25rem;
}
.foot-sample .info p {
  font-size: 0.9375rem;
}
.foot-sample .info .layout-btn {
  min-width: 9em;
  height: 2.875rem;
}
.foot-sample .bg {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
/*页脚*/

#foot {
  position: relative;
  color: var(--text);
  background: linear-gradient(to right, var(--dark) 0%, var(--text) 100%);
  border-top: 2px solid #fff;
}
#foot,
#foot a,
#foot p {
  font-size: 0.9375rem;
  color: #fff;
}
#foot a:hover {
  opacity: 0.7;
}
#foot > div {
  position: relative;
  z-index: 2;
}

#foot .foot-title {
  display: block;
  margin-bottom: 1rem;
  font-size: 1.125rem;
  font-weight: bold;
  text-transform: Uppercase;
}
#foot .foot-brand {
  width: 30%;
  max-width: 21rem;
}
#foot .foot-brand .logo {
  margin-bottom: 2rem;
  max-height: 2.5rem;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

#foot .foot-search {
}
#foot .foot-search form {
  position: relative;
  width: 100%;
}
#foot .foot-search form input {
  width: 100%;
  padding: 0 3rem 0 1.25em;
  font-size: 1.125rem;
  line-height: 3em;
  height: 3em;
  font-weight: normal;
  border-radius: 0.25rem;
  color: #fff;
  border: 1px solid rgba(233, 242, 245, 0.2);
  background: none;
  transition: all 0.4s;
}
#foot .foot-search form input::placeholder {
  color: #999;
}
#foot .foot-search form input:focus {
  border: 1px solid rgba(233, 242, 245, 1);
}
#foot .foot-search form button {
  position: absolute;
  top: 50%;
  right: 1rem;
  margin-top: -1em;
  flex-shrink: 0;
  margin-left: 0.5rem;
  padding: 0;
  font-size: 0.875rem;
  line-height: 2em;
  border: none;
  cursor: pointer;
  background: none;
  transition: all 0.4s;
}
#foot .foot-search form button:hover {
  color: var(--colour3);
}
#foot .foot-search form button span {
  font-size: 1.25rem;
  opacity: 0.7;
  color: #fff;
}
#foot .foot-search form button:hover span {
  opacity: 1;
}
#foot .foot-code img {
  max-width: 7.5rem;
}

#foot .foot-share {
  flex-shrink: 0;
  font-size: 0;
}
#foot .foot-share a {
  position: relative;
  display: inline-block;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}
#foot .foot-share a span {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  line-height: 3rem;
  font-size: 1.25rem;
  text-align: center;
  border: 1px solid #4d4d4d;
  border-radius: 50%;
  transition: all 0.4s;
}
#foot .foot-share a:hover {
  opacity: 1;
}
#foot .foot-share a:hover span {
  color: var(--text);
  background: #fff;
}

.foot-share a > div {
  position: absolute;
  bottom: calc(100% + 0.5rem);
  left: 50%;
  z-index: 2;
  width: 9rem;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 0%);
  transition: all 0.4s;
}
.foot-share a:hover > div {
  opacity: 1;
  visibility: visible;
}
.foot-share a > div img {
  width: 9rem;
}

.foot-body {
  padding: 5rem 0;
  display: flex;
  justify-content: space-between;
  gap: 5%;
}
.foot-nav {
  flex-shrink: 0;
}
.foot-nav a {
  display: block;
  padding: 0.25rem 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  overflow: hidden;
}
.foot-nav a:last-child {
  padding-bottom: 1.25rem;
}

.foot-contact {
  max-width: 25rem;
}

#foot .foot-bottom {
  display: flex;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-size: 0.875rem;
  line-height: 1.375em;
}

#foot .foot-bottom a {
}
#foot .foot-bottom a:hover {
  opacity: 0.7;
  text-decoration: underline;
}
#foot .foot-clause a {
  margin-left: 1rem;
}

/*内页公共*/

.inside-banner {
  position: relative;
}

.inside-banner picture,
.inside-banner img {
  min-height: 25rem;
}

.inside-banner .info {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  color: #fff;
}

.inside-banner .info {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  color: #fff;
  text-shadow: 0 0 1.5rem var(--shadow);
}

.breadcrumb {
  width: 100%;
  padding: 1.25rem 0px;
  margin: 0;
  background: none;
}

.breadcrumb > div {
  font-size: 0px;
}

.breadcrumb a {
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1rem;
  color: var(--text);
  transition: all 0.4s;
}

.breadcrumb a:hover {
  color: var(--colour1);
}

.breadcrumb a:not([href]):not([tabindex]) {
  color: var(--small_text);
}

.breadcrumb a:after {
  content: ">";
  margin: 0 0.5rem;
  color: var(--small_text);
}

.breadcrumb a:not([href]):not([tabindex]):after {
  content: "";
}

.breadcrumb a img {
  width: 1rem;
  filter: brightness(0);
  opacity: 0.5;
}
.inside-banner .container {
  position: relative;
  z-index: 2;
}
.inside-banner .breadcrumb {
  position: absolute;
  z-index: 3;
}
.inside-banner .breadcrumb a {
  color: #fff;
}

.inside-banner .breadcrumb a:hover {
  color: var(--colour2);
}
.inside-banner .breadcrumb a:not([href]):not([tabindex]) {
  color: #fff;
  opacity: 0.7;
}
.inside-banner .breadcrumb a:after {
  content: ">";
  color: #fff;
  opacity: 0.7;
}
.inside-banner .breadcrumb a:not([href]):not([tabindex]):after {
  display: none;
}
/*搜索*/
.search-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.search-box:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(0.2rem);
  -webkit-backdrop-filter: blur(0.2rem);
  background-color: rgba(0, 0, 0, 0.3);
}
.search-box .form {
  padding: 7vw 2rem;
  width: 90%;
  max-width: 62.5rem;
}
.search-box .form,
.search-box .form p {
  color: #fff;
}
.search-box .form form {
  display: flex;
  justify-content: center;
  width: 100%;
}

.search-box .form input,
.search-box .form button {
  border: none;
  border-radius: 0;
  background: none;
}

.search-box .form input {
  padding: 0 1.5rem;
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
  width: 100%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 0.25rem 0 0 0.25rem;
  transition: all 0.4s;
}
.search-box .form input:focus {
  color: var(--text);
  background: rgba(255, 255, 255, 1);
}
.search-box .form input::placeholder {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.4s;
}
.search-box .form input:focus::placeholder {
  color: var(--small_text);
}
.search-box .form button {
  cursor: pointer;
  padding: 0 2rem;
  color: #fff;
  font-size: 1.5rem;
  background: var(--colour2);
  border-radius: 0 0.25rem 0.25rem 0;
  transition: all 0.4s;
}
.search-box .form button:hover {
  color: #fff;
  background: var(--colour3);
}
.search-box .form button span {
  color: inherit;
  font-size: inherit;
}
.search-box .form .hot-search strong {
  margin-right: 0.5rem;
}
.search-box .form .hot-search a {
  display: inline-block;
  margin: 0.25rem;
  font-size: 0.875rem;
  line-height: 2.5em;
  color: #fff;
  padding: 0 1rem;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2rem;
  transition: all 0.4s;
}
.search-box .form .hot-search a:hover {
  background: var(--colour3);
}

.search-box .bg {
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.anchor-box {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.anchor-nav {
  flex-shrink: 0;
  width: 22%;
  max-width: 20rem;
  min-width: 15rem;
}
.anchor-link {
  position: sticky;
  top: calc(1rem + var(--head_height));
  width: 100%;
  padding: 2rem 2rem 0.5rem;
  background: #fff;
}
.anchor-btn {
  position: relative;
}

.anchor-link a.btn {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  font-weight: bold;
  text-align: left;
}
.anchor-link ul {
  padding: 0;
}
.anchor-link ul a {
  position: relative;
  margin: 0.0625rem 0;
  font-size: 0.9375rem;
  color: var(--title);
  transition: all 0.4s;
}

.anchor-link ul a:hover,
.anchor-link ul a.active {
  padding-left: 1rem;
  padding-right: 1rem;
  color: #fff;
  background: var(--colour2);
}

.anchor-link ul a small {
  color: var(--small_text);
}
.anchor-link ul a:hover small,
.anchor-link ul a.active small {
  color: var(--tips_text);
}
.anchor-content {
  flex-grow: 1;
  margin-left: 1rem;
  padding: 0 3rem;
  background: #fff;
}
.anchor-content .anchor-item {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border_colour);
}
.anchor-content .anchor-item:last-of-type {
  border-bottom: none;
}

.anchor-content .anchor-item .anchor-search{
    display: flex
}
.anchor-content .anchor-item .anchor-search input{
    border-radius: 0.25rem 0 0 0.25rem;
}
.anchor-content .anchor-item .anchor-search button {
    cursor: pointer;
    color: #fff;
    padding:0 0.75rem;
    font-size: 1.5rem;
    background: var(--colour2);
    border: none;
    border-radius: 0 0.25rem 0.25rem 0;
    transition: all 0.4s;
}
.anchor-content .anchor-item .anchor-search button:hover {
    color: #fff;
    background: var(--colour3);
}
.anchor-content .anchor-item .anchor-search button span{
    font-size: inherit;
    color: inherit;
}
.compatible-list {
  margin-top: 1.5rem;
  padding: 0 1.5rem;
  border: 1px solid var(--border_colour);
  border-radius: 0.25rem;
}
.compatible-list li {
  display: flex;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border_colour);
}
.compatible-list li:last-child {
  border-bottom: none;
}
.compatible-list li .img {
  flex-shrink: 0;
  width: 6rem;
  mix-blend-mode: multiply;
}

.compatible-list li .info {
  flex-grow: 1;
  width: 100%;
  padding: 0 2.5rem 0 1.5rem;
}
.compatible-list li .title {
  transition: all 0.4s;
}
.compatible-list li .title:hover {
  color: var(--colour2);
}
.compatible-list .compatible {
  font-size: 0.875rem;
}

.compatible-list .compatible span {
  display: inline-block;
  margin: 0.25rem;
  padding: 0 1em;
  font-size: 0.75rem;
  background: var(--grey_bg);
  border-radius: 2em;
}
.compatible-list .text {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.5em;
  max-height: 4.5em;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.compatible-list .btn {
  display: flex;
  align-items: center;
  padding: 0;
  width: 7.5rem;
  font-size: 0.875rem;
  line-height: 1.375em;
}

.compatible-list .btn a {
  display: inline-block;
  width: 100%;
  margin: 0.25rem 0;
  padding: 0 1.25em;
  line-height: 2.5em;
  color: var(--title);
  white-space: nowrap;
  text-align: center;
  border-radius: 0.25em;
  background: var(--grey_bg);
  transition: all 0.4s;
}

.compatible-list .btn a:hover {
  color: #fff;
  background: var(--colour2);
}

.search-p-list {
  margin-top: 1.5rem;
}

.buy-form {
  display: flex;
}
.buy-form input {
  width: 3rem;
  padding: 0 0.5rem;
  font-size: 0.875rem;
  height: 2rem;
  line-height: 2rem;
  border-left: none;
  border-right: none;
  border-top: 1px solid var(--border_colour);
  border-bottom: 1px solid var(--border_colour);
  border-radius: 0;
}
.buy-form button {
  width: 2rem;
  padding: 0;
  font-size: 1rem;
  height: 2rem;
  line-height: 2rem;
  text-align: center;
  background: var(--grey_bg);
  border: 1px solid var(--border_colour);
  transition: all 0.4s;
}
.buy-form button:first-of-type {
  border-radius: 0.25rem 0 0 0.25rem;
}
.buy-form button:last-of-type {
  border-radius: 0 0.25rem 0.25rem 0;
}
.buy-form button:hover {
  color: #fff;
  background: var(--colour2);
  border: 1px solid var(--colour2);
  transition: all 0.4s;
}
.buy-form button span {
  font-size: inherit;
  height: inherit;
  line-height: inherit;
  color: inherit;
}

.search-p-list table a.buy-btn {
  display: block;
  max-width: 7rem;
  margin-top: 0.375rem;
  width: 100%;
  line-height: 2.25em;
  color: #fff;
  background: var(--colour2);
  border-radius: 0.25rem;
  text-align: center;
  transition: all 0.4s;
}
.search-p-list table a.buy-btn:hover {
  background: var(--colour3);
}

.search-p-list-wap {
  display: none;
  margin-top: 1.5rem;
  border: 1px solid var(--border_colour);
  border-radius: 0.25rem;
}
.search-p-list-wap .item {
  border-bottom: 1px solid var(--border_colour);
}
.search-p-list-wap .item:last-of-type {
  border-bottom: none;
}
.search-p-list-wap .item .header {
  padding: 0 1rem;
  display: flex;
}
.search-p-list-wap .item a.title {
  position: relative;
  display: block;
  flex-grow: 1;
  font-size: 0.9375rem;
  line-height: 3.5em;
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  overflow: hidden;
  transition: all 0.4s;
}
.search-p-list-wap .item a.title:not(.collapsed) {
  color: var(--colour2);
}
.search-p-list-wap .item a.title .icon {
  display: inline-block;
  margin-right: 0.5rem;
  font-size: 0.875rem;
  font-weight: normal;
  transition: all 0.4s;
}
.search-p-list-wap .item a.title:not(.collapsed) .icon {
  transform: rotate(-180deg);
  color: var(--colour2);
}
.search-p-list-wap .item .btn {
  padding: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  font-size: 0.75rem;
}
.search-p-list-wap .item .btn a {
  display: inline-block;
  line-height: 2.25em;
  color: var(--text);
  padding: 0 0.75em;
  border-radius: 0.25rem;
}
.search-p-list-wap .item .btn a .icon {
  padding: 0;
  margin-right: 0.25rem;
  font-size: 1.125rem;
  line-height: 1em;
  vertical-align: middle;
}
.search-p-list-wap .item .box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 1.5rem 1.5rem 2rem;
}
.search-p-list-wap .item .img {
  width: 5rem;
}
.search-p-list-wap .item .info {
  width: calc(100% - 7rem);
  padding: 0.5rem;
  font-size: 0.875rem;
}
.search-p-list-wap .item ul {
  width: 100%;
  -webkit-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 1.5rem;
  column-gap: 1.5rem;
}
.search-p-list-wap .item ul li {
  font-size: 0.875rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border_colour);
}

.search-s-list {
  margin-top: 1.5rem;
}
.search-s-list li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}
.search-s-list li:last-of-type {
  margin-bottom: 0;
}
.search-s-list .img {
  width: 16rem;
  overflow: hidden;
}
.search-s-list .info {
  width: calc(100% - 18rem);
}
.search-s-list .navtitle {
  display: inline-block;
  padding: 0 1rem;
  font-size: 0.75rem;
  line-height: 2em;
  color: var(--small_text);
  background: var(--grey_bg);
  border-radius: 1em;
}
.search-s-list .title {
  display: block;
  margin-top: 0.5rem;
  transition: all 0.4s;
}

.search-s-list li .title:hover {
  color: var(--colour2);
}
.search-s-list .text {
  margin-top: 1rem;
}
.search-s-list .text,
.search-s-list .text p {
  font-size: 0.875rem;
  color: var(--text);
}
.search-n-list {
  margin-top: 1.5rem;
}
.search-n-list li {
  margin-bottom: 2.25rem;
}
.search-n-list li:last-of-type {
  margin-bottom: 0;
}
.search-n-list .title {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  transition: all 0.4s;
}
.search-n-list .title:hover {
  color: var(--colour2);
}
.search-n-list .text,
.search-n-list .text p {
  font-size: 0.875rem;
  color: var(--text);
}
.search-n-list .bottom {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  line-height: 2em;
  color: var(--small_text);
}
.search-n-list .bottom .tag {
  margin-left: 0.25rem;
  display: inline-block;
  padding: 0 1em;
  background: var(--grey_bg);
  border-radius: 1em;
}
.search-d-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 1.5rem;
}
.search-d-list li {
  width: calc(50% - 0.5rem);
  display: flex;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid var(--border_colour);
  border-radius: 0.25rem;
  transition: all 0.4s;
}
.search-d-list li:hover {
  border: 1px solid var(--colour2);
}
.search-d-list li > .icon {
  display: inline-block;
  margin-top: 0.25rem;
  margin-right: 1rem;
  flex-shrink: 0;
  font-size: 2.25rem;
  color: var(--colour2);
}

.search-d-list li .info {
  flex-grow: 1;
  line-height: 1.375em;
}
.search-d-list li .info .title {
  display: block;
  font-size: 1rem;
  line-height: 1.5em;
}
.search-d-list li .info .title:hover {
  color: var(--colour2);
}
.search-d-list li .info span {
  display: inline-block;
  padding: 0 0.75rem;
  font-size: 0.75rem;
  line-height: 1em;
  color: var(--small_text);
  border-left: 1px solid var(--border_colour);
}
.search-d-list li .info span:first-of-type {
  padding-left: 0;
  border-left: none;
}
.search-d-list li .btn {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0;
}
.search-d-list li .btn a {
  display: inline-block;
  padding: 0 1em;
  font-size: 0.875rem;
  line-height: 2rem;
  border-radius: 0.25rem;
  color: var(--title);
  background: var(--grey_bg);
  transition: all 0.4s;
}
.search-d-list li:hover .btn a {
  color: #fff;
  background: var(--colour2);
}
.search-d-list li:hover .btn a:hover {
  color: #fff;
  background: var(--colour3);
}
.search-d-list li .btn a .icon {
  font-size: 1.125rem;
  margin-right: 0.25rem;
}

/*分销商*/
.distributors-list {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.distributors-list li {
  width: 48.5%;
  padding: 1.5rem;
  margin-bottom: 3%;
  border-radius: 0.25rem;
  background: var(--grey_bg);
  border: 1px solid var(--grey_bg);
  transition: all 0.4s;
}

.distributors-list li:hover {
  background: #fff;
  border: 1px solid var(--colour2);
  box-shadow: 0 0 1rem var(--shadow);
  transition: all 0.4s;
}
.distributors-list li .title {
  margin-bottom: 1em;
}
.distributors-list li:hover .title {
  color: var(--colour2);
}
.distributors-list li p {
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
}
.distributors-list li p:last-child {
  margin-bottom: 0;
}

/*应用方案*/
.solution-list {
  display: flex;
  flex-wrap: wrap;
}
.solution-list li {
  display: flex;
  flex-wrap: wrap;
}

/*关于*/
#about {
  background: url(../images/about1.png) left center;
  background-size: 60% auto;
  background-repeat: no-repeat;
}
.about {
  display: flex;
  flex-wrap: wrap;
}
.about .info {
  width: 50%;
  padding-right: 10%;
}
.about .info p {
  line-height: 1.75em;
}
.about .img {
  width: 50%;
}
.about .img > div {
  position: sticky;
  top: calc(var(--head_height) + 2rem);
  display: flex;
  width: 100%;
  align-items: center;
}
.about .img > div .left {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 0;
  justify-content: flex-end;
  width: 65%;
  padding-right: 1.5rem;
}
.about .img > div .right {
  display: flex;
  align-items: center;
  width: 40%;
}
.about .img .img-center img {
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
}
.about .img > div .img1 {
  width: 60%;
  padding-bottom: 80%;
}
.about .img > div .img2 {
  width: 100%;
  padding-bottom: 61.8%;
}
.about .img > div .img2 {
  width: 100%;
  padding-bottom: 61.8%;
}
.about .img > div .img3 {
  width: 100%;
  padding-bottom: 125%;
}

/*关于发展历程*/
#history {
  position: relative;
  background: var(--colour1);
  overflow: hidden;
}
#history .bg {
  position: absolute;
  width: 1380px;
  height: 1380px;
  background: url(../images/gund.svg) no-repeat;
  background-size: 100%;
  transition: all 1s;
  transform-origin: center center;
  top: 90px;
  left: calc((100vw - 1380px) / 2);
  transform-origin: center center;
  animation: infinite-rotate 72s linear infinite;
  z-index: 1;
}
@keyframes infinite-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
#history .container {
  z-index: 2;
}
.history {
  padding: 0 20%;

  color: #fff;
}
.history .swiper-slide {
  display: flex;
}
.history .time {
  display: inline-block;
  width: 40%;
  font-size: 4rem;
  line-height: 1em;
  font-weight: bold;
  color: var(--colour3);
}
.history .info {
  display: inline-block;
  padding: 1rem 0;
  width: 60%;
  min-height: 8em;
}
.history p {
  position: relative;
  padding-left: 1rem;
  color: #fff;
}
.history p:before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0.75em;
  left: 0%;
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--colour3);
  border-radius: 50%;
  transform: translate(0%, -50%);
  transition: all 0.4s;
}
.history .swiper-button-prev,
.history .swiper-button-next {
  padding: 0;
  width: inherit !important;
  height: inherit !important;
}
.history .swiper-button-prev .icon,
.history .swiper-button-next .icon {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  line-height: 3rem;
  font-size: 2rem;
  text-align: center;
  color: #fff;
  border-radius: 50%;
  transition: all 0.4s;
}
.history .swiper-button-prev:hover .icon,
.history .swiper-button-next:hover .icon {
  color: #fff;
  background: var(--colour3);
}

.history-time {
  padding-top: 5rem;
}
.history-time .swiper-slide {
  position: relative;
  padding-top: 1.25rem;
  text-align: center;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.7);
  border-top: 0.1875rem solid var(--colour2);
  cursor: pointer;
  transition: all 0.4s;
}
.history-time .swiper-slide-thumb-active {
  color: var(--colour3);
}
.history-time .swiper-slide:before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 100%;
  left: 50%;
  display: block;
  width: 0.125rem;
  height: 0rem;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    var(--colour3) 100%
  );
  transform: translate(-50%, 0%);
  transition: all 0.4s;
}
.history-time .swiper-slide-thumb-active:before {
  height: 5rem;
}
.history-time .swiper-slide:after {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 100%;
  left: 50%;
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  background: var(--colour2);
  border: 0.125rem solid #fff;
  transform: translate(-50%, 50%);
  border-radius: 50%;
  transition: all 0.4;
}
.history-time .swiper-slide-thumb-active:after {
  width: 1rem;
  height: 1rem;
  background: var(--colour3);
  border: 0.25rem solid #fff;
}

/*关于 为什么*/
.about-way {
  display: flex;
  justify-content: center;
}
.about-way li {
  width: 20%;
  padding: 1.125rem;
}
.about-way li .img {
  margin-bottom: 1.25rem;
}
.about-way li img {
  width: 100%;
}
/*关于 外链视频*/
.video-iframe {
  position: relative;
  margin: auto;
  max-width: 75rem;
}
.small-video-iframe {
  max-width: 50rem;
}

.video-iframe::after {
  content: "";
  display: block;
  padding-bottom: 56.25%;
  pointer-events: none;
}
.video-iframe iframe {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/*文本单页*/
.info-box {
  padding: 3.5vw 5vw;
  background: #fff;
  line-height: 1.5rem;
}
.info-box .h4,
.info-box .h5,
.info-box .h6 {
  line-height: 1.75em;
}
/*荣誉*/
#honor {
  background-color: #fff;
  background-image: url(../images/img-honor-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.honor {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.75rem;
  margin-right: -0.75rem;
  mix-blend-mode: multiply;
}

.honor img {
  width: 100%;
}
.honor .text {
  margin-top: 1rem;
  font-size: 0.9375rem;
  text-align: center;
}
.honor .swiper-pagination {
  margin-top: 1rem;
  position: static;
}
/*伙伴*/
.partner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}
.partner div {
  width: calc(16.66% - 1.25rem);
  background: #fff;
  border-radius: 0.25rem;
  border: 1px solid #fff;
  transition: all 0.4s;
  overflow: hidden;
}
.partner div:hover {
  border: 1px solid var(--colour2);
  box-shadow: 0 0 1rem var(--shadow);
}
/**/
.inside-head {
  padding: 4rem 0;
}
/*产品*/
.product-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.product-nav > li {
  width: calc(50% - 0.5rem);
  margin-bottom: 1rem;
}

.product-nav .nav-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 100%;
  border: none;
  background: none;
  padding: 1.5rem 2rem;
  text-align: left;
  background: #fff;
  border-radius: 0.5rem;
}
.product-nav .nav-btn .left {
  display: flex;
  align-items: center;
  flex-grow: 1;
}

.product-nav .nav-btn .icon {
  flex-shrink: 0;
  width: 2.5rem;
  margin-top: 0.25rem;
  margin-right: 1.25rem;
  opacity: 0.7;
}
.product-nav .nav-btn .left .nav-name {
  flex-grow: 1;
}
.product-nav .nav-btn .left .nav-name .title {
  margin-bottom: 0.5rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  overflow: hidden;
  transition: all 0.4s;
}
.product-nav .nav-btn:hover .left .nav-name .title {
  color: var(--colour2);
}
.product-nav .nav-btn .left .nav-name .title {
  margin-bottom: 0.25rem;
}
.product-nav .nav-btn .left .nav-name p {
  font-size: 0.9375rem;
  line-height: 1.5em;
  color: var(--text);
}
.product-nav .nav-btn .right {
  flex-shrink: 0;
  margin-left: 1.5rem;
}
.product-nav .nav-btn .right .count {
  display: inline-block;
  padding: 0 1em;
  font-size: 0.875rem;
  line-height: 2em;
  color: var(--text);
  background: var(--grey_bg);
  border-radius: 2em;
  transition: all 0.4s;
}
.product-nav .nav-btn:hover .right .count {
  color: #fff;
  background: var(--colour2);
}
.product-nav .nav-btn .right .icon {
  display: inline-block;
  font-size: 1.25rem;
  transition: all 0.4s;
}
.product-nav .nav-btn:not(.collapsed) .right .icon {
  transform: rotate(-180deg);
  color: var(--colour2);
}
.product-subnav {
  border-top: 1px solid var(--border_colour);
  background: #fff;
}
.product-subnav .info {
  padding: 2rem;
}
.product-subnav .info,
.product-subnav .info p {
  font-size: 0.9375rem;
  color: var(--text);
}
.product-subnav .info a {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: bold;
  color: var(--colour2);
  transition: all 0.4s;
}
.product-subnav .info a:hover {
  color: var(--colour3);
}
.product-subnav .info a .icon {
  margin-right: 0.25rem;
}
.product-subnav .subnav-list {
  padding: 0 2rem 2rem;
}
.product-subnav .subnav-list li {
  padding: 1.5rem 1.5rem 1rem;
  margin-bottom: 0.5rem;
  background: var(--grey_bg);
  border: 1px solid var(--grey_bg);
  border-radius: 0.5rem;
  transition: all 0.4s;
}
.product-subnav .subnav-list li:hover {
  background: #fff;
  border: 1px solid var(--colour2);
  box-shadow: 0 0 0.5rem var(--shadow);
}
.product-subnav .subnav-list .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-subnav .subnav-list .head .left {
  flex-grow: 1;
}
.product-subnav .subnav-list .head .left .title {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: bold;
  color: var(--title);
  transition: all 0.4s;
}
.product-subnav .subnav-list .head .left .title:hover {
  color: var(--colour2);
}
.product-subnav .subnav-list .head .right {
  flex-shrink: 0;
}

.product-subnav .subnav-list .head .right .icon {
  display: inline-block;
  width: 3rem;
  height: 2.75rem;
  line-height: 2.75rem;
  font-size: 1.25rem;
  text-align: center;
  border-radius: 0.25rem;
  color: #fff;
  background: var(--colour2);
  transition: all 0.4s;
}
.product-subnav .subnav-list .head .right .icon:hover {
  background: var(--colour3);
}

.product-subnav .subnav-list .bottom {
  margin-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-subnav .subnav-list .bottom,
.product-subnav .subnav-list .bottom p {
  font-size: 0.875rem;
  color: var(--small_text);
}
.product-subnav .subnav-list .bottom .left img {
  flex-shrink: 0;
  width: 3rem;
  margin-right: 0.5rem;
  mix-blend-mode: multiply;
}

/*产品列表*/
.products-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.products-head .left {
  width: 65%;
  padding: 2rem;
  background: #fff;
  border-radius: 0.25rem;
}
.products-head .left .head {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
.products-head .left .head .img {
  width: 4.5rem;
  margin-right: 1rem;
  flex-shrink: 0;
}
.products-head .left .head .title {
  margin: 0;
  flex-grow: 1;
}
.products-head .left .head .count {
  flex-shrink: 0;
  display: inline-block;
  padding: 0 1em;
  margin-left: 1rem;
  font-size: 0.875rem;
  line-height: 2em;
  color: var(--text);
  background: var(--grey_bg);
  border-radius: 2em;
  transition: all 0.4s;
}
.products-head .right {
  width: calc(35% - 1rem);
  padding: 2rem;
  background: #fff;
  border-radius: 0.25rem;
}
.products-head .right ul {
  margin-top: 1rem;
}
.products-head .right ul li a:hover {
  border: 1px solid var(--colour2);
  background: var(--colour2);
}

.products-head .right ul li a {
  display: block;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  border: 1px solid var(--border_colour);
  transition: all 0.4s;
}

.products-head .right ul li .icon {
  font-size: 1.25rem;
  line-height: 1em;
  vertical-align: middle;
  margin-right: 0.25rem;
}
.products-head .right ul li a:hover,
.products-head .right ul li a:hover .icon {
  color: #fff;
}

.products-nav-btn {
  display: none;
  margin-top: 1.5rem;
  padding: 1rem 2rem;
  background: #fff;
  border-radius: 0.25rem;
}
.products-nav {
  margin-top: 1rem;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0 1rem;
}
.products-nav a {
  display: flex;
  justify-content: space-between;
  width: calc(25% - 0.75rem);
  padding: 0.5rem 1rem;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  background: #fff;
  border-radius: 0.25rem;
  transition: all 0.4s;
}
.products-nav a:hover {
  background: var(--colour2);
}
.products-nav a .title {
  color: var(--title);
  transition: all 0.4s;
}
.products-nav a .count {
  font-size: 0.75rem;
  color: var(--small_text);
}
.products-nav a:hover .title,
.products-nav a:hover .count {
  color: #fff;
}
.filter {
  margin-bottom: 1.5rem;
}

.filter-btn {
  display: none;
  padding: 0.75rem 2rem;
  color: var(--text);
  border: none;
  border-radius: 0.25rem;
  background: #fff;
  border-radius: 0.25rem;
  transition: all 0.4s;
}
.filter-btn .icon {
  vertical-align: middle;
  font-size: 1.25rem;
  line-height: 1em;
  font-weight: normal;
}

.filter-content {
  background: #fff;
}
.filter-list {
  display: flex;
  gap: 0 1rem;
  padding: 2rem 0 0.5rem;
  margin: 0 2rem;
  overflow: auto;
}
.filter-list li {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  flex-shrink: 0;
  width: 12rem;
  background: var(--grey_bg);
}
.filter-list li .title {
  width: 100%;
  padding-bottom: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.25rem;
  font-weight: bold;
  background: #fff;
}

.filter-label {
  width: 100%;
  padding: 0.5rem;
  background: var(--grey_bg);
}
.filter-label > div {
  padding-right: 0.25rem;
  max-height: 10.5rem;
  font-size: 0.875rem;
  background: var(--grey_bg);
  overflow: auto;
}
.filter-label a {
  position: relative;
  display: block;
  padding-left: 0.5rem;
  padding-right: 1.5rem;
  color: #fff;
  color: var(--text);
  transition: all 0.4s;
}
.filter-label a.active {
  padding-left: 0.75rem;
  font-weight: bold;
  color: var(--colour2);
  background: #fff;
}
.filter-label a:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0.4rem;
  right: 0.625rem;
  width: 0.375rem;
  height: 0.6rem;
  border-right: 2px solid var(--colour2);
  border-bottom: 2px solid var(--colour2);
  transform: rotate(45deg);
  opacity: 0;
  transition: all 0.4s;
}
.filter-label a.active:before {
  content: "";
  opacity: 1;
}

.icon-success,
.icon-prompt,
.icon-more {
  margin-right: 0.25rem;
  font-size: 1rem;
  font-weight: normal !important;
  line-height: 1.25em;
  display: inline-block;
  vertical-align: auto;
}
.icon-success {
  color: green;
}
.icon-prompt {
  color: red;
}
.icon-more {
  color: orange;
}
.filter-list-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem 2rem;
}
.filter-list-btn .left {
  font-size: 0.875rem;
  color: var(--small_text);
}
.filter-list-btn .bottom {
  padding: 0 1.5em;
  border: none;
  font-size: 0.875rem;
  line-height: 3rem;
}
.filter-list-btn button {
  margin-right: 0.25rem;
  padding: 0 1.5em;
  border: none;
  font-size: 0.875rem;
  line-height: 2.75em;
  border-radius: 0.25rem;
  transition: all 0.4s;
}
.filter-list-btn button.clear-btn {
  color: var(--text);
  background: var(--grey_bg);
}
.filter-list-btn button.submit-btn {
  color: #fff;
  background: var(--colour2);
}
.filter-list-btn button:hover {
  color: #fff !important;
  background: var(--colour3) !important;
}
.products .item {
  margin-bottom: 3rem;
}
.products .item:last-of-type {
  margin-bottom: 0;
}
.products .content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding: 1.5rem;
  color: #fff;
  background: var(--colour2);
  border-radius: 0.25rem 0.25rem 0 0;
}

.products .content > div.left {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 1;
  flex-grow: 0;
  max-width: 35rem;
}
.products .content > div.right {
  display: flex;
  flex-shrink: 0;
  width: 25rem;
}

.products .content .img img {
  flex-shrink: 0;
  margin-right: 1rem;
  width: 5rem;
  border-radius: 0.25rem;
  background: #fff;
  overflow: hidden;
}
.products .content .info {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  width: calc(100% - 7rem);
}
.products .content .info .text {
}
.products .content .info a {
  display: block;
}
.products .content .info a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
}
.products .content .nav-name {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  line-height: 1.2em;
}
.products .content .title {
  line-height: 1.25em;
  color: #fff;
}
.products .content a {
  color: #fff;
}
.products .content a:hover {
  color: var(--colour3);
}

.products .content .standard {
  display: inline-block;
}
.products .content .standard div {
  display: inline-block;
  margin-left: 0.75rem;
}
.products .content .standard img {
  width: 2.25rem;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.products .content .summary {
  width: 100%;
  font-size: 0.875rem;
  line-height: 1.5em;
}
.products .content pre {
  margin: 1rem 0 0;
  font-size: 0.875rem;
  line-height: 1.375em;
  color: #fff;
}
.products .content > div.right .base {
  white-space: nowrap;
  margin-right: 1rem;
  padding-right: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.products .content > div.right .box {
  display: flex;
  flex-wrap: wrap;
}
.products .content > div.right .info {
  display: block;
}
.products .content .bottom {
  margin-top: 1rem;
  width: 100%;
}
.products .content .bottom a {
  display: inline-block;
  padding: 0 1em;
  font-size: 0.75rem;
  line-height: 2.5em;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 0.25rem;
  transition: all 0.4s;
}
.products .content .bottom a:hover {
  color: #fff;
  background: var(--colour3);
}

.product-sort {
  font-size: 0.875rem;
  background: #fff;
}
.product-sort thead {
  background: var(--grey_bg2);
}

.product-sort thead tr th {
  padding-left: 1rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  line-height: 1em;
  color: var(--title);
  vertical-align: middle;
  border: none;
}

.product-sort thead tr th .dt-column-title {
  white-space: nowrap;
}
div.dt-container div.dt-layout-table > div {
  padding-left: 0;
  padding-right: 0;
  margin-left: 15px;
  margin-right: 15px;
  overflow-y: auto;
}
.product-sort tbody tr td {
  vertical-align: middle;
  padding: 0.75rem 1rem;
}
.product-sort thead tr th:first-of-type,
.product-sort tbody tr td:first-of-type {
  position: sticky !important;
  z-index: 2;
  left: -1px;
  background: #fff;
}
.product-sort thead tr th:first-of-type {
  background: var(--grey_bg2);
}

.product-sort td.sort-car {
  white-space: nowrap;
}
.product-sort td.sort-car a {
  display: inline-block;
  padding: 0 0.5rem;
  font-size: 0.75rem;
  line-height: 2.25em;
  background: rgb(0, 0, 0, 0.05);
  border-radius: 0.25rem;
  transition: all 0.4s;
}
.product-sort td.sort-car a:hover {
  color: #fff;
  background: var(--colour2);
}
.popup-success {
  position: absolute;
  z-index: 9999;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0%);
}
.popup-success .info {
  display: flex;
  align-items: center;
  padding: 0.5rem 1.25rem 0.5rem 1rem;
  font-size: 0.9375rem;
  color: var(--title);
  white-space: nowrap;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 0 1.5rem var(--shadow);
}
.popup-success .icon {
  width: 1.5rem;
  height: 1.5rem;
  line-height: 1.5rem;
  font-size: 1.5rem !important;
  margin-right: 0.25rem !important;
  color: #2da823 !important;
}

.product-sort td.sort-price {
  text-align: right;
}
.product-sort td.sort-price a {
  display: flex;
  justify-content: flex-end;
  width: 9rem;
}
.product-sort td.sort-price .icon {
  margin-left: 0.75rem;
  transition: all 0.4s;
}
.product-sort td.sort-price a:not(.collapsed) .icon {
  transform: rotate(-180deg);
}
.product-sort td.sort-price pre {
  margin: 0;
  margin-right: 1.75rem;
  font-size: 0.875rem;
  line-height: 1.5em;
}
.product-sort tbody tr td a {
  color: var(--title);
}

.product-sort tbody tr td a:hover {
  color: var(--colour2);
}
.product-sort tbody tr td.sort-item a {
  display: flex;
  justify-content: space-between;
}
.product-sort tbody tr:hover td.sort-item a {
  color: var(--colour2);
}
.product-sort tbody tr:hover td.sort-item a:hover {
  color: var(--colour3);
}
.product-sort tbody tr td.sort-item a .icon {
  margin-left: 1rem;
  margin-right: 0;
}

form.quantity-holder {
  width: 7rem;
  display: flex;
}
form.quantity-holder .quantity {
  padding: 0 0.5rem;
  width: 3.5rem;
  height: 2rem;
  font-size: 0.875rem;
  line-height: 2rem;
  border-radius: 0;
  border: 1px solid var(--border_colour);
  border-left: none;
  border-right: none;
  text-align: center;
}
form.quantity-holder .minus,
form.quantity-holder .plus {
  flex-shrink: 0;
  padding: 0;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  font-size: 0.75rem;
  font-weight: bold;
  text-align: center;
  border: 1px solid var(--border_colour);
  background: #fff;
  transition: all 0.4s;
}
form.quantity-holder .minus:hover,
form.quantity-holder .plus:hover {
  color: #fff;
  border: 1px solid var(--colour2);
  background: var(--colour2);
}
form.quantity-holder .minus {
  border-radius: 0.25rem 0 0 0.25rem;
}
form.quantity-holder .plus {
  border-radius: 0 0.25rem 0.25rem 0;
}
form.quantity-holder .minus .icon,
form.quantity-holder .plus .icon {
  font-size: inherit;
  font-weight: inherit;

  line-height: inherit;
  color: inherit;
}

.product-sort-wap {
  display: none;
}
.product-sort-wap li {
  padding: 0 1rem;
  margin-bottom: 0.25rem;
  background: #fff;
}
.product-sort-wap li .header {
  display: flex;
  align-items: center;
}
.product-sort-wap li .header .title {
  display: block;
  flex-grow: 1;
  font-size: 0.9375rem;
  line-height: 3.75em;
}
.product-sort-wap li .header .title:not(.collapsed) {
  font-weight: bold;
  color: var(--colour2);
  transition: all 0.4s;
}
.product-sort-wap li .header .title .icon {
  display: inline-block;
  margin-right: 0.5rem;
  font-size: 1rem;
  line-height: 1em;
  font-weight: normal !important;
  transition: all 0.4s;
}
.product-sort-wap li .header .title:not(.collapsed) .icon {
  transform: rotate(-180deg);
}
.product-sort-wap li .header .btn {
  padding: 0;
}
.product-sort-wap li .header .btn a {
  display: inline-block;
  padding: 0 1em;
  font-size: 0.75rem;
  line-height: 2.5em;
  color: #fff;
  background: var(--colour2);
  border-radius: 0.25rem;
}
.product-sort-wap li .header .btn a .icon {
  font-size: 1rem;
  line-height: 1em;
  margin-right: 0.25rem;
  vertical-align: middle;
}
.product-sort-wap li .body {
  font-size: 0.875rem;
}
.product-sort-wap li .body .top {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem;
  background: var(--grey_bg);
}
.product-sort-wap li .body .top .price {
  display: flex;
  line-height: 1.5em;
}
.product-sort-wap li .body .top .price div {
  margin-right: 0.25rem;
}
.product-sort-wap li .body .top .car a {
  display: inline-block;
  padding: 0 1em;
  font-size: 0.75rem;
  line-height: 2rem;
  text-align: center;
  color: #fff;
  border-radius: 0.25rem;
  background: var(--colour2);
}
.product-sort-wap li .body .top .car a .icon {
  font-size: 1rem;
  line-height: 1em;
}
.product-sort-wap li .body .sort-list {
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.product-sort-wap li .body .sort-list dd {
  width: calc(50% - 1rem);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border_colour);
}

.product-sort-wap li .body .sort-list strong {
  display: inline-block;
  min-width: 6rem;
}

/*表格弹出*/
.form-modal {
  max-height: 100vh;
}
.form-modal .modal-dialog,
.form-modal .modal-content {
  width: 38rem;
  max-width: 100%;
}

.form-modal .modal-content {
  margin-top: calc(var(--head_height) * 0.5);
}
.form-modal .modal-content form .row > div {
  margin-bottom: 1.5rem;
}
.form-modal .modal-content form .row > div:last-of-type {
  margin-bottom: 0;
}

.form-modal .modal-content .modal-header {
  padding: 1rem 1.5rem;
  color: #fff;
  background: var(--colour2);
}
.form-modal .modal-content .modal-header .title {
  margin-bottom: 0;
  color: #fff;
}
.form-modal form input,
.form-modal form select {
  line-height: 3em;
  height: 3em;
}
.form-modal form select {
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  overflow: hidden;
}

.form-modal .input-box label {
  top: 1.125em;
  font-size: 0.9375rem;
}
.form-modal .modal-content .modal-header button.close {
  color: #fff;
  font-size: 1.25rem;
  font-weight: normal;
}
.form-modal .modal-content .modal-header button.close:hover {
  opacity: 1;
}
.form-modal .modal-content .modal-header button.close span.icon {
  color: inherit;
  font-size: inherit;
}
.form-modal .modal-content .modal-body {
  padding: 2.125rem 1.5rem;
}

.form-modal .modal-content form button {
  width: 100%;
  line-height: 3em;
  height: 3em;
  font-size: 0.9375rem;
  color: var(--text);
  border: 1px solid var(--border_colour);
  background: var(--grey_bg);
  border-radius: 0.25rem;
  transition: all 0.4s;
  color: #fff;
  background: var(--colour2);
  border: var(--colour2);
}
.form-modal .modal-content form button:hover {
  background: var(--colour3);
  border: var(--colour3);
}

#cad-modal .img {
  margin-top: 0.25rem;
  padding: 0.5rem;
  width: 100%;
  border-radius: 0.25rem;
  background-color: var(--grey_bg);
}
#cad-modal .img img {
  mix-blend-mode: multiply;
}
#cad-modal .btn {
  display: inline-block;
  padding: 0 1.25em;
  font-size: 0.875rem;
  line-height: 2rem;
  color: #fff;
  background: var(--colour2);
  transition: all 0.4s;
}
#cad-modal .btn:hover {
  background: var(--colour3);
}
#inquiry-modal.form-modal .modal-dialog,
#inquiry-modal.form-modal .modal-content {
  width: 56rem;
  max-width: 100%;
 
}
#inquiry-modal.form-modal .modal-content { box-shadow:0 0 2rem rgba(0,0,0,0.35);}
#inquiry-modal form {
  padding-top: 0.5rem;
}
/*表格弹出end*/
/*产品详情*/
.product .product-left {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 1rem;
}
.product .product-left > div,
.product .product-right > div {
  width: 100%;
}
.product-top {
  display: flex;
  justify-content: space-between;
  flex-grow: 1;
  gap: 1.5rem;
  padding: 1.5rem;
  color: #fff;
  border-radius: 0.25rem;
  background: var(--colour2);
}
.product-top .img {
  width: 9rem;
}
.product-top .img img{
  width: 100%;
  border-radius: 0.25rem;
  background: #fff;
}
.product-top .info {
  flex-grow: 1;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 0.5rem 1rem;
}
.product-top .info .nav-name {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.2em;
}
.product-top .info .title {
  line-height: 1.2em;
  font-weight: 900;
  font-size:33px;
}
.product-top .standard img {
  width: 2.5rem;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.product-top .info .summary {
  width: 100%;
  font-size: 0.875rem;
  line-height: 1.5em;
}
.product-top .info .icon-success,
.product-top .info .icon-prompt,
.product-top .info .icon-more {
  color: #fff !important;
}
.product-top .btn {
  padding: 0;
  margin-left: 2rem;
}
.product-top .btn a {
  display: block;
  margin-bottom: 0.375rem;
  padding: 0 1.125em;
  font-size: 0.875rem;
  line-height: 2.5em;
  white-space: nowrap;
  text-align: left;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 0.25rem;
  transition: all 0.4s;
}
.product-top .btn a:hover {
  background: var(--colour3);
}
.product-top .btn a .icon {
  font-size: 1.125rem;
  line-height: 1em;
  vertical-align: baseline;
}

.proudct-items {
  flex-grow: 0;
  overflow: hidden;
}
.proudct-items.web-hide {
  display: none;
}

.proudct-items .item-title {
  padding: 1rem 1.5rem;
  line-height: 1.25em;
  color: #fff;
  background: var(--colour2);
}
.proudct-items .content {
  padding:1.25rem 1.5rem; 
  background: #fff;
  border-radius: 0.25rem;
}
.proudct-items .content p {
  font-size: 0.875rem;
}
.proudct-items .content hr{
    margin: 1rem 0;
}
/*型号对比*/
.product-c .img {
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  border-radius: 0.25rem;
  background-color: var(--grey_bg);
  overflow: hidden;
}
.product-c .img img {
  width: 100%;
  mix-blend-mode: multiply;
}

.product-c .swiper-slide {
  line-height: 1.25em;
  transition: all 0.4s;
}
.product-c .swiper-wrapper:hover .swiper-slide {
  opacity: 0.7;
}
.product-c .swiper-wrapper:hover .swiper-slide:hover {
  opacity: 1;
}
.product-c .title {
  font-size: 1rem;
  transition: all 0.4s;
}
.product-c .swiper-slide:hover .title {
  color: var(--colour2);
}
.product-c span {
  font-size: 0.875rem;
  color: var(--small_text);
}

.product-c .swiper-button-next,
.product-c .swiper-button-prev {
  top: 40%;
  background: var(--colour2);
  color: #fff;
  border-radius: 0.25rem;
  opacity: 0;
  transition: all 0.4s;
}
.product-c:hover .swiper-button-next,
.product-c:hover .swiper-button-prev {
  opacity: 1;
}
.product-c .swiper-button-next:hover,
.product-c .swiper-button-prev:hover {
  background: var(--colour3);
}
.product-c .swiper-pagination {
  margin-top: 0.5rem;
  position: static;
}
/*产品参数*/
.proudct-d-tab {
  padding: 0 0.5rem;
  flex-wrap: nowrap;
  color: #fff;
  background: var(--colour2);
  border: none;
}
.nav-tabs li.nav-item {
  width: auto;
}
.proudct-d-tab li .nav-link {
  background: none;
  border: none;
  border-radius: 0;
  padding: 1rem;
  line-height: 1.25em;
  opacity: 0.7;
}

.proudct-d-tab .nav-item.show .nav-link,
.proudct-d-tab .nav-link.active {
  background: none;
  border: none;
  opacity: 1;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.proudct-d-content ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100% !important;
  font-size: 0.875rem;
}
.proudct-d-content ul li {
  display: flex;
  flex-wrap: wrap;
  width: calc(50% - 1rem);
  padding: 0.675rem 0.25rem;
  justify-content: space-between;
  border-bottom: 1px solid var(--border_colour);
  transition: all 0.4s;
}

.proudct-d-tab ul  li:hover {
  background: var(--grey_bg);
}
.proudct-d-content ul  li:nth-last-of-type(1),
.proudct-d-content ul  li:nth-last-of-type(2) {
  border: none;
}

.product-app-list {
  margin: 0.5rem 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}
.product-app-list a {
  display: flex;
  justify-content: space-between;
  width: calc(25% - 0.75rem);
  padding: 0.5rem 1rem;
  font-size: 0.9375rem;
  color: var(--text);
  background: #f5f6fc;
  border-radius: 0.25rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  overflow: hidden;
  transition: all 0.4s;
}
.product-app-list a:hover {
  color: #fff;
  background: var(--colour2);
}
/*产品 型号选购*/
.proudct-add-form li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  padding: 1rem 1.5rem;
  border: 1px solid var(--border_colour);
  border-radius: 0.25rem;
  cursor: pointer;
  transition: all 0.4s;
}
.proudct-add-form li.active {
  border: 1px solid var(--colour2);
}
.proudct-add-form li:last-of-type{
    margin-bottom: 0;
}
.proudct-add-form li .img {
  width: 4rem;
}
.proudct-add-form li .info {
  width: calc(100% - 5rem);
  line-height: 1.5em;
}
.proudct-add-form li .info .title,.current-item .title {
  transition: all 0.4s;
    font-weight: 900;
    font-size:33px;
}
.proudct-add-form li.active .info .title {
  color: var(--colour2);
}
.proudct-add-form li .info span {
  font-size: 0.875rem;
  color: var(--small_text);
}
.proudct-add-form li .info span.price {
  color: var(--colour2);
}
.proudct-add-form li .summary {
  max-height: 0;
  width: 100%;
  overflow: hidden;
  transition: all 0.5s;
}
.proudct-add-form li.active .summary {
  max-height: 15rem;
}
.proudct-add-form li .summary > div {
  margin-top: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border_colour);
}
.proudct-add-form li .summary p {
  position: relative;
  padding-left: 0.75rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.375em;
  color: var(--small_text);
}
.proudct-add-form li .summary p:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0.375rem;
  left: 0%;
  width: 0.25rem;
  height: 0.25rem;
  background-color: var(--small_text);
  border-radius: 50%;
}
.current-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  line-height: 1.5em;
}
.current-item img {
  flex-shrink: 0;
  width:3.5rem;
  margin-right: 1rem;
}
.current-item .info span {
  font-size: 0.875rem;
  color: var(--small_text);
}
.current-item .info span.price {
  font-size: 0.875rem;
  color: var(--colour2);
}

.current-qty {
  display: flex;
  align-items: center;
}
.cart-summary .car {
  display: inline-block;
  width: 11rem;
  max-width: 100%;
  padding: 0 1.5rem;
  margin: 1rem 0;
  font-size: 0.9375rem;
  color: #fff;
  text-align: center;
  background: var(--colour2);
  line-height: 2.75em;
  border-radius: 2em;
  transition: all 0.4s;
}
.cart-summary .car:hover {
  background: var(--colour3);
}
.cart-summary .car .icon {
  font-size: 1.125rem;
  line-height: inherit;
}
.cart-summary .totals{
    margin-bottom: 0px;
    line-height: 1em;
}
.payment-methods {
  margin-top: 0;
}
.payment-methods img {
  width: 7rem;
  max-width: calc(50% - 1.125rem);
  margin-right: 1rem;
}

/*社交分享*/
.share {
  margin-top: 2rem;
}
.share a {
  margin-right: 0.25rem;
}
.share a:last-of-type {
  margin-right: 0;
}
.share a .icon {
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  font-size: 1.25rem;
  text-align: center;
  color: var(--title);
  border-radius: 50%;
  background: var(--grey_bg);
  transition: all 0.4s;
}
.share a:hover .icon {
  color: var(--colour2);
}

/*支持*/
.solution .swiper-slide {
  text-align: center;
}
.solution .swiper-pagination {
  position: static;
  margin-top: 0.75rem;
}
.solution .swiper-slide img {
  display: inline-block;
  width: 4rem;
  margin-bottom: 1rem;
}
.solution .swiper-slide .title {
  margin-bottom: 0.5rem;
}
.solution .swiper-slide a {
  color: var(--title);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: var(--border_colour);
}
.solution .swiper-slide a:hover {
  text-decoration-color: var(--title);
}

.p-c {
  display: grid;
  align-items: center;
  grid-gap: 2.5rem;
  grid-auto-flow: dense;
}
.p-c a {
  display: block;
  height: 100%;
  overflow: hidden;
}
.p-c a > div {
  position: relative;
  height: 100%;
}
.p-c a > div:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.p-c img {
  width: 100%;
  height: 100%;
}
.p-c .title {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  z-index: 1;
  text-align: center;
}

.adv img {
  width: 4rem;
  margin-bottom: 1rem;
}
.inquiring {
  padding: 1rem;
  max-width: 30rem;
  margin: auto;
}
form .layout-btn {
  max-width: none;
  width: 100%;
}

/*样品申请*/
.apply-for-samples {
  max-width: 75rem;
  margin: auto;
  padding: 3rem;
  display: flex;
  background: #fff;
  border-radius: 0.25rem;
}
.apply-for-samples .left {
  flex-shrink: 0;
  width: 25%;
}
.apply-for-samples .right {
  padding-left: 8%;
}
/*工具详情*/
.tool-head {
  background: #f5f6fc;
}
.tool-head.sticky {
  position: sticky;
  top: var(--head_height);
  z-index: 2;
}
.tool-head .tool-top {
  padding: 3rem 0;
  transition: all 0.4s;
}
.tool-head.sticky .tool-top {
  padding: 1rem 0;
}
.tool-head.sticky .tool-top .title {
  margin-bottom: 0.25rem;
  font-size: 1.125rem;
  transition: all 0.4s;
}
.tool-head.sticky .tool-top .subtitle {
  font-size: 0.875rem;
}
.tool-head .tool-top a {
  margin-top: 1rem;
  display: inline-block;
  padding: 0 2em;
  font-size: 0.875rem;
  line-height: 3em;
  color: #fff;
  background: var(--colour2);
  border-radius: 0.25rem;
  border-radius: 0.25rem;
  transition: all 0.4s;
}
.tool-head .tool-top a:hover {
  color: #fff;
  background: var(--colour3);
}

.tool-nav {
  position: relative;
  z-index: 10;
  padding-top: 1rem;
  padding-bottom: 1rem;

  background: #fff;
  border-top: 1px solid var(--border_colour);
  border-bottom: 1px solid var(--border_colour);
}
.tool-nav .anchor-btn {
  display: none;
}
.tool-nav .anchor-link {
  padding: 0.25rem 0;
}
.tool-nav .anchor-link ul {
  transition: all 0.4s;
}
.tool-nav .anchor-link ul li {
  border-right: 1px solid var(--border_colour);
}
.tool-head.sticky .tool-nav .anchor-link ul {
  padding: 0.5rem 0;
}
.tool-nav .anchor-link ul a {
  padding: 0em 1.25em;
  line-height: 1em;
  border-radius: 0.25rem;
}
.tool-nav .anchor-link ul a.active,
.tool-nav .anchor-link ul a:hover {
  color: var(--colour2) !important;
  background: none;
}

.tool-info-box {
  margin-top: 4rem;
}
.tool-info {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.tool-info > div {
  padding: 2rem;
  background: #fff;
}
.tool-info .info {
  flex-grow: 1;
}
.tool-info .info .nav-tabs {
  padding: 0;
  gap: 2rem;
}
.tool-info .info .nav-tabs .nav-link {
  padding: 0.5rem 0;
  border: none;
  border-radius: 0;
  font-size: 0.9375rem;
  border-bottom: 2px solid transparent;
}
.tool-info .info .nav-tabs .nav-link.active {
  border: none;
  background: none;
  color: var(--colour2);
  font-weight: bold;
  border-bottom: 2px solid var(--colour2);
}
.tool-info .tab-content .content {
  padding-top: 2rem;
}

.tool-info .img {
  flex-shrink: 0;
  width: 35rem;
  max-width: calc(20vw + 5rem);
}
.tool-buy {
  margin-top: 2rem;
  background: #fff;
  padding: 2rem;
}
.tool-buy ul {
  margin-top: 1rem;
}
.tool-buy ul li {
  display: flex;
  gap: 0 2rem;
  padding: 1.5rem 0.5rem;
  border-top: 1px solid var(--border_colour);
}
.tool-buy ul li:last-of-type {
  border-bottom: 1px solid var(--border_colour);
}
.tool-buy ul li .img {
  flex-shrink: 0;
  width: 7rem;
}
.tool-buy ul li .info {
  flex-grow: 1;
}
.subtitle {
  font-size: 0.875rem;
  color: var(--small_text);
}
.tool-buy ul li .info .text {
  font-size: 0.875rem;
  color: var(--small_text);
}
.tool-buy ul li .info .text a {
  color: var(--colour2);
}
.tool-buy ul li .info .text a:hover {
  text-decoration: underline;
  text-underline-offset: 0.125rem;
}
.tool-buy ul li .current {
  flex-shrink: 0;
  font-size: 0.875rem;
}
.tool-buy ul li .price {
  line-height: 1em;
}

.tool-buy ul li .qty {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
}
.tool-buy ul li .add-car {
  margin-top: 1rem;
  display: block;
  width: 10rem;
  text-align: center;
  line-height: 2.25rem;
  color: #fff;
  background: var(--colour2);
  border-radius: 0.25rem;
}
.tool-buy ul li .add-car .icon {
  font-size: 1.125rem;
}
.tool-app-box {
  margin-top: 2rem;
}
.tool-app {
  padding: 2rem;
  background: #fff;
}
.tool-app ul {
  margin-top: 1rem;
}
.tool-app ul li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 2rem 0;
  border-top: 1px solid var(--border_colour);
}
.tool-app ul li:last-of-type {
  border-bottom: 1px solid var(--border_colour);
}
.tool-app ul li .img {
  width: 18%;
}
.tool-app ul li .link {
  width: 78%;
  display: flex;
  align-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}
.tool-app ul li .link .title {
  width: 100%;
}
.tool-app ul li .link a {
  display: inline-block;
  width: calc(25% - 0.75rem);
  padding: 0 1.25em;
  font-size: 0.875rem;
  line-height: 2.75em;
  color: var(--text);
  background: var(--grey_bg);
  border-radius: 0.25rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  overflow: hidden;
  transition: all 0.4s;
}
.tool-app ul li .link a:hover {
  color: #fff !important;
  background: var(--colour2);
}

.tool-download-box {
  margin-top: 1.5rem;
}
.tool-download {
  padding: 2rem;
  background: #fff;
}
.tool-download ul {
  margin-top: 1rem;
}
.tool-download ul li {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 0 1.5rem;
  padding: 1rem 0.5rem;
  line-height: 2rem;
  border-bottom: 1px solid var(--border_colour);
  transition: all 0.4s;
}
.tool-download ul li:hover {
  background: var(--grey_bg);
}
.tool-download ul li .icon-pdf {
  display: inline-block;
  width: 1.5rem;
  font-size: 1.5rem;
  line-height: 2rem;
  text-align: center;
  color: var(--colour2);
}
.tool-download ul li .title {
  display: block;
  flex-grow: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  overflow: hidden;
}
.tool-download ul li small {
  color: var(--small_text);
}
.tool-download ul li .btn {
  flex-shrink: 0;
  display: inline-block;
  padding: 0 1.25em;
  font-size: 0.75rem;
  line-height: 2rem;
  color: var(--text);
  background: var(--grey_bg);
  border-radius: 0.25rem;
  transition: all 0.4s;
}
.tool-download ul li:hover .btn {
  background: #fff;
}
.tool-download ul li .btn:hover {
  color: #fff;
  background: var(--colour2);
}
.product-c2 {
  margin-top: 1.5rem;
}
/*常见问题*/
.faq-box {
  overflow: visible;
}
.faq-box .container {
  position: relative;
}
.faq-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
.faq-nav > ul {
  position: sticky;
  top: 1rem;
  border-left: 1px solid var(--border_colour);
  transition: all 0.4s;
}
body.up .faq-nav > ul {
  position: sticky;
  top: 6rem;
}
.faq-nav a {
  position: relative;
  display: block;
  padding: 1rem !important;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25em;
  width: 12rem;
  color: var(--title);
  opacity: 0.5;
}
.faq-nav a.active {
  opacity: 1;
}
.faq-nav a:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0%;
  width: 0.125rem;
  height: 0%;
  background: var(--dark);
  transition: all 0.4s;
}

.faq-nav a.active:after {
  height: 100%;
}
.faq-item {
  padding: 3rem 0 0;
}
.faq-item:last-of-type {
  padding-bottom: 3rem;
}
.faq .card-header {
  border-bottom: none;
  font-weight: bold;
  padding: 1rem 1.25rem;
}
.faq ul li {
  border-bottom: 1px solid var(--border_colour);
}

.faq ul li > a {
  position: relative;
  display: block;
  width: 100%;
  padding: 1rem 2rem 1rem 1rem;
  font-size: 0.9375rem;
  font-weight: bold;
  color: var(--title) !important;
}
.faq ul li > a:not(.collapsed) {
  color: var(--colour2) !important;
  background: var(--grey_bg);
}
.faq ul li > a .icon {
  position: absolute;
  right: 1rem;
  font-size: 0.875rem;
  font-weight: bold;
  transform: rotate(45deg);
  transition: all 0.4s;
}
.faq ul li > a:not(.collapsed) .icon {
  transform: rotate(0deg);
  color: var(--colour2);
}
.faq ul li .info {
  padding: 2rem 1.25rem 2rem;
}
.faq ul li .info a {
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(0, 0, 0, 0.3);
}
.faq ul li .info a:hover {
  text-decoration-color: rgba(0, 0, 0, 0.9);
}

/*下载列表*/
.download-box {
  padding: 3rem;
  background: #fff;
}
.download-list {
  margin-top: 3rem;
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.5rem;
}
.download-list li {
  display: flex;
  width: calc(50% - 1rem);
  padding: 1.5rem;
  border: 1px solid var(--border_colour);
  border-radius: 0.25rem;
  background: #fff;
  transition: all 0.4s;
}
.download-list li:hover {
  border: 1px solid var(--colour2);
  box-shadow: 0 0 0.5rem var(--shadow);
  background: #fff;
}
.download-list li .icon.icon-pdf {
  flex-shrink: 0;
  font-size: 3rem;
  line-height: 1em;
  color: var(--colour2);
}
.download-list li div {
  width: 100%;
  padding-left: 1rem;
}
.download-list li .title {
  display: block;
  margin-bottom: 0.5rem;
}
.download-list li:hover .title {
  color: var(--colour2);
}
.download-list li small {
  display: block;
  line-height: 1.375em;
  color: var(--small_text);
}
.download-list li .btn {
  display: inline-block;
  padding: 0;
  margin-top: 0.5rem;
  margin-bottom: 0;
  font-size: 0.875rem;
}
/*解决方案*/
.solution-tab-nav {
  border-bottom: none;
  background: var(--grey_bg2);
}
.solution-tab-nav li {
  -ms-flex: 1 1 auto !important;
  flex: 1 1 auto !important;
}
.solution-tab-nav .nav-link {
  padding: 0;
  border-radius: 0;
  border: none;
  font-size: 1rem;
  font-weight: bold;
  color: var(--title);
  border-top: 0.225rem solid var(--grey_bg2);
  transition: all 0.4s;
}

.solution-tab-nav .nav-link.active {
  color: var(--colour2);
  border-top: 0.225rem solid var(--colour2);
}
.solution-tab-nav .nav-link {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
.solution-tab-nav .nav-link img {
  display: block;
  vertical-align: middle;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  max-width: 2.5rem;
  max-height: 2.5rem;
  filter: grayscale(100%);
}
.solution-tab-nav .nav-link.active img {
  filter: grayscale(0%);
}
.solution-tab-nav .nav-link div {
  width: 100%;
  margin-bottom: 1rem;
}
.solution-tab-wapNav {
  display: none;
  border-radius: 0.25rem;
}
.solution-tab-wapNav .solution-select a {
  display: flex;
  align-items: center;
  line-height: 2rem;
  color: var(--text) !important;
  background: none !important;
}
.solution-tab-wapNav .solution-select a img {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.75rem;
  filter: grayscale(100%);
}
.solution-tab-content .box {
  display: flex;
  padding: 4rem 3rem;
  background: #fff;
  border-radius: 0 0 0.5rem 0.5rem;
}

.solution-tab-content .info {
  width: 40%;
}

.solution-tab-content .info .img img {
  width: 80%;
}
.solution-tab-content .info .text {
  margin-bottom: 2rem;
}
.solution-tab-content .info .text,
.solution-tab-content .info .text p {
  font-size: 0.9375rem;
  line-height: 1.75em;
  color: var(--text);
}

.solution-tab-content .subnav {
  width: 60%;
  max-height: 50vh;
  overflow: auto;
  padding-left: 5%;
  padding-right: 1rem;
}
.solution-tab-content .subnav ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0 2rem;
}

.solution-tab-content .subnav li {
  width: calc(50% - 1rem);
}
.solution-tab-content .subnav li a {
  position: relative;
  display: block;
  padding: 1rem 0;
  font-size: 1rem;
  line-height: 1.5rem;
  color: var(--text);
  border-bottom: 1px solid var(--border_colour);
  transition: all 0.4s;
}
.solution-tab-content .subnav li a:hover {
  padding-left: 1.5em;
  color: var(--colour2);
}

.solution-tab-content .subnav li a:before {
  content: "";
  width: 100%;
  height: 1px;
  background: var(--colour2);
  position: absolute;
  left: 0;
  bottom: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: 100%;
  transform: scaleX(0);
}

.solution-tab-content .subnav li a:hover:before {
  transform: scaleX(1);
  transform-origin: 0%;
}
.solution-tab-content .subnav li a span {
  position: absolute;
  left: -0.5rem;
  font-size: 1em;
  opacity: 0;
  transition: all 0.4s;
}
.solution-tab-content .subnav li a:hover span {
  left: 0.25rem;
  opacity: 1;
}

/*方案详情页*/
.solution-head > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 3rem;
  border-radius: 0.5rem;
}
.solution-head .img {
  max-width: 30%;
}
.solution-head .info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 65%;
}
.solution-head .nav {
  width: 100%;
  margin-top: 3rem;
}
.solution-head .nav a.list-btn {
  position: relative;
  display: block;
  width: 100%;
  padding: 1rem;
  border-radius: 0.25rem;
  background: var(--grey_bg);
}
.solution-head .nav a.list-btn:not(.collapsed) {
  color: var(--colour2);
}
.solution-head .nav a.list-btn:before {
  content: "\b22";
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: 1rem;
  top: 50%;
  display: inline-block;
  margin-top: -0.75rem;
  transition: all 0.4s;
}
.solution-head .nav a.list-btn:not(.collapsed):before {
  transform: rotate(-180deg);
  color: var(--colour2);
}
#solution-nav {
  width: 100%;
}
#solution-nav ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0 2rem;
  margin-top: 1rem;
  padding: 0 1rem;
}

#solution-nav li {
  width: calc(33.33% - 1.375rem);
}
#solution-nav li a {
  position: relative;
  display: block;
  padding: 1rem 0;
  font-size: 1rem;
  line-height: 1.5rem;
  color: var(--text);
  border-bottom: 1px solid var(--border_colour);
  transition: all 0.4s;
}
#solution-nav li a.active,
#solution-nav li a:hover {
  padding-left: 1.5em;
  color: var(--colour2);
}

#solution-nav a:before {
  content: "";
  width: 100%;
  height: 1px;
  background: var(--colour2);
  position: absolute;
  left: 0;
  bottom: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: 100%;
  transform: scaleX(0);
}
#solution-nav li a.active:before,
#solution-nav li a:hover:before {
  transform: scaleX(1);
  transform-origin: 0%;
}
#solution-nav li a span {
  position: absolute;
  left: -0.5rem;
  font-size: 1em;
  opacity: 0;
  transition: all 0.4s;
}
#solution-nav li a.active span,
#solution-nav li a:hover span {
  left: 0.25rem;
  opacity: 1;
}
.solution-body {
  margin-top: 1rem;
}
.solution-body .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.solution-body .img {
  width: 60%;
  padding: 3rem;
  border-radius: 0.5rem;
  background: #fff;
}
.solution-body .img small {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--small_text);
}
.solution-body .info {
  width: calc(40% - 1rem);
  padding: 3rem;
  border-radius: 0.5rem;
  background: #fff;
}
.solution-body .info .nav {
  width: 100%;
}
.solution-body .info .nav li {
  width: 100%;
  border-bottom: 1px solid var(--border_colour);
}
.solution-body .info .nav .nav-btn {
  position: relative;
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: bold;
  line-height: 4rem;
  height: 4rem;
}
.solution-body .info .nav .nav-btn:not(.collapsed) {
  color: var(--colour2);
}
.solution-body .info .nav .nav-btn:before {
  content: "\b22";
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: 0;
  top: 50%;
  display: block;
  text-align: center;
  transform: translate(0%, -50%) rotate(0deg);
  transition: all 0.4s;
}
.solution-body .info .nav .nav-btn:not(.collapsed):before {
  transform: translate(0%, -50%) rotate(-180deg);
  color: var(--colour2);
}
.solution-body .info .nav-content {
  width: 100%;
}
.solution-body .info .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  margin-bottom: 0.75rem;
  border: 1px solid var(--border_colour);
  border-radius: 0.25rem;
  transition: all 0.4s;
}
.solution-body .info .item:hover {
  border: 1px solid var(--colour2);
}
.solution-body .info .item .item-left {
  flex-grow: 1;
  line-height: 0;
}
.solution-body .info .item .item-left a {
  line-height: 1.5em;
}
.solution-body .info .item:hover .item-left a {
  color: var(--colour2);
}
.solution-body .info .item:hover .item-left a:hover {
  color: var(--colour3);
}
.solution-body .info .item .item-left small {
  line-height: 1.75em;
  color: var(--small_text);
}.solution-body .info .item .item-right{
    margin-left: 1rem;
    flex-shrink: 0;
}
.solution-body .info .item .item-right a {
  display: inline-block;
  padding: 0 0.75rem;
  font-size: 0.75rem;
  line-height: 2.25rem;
  color: var(--title);
  background: var(--grey_bg);
  border-radius: 0.25rem;
  transition: all 0.4s;
}
.solution-body .info .item:hover .item-right a {
  color: #fff;
  background: var(--colour2);
}
.solution-body .info .item:hover .item-right a:hover {
  background: var(--colour3);
}
.solution-body .info .item .item-right a .icon {
  display: inline-block;
  vertical-align: middle;
  font-size: 1.125rem;
}
.solution-body .info .more {
  display: inline-block;
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: var(--small_text);
}
.solution-body .info .more:hover {
  color: var(--colour2);
}
.solution-body .info .more .icon {
  font-size: 1.125rem;
}
/*新闻列表*/
.news-first {
  display: flex;
  background: #fff;
}
.news-first .img {
  order: 1;
  width: 50%;
}
.news-first .img img {
  width: 100%;
  height: 100%;
}
.news-first .info {
  width: 50%;
  padding: 3rem;
  display: flex;
  align-items: center;
}
.news-first .info > div {
  width: 100%;
}

.news-first .time {
  font-size: 0.875rem;
  color: var(--small_text);
}
.news-first .tag {
  display: inline-block;
  margin-right: 0.5rem;
  padding: 0 1em;
  font-size: 0.875rem;
  line-height: 2.25em;
  background: var(--grey_bg);
  border-radius: 2em;
}
.news-first .title {
  display: block;
  margin: 1rem 0;
  transition: all 0.4s;
}
.news-first .title:hover {
  color: var(--colour2);
}
.news-first .text,
.news-first .text p {
  margin: 1rem 0;
  font-size: 0.875rem;
}
.news-first .btn {
  margin-top: 1rem;
  padding: 0 1.25em;
  font-size: 0.875rem;
  line-height: 2.5em;
  border-radius: 0.25rem;
  color: #fff;
  background: var(--colour2);
  transition: all 0.4s;
}
.news-first .btn:hover {
  background: var(--colour3);
}
.news-first .btn .icon {
  display: inline-block;
  width: 0;
  opacity: 0;
  font-size: 0.875rem;
  transition: all 0.4s;
}
.news-first .btn:hover .icon {
  margin-left: 0.375rem;
  width: 0.75em;
  opacity: 1;
}

.news-box {
  margin-top: 1rem;
  background: #fff;
  padding: 5%;
}
.news-box .header {
  display: flex;
  align-items: center;
}
.news-box .header .title {
  flex-grow: 1;
  margin: 0;
}
.news-box .header .select {
  min-width: 12rem;
}
.news-list {
  display: flex;
  flex-wrap: wrap;
  gap: 3%;
  margin-top: 2rem;
}
.news-list li {
  margin-bottom: 3%;
  width: 31.33%;
  background: var(--grey_bg);
  border: 1px solid #fff;
  transition: all 0.4s;
}
.news-list li:first-of-type {
  display: none;
}
.news-list li:hover {
  background: #fff;
  border: 1px solid var(--border_colour);
  box-shadow: 0 0 1rem var(--shadow);
}
.news-list li .img {
  position: relative;
  display: block;
  padding-bottom: 55%;
  overflow: hidden;
}
.news-list li .img img {
  width: 100%;
  height: 100%;
}
.news-list li .img .more {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  z-index: 2;
  background: #fff;
  overflow: hidden;
}
.news-list li .img .icon {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  line-height: 3rem;
  font-size: 1.25rem;
  text-align: center;
}
.news-list li .img .more:hover .icon {
  animation: btnSpan 0.4s ease-in-out reverse forwards;
}
.news-list li .img .more:hover .icon {
  animation: btnSpan 0.4s ease-in-out forwards;
}
.news-list li .info {
  padding: 8%;
}
.news-list li .tag {
  display: inline-block;
  padding: 0 1em;
  margin-right: 0.5rem;
  font-size: 0.75rem;
  background: #fff;
  border-radius: 1em;
  transition: all 0.4s;
}
.news-list li:hover .tag {
  background: var(--grey_bg);
}
.news-list li .time {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--small_text);
}
.news-list li .title {
  margin: 1rem 0 1.25rem;
  display: block;
  line-height: 1.125em;
  color: var(--title);
  transition: all 0.4s;
}
.news-list li:hover .title {
  color: var(--colour2);
}
.news-list li .text {
  font-size: 0.9375rem;
  line-height: 1.5em;
  max-height: 4.5em;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-list li a.btn {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: #fff;
  background: var(--colour2);
  transition: all 0.4s;
}
.news-list li a.btn:hover {
  background: var(--colour3);
}
/*文章详情*/

.article {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.article .article-head {
  padding: 0 0 2.5rem;
}

.article .article-head .title {
  margin: 0.5rem 0 1rem;
}

.article .article-head .time {
  font-size: 0.875rem;
  color: var(--small_text);
}
.article .article-head .time a {
  color: var(--small_text);
}
.article .article-head .time a:hover {
  color: var(--colour1);
}
.article-body {
  width: calc(100% - 22rem);
  padding: 5%;
  font-size: 0.9375rem;
  line-height: 1.75em;
  background: #fff;
}

.article-body p {
  font-size: 0.9375rem;
  line-height: 1.75em;
}

.article-body iframe {
  max-width: 100% !important;
}
.article-other {
  width: 21rem;
}
.article-other > div {
  padding: 2rem;

  background: #fff;
}
.article-other ul {
  margin-top: 1.5rem;
}
.article-other li {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border_colour);
}
.article-other li:first-child {
  border-top: 1px solid var(--border_colour);
}
.article-other .sort {
  display: inline-block;
  padding: 0 1rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  line-height: 2.25em;
  border-radius: 2em;
  color: var(--small_text);
  background: var(--grey_bg);
}
.article-other .title {
  line-height: 1.375em;
  transition: all 0.4s;
}
.article-other a:hover .title {
  color: var(--colour2);
}
.article-other .time {
  font-size: 0.875rem;
  color: var(--small_text);
}

.article-other .social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.article-other .social a span {
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  font-size: 1.75rem;
  text-align: center;
  border-radius: 50%;
  color: var(--title);
  background: var(--grey_bg);
  transition: all 0.4s;
}

.article-other .social a:hover span {
  color: #fff;
  background: var(--colour1);
}

.article-page {
  margin-top: 2%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.article-page a,
.article-page span {
  display: inline-block;
  width: calc(50% - 1rem);
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  overflow: hidden;
}
.article-page span {
  color: var(--small_text);
}
/*联系*/
.contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.contact-item {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  width: calc(50% - 1rem);
  margin-top: 1.5rem;
  padding: 2rem;
  background: var(--colour2);
  border-radius: 0.5rem;
}
.contact-item ol,
.contact-item li {
  z-index: 2;
}
.contact-item:before {
  content: url(../images/logo-icon.svg);
  position: absolute;
  z-index: 1;
  bottom: -5%;
  right: -5%;
  width: 70%;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  opacity: 0.05;
}
.contact-item,
.contact-item p {
  color: #fff;
}
.contact-item ol {
  padding-left: 0;
  padding-bottom: 1.5rem;
  width: 100%;
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.contact-item li {
  width: calc(50% - 1.25rem);
  display: flex;
}
.contact-item li .icon {
  font-size: 1.5rem;
  margin-right: 0.5rem;
}
.contact-item li a.text-link:hover {
  color: #fff !important;
}

.contact-region ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  margin-top: 1.5rem;
}
.contact-region ul li {
  width: calc(33.33% - 1.5rem);
  font-size: 0.9375rem;
  padding: 1.5rem;
  border: 1px solid #fff;
  background: #fff;
  border-radius: 0.5rem;
  transition: all 0.4s;
}
.contact-region ul li:hover {
  border: 1px solid var(--colour2);
  box-shadow: 0 0 0.5rem var(--shadow);
}
.contact-region ul li:hover .title {
  color: var(--colour2);
}
.contact-region ul li .icon {
  margin-right: 0.5rem;
  font-size: 1.125rem;
  color: var(--colour2);
}
.contact-feedback {
  display: flex;
  justify-content: space-between;
}

.feedback-box {
  width: 50%;
  padding: 5%;
  border-radius: 0.5rem;
  background: #fff;
}
.feedback-info {
  max-width: 32rem;
  margin-right: 5%;
}
.feedback-info .info {
  padding: 2rem;
  border: 1px solid var(--border_colour);
}

.feedback-box form {
  flex: 1 0 auto;
  width: 100%;
}
form.feedback div.row > div {
  margin-bottom: 1.5rem;
}
form.feedback div.row > div:last-of-type {
  margin-bottom: 0;
}


.compatible-hot {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    margin: 2rem 0 2rem;
    width: 100%;
}
.compatible-hot span {
    display: inline-block;
    padding: 0 1rem;
    font-size: 0.9375rem;
    font-weight: bold;
    color: #fff;
    background: var(--colour2);
    border-radius: 0.25rem;
}
.compatible-hot a {
    color: var(--text);
}
.compatible-hot a:hover {
    color: var(--colour2);
    text-decoration: underline;
}
.compatible-search form {
    display: flex;
    flex-wrap: wrap;
    gap: 0 1rem;
    width: 100%;
}
.compatible-search form p {
    font-size: 0.9375rem;
    margin-bottom: 0.375rem;
    color: var(--title);
}
.compatible-search form input,
.compatible-search form select {
    width: 14rem;
    line-height: 3em;
    height: 3em;
    font-size: 1rem;
    border-radius: 0.25rem;
}
.compatible-search form button {
    display: block;
    padding: 0 1.5em;
    font-size: 0.9375rem;
    line-height: 3em;
    border: none;
    background: var(--grey_bg2);
    border-radius: 0.25rem;
    transition: all 0.4s;
}
.compatible-search form button.search {
    color: #fff;
    background: var(--colour2);
}
.compatible-search form button:hover {
    color: #fff;
    background: var(--colour3);
}
.compatible-body {
    margin-top: 2rem;
}
.compatible-table {
    font-size: 0.9375rem;
    border-radius: 0.5rem;
    overflow: hidden;
}
.compatible-table .header,
.compatible-table .body li {
    display: flex;
}
.compatible-table .header {
    line-height: 1.5em;
    font-weight: bold;
    color: #fff;
    background: var(--colour2);
}
.compatible-table .body {
    color: var(--text);
}
.compatible-table .header>div,
.compatible-table .body li>div {
    flex-shrink: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 1rem 1.5rem;
}
.compatible-table .body li {
    border-bottom: 1px solid var(--border_colour);
    background: #fff;
    transition: all 0.4s;
}
.compatible-table .body li:last-of-type {
    border-bottom: none;
}
.compatible-table .body li:hover {
    background: #f8f9fa;
}
.compatible-table .header .summary,
.compatible-table .body .summary {
    flex-grow: 1;
    flex-shrink: 1;
    font-size: 0.875rem;
}
.compatible-table .header .summary span,
.compatible-table .body .summary span {
    max-height: 3em;
    line-height: 1.5em;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.compatible-table .header .item,
.compatible-table .body .item {
    width: 13rem;
}
.compatible-table .header .product,
.compatible-table .body .product {
    width: 10rem;
}
.compatible-table .header .state,
.compatible-table .body .state {
    width: 8rem;
}
.compatible-table .header .operate,
.compatible-table .body .operate {
    width: 9rem;
}
.compatible-table .web-txt {
    display: none;
    color: var(--small_text);
}
.compatible-table a.text-link {
    font-weight: bold;
    color: var(--colour2);
}
.compatible-table a.text-link:hover {
    color: var(--colour3);
    text-decoration: underline;
}
.compatible-table a.btn-link {
    display: inline-block;
    padding: 0 1.5rem;
    line-height: 2em;
    color: #fff;
    background: var(--colour2);
    border-radius: 0.25rem;
    text-decoration: none;
    transition: all 0.4s;
}
.compatible-table a.btn-link:hover {
    background: var(--colour3);
}
.compatible-table .icon {
    font-size: 1rem;
}
@media (max-width: 991.8px) {
    .compatible-table .header {
        display: none;
    }
    .compatible-table .body {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }
    .compatible-table .body li {
        flex-wrap: wrap;
        border: none;
        border-radius: 0.5rem;
        padding: 0.5rem 0 1rem;
    }
    .compatible-table .header .item,
    .compatible-table .body .item {
        padding-bottom: 0;
        width: 100%;
        gap: 0.5rem;
    }
    .compatible-table .header .product,
    .compatible-table .body .product {
        padding-top: 0;
        padding-bottom: 0;
        width: 100%;
        gap: 0.5rem;
    }
    .compatible-table .body .product a.text-link {
        font-size: 1.125rem;
    }
    .compatible-table .header .summary,
    .compatible-table .body .summary {
        flex-shrink: 0;
        width: 100%;
    }
    .compatible-table .header .state,
    .compatible-table .body .state {
        flex-grow: 1;
    }
    .compatible-table .web-txt {
        display: inline-block;
    }
}
@media (max-width: 767.8px) {
    .compatible {
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .compatible-search form {
        justify-content: flex-end;
    }
    .compatible form>div.input-box {
        width: 100%;
    }
    
    .compatible-search form input,
    .compatible-search form select {
        width: 100%;
    }
}

/* 提示框样式（直角风格） */
.dialog-tooltip {
    position: absolute;
    background: #fff;
    border: 0px solid #ddd;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 10px 15px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    max-width: 220px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.dialog-tooltip.show {
    opacity: 1;
    transform: translateY(0);
}

/* 箭头样式：直角与提示框保持一致 */
.dialog-tooltip::after {
    content: '';
    position: absolute;
    top: 100%; /* 箭头在下方 */
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px; /* 调整箭头大小 */
    border-style: solid;
    border-color: #fff transparent transparent transparent; /* 箭头颜色与背景一致 */
    filter: drop-shadow(0 -2px 3px rgba(0, 0, 0, 0.1)); /* 箭头阴影让其更明显 */
}