﻿@charset "utf-8";

/* CSS Document */

* {
  outline: none;
}

/*主题*/

:root {
  --head_height: 5rem;
  --colour1: #20307d;
  --colour2: #e60012;
  --dark: #262626;
  --title: #1a1a1a;
  --text: #4c4c4c;
  --small_text: #808080;
  --tips_text: #ccc;
  --grey_bg: #f8f9fa;
  --grey_bg2: #7e7f80;
  --text-bg: #19203b;
  --border_colour: #dce2e8;
  --shadow: rgb(220, 226, 232, 0.35);
}

body {
  margin: 0px;
  padding: 0px;
  background: #fff;
  position: relative;
  overflow-x: hidden;
}

body.modal-open {
  width: 100vw;
  height: 100vh;
  overflow: hidden !important;
}

body.menu-open {
  width: 100vw;
  height: 100vh;
  overflow-y: hidden !important;
}

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

.font-weight-Light {
  font-family: "HelveticaNeueLTPro", "PingFang SC", "Microsoft Yahei", Arial,
    sans-serif;
  font-weight: 300 !important;
}
.font-weight-normal {
  font-family: "HelveticaNeueLTPro", "PingFang SC", "Microsoft Yahei", Arial,
    sans-serif;
  font-weight: 400 !important;
}
.font-weight-medium {
  font-family: "HelveticaNeueLTPro", "PingFang SC", "Microsoft Yahei", Arial,
    sans-serif;
  font-weight: 600 !important;
}
.font-weight-bold {
  font-family: "HelveticaNeueLTPro", "PingFang SC", "Microsoft Yahei", Arial,
    sans-serif;
  font-weight: 700 !important;
}

@font-face {
  font-family: "HelveticaNeueLTPro";
  src: local("☺"), url(../font/HelveticaNeueLTPro-Th.otf);
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "HelveticaNeueLTPro";
  src: local("☺"), url(../font/HelveticaNeueLTPro-Lt.otf);
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "HelveticaNeueLTPro";
  src: local("☺"), url(../font/HelveticaNeueLTPro-Roman.otf);
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "HelveticaNeueLTPro";
  src: local("☺"), url(../font/HelveticaNeueLTPro-Md.otf);
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "HelveticaNeueLTPro";
  src: local("☺"), url(../font/HelveticaNeueLTPro-Bd.otf);
  font-weight: 700;
  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:hover {
  text-decoration: underline;
  color: var(--colour1);
}

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

input {
  margin: 0;
  outline: none;
}

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

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

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

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

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

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 {
  border: none;
  border-top: 1px solid #ebebeb;
  margin: 1.5rem 0px;
}
p {
  margin-bottom: 1.25em;
  font-size: 1rem;
  line-height: 1.5em;
  color: var(--text);
}

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: inherit !important;
}

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

.white {
  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(--colour1);
}

.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);
}

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(--colour1);
}
/*滚动条背景*/

/*滚动容器滚动条定制*/
/*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.5em;
  height: 3.5em;
  font-size: 1rem;
  color: var(--text);
  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;
}

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

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

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

form button.btn:hover {
  color: #fff;
  background: var(--colour1);
}

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

table,
tbody,
tr,
td {
  border: none;
}
table {
  border-collapse: separate;
  border-spacing: 1px;
  background: var(--border_colour);
  border-radius: 0.75rem;
}
table th,
table td {
  line-height: 1.5em;
  padding: 0.75rem 1.125rem;
  background: #fff;
}

table td p {
  margin: 0px;
}
table tr:first-of-type th:first-of-type,
table tr:first-of-type td:first-of-type {
  border-top-left-radius: 0.75rem;
}
table tr:first-of-type th:last-of-type,
table tr:first-of-type td:last-of-type {
  border-top-right-radius: 0.75rem;
}
table tr:last-of-type th:first-of-type,
table tr:last-of-type td:first-of-type {
  border-bottom-left-radius: 0.75rem;
}
table tr:last-of-type th:last-of-type,
table tr:last-of-type td:last-of-type {
  border-bottom-right-radius: 0.75rem;
}
/*boostrap遮罩层导致页面抖动*/

.modal-open {
  overflow: scroll !important;
}

/*页面内容宽度*/

.container {
  max-width: 1430px;
  width: 90%;
}
.small-content {
  width: 100%;
  padding-left: 5%;
  padding-right: 5%;
}
.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);
}

/*背景裁切*/

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

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

/*视频相关*/

.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(--colour1);
}

.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(--colour1);
}

/*视频弹出*/

#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: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  font-size: 1.25rem;
  font-weight: normal;
  color: var(--title);
  background: #fff;
  transition: all 0.4s;
}

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

#video-modal .modal-dialog {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  width: 96%;
  height: 100vh;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

#video-modal .modal-content {
  border: none;
  border-radius: 0;
}
#video-modal .modal-body {
  padding: 0;
  font-size: 0;
  margin: 0;
  aspect-ratio: 16 / 9;
  display: flex;
}

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

/*边距盒子*/

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

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

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

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

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

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

.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";
}

/*内页翻页*/

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

.page {
  font-size: 0;
  color: #666;
}

.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(--colour1);
}

.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_bg2);
  cursor: pointer;
  transition: all 0.4s;
}

.page form {
  display: inline-block;
}

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

.grey-box .page a.active {
  color: #fff;
  background: var(--colour1);
}

.page a:hover,
.page button:hover {
  color: #fff;
  background: var(--colour1);
}

@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 1rem;
  font-size: 1rem;
  line-height: 3rem;
  height: 3rem;
  color: #666;
  border: none;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.25rem;
  transition: all 0.4s;
}

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

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

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

/* 按钮 */
.layout-btn {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: auto;
  height: 3.25em;
  line-height: 1.625em;
  background: var(--colour1);
  transform: translate3d(0px, 0%, 0px);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  transition-delay: 0.6s;
  border-radius: 2em;
  transition: all 0.4s;
  overflow: hidden;
  /*box-shadow: 0 1.375rem 2em -0.5rem rgba(0, 0, 0, 0.1);*/
}

.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(--colour1);
  border-radius: 0;
  transform: translateY(0) scaleY(1);
  transition: all 0.6s ease;
}

.layout-btn > div {
  position: relative;
  z-index: 8;
  padding: 0 2.5em;
  overflow: hidden;
}

.layout-btn > div > span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  width: 100%;
  line-height: inherit;
  top: 0;
  font-weight: 600;
  width: 100%;
  text-align: center;
  transition: transform 0.5s ease;
}

.layout-btn > div > span:first-of-type {
  color: #fff;
  opacity: 1;
  transform: translateY(50%);
}

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

.layout-btn:hover {
  background: var(--grey_bg);
  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 {
  opacity: 0;
  transform: translateY(-50%);
}

.layout-btn:hover > div > span:last-of-type {
  opacity: 1;
  transform: translateY(-50%);
}
.layout-btn > div font {
  font-weight: normal !important;
  font-size: 1.25rem;
  line-height: 1em;
}
.layout-btn.layout-btn2 {
  background: #fff;
}

.layout-btn.layout-btn2:after {
  background: var(--colour2);
}
.layout-btn.layout-btn2:before {
  background: var(--grey_bg);
}
.layout-btn.layout-btn2 > div > span:first-of-type {
  color: #fff;
}
.layout-btn.layout-btn2 > div > span:last-of-type {
  color: #333;
}

/*头部*/

#head {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  border-bottom: hidden;
  transform: translate(0%, 0%);
  box-shadow: 0 0 0.5rem var(--shadow);
  background: var(--colour1);
  transition: all 0.6s;
}

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

