@charset "UTF-8";
@import url("/fonts/AlibabaPuhui/AlibabaPuhui.css");
@import url("/css/quil/quill.bubble.prod.css");
@import url("/css/quil/quill.core.prod.css");
@import url("/css/quil/quill.snow.prod.css");
@import url("/css/quil/quill-font.css");
@import url("/css/quill.snow.css");
* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 19.2px;
}

body {
  font-size: var(--base-text-size);
  max-width: 1920px !important;
  min-width: 960px !important;
  min-height: 100vh;
  margin: 0 auto;
}

@media screen and (max-width: 960px) {
  html {
    font-size: 9.6px !important;
  }
}
@media screen and (min-width: 960px) and (max-width: 1100px) {
  html {
    font-size: 9.6px !important;
  }
}
@media screen and (min-width: 1101px) and (max-width: 1280px) {
  html {
    font-size: 12.8px !important;
  }
}
@media screen and (min-width: 1281px) and (max-width: 1366px) {
  html {
    font-size: 13.36px !important;
  }
}
@media screen and (min-width: 1367px) and (max-width: 1536px) {
  html {
    font-size: 15.36px !important;
  }
}
@media screen and (min-width: 1536px) and (max-width: 1745px) {
  html {
    font-size: 17.45px !important;
  }
}
@media screen and (min-width: 1746px) and (max-width: 1920px) {
  html {
    font-size: 19.2px !important;
  }
}
@media screen and (min-width: 1921px) and (max-width: 3000px) {
  html {
    font-size: 19.21px;
  }
}
:root {
  --base-color-primary:#28508C;
  /*基础字颜色*/
  --base-text-color: #333;
  --base-text-color-dark: #2D3643;
  --base-text-color-black: #000;
  --base-text-color-secondary: #666;
  --base-text-color-gray: #8897AE;
  --base-text-color-white: white;
  --base-text-color-light: #D9E9FF;
  --gap: 1.0416666667rem;
  --gap-small: 0.78125rem;
  --gap-medium: 1.3020833333rem;
  --gap-mini: 0.78125rem;
  --gap-large: 2.6041666667rem;
  --base-text-size: 0.8333333333rem;
  --base-text-mini-size: 0.7291666667rem;
  --base-gap: 4.1666666667rem;
}

* {
  margin: 0;
  padding: 0;
  word-break: break-word;
  overflow-wrap: break-word;
  font-family: AlibabaPuhuiTi, sans-serif !important;
}

a:hover {
  color: var(--base-color-primary);
}

#icon_module {
  right: 0 !important;
  left: initial !important;
}

li {
  list-style: none;
}

p {
  margin-bottom: 0;
}

img {
  vertical-align: top;
  border: none;
}

.swiper {
  width: 100%;
  height: 100%;
}
.swiper-slide {
  text-align: center;
  font-size: 0.9375rem;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.base-page {
  width: 100%;
}
.base-page .breadcrumb {
  height: 2.0833333333rem;
  padding: 0 calc((100% - 83.3333333333rem) / 2);
  display: flex;
  align-items: center;
  background: #F7FAFF;
  margin-bottom: 0;
}
.base-page .breadcrumb-item {
  display: flex;
  align-items: center;
  font-size: 0.7291666667rem;
}
.base-page .breadcrumb-item > a {
  color: #3D4966;
  font-weight: 400;
}
.base-page .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  padding-right: 0.8333333333rem;
  color: #8897AE;
  content: "|";
}
.base-page .breadcrumb .breadcrumb-item + .breadcrumb-item {
  padding-left: 0.8333333333rem;
}
.base-page .breadcrumb .active > span {
  color: var(--base-color-primary);
}

.required::before {
  content: "*";
  color: red;
  margin-right: 0.4166666667rem;
}

/* 隐藏原生复选框 */
.custom-checkbox input[type=checkbox] {
  display: none;
}

/* 创建一个自定义的复选框样式 */
.custom-checkbox span {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.4166666667rem;
  border: 0.1041666667rem solid #AFBACA; /* 边框颜色 */
  vertical-align: middle;
  position: relative;
  background-color: #F2F7FF;
  border-radius: 0.2083333333rem;
}

/* 当复选框被选中时，显示一个内部的选中标记 */
.custom-checkbox input[type=checkbox]:checked + span {
  color: #fff; /* 选中标记的颜色 */
  background-color: var(--base-color-primary); /* 选中的背景颜色 */
  border: none;
}

.custom-checkbox span::after {
  content: "";
  position: absolute;
  display: none;
  left: 0.46875rem;
  top: 0.2083333333rem;
  width: 0.3645833333rem;
  height: 0.6770833333rem;
  border: solid #fff; /* 选中标记的线条颜色 */
  border-width: 0 0.15625rem 0.15625rem 0;
  transform: rotate(45deg); /* 将线条旋转成选中状态 */
}

