:root {
  --primary-red: #fc0301;
  --primary-dark: #222;
  --dark-gray: #444;
  --medium-gray: #666;
  --light-gray: #f5f5f5;
  --white: #fff;
  --transition: all 0.3s ease;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "ihate";
  src: url("ihatefutur.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.white {
  color: #fff;
}
html {
  scroll-behavior: smooth;
  font-size: 14px;
}
button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
  background: transparent;
  border: 1px solid #ccc;
  border-radius: 0;
  outline: none;
}
body {
  font-size: 14px;
  font-family: "Inter Placeholder", sans-serif;
  min-width: 1300px;
}
/* 按钮特定样式 */
button {
  cursor: pointer;
  background-color: transparent;
  border: none;
  padding: 0;
}
/* 移除输入框的默认外观 */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}
/* 移除数字输入框的上下箭头 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* 链接样式重置 */
a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
}
a:hover {
  text-decoration: none;
}
/* 列表样式重置 */
ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flex-end {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.container {
  box-sizing: border-box;
  padding: 0px 60px;
}
.container2 {
  box-sizing: border-box;
  padding-left: min(8%, 200px);
  padding-right: min(8%, 200px);
  overflow: hidden;
}
.btn {
  background: var(--primary-red);
  color: #fff;
  font-size: 22px;
  box-shadow: 0 0 10px var(--primary-red);
  -webkit-box-shadow: 0 0 10px var(--primary-red);
  width: fit-content;
  padding: 0px 24px;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  display: flex;
  height: 52px;
  align-items: center;
  gap: 8px;
}
.btn i {
  font-size: 32px;
}
.btn span {
  display: block;
  overflow: hidden;
  height: 34px;
  padding-right: 6px;
}
.btn span p {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  margin: 0;
  font-weight: normal;
  height: 34px;
  display: flex;
  align-items: center;
  font-size: 22px;
  text-transform: uppercase;
}
.btn:hover span p {
  transform: translateY(-100%);
}
.header-top {
  width: 100%;
}
.header-top .header-top-nav {
  height: 26px;
  background: #111;
  color: #ccc;
  gap: 20px;
}
.header-top .header-top-nav a {
  height: 100%;
  font-size: 13px;
  display: flex;
  gap: 4px;
  padding: 0px 8px;
  align-items: center;
}
.header-top .header-top-nav a.active {
  color: var(--primary-dark);
}
.header-top .header-top-nav a.active .icon-xiajiantou {
  transform: scaleY(-1);
}
.header-top .header-top-nav a.active:hover {
  color: var(--primary-red);
}
.header-top .header-top-nav a img {
  height: 12px;
}
.header-top .header-top-nav a i {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  font-size: 14px;
}
.header-top .header-top-nav a i.icon-xiajiantou {
  font-size: 8px;
}
.header-top .header-top-nav a:hover {
  color: #eee;
}
.header-ent {
  background: #fafafa;
  height: 0px;
  overflow: hidden;
  transition: all 0.3s;
}
.header-ent.active {
  height: var(--heightPx);
}
.header-ent .sub-company {
  display: flex;
  justify-content: flex-end;
  padding: 40px 0px;
  gap: 32px;
}
.header-ent .sub-company a {
  max-width: 280px;
  font-weight: normal;
}
.header-ent .sub-company a b {
  font-size: 16px;
  font-weight: normal;
  padding-bottom: 10px;
  display: flex;
  justify-content: flex-start;
  gap: 4px;
  transition: all 0.3s ease;
}
.header-ent .sub-company a b i {
  width: 16px;
  height: 16px;
  margin-top: 3px;
}
.header-ent .sub-company a p {
  color: #666;
  box-sizing: border-box;
  padding-left: 16px;
  font-size: 14px;
}
.header-ent .sub-company a:hover b {
  color: var(--primary-red);
}
.header-ent .sub-company a:hover b i {
  transform: rotate(360deg);
  transition: transform 0.3s;
}
.nav {
  background: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 14px rgba(100, 100, 100, 0.08);
}
.nav .logo {
  height: 96px;
  display: flex;
  align-items: center;
}
.nav .logo img {
  height: 86px;
}
.header-tel {
  height: 36px;
  display: flex;
  align-items: center;
  position: relative;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  padding: 0px 0px 0px 12px;
  color: #fff;
  overflow: hidden;
}
.header-tel::before {
  content: "";
  width: 100%;
  background: #161211;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.header-tel::after {
  content: "";
  width: 100%;
  background: var(--primary-red);
  height: 100%;
  position: absolute;
  left: 100%;
  top: 0px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.header-tel b {
  padding: 0px 6px 0px 4px;
  font-size: 15px;
  font-family: misans;
  letter-spacing: 1px;
  position: relative;
  z-index: 10;
}
.header-tel span {
  position: relative;
  right: 0px;
  top: 0px;
  padding: 3px;
  z-index: 10;
}
.header-tel span i {
  background: var(--primary-red);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  overflow: hidden;
}
.header-tel:hover::after {
  left: 0px;
}
.header-tel:hover::before {
  left: -100%;
}
.header-nav {
  width: 680px;
}
.header-nav > ul {
  display: flex;
  justify-content: space-between;
}
.header-nav > ul > li {
  position: relative;
  padding-top: 23px;
  height: 80px;
}
.header-nav > ul > li > a {
  text-transform: uppercase;
  font-size: 15px;
  color: #222;
  width: 100%;
  height: 34px;
  line-height: 34px;
  text-align: center;
  display: block;
  padding: 0px 20px;
  border-radius: 100px;
  -webkit-border-radius: 100px;
}
.header-nav > ul > li > a:hover {
  background-color: var(--primary-red);
  color: #fff;
}
.header-nav > ul > li ul {
  opacity: 0;
  overflow: hidden;
  height: 0;
  left: 0;
  width: 220%;
  top: 75px;
  z-index: 100;
  transform: translateY(30px);
  background: #fff;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  transition: all 0.4s ease-in-out;
  position: absolute;
  border: 1px solid #fff;
}
.header-nav > ul > li ul li {
  padding: 2px 16px;
}
.header-nav > ul > li ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  padding: 4px 0px;
  font-weight: bold;
  color: #333;
}
.header-nav > ul > li ul li a i {
  font-style: normal;
  flex-shrink: 0;
  font-weight: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  width: 42px;
  height: 42px;
  font-size: 14px;
  border: 1px solid #f0ecec;
  color: var(--primary-red);
}
.header-nav > ul > li ul li:nth-child(1) {
  padding-top: 12px;
}
.header-nav > ul > li ul li:nth-last-child(1) {
  padding-bottom: 12px;
}
.header-nav > ul > li.active > a {
  background-color: var(--primary-red);
  color: #fff;
}
.header-nav > ul > li:hover > a {
  background-color: var(--primary-red);
  color: #fff;
}
.header-nav > ul > li:hover > ul {
  opacity: 1;
  transform: translateY(0px);
  border: 1px solid #f1ecec;
  height: auto;
}
.header-nav > ul > li:hover > ul li a:hover {
  color: var(--primary-red);
}
.banner-video {
  width: 100%;
  position: sticky;
  top: 0px;
  z-index: 2;
  height: calc(100vh - 125px);
}
.banner-video .video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
#company-btn.active {
  background: #fafafa;
}
.guide {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  overflow: hidden;
}
.guide.active {
  display: block;
}
.guide .guide-img {
  width: 100%;
  position: absolute;
  bottom: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.guide .guide-img span {
  width: 100vw;
  height: 100vh;
  background: #332c2b;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 1;
  transform: translateY(0);
  padding: 0px 30px;
  transition: opacity 0.6s cubic-bezier(0.63, -0.01, 0.24, 1.03), transform 0.6s cubic-bezier(0.63, -0.01, 0.24, 1.03);
}
.guide .guide-img span.active {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
}
.header-all {
  position: sticky;
  top: 0px;
  width: 100%;
  z-index: 10;
}
.home-main {
  background: #fff;
  position: sticky;
  top: 0px;
  z-index: 5;
}
.home-search {
  background: #fafafb;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.home-search .home-search-left {
  padding: 50px 0px;
  min-height: 600px;
  top: 0px;
  left: 0px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.home-search .home-search-left .zoom-icon {
  position: absolute;
  font-size: 400px;
  color: #fff;
  top: 15%;
  left: 30%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  z-index: 01;
}
.home-search .home-search-left .search-icon {
  position: relative;
  z-index: 10;
}
.home-search .home-search-left .search-title {
  position: relative;
  z-index: 10;
  height: 120px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}
.home-search .home-search-left .search-title b {
  color: var(--primary-dark);
  font-size: 38px;
}
.home-search .home-search-left .search-title span {
  width: 8px;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  height: 8px;
  background: #8a8a8a;
}
.home-search .home-search-left .search-tips {
  padding-bottom: 52px;
  position: relative;
  z-index: 10;
  max-width: 700px;
}
.home-search .home-search-left .search-tips b {
  color: var(--primary-red);
  font-size: 14px;
  padding-bottom: 10px;
  display: block;
}
.home-search .home-search-left .search-tips p {
  font-size: 14px;
  color: #555555;
  padding-bottom: 6px;
}
.home-search .home-search-left .search-input {
  max-width: 700px;
  background: #fff;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  padding: 0px 16px;
  display: flex;
  gap: 8px;
  align-items: center;
  position: relative;
  z-index: 10;
  border: 1px solid #eee;
  height: 52px;
  box-shadow: 0 0 12px 2px rgba(170, 170, 170, 0.15);
  -webkit-box-shadow: 0 0 12px 2px rgba(170, 170, 170, 0.15);
}
.home-search .home-search-left .search-input i {
  color: #bbbbbb;
  font-size: 24px;
}
.home-search .home-search-left .search-input input {
  flex: 1;
  height: 40px;
  font-size: 16px;
  border: none;
  outline: none;
}
.home-search .home-search-left .search-btn {
  position: relative;
  z-index: 10;
  padding-top: 40px;
}
.home-search .home-search-left .search-btn .btn-item {
  cursor: pointer;
  height: 54px;
  display: flex;
  align-items: center;
  position: relative;
  width: fit-content;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  padding: 0px 6px 0px 32px;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 0 8px 0 rgba(22, 18, 17, 0.4);
}
.home-search .home-search-left .search-btn .btn-item::before {
  content: "";
  width: 100%;
  background: #161211;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.home-search .home-search-left .search-btn .btn-item::after {
  content: "";
  width: 100%;
  background: var(--primary-red);
  height: 100%;
  position: absolute;
  left: 100%;
  top: 0px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.home-search .home-search-left .search-btn .btn-item b {
  padding: 0px 6px 0px 4px;
  font-size: 18px;
  font-family: misans;
  letter-spacing: 1px;
  position: relative;
  z-index: 10;
}
.home-search .home-search-left .search-btn .btn-item span {
  position: relative;
  right: -4px;
  top: 0px;
  padding: 3px;
  z-index: 10;
}
.home-search .home-search-left .search-btn .btn-item span i {
  background: var(--primary-red);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  overflow: hidden;
  font-size: 22px;
}
.home-search .home-search-left .search-btn .btn-item:hover::after {
  left: 0px;
}
.home-search .home-search-left .search-btn .btn-item:hover::before {
  left: -100%;
}
.home-search .home-search-right {
  padding: 80px 0px;
  width: 50%;
  max-width: 760px;
  height: 100%;
}
.home-search .home-search-right .home-search-img {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.home-search .home-search-right .home-search-img img {
  border-radius: 8px;
  -webkit-border-radius: 8px;
  width: 100%;
  display: block;
}
.home-search .home-search-right .home-search-img .home-search-span {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 12;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}
.home-search .home-search-right .home-search-img .home-search-span span {
  display: flex;
  height: 100%;
  background: #fafafb;
  width: 25%;
  transition: transform 1.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.home-search .home-search-right .home-search-img .home-search-span span:nth-child(1) {
  transition-delay: 0.1s;
}
.home-search .home-search-right .home-search-img .home-search-span span:nth-child(2) {
  transition-delay: 0.2s;
}
.home-search .home-search-right .home-search-img .home-search-span span:nth-child(3) {
  transition-delay: 0.3s;
}
.home-search .home-search-right .home-search-img .home-search-span span:nth-child(4) {
  transition-delay: 0.4s;
}
.home-search .home-search-right .home-search-img .home-search-span span:nth-child(5) {
  transition-delay: 0.1s;
}
.home-search .home-search-right .home-search-img .home-search-span span:nth-child(6) {
  transition-delay: 0.2s;
}
.home-search .home-search-right .home-search-img .home-search-span span:nth-child(7) {
  transition-delay: 0.3s;
}
.home-search .home-search-right .home-search-img .home-search-span span:nth-child(8) {
  transition-delay: 0.4s;
}
.home-search .home-search-right .home-search-img .home-search-span.active span {
  opacity: 1;
  pointer-events: none;
  transform: translateY(-100%);
}
.home-search .home-search-right .home-search-img .home-search-span.active span:nth-child(2n) {
  transform: translateY(100%);
}
.home-scroll {
  width: 100%;
  padding: 20px 0px;
  background: #f2f2f3;
  overflow: hidden;
}
.home-scroll .scroll-list {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 80px;
}
.home-scroll .scroll-list ul {
  height: 80px;
  width: 100000px;
  position: absolute;
  left: 0;
}
.home-scroll .scroll-list ul li {
  display: block;
  float: left;
  height: 80px;
}
.home-scroll .scroll-list ul li img {
  max-height: 80px;
  opacity: 0.8;
}
.home-scroll .scroll-list ul li:hover img {
  opacity: 1;
}
.home-scroll .scroll-list ul::after {
  content: "";
  display: block;
  clear: both;
}
.home-scroll .scroll-list::after {
  z-index: 10;
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(to left, #f2f2f3 0%, rgba(242, 242, 243, 0) 100%);
}
.home-scroll .scroll-list::before {
  z-index: 10;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(to right, #f2f2f3 0%, rgba(242, 242, 243, 0) 100%);
}
.home-about {
  background: #fff;
  padding: 80px 0px;
}
.home-about .container2 {
  gap: 60px;
}
.home-about .container2 .home-about-img {
  width: 50%;
  max-width: 700px;
  position: relative;
}
.home-about .container2 .home-about-img > img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 8px;
  -webkit-border-radius: 8px;
}
.home-about .container2 .home-about-img .home-about-block {
  background: #fff;
  padding: 8px 0px 0px 8px;
  position: absolute;
  right: 0px;
  bottom: 0px;
  z-index: 10;
  border-radius: 12px 0px 0px 0px;
}
.home-about .container2 .home-about-img .home-about-block .home-about-block-c {
  padding: 8px;
  display: flex;
  justify-content: space-between;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  gap: 12px;
  background: linear-gradient(to right, #da0201 0%, #f50301 100%);
  color: #fff;
}
.home-about .container2 .home-about-img .home-about-block .home-about-block-c > div {
  display: flex;
  flex-direction: column;
  padding-right: 10px;
  gap: 2px;
}
.home-about .container2 .home-about-img .home-about-block .home-about-block-c > div b {
  color: #fff;
  font-family: misans;
  font-size: 24px;
}
.home-about .container2 .home-about-img .home-about-block::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -12px;
  width: 12px;
  /* 正方形宽度的一半 */
  height: 12px;
  /* 正方形高度的一半 */
  background: transparent;
  /* 父级背景色 */
  border-radius: 0 0 100px 0;
  /* 左上角1/4圆 */
  box-shadow: 2px 2px 0px 2px #fff;
}
.home-about .container2 .home-about-img .home-about-block::after {
  content: "";
  position: absolute;
  right: 0;
  top: -12px;
  width: 12px;
  /* 正方形宽度的一半 */
  height: 12px;
  /* 正方形高度的一半 */
  background: transparent;
  /* 父级背景色 */
  border-radius: 0 0 100px 0;
  /* 左上角1/4圆 */
  box-shadow: 2px 2px 0px 2px #fff;
}
.home-about .container2 .home-about-contnet {
  width: 50%;
}
.sub-title {
  font-size: 32px;
  font-weight: bold;
  color: var(--primary-dark);
  padding: 32px 0px;
}
.sub-title.white {
  color: #fff;
}
.about-detail {
  font-size: 14px;
  line-height: 2;
  color: #444;
  padding: 12px 0px 40px 0px;
}
.about-tools {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 32px;
}
.about-btn {
  position: relative;
  height: 48px;
  overflow: hidden;
  background: #f2f2f3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: fit-content;
  gap: 12px;
  padding: 0px 4px 0px 32px;
  border-radius: 100px;
  -webkit-border-radius: 100px;
}
.about-btn b {
  position: relative;
  z-index: 10;
  font-size: 16px;
  color: #000033;
}
.about-btn span {
  position: relative;
  z-index: 10;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #a0a0a1;
  color: #fff;
}
.about-btn span i {
  font-size: 18px;
}
.about-btn::before {
  content: "";
  width: 100%;
  background: #f2f2f3;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.about-btn::after {
  content: "";
  width: 100%;
  background: var(--primary-red);
  height: 100%;
  position: absolute;
  left: 100%;
  top: 0px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.about-btn:hover b {
  color: #fff;
}
.about-btn:hover span {
  background: none;
}
.about-btn:hover::after {
  left: 0px;
}
.about-btn:hover::before {
  left: -100%;
}
.data-display {
  margin-top: 20px;
  padding: 40px 0px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}
.data-display .data-display-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  width: 25%;
}
.data-display .data-display-item > i {
  width: 55px;
  height: 55px;
  background: #fff2f2;
  color: var(--primary-red);
  font-size: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  -webkit-border-radius: 100px;
}
.data-display .data-display-item .num-box {
  display: flex;
  flex-direction: column;
}
.data-display .data-display-item .num-box .num b {
  font-size: 40px;
  color: var(--primary-dark);
}
.data-display .data-display-item .num-box .num sup {
  font-family: impact;
  font-size: 24px;
  line-height: 1;
  padding-left: 4px;
  color: #595355;
}
.data-display .data-display-item .num-box p {
  opacity: 0.9;
  color: var(--primary-dark);
}
.data-display::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 3px;
  background: #f4f4f5;
  left: 0px;
  bottom: 0px;
  transition: all 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
  transition-delay: 1s;
}
.data-display::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 3px;
  background: var(--primary-red);
  left: 0px;
  bottom: 0px;
  transition: all 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
  transition-delay: 2s;
}
.data-display.active::before {
  width: 100%;
}
.data-display.active::after {
  width: 25%;
}
.home-lab {
  background: radial-gradient(circle, #404040, #343434);
  background: -webkit-radial-gradient(circle, #404040, #343434);
  padding: 50px 0px;
}
.lab-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.lab-des {
  padding: 0px 0px 20px 0px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 2;
  max-width: 400px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.lab-more {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.lab-more i {
  font-size: 36px;
  opacity: 0.3;
  color: #fff;
}
.lab-more:hover i {
  opacity: 1;
}
.lab-info {
  width: 40%;
}
.lab-tab {
  width: 100%;
  height: 100%;
  position: relative;
  margin-bottom: 20px;
  height: var(--tabHeight, 330px);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  overflow: hidden;
}
.lab-tab.w40 {
  width: 40%;
}
.lab-tab.w20 {
  width: 20%;
}
.lab-tab.w45 {
  width: 45%;
}
.lab-tab.w35 {
  width: 35%;
}
.lab-tab img {
  width: fit-content;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s ease;
  -webkit-transition: all 1s ease;
}
.lab-tab .lab-shadow {
  height: 100%;
  width: 100%;
  position: absolute;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  left: 0px;
  top: 0px;
  z-index: 1;
  opacity: 0.55;
}
.lab-tab .lab-shadow.c1 {
  background: #07bece;
}
.lab-tab .lab-shadow.c2 {
  background: #1d8c03;
}
.lab-tab .lab-shadow.c3 {
  background: #1b81d3;
}
.lab-tab .lab-shadow.c4 {
  background: #fc0301;
}
.lab-tab .lab-shadow.c5 {
  background: #e0a410;
}
.lab-tab .lab-tab-name {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  z-index: 10;
  color: #fff;
  position: absolute;
  left: 20px;
  top: calc(var(--tabHeight, 330px) - 60px);
  width: calc(100% - 40px);
  width: -webkit-calc(100% - 40px);
  text-align: right;
}
.lab-tab .lab-tab-name b {
  font-size: 28px;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.lab-tab .lab-tab-name p {
  line-height: 1.6;
  margin-top: 20px;
  height: 0px;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  transition-delay: 0.3s;
}
.lab-tab:hover .lab-shadow {
  opacity: 0.7;
}
.lab-tab:hover img {
  transform: scale(1.15);
}
.lab-tab:hover .lab-tab-name {
  top: 30px;
  bottom: 0;
  text-align: left;
}
.lab-tab:hover p {
  height: auto;
  opacity: 1;
}
.footer {
  background: #fafafa;
  padding: 50px 0px 0px 0px;
}
.footer-box {
  display: flex;
  justify-content: space-between;
  gap: 2%;
}
.footer-box .footer-info {
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-box .footer-info > img {
  max-height: 55px;
  width: fit-content;
}
.footer-box .footer-info b {
  font-size: 22px;
  color: var(--primary-dark);
}
.footer-box .footer-info p {
  font-size: 12px;
  color: #373737;
  line-height: 1.6;
}
.footer-box .footer-info .footer-qrcode {
  padding: 20px 0px;
  display: flex;
  gap: 20px;
}
.footer-box .footer-info .footer-qrcode span {
  box-shadow: 0 0 12px 1px rgba(51, 51, 51, 0.1);
}
.footer-box .footer-info .footer-qrcode span img {
  width: 120px;
}
.footer-box .footer-link ul {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.footer-box .footer-link ul li {
  min-width: 130px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-box .footer-link ul li span {
  color: #333;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 16px;
}
.footer-box .footer-link ul li a {
  display: block;
  color: #666;
  font-size: 14px;
}
.footer-box .footer-link ul li a:hover {
  color: var(--primary-red);
}
.footer-copyright {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
}
.footer-copyright .footer-icon {
  padding-bottom: 12px;
  display: flex;
  justify-content: flex-start;
  gap: 12px;
}
.footer-copyright .footer-icon i {
  font-size: 36px;
  color: #fb8b8a;
}
.footer-copyright .footer-copyright-text {
  font-size: 14px;
  color: #8e8e8e;
  padding-bottom: 24px;
}
.footer-one {
  position: relative;
  z-index: 120;
  background: #fafafa;
}
.footer-two {
  position: sticky;
  bottom: 0px;
  z-index: 1;
}
.footer-logos {
  padding-top: 40px;
  margin-bottom: -30px;
  overflow: hidden;
  position: sticky;
  bottom: 0px;
  z-index: 1;
}
.footer-logos img {
  transition: all 1s ease;
  -webkit-transition: all 1s ease;
  /* 通过滤镜将 fc0301(红) 显著变成灰色 efefef */
  filter: grayscale(1) brightness(1.17) contrast(0.98) sepia(0) hue-rotate(0deg) saturate(0);
  width: 15%;
  position: relative;
  z-index: 1;
  opacity: 0.05;
  transform: translateY(200%);
}
.footer-logos img:nth-child(1) {
  animation-delay: 1s;
  transition-delay: 1s;
}
.footer-logos img:nth-child(2) {
  animation-delay: 1.3s;
  transition-delay: 1.3s;
}
.footer-logos img:nth-child(3) {
  animation-delay: 1.5s;
  transition-delay: 1.5s;
}
.footer-logos img:nth-child(4) {
  animation-delay: 1.7s;
  transition-delay: 1.7s;
}
.footer-logos.active img {
  transform: translateY(0);
}
.ny-box {
  padding: 50px 0px 100px 0px;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: flex-start;
  min-height: 600px;
}
.ny-box .ny-left {
  max-width: 360px;
  width: 40%;
  flex-shrink: 0;
  z-index: 1;
}
.ny-box .ny-left .ny-left-title {
  display: flex;
  flex-direction: column;
  position: relative;
}
.ny-box .ny-left .ny-left-title h1 {
  font-size: 32px;
  margin-bottom: 12px;
}
.ny-box .ny-left .ny-left-title p {
  font-weight: normal;
  font-size: 12px;
  color: #eee;
  font-family: ihate;
}
.ny-box .ny-left .ny-left-title i {
  cursor: pointer;
  background: rgba(251, 139, 138, 0.8);
  font-size: 24px;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  color: #fff;
  width: 36px;
  height: 36px;
  line-height: 36px;
  position: absolute;
  right: 10px;
  top: 50%;
  text-align: center;
  transform: translateY(-50%);
}
.ny-box .ny-left .ny-left-title i:hover {
  background: #fb8b8a;
}
.ny-box .ny-left .ny-left-img {
  overflow: hidden;
  margin-top: 30px;
  object-fit: cover;
  height: 140px;
  position: relative;
}
.ny-box .ny-left .ny-left-img img {
  width: 100%;
  transition: all 0.8s ease;
  -webkit-transition: all 0.8s ease;
}
.ny-box .ny-left .ny-left-img:hover img {
  transform: scale(1.1);
}
.ny-box .ny-left .ny-left-img::before {
  z-index: 10;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 25px 25px 0;
  border-color: transparent #fff transparent transparent;
}
.ny-box .ny-left .ny-list {
  padding: 30px 0px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ny-box .ny-left .ny-list a {
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #eee;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  padding: 16px;
  font-size: 15px;
  position: relative;
  color: #555;
  transition: color 0.3s 0.1s ease;
  -webkit-transition: color 0.3s 0.1s ease;
  transition: border 0.3s 0.1s ease;
  -webkit-transition: border 0.3s 0.1s ease;
  font-weight: bold;
}
.ny-box .ny-left .ny-list a i {
  color: #888;
  font-style: normal;
}
.ny-box .ny-left .ny-list a.active {
  border-color: var(--primary-red);
  color: #fff;
}
.ny-box .ny-left .ny-list a.active i {
  color: #fff;
}
.ny-box .ny-left .ny-list a.active::before {
  left: -100%;
}
.ny-box .ny-left .ny-list a.active::after {
  left: 0px;
}
.ny-box .ny-left .ny-list a::before {
  z-index: -1;
  position: absolute;
  left: 0px;
  content: "";
  height: 100%;
  width: 100%;
  background: #fff;
  transition: 0.3s;
}
.ny-box .ny-left .ny-list a::after {
  z-index: -1;
  position: absolute;
  top: 0px;
  left: 100%;
  content: "";
  height: 100%;
  width: 100%;
  transition: 0.3s;
  background: var(--primary-red);
}
.ny-box .ny-left .ny-list a:hover {
  border-color: var(--primary-red);
  color: #fff;
}
.ny-box .ny-left .ny-list a:hover i {
  color: #fff;
}
.ny-box .ny-left .ny-list a:hover::before {
  left: -100%;
}
.ny-box .ny-left .ny-list a:hover::after {
  left: 0px;
}
.ny-box .ny-right {
  display: flex;
  flex: 1;
  flex-direction: column;
}
.content {
  line-height: 240%;
}
.content p {
  padding: 4px 0px;
}
.content img {
  max-width: 100%;
}
.about-title {
  font-size: 32px;
  padding: 0px 12px 48px 0px;
  text-align: right;
  position: relative;
  z-index: 1;
}
.about-title::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 30%;
  background: #fdf5f5;
  z-index: -1;
}
.lab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}
.lab-list .lab-list-item {
  box-sizing: border-box;
  width: calc(50% - 12px);
  max-width: 800px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.lab-list .lab-list-item .lab-list-item-img {
  padding: 12px 12px 0px 12px;
  position: relative;
  overflow: hidden;
  display: none;
}
.lab-list .lab-list-item .lab-list-item-img img {
  width: 100%;
  height: 100%;
  border-radius: 8px 8px 0px 0px;
  object-fit: cover;
  position: relative;
  z-index: 10;
  display: block;
}
.lab-list .lab-list-item .lab-list-item-img::before {
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  z-index: 1;
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 0%;
  background: var(--primary-red);
  border-radius: 8px 8px 0px 0px;
}
.lab-list .lab-list-item .lab-list-item-text {
  padding: 8px 16px 16px 16px;
}
.lab-list .lab-list-item .lab-list-item-text h1 {
  font-size: 20px;
  padding: 12px 0px;
}
.lab-list .lab-list-item .lab-list-item-text p {
  font-size: 14px;
  color: #888;
  line-height: 25px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 50px;
}
.lab-list .lab-list-item:hover {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
.lab-list .lab-list-item:hover .lab-list-item-img::before {
  height: 100%;
}
.lab-list .lab-list-item:hover .lab-list-item-text h1 {
  color: var(--primary-red);
}
.page {
  display: flex;
  padding: 40px 0px;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}
.page a,
.page span {
  min-width: 40px;
  height: 40px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eee;
  border-radius: 4px;
}
.page a i,
.page span i {
  font-size: 16px;
  color: #999;
}
.page a.active,
.page span.active,
.page a:hover,
.page span:hover {
  color: #fff;
  background: var(--primary-red);
  border-color: var(--primary-red);
}
.page a.active i,
.page span.active i,
.page a:hover i,
.page span:hover i {
  color: #fff;
}
.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-list .service-list-item {
  background: #fafafa;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  padding: 16px;
  width: 100%;
  flex-shrink: 0;
  transition: all 0.6s ease;
}
.service-list .service-list-item .service-list-item-img {
  width: 80px;
  height: 80px;
  overflow: hidden;
  transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  border-radius: 100px;
  -webkit-border-radius: 100px;
}
.service-list .service-list-item .service-list-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.service-list .service-list-item .service-list-item-name {
  padding-top: 16px;
}
.service-list .service-list-item .service-list-item-name h2 {
  font-size: 18px;
  display: block;
  margin-bottom: 10px;
}
.service-list .service-list-item .service-list-item-name p {
  font-size: 14px;
  color: #999;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.service-list .service-list-item:hover {
  background: #fc0301;
  color: #fff;
}
.service-list .service-list-item:hover .service-list-item-img {
  border-radius: 16px;
  -webkit-border-radius: 16px;
}
.service-list .service-list-item:hover .service-list-item-name h2 {
  color: #fff;
}
.service-list .service-list-item:hover .service-list-item-name p {
  color: #fff;
}
.cer-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cer-list a {
  transition: all 0.3s ease;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  border: 1px solid #eee;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  padding: 16px;
  width: 100%;
  /* 保证每个a标签等宽 */
}
.cer-list a i {
  flex-shrink: 0;
  color: #999;
}
.cer-list a span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cer-list a:hover {
  transform: translateY(-5px);
  border-color: var(--primary-red);
  color: var(--primary-red);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.cer-list a:hover i {
  color: var(--primary-red);
}
.down-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.down-list a {
  transition: all 0.3s ease;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  border: 1px solid #eee;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  padding: 16px;
  width: 100%;
  /* 保证每个a标签等宽 */
}
.down-list a i {
  flex-shrink: 0;
  color: #999;
}
.down-list a span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}
.down-list a:hover {
  transform: translateY(-5px);
  border-color: var(--primary-red);
  color: var(--primary-red);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.down-list a:hover i {
  color: var(--primary-red);
}
.contact-list {
  padding: 20px 0px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  grid-auto-flow: dense;
}
.contact-list .contact-item {
  padding: 16px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  background: #fafafa;
  transition: all 0.3s ease;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
}
.contact-list .contact-item > i {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3e4e4;
  color: var(--primary-red);
  border-radius: 100px;
  -webkit-border-radius: 100px;
  font-size: 24px;
}
.contact-list .contact-item > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-list .contact-item > div span {
  font-size: 14px;
}
.contact-list .contact-item:nth-child(3) {
  grid-column: 1 / -1;
}
.contact-list .contact-item:hover {
  transform: translateY(-5px);
}
.contact-list .contact-item:hover b {
  color: var(--primary-red);
}
.search-header {
  box-sizing: border-box;
  padding: 0px 32px;
  height: 44px;
  display: flex;
  align-items: center;
}
.search-header a {
  display: flex;
  align-items: center;
  background: var(--primary-dark);
  border-radius: 4px;
  padding: 6px 16px;
  color: #fff;
}
.search-header a i {
  font-size: 24px;
}
.search-res {
  margin: 0px auto;
  background: url(../images/certificate-bg.png) center top no-repeat;
  background-size: contain;
  width: 1200px;
  height: 1697px;
}
.search-res-logo {
  padding-top: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.search-res-logo img {
  max-height: 140px;
}
.search-res-logo > div {
  padding-left: 16px;
}
.search-res-logo > div b {
  font-size: 50px;
}
.search-res-title {
  width: 100%;
  max-width: 1000px;
  margin: 0px auto;
  padding: 40px 0px;
  text-align: center;
  font-size: 60px;
  font-weight: bold;
}
.search-res-list {
  padding: 5% 15%;
  display: flex;
  flex-direction: column;
  overflow: auto;
  max-height: 1000px;
  gap: 24px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.search-res-list::-webkit-scrollbar {
  display: none;
}
.search-res-list a {
  padding: 20px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  box-sizing: border-box;
  font-size: 32px;
  border: 2px solid #ddd;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.search-res-list a i {
  font-size: 32px;
  color: #bbb;
}
.search-res-list a:hover {
  transform: translateY(-5px);
  border-color: var(--primary-red);
  color: var(--primary-red);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.search-res-list a:hover i {
  color: var(--primary-red);
}
.search-box {
  background: url(../images/bgbg.png) #fff;
  padding: 20px;
  width: 1100px;
  margin: 20px auto;
  min-height: 95vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
}
.search-box .search-box-title {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.search-box .search-box-title img {
  height: 80px;
  width: fit-content;
}
.search-box .search-box-title > div h1 {
  font-size: 26px;
}
.search-box .search-box-res {
  flex: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
}
.search-box .search-box-res .search-box-res-t {
  padding: 40px 0px;
  font-size: 32px;
  text-align: center;
  font-weight: bold;
}
.search-box .search-box-res .search-box-res-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.search-box .search-box-res .search-box-res-list .list-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  color: #333;
}
.search-box .search-box-res .search-box-res-list .list-item span {
  width: 180px;
  position: relative;
  flex-shrink: 0;
}
.search-box .search-box-res .search-box-res-list .list-item span::after {
  position: absolute;
  right: 10px;
  content: ":";
}
.search-box .search-box-bottom {
  margin-left: auto;
  display: flex;
  gap: 4px;
  flex-direction: column;
}
.search-box .search-box-bottom .search-box-bottom-des {
  font-size: 10px;
  color: #999;
}
.search-box .search-box-bottom .search-box-bottom-tel {
  text-align: center;
  font-size: 12px;
}
.search-box .search-box-bottom .search-box-bottom-tel b {
  font-size: 14px;
}
.search-box .search-box-bottom .search-box-bottom-address {
  font-size: 14px;
  color: #222;
  margin-bottom: 10px;
  display: block;
}
.search-box .search-box-bottom .search-box-bottom-line {
  height: 8px;
  display: flex;
  height: 4px;
}
.search-box .search-box-bottom .search-box-bottom-line span {
  flex: 1;
}
.search-box .search-box-bottom .search-box-bottom-line span:nth-child(1) {
  background: #fc0301;
}
.search-box .search-box-bottom .search-box-bottom-line span:nth-child(2) {
  background: #d00202;
}
.search-box .search-box-bottom .search-box-bottom-line span:nth-child(3) {
  background: #b10202;
}
.search-box .search-box-bottom .search-box-bottom-line span:nth-child(4) {
  background: #8a0101;
}
.order-box {
  width: 400px;
  background: #fff;
  padding: 0px;
  border-radius: 8px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  z-index: 900;
  bottom: 20px;
  right: 20px;
  overflow: hidden;
}
.order-box .order-box-title {
  cursor: pointer;
  font-size: 16px;
  font-weight: normal;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--primary-red);
  padding: 16px;
  color: #fff;
}
.order-box .order-box-title .iconfont {
  position: relative;
  transition: all 0.3s ease;
}
.order-box .order-box-title.active .iconfont {
  transform: rotate(180deg);
}
.order-box .order-box-content {
  padding: 0px 20px;
  display: flex;
  height: 0px;
  flex-direction: column;
  transition: height 0.3s ease;
}
.order-box .order-box-content .order-box-text {
  font-size: 14px;
  padding-bottom: 20px;
  line-height: 1.5;
  color: #333;
}
.order-box .order-box-content .submit-btn-box {
  display: flex;
  justify-content: flex-end;
  padding: 12px 0px;
}
.order-box .order-box-content .submit-btn-box .submit-btn {
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  background-color: #161211;
  border-radius: 6px;
  color: #fff;
  transition: all 0.3s ease;
}
.order-box .order-box-content .submit-btn-box .submit-btn:hover {
  background-color: var(--primary-red);
}
.order-box .order-box-content .order-box-item {
  padding: 0px;
  margin-bottom: 16px;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  border-radius: 6px;
  transition: border-color 0.3s ease;
}
.order-box .order-box-content .order-box-item i.iconfont {
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #aaa;
  font-size: 22px;
}
.order-box .order-box-content .order-box-item textarea {
  width: 100%;
  border: none;
  padding: 6px 12px;
}
.order-box .order-box-content .order-box-item textarea:focus {
  outline: none;
}
.order-box .order-box-content .order-box-item input {
  flex: 1;
  border-radius: 4px;
  width: 100%;
  box-sizing: border-box;
  font-size: 14px;
  min-height: 44px;
  border: none;
}
.order-box .order-box-content .order-box-item input:focus {
  outline: none;
}
.order-box .order-box-content .order-box-item:has(textarea:focus),
.order-box .order-box-content .order-box-item:has(input:focus) {
  border-color: #ed605f;
}
.order-box .order-box-content .order-box-item:has(textarea:focus) i,
.order-box .order-box-content .order-box-item:has(input:focus) i {
  color: #ed605f;
}
.order-box .order-box-content.active {
  height: 480px;
  padding: 20px;
}