.navbar-brand {
  flex-shrink: 0;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: normal;
  padding: 0px;
  margin: 0px;
}

.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-wap-btn {
  display: flex;
  justify-content: flex-end;
  height: 100%;
}

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

.head-wap-btn .dropdown > a {
  display: flex;
  align-items: center;
  padding: 0 0.5rem;
  font-size: 0.9375rem;
  line-height: 2.25rem;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
}

.head-wap-btn .dropdown:hover > a {
  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 {
  display: inline-block;
  font-size: 1.5rem;
  width: 2.75rem;
  height: 2.75rem;
  line-height: 2.75rem;
  text-align: center;
  color: inherit;
  border-radius: 50%;
  transition: all 0.4s;
}

.head-wap-btn .head-btn-member > a span {
  font-weight: normal;
}
.head-wap-btn .dropdown > a svg {
  margin-right: 0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  vertical-align: middle;
}
.head-wap-btn .dropdown-menu {
  left: 50%;
  padding: 0.5rem 0;
  margin-top: 0;
  border-radius: 0 0 0.25rem 0.25rem;
  border: none;
  box-shadow: 0 0 1rem var(--shadow);
  transform: translate(-50%, 0%);
}

.head-wap-btn .dropdown .dropdown-menu a {
  display: block;
  padding: 0 1em;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  height: 3rem;
  line-height: 3rem;
  border-bottom: rgba(0, 0, 0, 0.1);
  transition: all 0.4s;
}

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

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

.head-wap-btn .dropdown .dropdown-menu svg {
  width: 1.375rem;
  height: 1.375rem;
  margin-right: 0.375rem;
}

.head-wap-btn .dropdown-menu .title {
  padding: 0 0.5rem;
  font-size: 1.375rem;
  line-height: 1.5rem;
  white-space: nowrap;
}

.head-wap-btn .head-btn-search .dropdown-menu {
  left: auto;
  right: -4rem;
}

.head-wap-btn .dropdown-menu form {
  display: flex;
  margin: 1rem 2rem;
  min-width: 20rem;
}

.head-wap-btn .dropdown-menu form input {
  padding: 0 1rem;
  border-radius: 2rem 0 0 2rem;
}

.head-wap-btn .dropdown-menu form button {
  padding: 0 1rem;
  border-radius: 0 2rem 2rem 0;
  border: none;
  background: var(--colour1);
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
  transition: all 0.4s;
}
.head-wap-btn .dropdown-menu form button:hover {
  background: var(--colour1);
}

.head-wap-btn .dropdown-menu form button span {
  font-size: inherit;
  color: inherit;
}
.head-btn-phone {
  margin-right: 1rem;
  white-space: nowrap;
}
.head-btn-phone .icon {
  font-size: 1.375rem;
  color: var(--colour1);
}

.head-btn-phone .phone {
  font-size: 1.375rem;
  font-weight: 600;
}
.wap-menu-btn {
  width: var(--head_height);
  height: var(--head_height);
  color: #fff;
  border-radius: 0;
  border: none;
  transition: all 0.4s;
}
.wap-menu-btn:hover {
  color: #fff;
  background: var(--colour1);
}
.wap-menu-btn span {
  font-size: 1.75rem;
  color: inherit;
}

/*头部导航*/
#head .navbar-collapse {
  width: 100%;
  justify-content: center;
  height: 100%;
}

#head .navbar-nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  width: auto;
  height: 100%;
  padding: 0 calc(1vw * 2);
}
#head .navbar-nav > li {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0;
  margin: 0 calc(1.2vw * 1.6);
}
#head .navbar-nav > li:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 0.1875rem;
  opacity: 0.7;
  background-color: var(--colour1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scaleX(0);
  transform-origin: 100%;
}

#head .navbar-nav > li.active:after,
#head .navbar-nav > li:hover:after {
  transform: scaleX(1);
  transform-origin: 0%;
}
#head .navbar-nav > li > a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25em;
  white-space: nowrap;
  color: inherit;
  text-align: center;
  color: #fff;
  text-transform: Capitalize;
  border-radius: 0.25rem;
}
/*
#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.active > a:after,
#head .navbar-nav > li:hover > a:after {
  transform: scaleX(1);
  transform-origin: 0%;
}
*/
#head .navbar-nav .dropdown-menu {
  left: 0%;
  margin: 0;
  padding: 0rem;
  width: auto;
  border: none;
  border-top: 1px solid var(--border_colour);
  box-shadow: 0 0.25rem 0.5rem var(--shadow);
  border-radius: 0 0 0.25rem 0.25rem;
}
#head .navbar-nav .dropdown-menu > div {
  padding: 0.5rem 0;
}
#head .navbar-nav .dropdown-menu a {
  display: block;
  padding: 0 1em;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  height: 3em;
  line-height: 3em;
  white-space: nowrap;
  transition: all 0.4s;
}
#head .navbar-nav .dropdown-menu a:hover {
  color: #fff;
  background: var(--colour1);
}
#head .navbar-nav .dropdown.subnav > a {
  position: relative;
  padding-right: 1.5rem;
}
#head .navbar-nav .dropdown.subnav > a:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 0.375rem;
  width: 0%;
  height: 0%;
  border-top: 0.325rem solid transparent;
  border-right: 0.325rem solid transparent;
  border-bottom: 0.325rem solid transparent;
  border-left: 0.325rem solid var(--tips_text);
  transform: translate(0%, -50%);
}
#head .navbar-nav .dropdown.subnav .dropdown-menu {
  top: -0.5rem;
  left: 100%;
}
#head .navbar-nav .dropdown.subnav .dropdown-menu > div {
  padding: 0.5rem 0;
}
#head .navbar-nav .p-nav .dropdown-menu {
  position: fixed;
  top: var(--head_height);
  left: 0;
  right: 0;
  z-index: 1;
  padding: 2rem 0;
  background: var(--grey_bg);
}
#head .navbar-nav .p-nav .dropdown-menu a {
}
#head .navbar-nav .p-nav .dropdown-menu .container {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  padding: 0.5rem 1rem;
}
#head .navbar-nav .p-nav .dropdown-menu .container .nav {
  width: 14rem;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 0.375rem 0;
}
#head .navbar-nav .p-nav .dropdown-menu .container .nav li {
  width: 100%;
}
#head .navbar-nav .p-nav .dropdown-menu .container .nav li a {
  width: 100%;
  height: 3.25em;
  line-height: 3.25em;
  border-radius: 0.5rem;
  background: #fff;
}
#head .navbar-nav .p-nav .dropdown-menu .container .nav li a:hover {
  color: var(--colour1);
}