.custom-checkbox input[type=checkbox]:checked + span::after {
  display: block;
}

.base-btn {
  padding: 1.0416666667rem 3.0208333333rem;
  height: 3.125rem;
  background: var(--base-color-primary);
  border-radius: 0.3125rem;
  color: #FFFFFF;
  cursor: pointer;
  font-size: var(--base-text-size);
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.message-box {
  position: fixed;
  top: 2.6041666667rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  height: 2.34375rem;
  padding: 0.5208333333rem 1.0416666667rem;
  border-radius: 0.2604166667rem;
  z-index: 9999;
  justify-content: flex-start;
  align-items: center;
  background-color: rgb(237, 242, 252);
  border: 1px solid rgb(235, 238, 245);
}
.message-box .message {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5208333333rem;
  color: #909399;
}

.text-error {
  color: red !important;
}

.text-ellipsis {
  white-space: nowrap; /* 强制文本在一行显示 */
  overflow: hidden; /* 隐藏超出容器的文本 */
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
}

.message-error {
  background-color: #fef0f0;
  border: 1px solid #fde2e2;
}
.message-error .message {
  color: rgb(245, 108, 108);
}

.message-success {
  background-color: #f0f9eb;
  border: 1px solid #e1f3d8;
}
.message-success .message {
  color: #67c23a;
}

.breadcrumb .breadcrumb-item a {
  text-decoration: none;
}

#header {
  width: 100%;
  height: 4.6875rem;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  font-size: 0;
  background-color: #FFFFFF;
}
#header .header {
  width: 83.3333333333rem;
  height: 4.6875rem;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5rem;
}
#header .header-logo {
  width: 2.0520833333rem;
  height: 1.4583333333rem;
}
#header .header-logo > img {
  width: 100%;
  height: 100%;
}
#header .header .navbar {
  flex: 1;
  height: 4.6875rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0;
  /*选中与输入移入时的字体颜色*/
  /**
   * @desc: 一级导航
   * @v: 1.0.0
   * @author: TengHui Song
   * @date: 2025/2/13 11:00
   **/
}
#header .header .navbar a {
  text-decoration: none;
  color: #455468;
}
#header .header .navbar .navbar-item:hover, #header .header .navbar .navbar-active {
  background: #F5F5F5 !important;
}
#header .header .navbar .navbar-item {
  padding: 0 1.5625rem;
  height: 4.6875rem;
  line-height: 4.6875rem;
  font-size: 0.8333333333rem;
  color: #455468;
  text-align: left;
  font-style: normal;
  text-transform: none;
  cursor: pointer;
  position: relative;
  box-sizing: border-box;
  /**
  * @desc: 仪器设备
  * @v: 1.0.0
  * @author: TengHui Song
  * @date: 2025/2/13 11:00
  **/
}
#header .header .navbar .navbar-item .instrument-device-sub {
  width: 100%;
  height: 0;
  position: fixed;
  top: 4.6875rem;
  left: 0;
  right: 0;
  z-index: 9998;
  cursor: initial;
  overflow: hidden;
  transition: height 0.3s;
}
#header .header .navbar .navbar-item .instrument-device-sub-content {
  width: 100%;
  padding: 0 calc((100% - 83.3333333333rem) / 2);
  height: 100%;
  background-color: #FFFFFF;
  overflow: hidden;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 3.125rem;
}
#header .header .navbar .navbar-item .instrument-device-sub-title {
  height: 2.7083333333rem;
  padding: 1.5625rem 0 0.5208333333rem 0;
  font-size: 0.8333333333rem;
  line-height: 1.1458333333rem;
  font-weight: bold;
  letter-spacing: 0em;
  font-variation-settings: "opsz" auto;
  font-feature-settings: "kern" on;
  /* 正文色/正文色 */
  color: var(--base-text-color);
  margin-bottom: 0.625rem;
}
#header .header .navbar .navbar-item .instrument-device-sub-type, #header .header .navbar .navbar-item .instrument-device-sub-product {
  width: 23.0208333333rem;
  height: 27.3958333333rem;
  overflow: hidden;
}
#header .header .navbar .navbar-item .instrument-device-sub-type:hover, #header .header .navbar .navbar-item .instrument-device-sub-product:hover {
  overflow: auto;
}
#header .header .navbar .navbar-item .instrument-device-sub-line {
  width: 1px;
  height: 27.3958333333rem;
  background-color: #D8D8D8;
}
#header .header .navbar .navbar-item .instrument-device-sub-item {
  height: 2.1875rem;
  padding: 0.5208333333rem 0px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1.0416666667rem;
  cursor: pointer;
}
#header .header .navbar .navbar-item .instrument-device-sub-item-name {
  flex: 1;
  height: 1.1458333333rem;
  font-size: 0.8333333333rem;
  line-height: 1.1458333333rem;
  letter-spacing: 0em;
  font-weight: normal;
  font-variation-settings: "opsz" auto;
  font-feature-settings: "kern" on;
  /* 正文色/正文色 */
  color: var(--base-text-color);
  cursor: pointer;
}
#header .header .navbar .navbar-item .instrument-device-sub-item-icon {
  width: 0.9375rem;
  height: 0.9375rem;
  background-size: 100%;
  background-repeat: no-repeat;
  background-image: url("/images/arrow-right-fill.webp");
}
#header .header .navbar .navbar-item .instrument-device-sub-item:hover .instrument-device-sub-item-name, #header .header .navbar .navbar-item .instrument-device-sub .instrument-device-sub-item-active .instrument-device-sub-item-name {
  color: var(--base-color-primary);
}
#header .header .navbar .navbar-item .instrument-device-sub-item:hover .instrument-device-sub-item-icon, #header .header .navbar .navbar-item .instrument-device-sub .instrument-device-sub-item-active .instrument-device-sub-item-icon {
  background-image: url("/images/arrow-right-s-fill-active.webp");
}
#header .header .navbar .navbar-item .instrument-device-sub .instrument-device-sub-item-active .instrument-device-sub-item-name {
  color: #084CC0;
}
#header .header .navbar .navbar-item .instrument-device-sub-detail {
  width: 24.7916666667rem;
}
#header .header .navbar .navbar-item .instrument-device-sub-detail-top {
  width: 100%;
  height: 15.625rem;
  padding: 1.5625rem 0;
  border-bottom: 1px solid #D8D8D8;
  display: flex;
  justify-content: center;
  align-items: center;
}
#header .header .navbar .navbar-item .instrument-device-sub-detail-top img {
  width: 20.0520833333rem;
  height: 11.4583333333rem;
}
#header .header .navbar .navbar-item .instrument-device-sub-detail-bottom {
  width: 100%;
  height: 13.125rem;
  padding: 1.5625rem 0;
}
#header .header .navbar .navbar-item .instrument-device-sub-detail-name {
  height: 1.1458333333rem;
  font-size: 16px;
  font-weight: bold;
  line-height: normal;
  display: flex;
  align-items: flex-end;
  letter-spacing: 0;
  font-variation-settings: "opsz" auto;
  font-feature-settings: "kern" on;
  /* 正文色/正文色 */
  color: var(--base-text-color);
  margin-bottom: 1.0416666667rem;
}
#header .header .navbar .navbar-item .instrument-device-sub-detail-content {
  /* 自动布局 */
  display: flex;
  flex-direction: column;
  gap: 1.0416666667rem;
  flex-grow: 1;
  align-self: stretch;
}
#header .header .navbar .navbar-item .instrument-device-sub-detail-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header .header .navbar .navbar-item .instrument-device-sub-detail-item-label {
  width: 5.2083333333rem;
  height: 0.9895833333rem;
  font-size: 0.7291666667rem;
  font-weight: normal;
  line-height: normal;
  letter-spacing: 0em;
  font-variation-settings: "opsz" auto;
  font-feature-settings: "kern" on;
  /* 正文色/正文色 */
  color: var(--base-text-color);
}
#header .header .navbar .navbar-item .instrument-device-sub-detail-item-value {
  flex: 1;
  height: 0.9895833333rem;
  opacity: 1;
  font-size: 0.7291666667rem;
  font-weight: normal;
  line-height: normal;
  text-align: right;
  letter-spacing: 0em;
  font-variation-settings: "opsz" auto;
  font-feature-settings: "kern" on;
  /* 正文色/正文辅助色 */
  color: var(--base-text-color-gray);
}
#header .header .navbar .navbar-item .solution-sub {
  width: 13.5416666667rem;
  height: 0;
  /* 自动布局 */
  display: flex;
  flex-direction: row;
  gap: 3.125rem;
  background: #FFFFFF;
  overflow: hidden;
  position: absolute;
  left: 0rem;
  top: 4.7395833333rem;
  transition: height 0.3s;
}
#header .header .navbar .navbar-item .solution-sub-content {
  width: 100%;
  height: 100%;
}
#header .header .navbar .navbar-item .solution-sub-content .solution-item {
  width: 9.375rem;
  height: 2.6041666667rem;
  border-radius: 0;
  /* 自动布局 */
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0.5208333333rem 0.5208333333rem;
  gap: 0.5208333333rem;
  cursor: pointer;
}
#header .header .navbar .navbar-item .solution-sub-content .solution-item-text {
  flex: 1;
  font-size: 0.8333333333rem;
  font-weight: normal;
  line-height: normal;
  letter-spacing: 0;
  font-variation-settings: "opsz" auto;
  font-feature-settings: "kern" on;
  /* 正文色/正文色 */
  color: var(--base-text-color);
}
#header .header .navbar .navbar-item .solution-sub-content .solution-item:hover .solution-item-text {
  color: var(--base-color-primary);
}
#header .header .navbar .navbar-item .solution-sub-content .solution-item:hover .solution-item-icon {
  width: 0.9375rem;
  height: 0.9375rem;
  background-image: url("/images/arrow-right-s-fill-active.webp");
}
#header .header-right {
  width: fit-content;
  height: 2.03125rem;
  /* 自动布局 */
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 1.5625rem;
}
#header .header-right-search {
  width: 0.9375rem;
  height: 0.9375rem;
}
#header .header-right-search img {
  width: 100%;
  height: 100%;
}
#header .header-right-mobile {
  width: fit-content;
  min-width: 8.2291666667rem;
  height: 1.9791666667rem;
  /* 自动布局 */
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0.5208333333rem 1.0416666667rem;
  gap: 0.5208333333rem;
  background: var(--base-color-primary);
  box-sizing: border-box !important;
}
#header .header-right-mobile-icon {
  width: 0.9375rem;
  height: 0.9375rem;
}
#header .header-right-mobile-text {
  height: 0.9375rem;
  line-height: 1;
  font-size: 0.7291666667rem;
  font-weight: normal;
  letter-spacing: 0em;
  /* 纯白 */
  color: #FFFFFF;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