#head .navbar-nav .p-nav .dropdown-menu .container .nav li a.active {
  color: #fff;
  background: var(--colour1);
}
#head .navbar-nav .p-nav .dropdown-menu .container .tab-content {
  flex-grow: 1;
}
#head .navbar-nav .p-nav .dropdown-menu .container .content {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}
#head .navbar-nav .p-nav .dropdown-menu .container .content a {
  display: block;
  width: calc(25% - 1.125rem);
  padding: 0;
  height: auto;
  line-height: 1.5em;
  background: none !important;
  text-align: center;
}
#head .navbar-nav .p-nav .dropdown-menu .container .content a .img {
  background: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
}
#head .navbar-nav .p-nav .dropdown-menu .container .content a .title {
  margin-top: 1rem;
  transition: all 0.4s;
}
#head .navbar-nav .p-nav .dropdown-menu .container .content a .subtitle {
  color: var(--small_text);
  transition: all 0.4s;
}
#head .navbar-nav .p-nav .dropdown-menu .container .content a:hover .title,
#head .navbar-nav .p-nav .dropdown-menu .container .content a:hover .subtitle {
  color: var(--colour1);
}

/*头部搜索*/
#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;
  color: #fff;
  background: var(--colour1);
  border-radius: 0.5rem;
  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: 60rem;
  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.5rem 0 0 0.5rem;
  transition-delay: 0.3s;
}

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

  transition: all 0.4s;
}
#search-modal .modal-header button:hover {
  color: #fff;
  background: var(--colour2);
}
#search-modal .modal-header button span {
  color: inherit !important;
  font-size: inherit;
}
#search-modal .modal-body {
  width: 60rem;
  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(--colour1);
}
/*头部搜索*/
/*手机菜单*/

#menu-modal .modal-dialog {
  max-width: none;
  margin: 0;
}

#menu-modal.fade .modal-dialog {
  transform: none;
}
#menu-modal.show .modal-dialog {
  transform: none;
}

#menu-modal.fade .modal-content {
  border: none;
  border-radius: 0;
  height: 0;
  transition: all 0.4s;
  overflow: hidden;
}
#menu-modal.show .modal-content {
  height: 100vh;
  transition-delay: 0.1s;
}
#menu-modal .modal-header {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0;
  height: var(--head_height);
  background: var(--colour1);
  border-radius: 0 !important;
}
#menu-modal .modal-header .navbar-brand {
  display: flex;
  align-items: center;
  height: inherit;
}
#menu-modal .modal-header .navbar-brand img {
  height: 50%;
}
#menu-modal .modal-header .close {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--head_height);
  height: var(--head_height);
  opacity: 1;
  margin: 0;
}
#menu-modal .modal-header .close .icon {
  font-size: 1.5rem;
}

#menu-modal .modal-body {
  height: calc(100vh - var(--head_height));
  overflow-y: auto;
}

.menu-nav ul li {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border_colour);
}
.modal.show .menu-nav ul li {
  -webkit-animation-duration: 1.125s;
  animation-duration: 1.125s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
.modal.show .menu-nav ul li:nth-of-type(2) {
  animation-delay: 0.3s;
}
.modal.show .menu-nav ul li:nth-of-type(3) {
  animation-delay: 0.5s;
}
.modal.show .menu-nav ul li:nth-of-type(4) {
  animation-delay: 0.7s;
}
.modal.show .menu-nav ul li:nth-of-type(5) {
  animation-delay: 0.9s;
}
.modal.show .menu-nav ul li:nth-of-type(6) {
  animation-delay: 1.1s;
}
.modal.show .menu-nav ul li:nth-of-type(7) {
  animation-delay: 1.3s;
}
.menu-nav ul li > a {
  flex-grow: 1;
  display: block;
  font-size: 1.125rem;
  height: 3em;
  line-height: 3em;
  font-weight: 600;
  color: var(--title);
}
.menu-nav ul li > a.menu-down {
  flex-grow: 0;
  width: 2.5em;
  font-size: 1.125rem;
  text-align: center;
}
.menu-nav ul li > a.menu-down .icon {
  display: inline-block;
  font-size: inherit;
  transform: rotate(-45deg);
  transition: all 0.4s;
}

.menu-nav ul li > a.menu-down:not(.collapsed) .icon {
  color: var(--colour1);
  transform: rotate(0deg);
}
.menu-nav ul li .subnav {
  width: 100%;
}
.menu-nav ul li .subnav > div {
  padding: 0 1rem 1.5rem;
}
.menu-nav ul li .subnav > div a {
  display: block;
  line-height: 2.5em;
  font-weight: 500;
  color: var(--text);
}

.menu-nav .header {
  display: flex;
  width: 100%;
}
.menu-nav .header a {
  flex-grow: 1;
  display: block;
  font-size: 1rem;
  height: 3em;
  line-height: 3em;
  color: var(--title);
}
.menu-nav .header a.menu-down {
  flex-grow: 0;
  width: 2.5em;
  font-size: 1rem;
  text-align: center;
}
.menu-nav .header a.menu-down .icon {
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
  transform: rotate(-45deg);
  transition: all 0.4s;
}
.menu-nav .header a.menu-down:not(.collapsed) .icon {
  transform: rotate(0deg);
  color: var(--colour1);
}
.menu-nav ul li .subnav {
  width: 100%;
}
.menu-nav ul li .subnav > div {
  padding: 0 1rem 1.5rem;
}
.menu-nav ul li .subnav > div a {
  display: block;
  font-size: 0.9375rem;
  height: 2.5em;
  line-height: 2.5em;
  color: var(--text);
}
/*head end*/

/*公共*/
.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: 1.725rem;
  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);
}

.hover-btn.hover-btn2 {
}

/**/
.swiper .swiper-button-prev,
.swiper .swiper-button-next {
  top: 45%;
  width: 3rem;
  height: 3rem;
  line-height: 3rem;
  font-size: 1.25rem;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  background: var(--colour1);
  opacity: 0;
}
.swiper:hover .swiper-button-prev,
.swiper:hover .swiper-button-next {
  opacity: 1;
}
.swiper .swiper-button-prev:hover,
.swiper .swiper-button-next:hover {
  background: var(--colour2);
}
.swiper:hover .swiper-button-prev.swiper-button-disabled,
.swiper:hover .swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
}
.swiper .swiper-pagination {
  margin-top: 0.5rem;
  position: static;
}
/*首页banner*/
.banner {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  overflow: hidden;
}

.banner .bigimg .swiper-slide {
  width: 100%;
  overflow: hidden;
}
.banner .bigimg .swiper-slide .picimg {
  width: 100%;
  object-fit: cover;
}

.banner .bigimg .swiper-slide .slide-inner picture,
.banner .bigimg .swiper-slide .slide-inner img {
  width: 100%;
  height: auto;
}
.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 {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 6%;
  display: flex;
  justify-content: center;
}
.banner .swiper-pagination span {
  position: relative;
  display: block;
  padding: 0.5rem;
  margin: 0 0.125rem !important;
  width: auto;
  height: auto;
  background: none;
  opacity: 1;
}
.banner .swiper-pagination span:before {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  background-color: #fff;
  border-radius: 50%;
  transition: all 0.4s;
}
.banner .swiper-pagination span.swiper-pagination-bullet-active:before {
  content: "";
  background-color: var(--colour1);
}

.banner .pos_but {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 0;
  width: 100%;
  font-size: 0;
}
.banner .pos_but .container {
  position: relative;
}
.banner .pos_but .swiper-button-next,
.banner .pos_but .swiper-button-prev {
  position: relative;
  left: auto;
  right: auto;
  display: inline-block;
  margin: 0;
  width: 5rem;
  height: 5rem;
  line-height: 5rem;
  color: var(--colour1);
  font-size: 1.5rem;
  font-weight: normal;
  text-align: center;
  background: #fff;
  opacity: 1 !important;
  transition: all 0.5s;
}
.banner .pos_but .swiper-button-prev {
  border-radius: 0.5rem 0 0 0;
  border-right: 1px solid var(--border_colour);
}
.banner .pos_but .swiper-button-next {
  border-radius: 0 0.5rem 0 0;
}
.banner .pos_but .swiper-button-prev:hover,
.banner .pos_but .swiper-button-next:hover {
  color: #fff;
  background: var(--colour1);
}

/*首页产品*/
.index-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.index-top .title {
  margin-bottom: 0;
}
.index-top p {
  margin-top: 0.5rem;
}
.index-top .btn {
  display: flex;
  gap: 0.5rem;
  padding: 0;
}
.index-top .swiper-button-prev,
.index-top .swiper-button-next {
  position: static;
  display: block;
  margin: 0;
  width: 4rem;
  height: 4rem;
  line-height: 4rem;
  font-size: 1.25rem;
  text-align: center;
  background: var(--grey_bg);
  color: var(--colour1);
  border-radius: 0.5rem;
  transition: all 0.4s;
}
.index-top .swiper-button-prev:hover,
.index-top .swiper-button-next:hover {
  background: var(--colour1);
  color: #fff;
}
.index-top .swiper-button-prev span,
.index-top .swiper-button-next span {
  font-size: inherit;
  color: inherit;
}

.index-products {
  margin-top: 3rem;
}
.index-products .img {
  margin-bottom: 1.5rem;
  background: var(--grey_bg);
  border-radius: 1rem;
  overflow: hidden;
}
.index-products .swiper-slide .img img {
  max-width: 80%;
  max-height: 80%;
  mix-blend-mode: multiply;
  transition: all 0.6s;
}
.index-products .subnav a {
  display: block;
  font-size: 0.875rem;
  line-height: 2em;
  color: var(--text);
}

.index-products .swiper-slide .title {
  transition: all 0.6s;
}
.index-products .swiper-slide:hover .title {
  color: var(--colour1);
}
.index-products .subnav a {
  display: block;
  font-size: 0.875rem;
  line-height: 2em;
  transition: all 0.4s;
}
.index-products .subnav a:hover {
  color: var(--colour1);
}
/* 首页关于 */
.index-about-box > div {
  border-bottom: 1px solid var(--border_colour);
}
.index-about {
  display: flex;
  justify-content: space-between;
}
.index-about .info {
  width: 40%;
}
.index-about .info .title {
  margin-bottom: 0.75em;
}
.index-about .info .layout-btn {
  margin-top: 2rem;
}
.index-about .img {
  width: 50%;
}
.index-about .img img {
  border-radius: 1rem;
}

/*首页应用领域*/

.index-app-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.index-app-head .info {
  max-width: 30rem;
  padding-right: 2rem;
}
.index-app-head .layout-btn {
  flex-shrink: 0;
}
.index-app-list {
  display: flex;
  gap: 0.25rem;
}
.index-app-list li {
  position: relative;
  width: 100%;
  height: 35rem;
  transition: all 0.4s;
}
.index-app-list li:before {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0%;
  left: 0%;
  width: 100%;
  height: 50%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
}
.index-app-list li.active {
  width: 360%;
}
.index-app-list li .title {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  padding: 1rem 0;
  width: 100%;
  text-align: center;
  color: #fff;
  opacity: 1;
  transition: all 0.4s;
}
.index-app-list li.active .title {
  opacity: 0;
}
.index-app-list li .info {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  padding: 2rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  color: #fff;
  opacity: 0;
  transition: all 0.4s;
  transition-delay: 0s;
}
.index-app-list li.active .info {
  transition-delay: 0.4s;
  opacity: 1;
}
.index-app-list li .info .h5 {
  margin-bottom: 0.5rem;
}
.index-app-list li .info p {
  color: #fff;
  opacity: 0.9;
}
.index-app-list li .info .btn {
  flex-shrink: 0;
  display: inline-block;
  padding: 1em 2em;
  font-size: 0.875rem;
  line-height: 1em;
  border-radius: 2em;
  color: var(--text);
  border: none;
  background: #fff;
  transition: all 0.4s;
}
.index-app-list li .info .btn:hover {
  color: #fff;
  background: var(--colour2);
}
.index-app-list li img {
  width: 100%;
  height: 100%;
}
.index-app-swiper {
  display: none;
}
.index-app-swiper a {
  display: block;
  border-radius: 0.5rem;
  overflow: hidden;
}
.index-app-swiper .info {
  padding: 1.25rem;
  background: var(--grey_bg);
}
.index-app-swiper .info .h6 {
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.index-app-swiper .info p {
  font-size: 0.875rem;
}
/* 首页解决方案 */
.index-solution-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.index-solution-head .info {
  padding-right: 2rem;
}
.index-solution-head .info p {
  margin-bottom: 0.5rem;
}
.index-solution-head .layout-btn {
  flex-shrink: 0;
}
.index-solution-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.index-solution-list li {
  width: calc(33.33% - 0.875rem);
  border-radius: 1rem;
  border: 1px solid var(--border_colour);
  overflow: hidden;
}
.index-solution-list .title {
  padding: 1rem 1.5rem;
  font-size: 1.125rem;
  font-weight: bold;
  color: var(--title);
  border-bottom: 1px solid var(--border_colour);
}
.index-solution-list .summary {
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  color: var(--text);
}
.solution-container {
}
.solution-container .swiper-slide {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 5rem 8rem;
  height: auto;
  background: var(--colour1);
}
.solution-container .swiper-slide .info {
  width: 30rem;
}
.solution-container .swiper-slide .info .layout-btn {
  margin-top: 2.5rem;
}
.solution-container .swiper-slide .img {
  width: 30rem;
  border-radius: 1rem;
}
.solution-container .swiper-slide .bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  filter: blur(0.75em);
}
.solution-nav {
  color: #fff;
  background: var(--colour1);
  text-align: center;
}
.solution-nav .swiper-slide {
  position: relative;
  padding: 1rem;
  width: auto;
  min-width: 8rem;
  font-size: 0.875rem;
  font-weight: bold;
  color: var(--tips_text);
  cursor: pointer;
}
.solution-nav .swiper-slide.swiper-slide-thumb-active {
  color: #fff;
}
.solution-nav .swiper-slide:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 0.1875rem;
  background-color: var(--colour2);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scaleX(0);
  transform-origin: 100%;
}
.solution-nav .swiper-slide.swiper-slide-thumb-active:after {
  transform: scaleX(1);
  transform-origin: 0%;
}
/*首页 合作伙伴*/
.index-cooperation {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.index-cooperation .content {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.index-cooperation .content a {
  display: block;
  flex-shrink: 0;
  width: calc(14.285% - 0.4375rem);
  padding-bottom: 9%;
  background: var(--grey_bg);
  border-radius: 0.5rem;
}
.show-subnav .index-cooperation .content a {
  width: calc(20% - 0.4375rem);
  padding-bottom: 12%;
}
.index-cooperation img {
  max-width: 90%;
  max-height: 90%;
  mix-blend-mode: multiply;
}
@keyframes scroll2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50%));
  }
}