#model-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 9997;
}

.footer {
  padding: 0 calc((100% - 83.3333333333rem) / 2);
  background-image: url("/images/footer.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-color: #3D3D3D;
}
.footer-top {
  width: 83.3333333333rem;
  min-height: 29.2708333333rem;
  padding: 3.125rem 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 3.125rem;
}
.footer-top-body {
  width: 1016px;
  min-height: 374px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 3.125rem;
}
.footer-top-body .footer-type {
  width: 16.0416666667rem;
}
.footer-top-body .footer-type-title {
  height: 1.8229166667rem;
  font-size: 1.1458333333rem;
  line-height: 1.1458333333rem;
  border-bottom: 1px solid #999999;
  /* 纯白 */
  color: var(--base-text-color-white);
}
.footer-top-body .footer-type-item {
  width: 100%;
  min-height: 1.9791666667rem;
  /* 自动布局 */
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 0.8333333333rem;
  line-height: 1.9791666667rem;
}
.footer-top-body .footer-type-item a {
  color: var(--base-text-color-white);
}
.footer-top-info {
  width: 27.2916666667rem;
  height: 20.9375rem;
  opacity: 1;
  /* 自动布局 */
  display: flex;
  flex-direction: column;
  padding: 0px;
  gap: 0;
}
.footer-top-info-logo {
  width: 2.6041666667rem;
  height: 1.8346354167rem;
}
.footer-top-info-name {
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--base-text-color-white);
  margin-top: 2.0833333333rem;
}
.footer-top-info-address {
  font-size: 0.9375rem;
  color: var(--base-text-color-white);
  margin-top: 1.0416666667rem;
}
.footer-top-info-phone1 {
  font-size: 0.9375rem;
}
.footer-top-info-phone2 {
  font-size: 0.9375rem;
}
.footer-top-info-phone3 {
  font-size: 0.9375rem;
}
.footer-top-info-phone {
  margin-top: 1.0416666667rem;
}
.footer-top-info-phone1, .footer-top-info-phone2, .footer-top-info-phone3 {
  height: 1.3020833333rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0px;
  gap: 0.625rem;
  color: var(--base-text-color-white);
}
.footer-top-info-phone2, .footer-top-info-phone3 {
  margin-top: 1.0416666667rem;
}
.footer-top-info-code {
  width: 100%;
  margin-top: 1.5625rem;
  display: flex;
  align-items: center;
  gap: 2.0833333333rem;
}
.footer-top-info-code > div {
  width: 5.7291666667rem;
}
.footer-top-info-code > div p {
  width: 100%;
  color: #ffffff;
  text-align: center;
  margin-top: 0.2604166667rem;
  font-size: 0.625rem;
}
.footer-top-info-code img {
  width: 5.7291666667rem;
  height: 5.7291666667rem;
}
.footer-public {
  width: 83.3333333333rem;
  height: 4.1666666667rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0.4166666667rem;
  padding-bottom: 1.6666666667rem;
}
.footer-public p {
  height: 1.0416666667rem;
  font-weight: 400;
  font-size: 0.7291666667rem;
  color: #D7DFE9;
  line-height: 1.0416666667rem;
  margin-bottom: 0;
}
.footer-public p a {
  color: #D7DFE9;
}
.footer-line {
  width: 100%;
  height: 1px;
  background: rgba(217, 233, 255, 0.1);
  margin-bottom: 2.6041666667rem;
}