/*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%;
}

/*页脚*/

#foot {
  position: relative;
  padding: 4rem 0 0;
  font-size: 1rem;
  color: #fff;
  background: var(--colour1);
}
#foot p {
  font-size: inherit;
  color: inherit;
  line-height: 1.5em;
}

#foot .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
#foot .foot-title {
  display: block;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: bold;
  text-transform: Uppercase;
}
#foot .foot-logo {
  width: 12rem;
  margin-bottom: 2rem;
}
#foot .foot-contact {
  max-width: 25rem;
  font-size: 0.875rem;
  line-height: 1.75em;
}
#foot .foot-contact div .icon {
  font-weight: normal;
  font-size: inherit;
}
#foot .foot-contact p {
  opacity: 0.7;
  margin-bottom: 0.5rem;
}
#foot .foot-code img {
  max-width: 7.5rem;
}

#foot .foot-follow {
  max-width: 30rem;
}
#foot .foot-share {
  font-size: 0;
}
#foot .foot-share font {
  font-size: 0.875rem;
  opacity: 0.7;
}
#foot .foot-share a {
  position: relative;
  display: inline-block;
  margin-top: -1px;
  margin-left: -1px;
}
#foot .foot-share a span {
  display: inline-block;
  width: 2.75rem;
  height: 2.75rem;
  line-height: 2.75rem;
  font-size: 1.5rem;
  text-align: center;
  border-radius: 0.25rem;
  color: #fff;
  transition: all 0.4s;
}
#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 .foot-right {
  display: flex;
  justify-content: space-between;
  flex-grow: 1;
  max-width: 55rem;
}
#foot .foot-nav button {
  background: none;
  border: none;
}
#foot .foot-nav a {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5em;
  color: #fff;
  opacity: 0.7;
  transition: all 0.4s;
}
#foot .foot-nav a:hover {
  text-decoration: underline;
  opacity: 1;
}
#foot .foot-nav a:first-of-type {
  margin-bottom: 1rem;
  font-size: 1.125rem;
  opacity: 1;
}
#foot .foot-bottom {
  width: 1000%;
  padding: 1.25rem 0;
  font-size: 0.875rem;
  line-height: 2em;
  color: #fff;
  opacity: 0.7;
}
#foot .foot-bottom a {
  color: inherit;
}

#foot .foot-bottom a:hover {
  text-decoration: underline;
  opacity: 1;
}
#foot .foot-clause a {
  margin-left: 1rem;
}
/*内页公共*/
.breadcrumb {
  width: 100%;
  padding: 1.25rem 0px;
  margin: 0;
  background: none;
}

.breadcrumb > div {
  display: flex;
  align-items: center;
  font-size: 0px;
}

.breadcrumb a {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: bold;
  color: var(--small_text);
  transition: all 0.4s;
}
.breadcrumb a.icon {
  font-size: 1.25rem;
  font-weight: normal;
}
.breadcrumb a:hover {
  color: var(--colour1);
}

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

.breadcrumb a:after {
  content: "\b20";
  font-family: "iconfont" !important;
  font-style: normal;
  font-size: 0.875rem !important;
  -webkit-font-smoothing: antialiased;
  margin: 0 0.5rem;
  color: var(--small_text);
}

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

.breadcrumb a img {
  width: 1rem;
  filter: brightness(0);
  opacity: 0.5;
}

/*页面顶部*/
.page-title {
  line-height: 1em;
  padding-top: 1rem;
  padding-bottom: 2rem;
}

.page-title .title {
  font-size: 2rem;
  line-height: 1em;
}
.nav-menu-btn {
  display: inline-block;
  padding: 0.25rem 1.25rem;
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: var(--colour1);
  border: 1px solid var(--border_colour);
  border-radius: 2em;
  background: var(--grey_bg);
  cursor: pointer;
  transition: all 0.4s;
}
.nav-menu-btn:hover {
  color: #fff;
  border: 1px solid var(--colour1);
  background: var(--colour1);
}

.nav-menu-btn .icon {
  display: inline-block;
  margin-right: 0.25rem;
  color: var(--colour2);
}
.page-title .nav-menu-btn {
  margin-top: 1rem;
}
.page-title .nav-menu-btn.hide {
  display: none;
}
.page-title .nav-menu-btn .icon {
  transform: rotate(90deg);
}

.page-content .container {
  display: flex;
}
.page-content .content-left {
  width: 20rem;
  flex-shrink: 0;
  border-top: 1px solid var(--border_colour);
  border-right: 1px solid var(--border_colour);
  transition: all 0.4s;
}
.page-content.hide-subnav .content-left {
  width: 0;
  padding-left: 0;
  padding-right: 0;
  border-right: 1px solid rgba(0, 0, 0, 0);
  overflow: hidden;
}
.page-content .content-left > div {
    position: sticky;
    top: var(--head_height);
    z-index: 1;
  padding: 1rem 1rem 2rem;
  width: 20rem;
}
.content-left .tips {
  color: var(--tips_text);
}
.left-subnav a {
  display: block;
  margin: 0.25rem 0;
  color: var(--title);
}
.left-subnav a:hover {
  color: var(--colour2);
}
.left-subnav a.active {
  font-weight: bold;
}
.left-subnav .subnav-btn a {
  display: inline-block !important;
  font-size: 1rem;
  transition: all 0.4s;
}
.left-subnav .subnav-menu > div {
  padding: 0rem 0rem 0rem 1rem;
}
.content-left .nav-menu-btn {
  margin-top: 2rem;
}
.content-left .nav-menu-btn .icon {
  transform: rotate(-90deg);
}
.content-left .left-subnav .icon:not(.collapsed) {
  transform: rotate(-180deg);
}
.page-content .content-right {
  width: calc(100% - 20rem);
  border-top: 1px solid var(--border_colour);
  transition: all 0.4s;
}
.page-content.hide-subnav .content-right {
  width: 100%;
}
/*内页banner*/
.inside-banner {
  position: relative;
}
.inside-banner .info {
  position: absolute;
  left: 5%;
  top: 0%;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 28rem;
}
.inside-banner .info > div {
  width: 100%;
  padding: 2rem;
  border-radius: 1rem;
  background: rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12px) saturate(50%);
}
.inside-banner .info .title {
  animation-delay: 0.5s;
}
.inside-banner .info p {
  animation-delay: 0.9s;
}
.inside-banner .info .title,
.inside-banner .info p {
  color: #fff;
}
.inside-banner .info .layout-btn {
  margin-top: 1.5rem;
  animation-delay: 1.1s;
}
.inside-banner .img img {
  width: 100%;
  min-height: 20rem;
  -o-object-fit: cover;
  object-fit: cover;
}

.inside-banner .swiper-slide.swiper-slide-active .info > div,
.inside-banner .swiper-slide.swiper-slide-active .title,
.inside-banner .swiper-slide.swiper-slide-active p,
.inside-banner .swiper-slide.swiper-slide-active .layout-btn {
  -webkit-animation-duration: 1.125s;
  animation-duration: 1.125s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
.inside-banner .swiper-slide.swiper-slide-active .info > div {
  animation-delay: 0.5s;
}
.inside-banner .swiper-slide.swiper-slide-active .title {
  animation-delay: 0.8s;
}
.inside-banner .swiper-slide.swiper-slide-active p {
  animation-delay: 1s;
}
.inside-banner .swiper-slide.swiper-slide-active .layout-btn {
  animation-delay: 1.2s;
}

/*关于*/
.about {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.about .info {
  width: 50%;
}
.about .img {
  width: 45%;
}
.about .img img {
  border-radius: 1rem;
}
.about-data {
  display: flex;
  flex-wrap: wrap;
  gap: 1.125rem;
  margin-top: 3rem;
}
.about-data > div {
  display: flex;
  justify-content: space-between;
  width: calc(33.33% - 0.75rem);
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--grey_bg);
}
.about-data > div .data {
  margin-right: 0.25rem;
}
.about-data > div .icon {
  display: flex;
  align-items: center;
  width: 3.5rem;
  flex-shrink: 0;
}

.team {
  display: flex;
  flex-wrap: wrap;
  gap: 1.125rem;
}
.team li {
  width: calc(33.33% - 0.75rem);
  border: 1px solid var(--border_colour);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.4s;
}
.team li:hover {
  box-shadow: 0 0 1rem var(--shadow);
}
.team li img {
  width: 100%;
}
.team li .info {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border_colour);
}
.team li .info .title {
  display: block;
  font-size: 1.125rem;
  color: var(--title);
  transition: all 0.4s;
}
.team li:hover .info .title {
  color: var(--colour1);
}
.team li:hover .info .title:hover {
  color: var(--colour2);
}
.team li .info .position {
  font-size: 0.875rem;
  color: var(--small_text);
}
.team li .btn {
  display: block;
  padding: 0.75rem 1.5rem;
  text-align: left;
  font-size: 0.875rem;
  font-weight: bold;
  color: var(--small_text);
  transition: all 0.4s;
}
.team li .btn .icon {
  font-size: 1rem;
  font-weight: normal;
  color: inherit;
}
.team li:hover .btn {
  color: var(--colour1);
}
.team li .btn:hover {
  color: var(--colour2);
}
.team-info {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border_colour);
  background: right -20% center no-repeat url(../images/team.svg) var(--grey_bg);
  background-size: auto 250%;
}
.team-info .img {
  flex-shrink: 0;
  width: 9rem;
}
.team-info .img img {
  width: 100%;
  border-radius: 1rem;
}

.team-info .info .title {
  margin-bottom: 0.5rem;
}
.team-info .info .name {
  margin-bottom: 0.5rem;
}
.team-info .info .position {
  font-size: 0.875rem;
}
.business-tab {
  gap: 2rem;
  border-bottom: 1px solid var(--border_colour);
}
.business-tab a {
  padding: 0.5rem 0;
  font-weight: bold;
  color: var(--text);
  border: none !important;
  border-bottom: 0.1875rem solid transparent !important;
  background: none !important;
}
.business-tab a.active {
  color: var(--colour1) !important;
  border-bottom: 0.1875rem solid var(--colour1) !important;
}
.business-content .tab-pane > div {
  padding-top: 2rem;
}
.business-content ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.125rem;
  margin-top: 2rem;
}
.business-content ul li {
  width: calc(33.33% - 0.75rem);
  padding: 1.5rem;
  font-weight: bold;
  color: var(--title);
  border: 1px solid var(--border_colour);
  border-radius: 1rem;
  background: #fff;
  transition: all 0.4s;
}
.business-content ul li:hover {
  color: var(--colour1);
  border: 1px solid var(--colour1);
}
/**/
.inside-head {
  padding: 4rem 0;
}
/*产品*/

.p-nav-list {
  display: flex;
  flex-wrap: wrap;
  margin: auto;
  gap: 2rem;
}
.p-nav-list li {
  width: calc(33.33% - 1.375rem);
}
.p-nav-list li a {
  position: relative;
  display: block;
  min-height: 100%;
  background: var(--grey_bg);
  overflow: hidden;
  transition: all 0.4s;
}
.p-nav-list li a:hover {
  background: #fff;
  box-shadow: 0 0 1.5rem var(--shadow);
}
.p-nav-list li .img {
  padding-bottom: 75%;
  mix-blend-mode: multiply;
}
.p-nav-list li .img img {
  width: 90%;
  height: 90%;
}
.p-nav-list li .info {
  padding: 1.5rem;
}
.p-nav-list li .title {
  text-align: center;
  transition: all 0.4s;
}

.p-nav-list li a:hover .title {
  color: var(--colour1);
}

/**/
.inside-nav {
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}
.inside-nav li a {
  position: relative;
  display: block;
  height: 4em;
  padding: 0 2em;
  line-height: 4em;
  font-size: 1.125rem;
  white-space: nowrap;
  color: var(--text);
  cursor: pointer;
  border-top: 2px solid #fff;
  transition: 0.3s;
}
.inside-nav li a:hover {
  color: var(--colour1);
}
.inside-nav li.active a {
  color: var(--colour1);
  border-top: 2px solid var(--colour1);
  background: var(--grey_bg);
  transition: 0.3s;
}

.inside-nav li a:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background: #e5e5e5;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transition: opacity 0.3s;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -ms-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
}
.inside-nav li:first-child a:after {
  display: none;
}
.inside-nav li.active + li a:after {
  opacity: 0;
}

/*产品列表*/

.product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.125rem;
}
.product-list li {
  width: calc(33.33% - 0.75rem);
}
.hide-subnav .product-list li {
  width: calc(25% - 0.875rem);
}

.product-list .img {
  margin-bottom: 1rem;
  background: var(--grey_bg);
  border-radius: 0.5rem;
  overflow: hidden;
}
.product-list .img img {
  max-width: 80%;
  max-height: 80%;
  mix-blend-mode: multiply;
  transition: all 0.6s;
}
.product-list .subnav a {
  display: block;
  font-size: 0.875rem;
  line-height: 2em;
  color: var(--text);
}
.product-list .title {
  text-align: center;
  transition: all 0.6s;
}
.product-list a:hover .title {
  color: var(--colour1);
}