.message-board {
  width: 100%;
  background: #FFFFFF;
  padding: 4.1666666667rem 0;
  box-sizing: border-box;
}
.message-board-form {
  width: 46.875rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.0416666667rem;
}
.message-board-form-item {
  width: 100%;
  display: flex;
}
.message-board-form-item-label {
  width: 11.4583333333rem;
  height: 2.6041666667rem;
  padding: 0.7291666667rem 0.8333333333rem;
  box-sizing: border-box;
  font-weight: 400;
  font-size: var(--base-text-size);
  color: var(--base-text-color-dark);
  line-height: 0.9895833333rem;
  margin-bottom: 0;
}
.message-board-form-item-value {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8333333333rem;
}
.message-board-form-item-value > input {
  flex: 1;
}
.message-board-form-item-value-btn-code {
  width: 9.375rem;
  height: 2.6041666667rem;
  background: var(--base-color-primary);
  border-radius: 0.3125rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  cursor: pointer;
}
.message-board-form-item-value-btn-code-text {
  width: 9.375rem;
  height: 2.6041666667rem;
  background: var(--base-color-primary);
  border-radius: 0.3125rem;
  justify-content: center;
  align-items: center;
  color: #fff;
  cursor: pointer;
  display: none;
}
.message-board-form-item-value .form-check {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 0;
}
.message-board-form-item-value .form-check > input {
  width: 1.25rem;
  height: 1.25rem;
  background: #F2F7FF;
  border-radius: 0.2083333333rem;
  border: 0.1041666667rem solid #AFBACA;
}
.message-board-form-item-value .form-check > label {
  margin-left: 0.4166666667rem;
  margin-bottom: 0;
}
.message-board-form-item input, .message-board-form-item textarea {
  height: 2.6041666667rem;
  outline: none;
  border: none;
  padding: 0.7291666667rem 0.8333333333rem;
  box-sizing: border-box;
  font-weight: 400;
  line-height: 0.9895833333rem;
  background: #F7FAFF;
  border-radius: 0.3125rem;
  font-size: 0.8333333333rem;
}
.message-board-form-item input::placeholder, .message-board-form-item textarea::placeholder {
  font-weight: 400;
  color: #8897AE;
  font-size: 0.8333333333rem;
  line-height: 0.9895833333rem;
}
.message-board-form-item textarea {
  min-height: 6.25rem;
  resize: none;
}
.message-board-form-btn {
  justify-content: flex-end;
  margin-top: 0.4166666667rem;
}
.message-board-form-btn-submit {
  width: 9.375rem;
  height: 3.125rem;
  background: var(--base-color-primary);
  border-radius: 0.3125rem;
  color: var(--base-text-color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: var(--base-text-size);
  cursor: pointer;
}

.related-cases {
  width: 100%;
}
.related-cases-header {
  width: 100%;
  height: 2.6041666667rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.0833333333rem;
}
.related-cases-header-look-all {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  height: 1.1458333333rem;
  font-size: 0.625rem;
  color: var(--base-text-color-gray);
  line-height: 0.9895833333rem;
}
.related-cases-header-look-all:hover {
  color: var(--base-text-color-gray) !important;
}
.related-cases-header-look-all img {
  margin-left: 0.4166666667rem;
}
.related-cases-title {
  font-weight: bold;
  font-size: 1.875rem;
  color: var(--base-text-color);
  line-height: 2.1875rem;
  margin-bottom: 0;
}
.related-cases-content {
  width: 83.3333333333rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1.25rem;
}
.related-cases-content-loading {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.related-cases-item {
  width: 19.8958333333rem;
  background-color: #FFFFFF;
  border-radius: 0.3125rem;
  text-decoration: none !important;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.related-cases-item > div {
  padding: 0.7291666667rem 1.25rem;
  background-color: #FFFFFF;
  text-decoration: none;
}
.related-cases-item-img {
  width: 100%;
  height: 12.5rem;
  cursor: pointer;
  padding: 0;
}
.related-cases-item-name {
  width: 100%;
  height: 1.5625rem;
  font-weight: 400;
  font-size: 0.8333333333rem;
  color: var(--base-text-color);
  line-height: 1.5625rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  margin-bottom: 0.2083333333rem;
  text-decoration: none;
}
.related-cases-item-desc {
  width: 100%;
  height: 3.4375rem;
  display: -webkit-box;
  font-weight: 400;
  font-size: var(--base-text-mini-size);
  color: var(--base-text-color-secondary);
  line-height: 1.1458333333rem;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  text-decoration: none;
}
.related-cases-item-time {
  color: var(--base-text-color);
}
.related-cases-item-bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0 !important;
}
.related-cases-item-bottom-img {
  width: 2.6041666667rem;
  height: 2.6041666667rem;
  overflow: hidden;
  filter: sepia(1) hue-rotate(180deg) brightness(0.8);
}
.related-cases-item-bottom-time {
  color: var(--base-text-color);
  font-size: 0.7291666667rem;
}

.related-equipment {
  width: 100%;
  padding-bottom: 4.1666666667rem !important;
  cursor: initial;
}
.related-equipment-header {
  width: 100%;
  height: 2.6041666667rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.0833333333rem;
}
.related-equipment-header-look-all {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  height: 1.1458333333rem;
  font-size: 0.625rem;
  color: var(--base-text-color-secondary);
  line-height: 0.9895833333rem;
}
.related-equipment-header-look-all:hover {
  color: var(--base-text-color-secondary);
}
.related-equipment-header-look-all img {
  margin-left: 0.4166666667rem;
}
.related-equipment-title {
  font-weight: bold;
  font-size: 1.875rem;
  color: var(--base-text-color);
  line-height: 2.1875rem;
  margin-bottom: 0;
}
.related-equipment-content {
  width: 83.3333333333rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.related-equipment-item {
  width: 19.8958333333rem;
  background-color: #FFFFFF;
  border-radius: 0.3125rem;
  cursor: pointer;
  text-decoration: none !important;
}
.related-equipment-item-info {
  padding: 0.8854166667rem 1.25rem 1.0416666667rem;
  background-color: #FFFFFF;
}
.related-equipment-item-img {
  width: 19.8958333333rem;
  height: 12.5rem;
  padding: 1.0416666667rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #F7FAFF;
}
.related-equipment-item-img > img {
  max-width: 100%;
  max-height: 100%;
}
.related-equipment-item-img > img:hover {
  transform: scale(1.2);
}
.related-equipment-item-name {
  width: 100%;
  height: 1.5625rem;
  font-weight: normal;
  font-size: 0.8333333333rem;
  color: var(--base-text-color-dark);
  line-height: 1.5625rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  margin-bottom: 0.2083333333rem;
}
.related-equipment-item-desc {
  display: flex;
  height: 1.1458333333rem;
  justify-content: flex-start;
  align-items: center;
}
.related-equipment-item-desc-label, .related-equipment-item-desc-value {
  margin-left: 0 !important;
  height: 2.2916666667rem;
  line-height: 1.1458333333rem;
  font-size: 0.7291666667rem;
  color: var(--base-text-color-secondary);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.related-equipment-item-desc-value {
  flex: 1;
  font-weight: 400;
  margin-left: 0.2604166667rem;
}
.related-equipment-item-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.25rem 1.25rem;
}
.related-equipment-item-btn .quotation {
  height: 1.9270833333rem;
  padding: 0.4166666667rem 0.8333333333rem;
  background-color: #FFFFFF;
  border: 1px solid var(--base-color-primary);
  color: var(--base-color-primary);
  font-size: 0.7291666667rem;
  font-weight: normal;
}
.related-equipment-item-btn .quotation:hover {
  background-color: var(--base-color-primary) !important;
  color: #FFFFFF !important;
}
.related-equipment-item-btn .look-detail {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  cursor: pointer;
  color: var(--base-text-color-gray);
  font-size: 0.625rem;
}
.related-equipment-item-btn .look-detail > img {
  width: 1.6666666667rem;
  height: 0.8333333333rem;
  margin-left: 0.4166666667rem;
}

.software-platform-page {
  width: 100%;
}
.software-platform-page .banner {
  width: 100%;
  height: 31.25rem;
  background-image: url("/images/software-platform/banner.webp");
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 8.3333333333rem;
}
.software-platform-page .banner-body {
  width: 46.1979166667rem;
  height: 16.6666666667rem;
}
.software-platform-page .banner-title {
  height: 2.9166666667rem;
  font-weight: bold;
  font-size: 2.0833333333rem;
  color: var(--base-text-color-dark);
  line-height: 2.9166666667rem;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin-bottom: 0.5208333333rem;
}
.software-platform-page .banner-desc {
  width: 46.1979166667rem;
  height: 9.6875rem;
  font-weight: 400;
  font-size: 0.7291666667rem;
  color: var(--base-text-color-dark);
  line-height: 1.6666666667rem;
  text-align: left;
  font-style: normal;
  text-transform: none;
}
.software-platform-page .banner-btn {
  margin-top: 0.5208333333rem;
  width: 10.4166666667rem;
  height: 3.3854166667rem;
  background: linear-gradient(135deg, rgba(11, 153, 255, 0.9) 0%, rgba(167, 218, 255, 0.9) 99%);
  box-shadow: 0.625rem 0.625rem 0.5208333333rem 0px rgba(9, 77, 192, 0.6);
  border-radius: 0.5208333333rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: AlibabaPuHuiTi, AlibabaPuHuiTi;
  font-weight: 700;
  font-size: 0.9375rem;
  color: #FFFFFF;
  text-align: center;
  font-style: normal;
  text-transform: none;
  cursor: pointer;
  text-decoration: none;
}
.software-platform-page .product-value, .software-platform-page .rich-product-function, .software-platform-page .product-function, .software-platform-page .contact-trial {
  width: 100%;
  padding: var(--base-gap) 8.3333333333rem;
}
.software-platform-page .product-value-subtitle, .software-platform-page .rich-product-function-subtitle, .software-platform-page .product-function-subtitle, .software-platform-page .contact-trial-subtitle {
  width: 100%;
  text-align: center;
  height: 0.9895833333rem;
  font-family: AlibabaPuHuiTi, AlibabaPuHuiTi;
  font-weight: 400;
  font-size: 0.7291666667rem;
  color: var(--base-text-color-gray);
  line-height: 0.9895833333rem;
  font-style: normal;
  text-transform: none;
  margin-top: 0.5208333333rem;
  margin-bottom: 2.6041666667rem;
}
.software-platform-page .product-value-title, .software-platform-page .rich-product-function-title, .software-platform-page .product-function-title, .software-platform-page .contact-trial-title {
  width: 100%;
  text-align: center;
  height: 2.9166666667rem;
  font-family: AlibabaPuHuiTi, AlibabaPuHuiTi;
  font-weight: 700;
  font-size: 2.0833333333rem;
  color: var(--base-text-color);
  line-height: 2.9166666667rem;
  font-style: normal;
  text-transform: none;
}
.software-platform-page .product-value {
  width: 100%;
  height: 24.4791666667rem;
  background: #F7FAFF;
}
.software-platform-page .product-value-body {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5625rem;
}
.software-platform-page .product-value-item {
  width: 12.6041666667rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.0416666667rem;
}
.software-platform-page .product-value-item:nth-child(1) .product-value-item-icon {
  background-image: url("/images/software-platform/product-value-icon1.webp");
}
.software-platform-page .product-value-item:nth-child(2) .product-value-item-icon {
  background-image: url("/images/software-platform/product-value-icon2.webp");
}
.software-platform-page .product-value-item:nth-child(3) .product-value-item-icon {
  background-image: url("/images/software-platform/product-value-icon3.webp");
}
.software-platform-page .product-value-item:nth-child(4) .product-value-item-icon {
  background-image: url("/images/software-platform/product-value-icon4.webp");
}
.software-platform-page .product-value-item:nth-child(5) .product-value-item-icon {
  background-image: url("/images/software-platform/product-value-icon5.webp");
}
.software-platform-page .product-value-item:nth-child(6) .product-value-item-icon {
  background-image: url("/images/software-platform/product-value-icon6.webp");
}
.software-platform-page .product-value-item-icon {
  display: block;
  width: 3.5416666667rem;
  height: 3.28125rem;
  border-radius: 0;
  background-size: 100%;
  background-repeat: no-repeat;
}
.software-platform-page .product-value-item-name {
  height: 1.1458333333rem;
  font-family: AlibabaPuHuiTi, AlibabaPuHuiTi;
  font-weight: 400;
  font-size: var(--base-text-size);
  color: var(--base-text-color-dark);
  line-height: 1.1458333333rem;
  text-align: center;
  font-style: normal;
  text-transform: none;
}
.software-platform-page .product-value-item-desc {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.software-platform-page .product-value-item-desc-value {
  height: 0.9895833333rem;
  text-align: center;
  font-family: AlibabaPuHuiTi, AlibabaPuHuiTi;
  font-weight: 400;
  font-size: 0.7291666667rem;
  color: #767676;
  line-height: 0.9895833333rem;
  font-style: normal;
  text-transform: none;
}
.software-platform-page .rich-product-function {
  width: 100%;
  height: 60.1041666667rem;
  background: #FFFFFF;
}
.software-platform-page .rich-product-function-body {
  width: 83.3333333333rem;
  height: 45.3645833333rem;
  background-image: url("/images/software-platform/product-function.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  margin-top: 2.6041666667rem;
}
.software-platform-page .product-function {
  background: #F7FAFF;
}
.software-platform-page .product-function-content .statistics .product-function-content-item-icon {
  background-image: url("/images/software-platform/tongji.webp");
}
.software-platform-page .product-function-content .test-data-upload .product-function-content-item-icon {
  background-image: url("/images/software-platform/upload.webp");
}
.software-platform-page .product-function-content .credit .product-function-content-item-icon {
  background-image: url("/images/software-platform/credit.webp");
}
.software-platform-page .product-function-content .credit .product-function-content-item-body-ul-li:after {
  top: 0;
  bottom: 0;
  margin: auto;
}
.software-platform-page .product-function-content .credit .product-function-content-item-body-ul-li:before {
  top: 0;
  bottom: 0;
  margin: auto;
}
.software-platform-page .product-function-content .credit .product-function-content-item-body-ul-li-desc {
  padding-left: 2.2916666667rem;
}
.software-platform-page .product-function-content .deliver .product-function-content-item-icon {
  background-image: url("/images/software-platform/deliver.webp");
}
.software-platform-page .product-function-content-item {
  flex: 1;
  margin-top: 1.5625rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.71875rem;
}
.software-platform-page .product-function-content-item-icon {
  width: 32.2916666667rem;
  height: 22.3958333333rem;
  background-repeat: no-repeat;
  background-size: 100%;
}
.software-platform-page .product-function-content-item-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.software-platform-page .product-function-content-item-body-title {
  height: 1.71875rem;
  line-height: 1.71875rem;
  margin-bottom: 0.5208333333rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--base-text-color);
  text-align: left;
  font-style: normal;
  text-transform: none;
}
.software-platform-page .product-function-content-item-body-desc {
  height: 1.1458333333rem;
  font-weight: 400;
  font-size: 0.8333333333rem;
  color: var(--base-text-color);
  line-height: 1.1458333333rem;
  text-align: left;
  font-style: normal;
  text-transform: none;
}
.software-platform-page .product-function-content-item-body-ul {
  margin-top: 1.5625rem;
  display: flex;
  flex-direction: column;
  gap: 1.5625rem;
  justify-content: flex-start;
  align-items: center;
}
.software-platform-page .product-function-content-item-body-ul-li {
  width: 100%;
  position: relative;
}
.software-platform-page .product-function-content-item-body-ul-li::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(11, 153, 255, 0.2);
  border-radius: 50%;
  width: 1.25rem;
  height: 1.25rem;
  box-sizing: content-box;
}
.software-platform-page .product-function-content-item-body-ul-li::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0.4166666667rem;
  left: 0.4166666667rem;
  background: var(--base-color-primary);
  border-radius: 50%;
  width: 0.4166666667rem;
  height: 0.4166666667rem;
  box-sizing: content-box;
}
.software-platform-page .product-function-content-item-body-ul-li-name {
  height: 1.1458333333rem;
  font-weight: 700;
  font-size: 0.8333333333rem;
  color: var(--base-text-color);
  line-height: 1.1458333333rem;
  text-align: left;
  font-style: normal;
  text-transform: none;
  padding-left: 2.2916666667rem;
  margin-bottom: 0.5208333333rem;
}
.software-platform-page .product-function-content-item-body-ul-desc {
  font-family: AlibabaPuHuiTi, AlibabaPuHuiTi;
  font-weight: 400;
  font-size: 0.8333333333rem;
  color: var(--base-text-color);
  line-height: 1.1458333333rem;
  text-align: left;
  font-style: normal;
  text-transform: none;
}
.software-platform-page .contact-trial {
  position: relative;
}
.software-platform-page .contact-trial .message-board-form {
  margin-top: 3.125rem;
}
.software-platform-page .contact-trial .message-board-form input {
  background-color: #FFFFFF;
  border-radius: 0.2083333333rem;
  border: 1px solid #D8D8D8;
}
.software-platform-page .contact-trial .message-board-form select {
  flex: 1;
  height: 2.34375rem;
  border: 1px solid #D8D8D8;
  color: #767676;
  padding: 0 0.5208333333rem;
  appearance: none;
  background-image: url("/images/arrow-down-s-fill.svg");
  background-size: 1.0416666667rem;
  background-repeat: no-repeat;
  background-position: calc(100% - 0.5208333333rem) center;
  border-radius: 0.2083333333rem;
  outline: none;
}
.software-platform-page .contact-trial .message-board-form option {
  color: var(--base-text-color);
}
.software-platform-page .contact-trial .message-board-form textarea {
  background-color: #FFFFFF;
  border-radius: 0.2083333333rem;
  border: 1px solid #D8D8D8;
}
.software-platform-page .contact-trial .message-board-form-btn {
  width: 100%;
  justify-content: center;
}
.software-platform-page #contact-trial {
  position: absolute;
  top: -2.6041666667rem;
}
.software-platform-page .related-cases-body {
  padding: 3.125rem 8.3333333333rem;
  background: #F7FAFF;
}

/*# sourceMappingURL=software-platform.css.map */