.inside-swiper .swiper-slide {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 5rem;
  height: auto;
  background: var(--colour1);
}
.inside-swiper .swiper-slide .info {
  width: 50%;
}
.inside-swiper .swiper-slide .info .layout-btn {
  margin-top: 2.5rem;
}
.inside-swiper .swiper-slide .img {
  width: 40%;
  border-radius: 1rem;
}
.inside-swiper .swiper-slide .bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  opacity: 0.2;
  filter: blur(0.75em);
}
.inside-swiper-nav {
  color: #fff;
  background: var(--colour1);
  text-align: center;
}
.inside-swiper-nav .swiper-slide {
  position: relative;
  padding: 1rem;
  width: auto;
  min-width: 8rem;
  font-size: 0.875rem;
  font-weight: bold;
  color: var(--tips_text);
  cursor: pointer;
}
.inside-swiper-nav .swiper-slide.swiper-slide-thumb-active {
  color: #fff;
}
.inside-swiper-nav .swiper-slide:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 0.1875rem;
  background-color: var(--colour2);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scaleX(0);
  transform-origin: 100%;
}
.inside-swiper-nav .swiper-slide.swiper-slide-thumb-active:after {
  transform: scaleX(1);
  transform-origin: 0%;
}

.support-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.125rem;
  margin-top: 2rem;
}
.support-list li {
  width: calc(33.33% - 0.75rem);
}
.support-list li a {
  display: block;
  min-height: 100%;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--border_colour);
  border-radius: 1rem;
  transition: all 0.4s;
}
.support-list li a:hover {
  background: #fff;
  border: 1px solid var(--colour1);
  box-shadow: 0 0 1rem var(--shadow);
}
.support-list li img {
  width: 3rem;
  margin-bottom: 1rem;
}
.support-list li .title {
  transition: all 0.4s;
}
.support-list li a:hover .title {
  color: var(--colour1);
}
.support-list li .btn {
  padding: 0 1rem;
  font-size: 0.75rem;
  line-height: 2.5em;
  font-weight: bold;
  border-radius: 2em;
  color: #fff;
  background: var(--grey_bg2);
  transition: all 0.4s;
}
.support-list li .btn:hover {
  background: var(--colour2);
}
/*产品详情*/
.table-box {
  overflow-x: auto;
  border-radius: 0.75rem;
  box-shadow: 0 0 1rem var(--shadow);
}
.table-box table {
  min-width: 100%;
}
.product-parameter {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.product-parameter .table-box {
  margin-top: 2rem;
}
.product-parameter .table-box table {
  font-size: 0.9375rem;
}
.product-parameter .table-box table tr:first-of-type {
  white-space: nowrap;
}
.product-parameter .table-box table tr:first-of-type td {
  font-weight: bold;
  color: var(--colour1);
  background: var(--grey_bg);
}
.product-parameter .table-box table tr:hover td {
  background: var(--grey_bg);
}
/*技术服务*/
.technology-data {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 3rem;
}
.technology-data li {
  width: calc(33.33% - 0.875rem);
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--grey_bg);
}
.technology-data li .data {
  margin-right: 0.375rem;
}
.laboratory {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.laboratory li {
  width: calc(33.33% - 1rem);
  border: 1px solid var(--border_colour);
  border-radius: 1rem;
  background: #fff;
  overflow: hidden;
}
.laboratory li .img {
  width: 100%;
  overflow: hidden;
}
.laboratory li .info {
  width: 100%;
  padding-bottom: 1rem;
}
.laboratory li .title {
  margin-bottom: 1rem;
  font-size: 1.125rem;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border_colour);
  border-bottom: 1px solid var(--border_colour);
}
.laboratory li p {
  margin: 0 1.5rem;
  font-size: 0.875rem;
}
.certificate {
  margin-top: 3rem;
}
.certificate a {
  display: block;
  min-height: 100%;
  background: #fff;
  border: 1px solid var(--border_colour);
  border-radius: 1rem;
}
.certificate a .img {
  padding-bottom: 112.5%;
}
.certificate a .img img {
  max-width: 90%;
  max-height: 90%;
}
.certificate a .title {
  padding: 1rem 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.5em;
  border-top: 1px solid var(--border_colour);
  text-align: center;
}

/*分析能力*/
.equipment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.125rem;
}
.equipment-list li {
  width: calc(25% - 0.875rem);
  border: 1px solid var(--border_colour);
  border-radius: 0.75rem;
  overflow: hidden;
}
.equipment-list li .img img {
  max-width: 90%;
  max-height: 90%;
}
.equipment-list li .title {
  padding: 0.75rem 1rem;
  text-align: center;
  border-top: 1px solid var(--border_colour);
  font-size: 0.875rem;
  background: var(--grey_bg);
}
/*平台管控*/
.plant-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 3rem;
}
.plant-list li {
  width: calc(50% - 0.625rem);
}
.plant-list li .img {
  padding-bottom: 55%;
  border-radius: 1rem;
  overflow: hidden;
}
.plant-list li .img img {
  width: 100%;
  height: 100%;
}
/*国家项目*/
.project-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.125rem;
  margin-top: 3rem;
}
.project-list li {
  width: calc(33.33% - 0.75rem);
  padding: 1rem 1.5rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border_colour);
  transition: all 0.4s;
}
.project-list li:hover {
  border: 1px solid var(--colour1);
  box-shadow: 0 0 1rem var(--shadow);
}
.project-list li small {
  line-height: 1em;
}
.project-list li .title {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.5em;
  font-weight: bold;
  transition: all 0.4s;
}
.project-list li:hover .title {
  color: var(--colour1);
}
/**/
.inside-news {
  display: flex;
  flex-wrap: wrap;
  gap: 1.125rem;
  margin-top: 2rem;
}
.inside-news li {
  width: calc(33.33% - 0.75rem);
  border: 1px solid var(--border_colour);
  border-radius: 1rem;
  background: #fff;
  overflow: hidden;
  transition: all 0.4s;
}
.inside-news li:hover {
  border: 1px solid var(--colour1);
  box-shadow: 0 0 1rem var(--shadow);
}
.inside-news li a.title {
  display: block;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border_colour);
  font-size: 0.9375rem;
  line-height: 1.5em;
  color: var(--title);
  transition: all 0.4s;
}
.inside-news li:hover a.title {
  color: var(--colour1);
}
.inside-news li .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
}
.inside-news li .bottom span {
  line-height: 1rem;
  color: var(--small_text);
}
.inside-news li .bottom span.icon {
  font-weight: normal;
  font-size: 1.125rem;
  margin-right: 0.25rem;
}
.inside-news li .btn {
  display: inline-block;
  font-size: 0.75rem;
  color: #fff;
  background: var(--grey_bg2);
  border-radius: 2em;
  transition: all 0.4s;
}
.inside-news li .btn:hover {
  background: var(--colour2);
}
/*产品详情*/
.product-head {
  display: flex;
  gap: 1rem 3rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.product-head .img {
  width: 20rem;
  flex-shrink: 0;
}
.product-head .info {
  flex-grow: 1;
}
.product-head .info .title {
  margin-bottom: 2rem;
}
.product-head .info .summary {
  margin-bottom: 2.5rem;
}
.product-head .layout-btn {
  margin-right: 0.5rem;
  height: 3em;
  line-height: 1.5em;
}
.product-head .layout-btn > div {
  padding: 0 2em;
}
.product-head .layout-btn:before,
.product-head .layout-btn.layout-btn2:before {
  background: #fff;
}
.product-summary {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.product-summary table {
  width: 100%;
}
.product-summary table tr:hover td {
  background: var(--grey_bg);
}
.product-summary table tr:first-of-type td {
  font-weight: bold;
  color: var(--colour1);
  background: var(--grey_bg);
}
.product-summary .title {
  width: 100%;
  margin-bottom: 1rem;
}

.product-summary .data-list-box {
  width: 45%;
}
.product-summary .data-list {
  border: 1px solid var(--border_colour);
  border-radius: 1rem;
  overflow: hidden;
}
.product-summary .data-list a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border_colour);
  padding: 0.75rem 1.5rem;
}
.product-summary .data-list a:not(.collapsed) {
  background: var(--grey_bg);
}
.product-summary .data-list a:first-of-type {
  border-top: none;
}
.product-summary .data-list a span {
  display: inline-block;
  transition: all 0.4s;
}
.product-summary .data-list a:not(.collapsed) span {
  transform: rotate(-180deg);
}

.product-summary .data-list .data-body > div {
  border-top: 1px solid var(--border_colour);
  padding: 1rem 1.5rem;
}
.product-summary .data-list .data-body li {
  margin-left: 1rem;
  list-style: disc;
}
/*支持*/
.solution-item {
  padding-bottom: 1.75rem;
}

.solution-item .img-center {
  padding-bottom: 55%;
  overflow: hidden;
}
.solution-item .img-center img {
  width: 100%;
  height: 100%;
}
.solution-item .info {
  padding: calc(3vw * 0.7);
  transition: all 0.4s;
}
.solution-item a:hover .info {
  background: var(--grey_bg);
}
.solution-item .info .title {
  transition: all 0.4s;
}
.solution-item a:hover .info .title {
  color: var(--colour1);
}
.solution-item .info p {
  font-size: 0.875rem;
  color: var(--small_text);
  transition: all 0.4s;
}
.solution-item a:hover .info p {
  color: var(--text);
}

.solution-products {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}
.solution-products li {
  width: calc(50% - 0.5rem);
}
.solution-products li a {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 0.5rem;
  padding: 1rem;
  background: var(--grey_bg);
  transition: all 0.4s;
}
.solution-products li a:hover {
  background: #fff;
  box-shadow: 0 0 2rem var(--shadow);
}
.solution-products li a .img {
  width: 4rem;
  flex-shrink: 0;
  mix-blend-mode: multiply;
}
.solution-products li .title {
  transition: all 0.4s;
}
.solution-products li a:hover .title {
  color: var(--colour1);
}
/*服务*/

.service-list {
  padding: 0 1rem;
}
.service-list li {
  margin-top: 1rem;
  margin-bottom: 6rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}
.service-list li:last-of-type {
  margin: 0;
}
.service-list li .img {
  width: 40%;
}
.service-list li .info {
  width: 35%;
  text-align: center;
}
/*文章*/
.article {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.article .article-head {
  padding: 2rem 0 2.5rem;
  width: 66%;
}

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

.article .article-head .time {
  display: flex;
  align-items: center;
  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: 65%;
  line-height: 1.75em;
}

.article-body p {
  line-height: 1.75em;
}

.article-body iframe {
  max-width: 100% !important;
}
.article-other {
  width: 28%;
}
.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 1.125rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  line-height: 2.25em;
  border-radius: 2em;
  color: var(--small_text);
  background: var(--grey_bg);
}
.article-other .title {
  font-weight: 500;
  transition: all 0.4s;
}
.article-other a:hover .title {
  color: var(--colour1);
}
.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.5rem;
  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 .back {
  width: 100%;
  margin: 0 0 0.5rem;
}

.article-page .back a {
  display: flex;
  align-items: center;
  color: var(--text);
  font-size: 1rem;
  transition: all 0.4s;
}

.article-page .back a:hover {
  color: var(--colour1);
}

.article-page .back a span {
  display: inline-block;
  margin-right: 0.5rem;
  font-size: 1.25rem;
}

.article-page a.left,
.article-page a.right {
  flex-shrink: 1;
  display: inline-block;
  width: 49%;
  padding: 1.5rem;
  color: var(--text);
  background: #fff;
  transition: all 0.4s;
}

.article-page a.left p,
.article-page a.left span,
.article-page a.right p,
.article-page a.right span {
  margin: 0;
  font-size: 1rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  overflow: hidden;
  transition: all 0.4s;
}

.article-page a.left span,
.article-page a.right span {
  display: inline-block;
  font-size: 1rem;
  font-weight: bold;
  color: var(--colour1);
}

.article-page a.left:hover,
.article-page a.right:hover {
  box-shadow: 0 0 1rem var(--shadow);
  background: var(--colour1);
  transition: all 0.4s;
}

.article-page a.left:hover p,
.article-page a.left:hover span,
.article-page a.right:hover p,
.article-page a.right:hover span {
  color: #fff;
}

/*联系我们*/
.contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.contact-list li {
  width: calc(50% - 0.75rem);
  border: 1px solid var(--border_colour);
  border-radius: 1rem;
  overflow: hidden;
}
.contact-list li .title {
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid var(--border_colour);
  background: var(--grey_bg);
}
.contact-list li .info {
  padding: 1.5rem;
}
.contact-list li .info .icon {
  position: relative;
  padding-left: 2rem;
}
.contact-list li .info .icon:before {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.25em;
  line-height: 1.25em;
}
.contact-list li .info a {
  color: inherit;
}
.contact-list li .info a:hover {
  color: var(--colour2);
  text-decoration: underline;
}
#feedback .row {
  gap: 1.5rem 0;
}
#feedback input,
#feedback select,
#feedback textarea {
  border-radius: 0.5rem;
}
/*加入*/
.join-list {
  padding: 0 1.5rem;
  border: 1px solid var(--border_colour);
  border-radius: 1rem;
}

.join-list li a.join-btn {
  position: relative;
  display: block;
  padding: 1.5rem 3rem 1.5rem 0;
  border-bottom: 1px solid var(--border_colour);
}
.join-list li:last-of-type a.join-btn {
  border-bottom: none;
}
.join-list li a.join-btn:before {
  content: "\e711";
  position: absolute;
  right: 0;
  top: 50%;
  display: inline-block;
  font-family: "iconfont" !important;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  font-size: 1.5rem;
  text-align: center;
  font-style: normal;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0%, -50%) rotate(0deg);
  transition: all 0.4s;
}
.join-list li a.join-btn:not(.collapsed):before {
  color: var(--colour1);
  transform: translate(0%, -50%) rotate(45deg);
}
.join-list li a.join-btn .title {
  display: flex;
  line-height: 1.5rem;
  color: var(--colour1);
}
.join-list li a.join-btn .title .icon {
  display: inline-block;
  margin-right: 0.25rem;
  font-size: 1.375rem;
}
.join-list li a.join-btn .title .h6 {
  margin-bottom: 0;
}
.join-list li a.join-btn .summary {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--small_text);
}
.join-content > div {
  padding: 2rem 1.5rem;
  border-bottom: 1px solid var(--border_colour);
}
.join-content p {
  margin-bottom: 0.5em;
  font-size: 0.9375rem;
  line-height: 1.5rem;
  color: var(--title);
}