@import url(iconfont/iconfont.css);
@font-face {
  font-family: AlibabaSans;
  src: url(font/AlibabaSans-Regular.ttf);
  font-weight: 400;
}
@font-face {
  font-family: AlibabaSans-Medium;
  src: url(font/AlibabaSans-Medium.ttf);
  font-weight: 500;
}
.Medium {
  font-family: AlibabaSans-Medium;
}
@font-face {
  font-family: AlibabaSans-Bold;
  src: url(font/AlibabaSans-Bold.ttf);
  font-weight: 600;
}
.Bold {
  font-family: AlibabaSans-Bold;
}
@font-face {
  font-family: AlibabaSans-Heavy;
  src: url(font/AlibabaSans-Heavy.ttf);
  font-weight: 700;
}
.Heavy {
  font-family: AlibabaSans-Heavy;
}
@font-face {
  font-family: AlibabaSans-Black;
  src: url(font/AlibabaSans-Black.ttf);
  font-weight: 800;
}
.Black {
  font-family: AlibabaSans-Black;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --themeColor: #f7931e;
  --subsColor: #f70000;
  --textColor: #08243c;
  --subsTextColor: #566876;
  --headerHeight: 0.9rem;
  --container: 16rem;
  --cm: calc((100vw - var(--container)) / 2);
}
.iconfont {
  font-size: 0.16rem;
}
body {
  -webkit-font-smoothing: antialiased;
  font: 0.16rem/1.73 AlibabaSans, Microsoft YaHei, "PingFang SC", Heiti SC, tahoma, Hiragino Sans GB, "\5B8B\4F53", sans-serif;
  color: var(--textColor);
  width: 100vw;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: AlibabaSans-Bold;
}
em,
i {
  font-style: normal;
}
li {
  list-style: none;
}
img {
  border: 0;
  vertical-align: middle;
}
a {
  text-decoration: none;
  color: var(--textColor);
}
/* 表单元素 */
textarea,
select,
button,
input {
  /* "\5B8B\4F53" => 宋体 */
  font-family: AlibabaSans, Microsoft YaHei, "PingFang SC", Heiti SC, tahoma, arial, Hiragino Sans GB, "\5B8B\4F53", sans-serif;
  border: none;
  outline: none;
  resize: none;
  background: none;
  font-size: 0.15rem;
  /* chrome */
  /* 火狐浏览器 */
}
textarea::-webkit-outer-spin-button,
select::-webkit-outer-spin-button,
button::-webkit-outer-spin-button,
input::-webkit-outer-spin-button,
textarea::-webkit-inner-spin-button,
select::-webkit-inner-spin-button,
button::-webkit-inner-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
textarea[type="number"],
select[type="number"],
button[type="number"],
input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}
textarea::placeholder,
select::placeholder,
button::placeholder,
input::placeholder {
  color: #cdcdcd;
}
/* 版芯 */
.container {
  width: var(--container);
  margin: 0 auto;
}
/* 单行文本 */
.dh_text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* 多行文本省略 */
.dh_text2 {
  display: -webkit-box;
  display: -moz-box;
  word-wrap: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal !important;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.dh_text3 {
  display: -webkit-box;
  display: -moz-box;
  word-wrap: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal !important;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.dh_text4 {
  display: -webkit-box;
  display: -moz-box;
  word-wrap: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal !important;
  line-clamp: 4;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.dh_text5 {
  display: -webkit-box;
  display: -moz-box;
  word-wrap: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal !important;
  line-clamp: 5;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
/* 富文本 */
.rich img,
.rich video {
  max-width: 100% !important;
  height: auto !important;
}
.rich * {
  text-wrap: wrap !important;
  white-space: wrap !important;
}
/* 分页器 */
.pages,
.pagination {
  margin: 0.64rem auto;
  display: flex;
  justify-content: center;
}
.pages a,
.pagination a,
.pages span,
.pagination span {
  display: block;
  width: 0.4rem;
  line-height: 0.4rem;
  text-align: center;
  font-family: AlibabaSans-Medium;
  border-radius: 0.06rem;
  background: #f6f6f6;
  transition: all 0.3s;
}
.pages a + a,
.pagination a + a,
.pages span + a,
.pagination span + a,
.pages a + span,
.pagination a + span,
.pages span + span,
.pagination span + span {
  margin-left: 0.08rem;
}
.pages a:hover,
.pagination a:hover,
.pages a.active,
.pagination a.active {
  background: var(--themeColor);
  color: white;
}
.pages li + li,
.pagination li + li {
  margin-left: 0.08rem;
}
/* 手机 */
.moblie {
  display: none;
}
.fs-12 {
  font-size: 0.12rem;
}
.fs-13 {
  font-size: 0.13rem;
}
.fs-14 {
  font-size: 0.14rem;
}
.fs-15 {
  font-size: 0.15rem;
}
.fs-16 {
  font-size: 0.16rem;
}
.fs-17 {
  font-size: 0.17rem;
}
.fs-18 {
  font-size: 0.18rem;
}
.fs-19 {
  font-size: 0.19rem;
}
.fs-20 {
  font-size: 0.2rem;
}
.fs-21 {
  font-size: 0.21rem;
}
.fs-22 {
  font-size: 0.22rem;
}
.fs-23 {
  font-size: 0.23rem;
}
.fs-24 {
  font-size: 0.24rem;
}
.fs-25 {
  font-size: 0.25rem;
}
.fs-26 {
  font-size: 0.26rem;
}
.fs-27 {
  font-size: 0.27rem;
}
.fs-28 {
  font-size: 0.28rem;
}
.fs-29 {
  font-size: 0.29rem;
}
.fs-30 {
  font-size: 0.3rem;
}
.fs-31 {
  font-size: 0.31rem;
}
.fs-32 {
  font-size: 0.32rem;
}
.fs-33 {
  font-size: 0.33rem;
}
.fs-34 {
  font-size: 0.34rem;
}
.fs-35 {
  font-size: 0.35rem;
}
.fs-36 {
  font-size: 0.36rem;
}
.fs-37 {
  font-size: 0.37rem;
}
.fs-38 {
  font-size: 0.38rem;
}
.fs-39 {
  font-size: 0.39rem;
}
.fs-40 {
  font-size: 0.4rem;
}
.fs-41 {
  font-size: 0.41rem;
}
.fs-42 {
  font-size: 0.42rem;
}
.fs-43 {
  font-size: 0.43rem;
}
.fs-44 {
  font-size: 0.44rem;
}
.fs-45 {
  font-size: 0.45rem;
}
.fs-46 {
  font-size: 0.46rem;
}
.fs-47 {
  font-size: 0.47rem;
}
.fs-48 {
  font-size: 0.48rem;
}
.fs-49 {
  font-size: 0.49rem;
}
.fs-50 {
  font-size: 0.5rem;
}
.fs-51 {
  font-size: 0.51rem;
}
.fs-52 {
  font-size: 0.52rem;
}
.fs-53 {
  font-size: 0.53rem;
}
.fs-54 {
  font-size: 0.54rem;
}
.fs-55 {
  font-size: 0.55rem;
}
.fs-56 {
  font-size: 0.56rem;
}
.fs-57 {
  font-size: 0.57rem;
}
.fs-58 {
  font-size: 0.58rem;
}
.fs-59 {
  font-size: 0.59rem;
}
.fs-60 {
  font-size: 0.6rem;
}
.fs-61 {
  font-size: 0.61rem;
}
.fs-62 {
  font-size: 0.62rem;
}
.fs-63 {
  font-size: 0.63rem;
}
.fs-64 {
  font-size: 0.64rem;
}
.fs-65 {
  font-size: 0.65rem;
}
.fs-66 {
  font-size: 0.66rem;
}
.fs-67 {
  font-size: 0.67rem;
}
.fs-68 {
  font-size: 0.68rem;
}
.fs-69 {
  font-size: 0.69rem;
}
.fs-70 {
  font-size: 0.7rem;
}
.fs-71 {
  font-size: 0.71rem;
}
.fs-72 {
  font-size: 0.72rem;
}
.fs-73 {
  font-size: 0.73rem;
}
.fs-74 {
  font-size: 0.74rem;
}
.fs-75 {
  font-size: 0.75rem;
}
.fs-76 {
  font-size: 0.76rem;
}
.fs-77 {
  font-size: 0.77rem;
}
.fs-78 {
  font-size: 0.78rem;
}
.fs-79 {
  font-size: 0.79rem;
}
.fs-80 {
  font-size: 0.8rem;
}
.fs-81 {
  font-size: 0.81rem;
}
.fs-82 {
  font-size: 0.82rem;
}
.fs-83 {
  font-size: 0.83rem;
}
.fs-84 {
  font-size: 0.84rem;
}
.fs-85 {
  font-size: 0.85rem;
}
.fs-86 {
  font-size: 0.86rem;
}
.fs-87 {
  font-size: 0.87rem;
}
.fs-88 {
  font-size: 0.88rem;
}
.fs-89 {
  font-size: 0.89rem;
}
.fs-90 {
  font-size: 0.9rem;
}
.fs-91 {
  font-size: 0.91rem;
}
.fs-92 {
  font-size: 0.92rem;
}
.fs-93 {
  font-size: 0.93rem;
}
.fs-94 {
  font-size: 0.94rem;
}
.fs-95 {
  font-size: 0.95rem;
}
.fs-96 {
  font-size: 0.96rem;
}
.fs-97 {
  font-size: 0.97rem;
}
.fs-98 {
  font-size: 0.98rem;
}
.fs-99 {
  font-size: 0.99rem;
}
.fs-100 {
  font-size: 1rem;
}
.fs-101 {
  font-size: 1.01rem;
}
.fs-102 {
  font-size: 1.02rem;
}
.fs-103 {
  font-size: 1.03rem;
}
.fs-104 {
  font-size: 1.04rem;
}
.fs-105 {
  font-size: 1.05rem;
}
.fs-106 {
  font-size: 1.06rem;
}
.fs-107 {
  font-size: 1.07rem;
}
.fs-108 {
  font-size: 1.08rem;
}
.fs-109 {
  font-size: 1.09rem;
}
.fs-110 {
  font-size: 1.1rem;
}
.fs-111 {
  font-size: 1.11rem;
}
.fs-112 {
  font-size: 1.12rem;
}
.fs-113 {
  font-size: 1.13rem;
}
.fs-114 {
  font-size: 1.14rem;
}
.fs-115 {
  font-size: 1.15rem;
}
.fs-116 {
  font-size: 1.16rem;
}
.fs-117 {
  font-size: 1.17rem;
}
.fs-118 {
  font-size: 1.18rem;
}
.fs-119 {
  font-size: 1.19rem;
}
.fs-120 {
  font-size: 1.2rem;
}
.fs-121 {
  font-size: 1.21rem;
}
.fs-122 {
  font-size: 1.22rem;
}
.fs-123 {
  font-size: 1.23rem;
}
.fs-124 {
  font-size: 1.24rem;
}
.fs-125 {
  font-size: 1.25rem;
}
.fs-126 {
  font-size: 1.26rem;
}
.fs-127 {
  font-size: 1.27rem;
}
.fs-128 {
  font-size: 1.28rem;
}
.fs-129 {
  font-size: 1.29rem;
}
.fs-130 {
  font-size: 1.3rem;
}
.fs-131 {
  font-size: 1.31rem;
}
.fs-132 {
  font-size: 1.32rem;
}
.fs-133 {
  font-size: 1.33rem;
}
.fs-134 {
  font-size: 1.34rem;
}
.fs-135 {
  font-size: 1.35rem;
}
.fs-136 {
  font-size: 1.36rem;
}
.fs-137 {
  font-size: 1.37rem;
}
.fs-138 {
  font-size: 1.38rem;
}
.fs-139 {
  font-size: 1.39rem;
}
.fs-140 {
  font-size: 1.4rem;
}
.fs-141 {
  font-size: 1.41rem;
}
.fs-142 {
  font-size: 1.42rem;
}
.fs-143 {
  font-size: 1.43rem;
}
.fs-144 {
  font-size: 1.44rem;
}
.fs-145 {
  font-size: 1.45rem;
}
.fs-146 {
  font-size: 1.46rem;
}
.fs-147 {
  font-size: 1.47rem;
}
.fs-148 {
  font-size: 1.48rem;
}
.fs-149 {
  font-size: 1.49rem;
}
.fs-150 {
  font-size: 1.5rem;
}
.fs-151 {
  font-size: 1.51rem;
}
.fs-152 {
  font-size: 1.52rem;
}
.fs-153 {
  font-size: 1.53rem;
}
.fs-154 {
  font-size: 1.54rem;
}
.fs-155 {
  font-size: 1.55rem;
}
.fs-156 {
  font-size: 1.56rem;
}
.fs-157 {
  font-size: 1.57rem;
}
.fs-158 {
  font-size: 1.58rem;
}
.fs-159 {
  font-size: 1.59rem;
}
.fs-160 {
  font-size: 1.6rem;
}
.fs-161 {
  font-size: 1.61rem;
}
.fs-162 {
  font-size: 1.62rem;
}
.fs-163 {
  font-size: 1.63rem;
}
.fs-164 {
  font-size: 1.64rem;
}
.fs-165 {
  font-size: 1.65rem;
}
.fs-166 {
  font-size: 1.66rem;
}
.fs-167 {
  font-size: 1.67rem;
}
.fs-168 {
  font-size: 1.68rem;
}
.fs-169 {
  font-size: 1.69rem;
}
.fs-170 {
  font-size: 1.7rem;
}
.fs-171 {
  font-size: 1.71rem;
}
.fs-172 {
  font-size: 1.72rem;
}
.fs-173 {
  font-size: 1.73rem;
}
.fs-174 {
  font-size: 1.74rem;
}
.fs-175 {
  font-size: 1.75rem;
}
.fs-176 {
  font-size: 1.76rem;
}
.fs-177 {
  font-size: 1.77rem;
}
.fs-178 {
  font-size: 1.78rem;
}
.fs-179 {
  font-size: 1.79rem;
}
.fs-180 {
  font-size: 1.8rem;
}
.fs-181 {
  font-size: 1.81rem;
}
.fs-182 {
  font-size: 1.82rem;
}
.fs-183 {
  font-size: 1.83rem;
}
.fs-184 {
  font-size: 1.84rem;
}
.fs-185 {
  font-size: 1.85rem;
}
.fs-186 {
  font-size: 1.86rem;
}
.fs-187 {
  font-size: 1.87rem;
}
.fs-188 {
  font-size: 1.88rem;
}
.fs-189 {
  font-size: 1.89rem;
}
.fs-190 {
  font-size: 1.9rem;
}
.fs-191 {
  font-size: 1.91rem;
}
.fs-192 {
  font-size: 1.92rem;
}
.fs-193 {
  font-size: 1.93rem;
}
.fs-194 {
  font-size: 1.94rem;
}
.fs-195 {
  font-size: 1.95rem;
}
.fs-196 {
  font-size: 1.96rem;
}
.fs-197 {
  font-size: 1.97rem;
}
.fs-198 {
  font-size: 1.98rem;
}
.fs-199 {
  font-size: 1.99rem;
}
.fs-200 {
  font-size: 2rem;
}
.fs-201 {
  font-size: 2.01rem;
}
.fs-202 {
  font-size: 2.02rem;
}
.fs-203 {
  font-size: 2.03rem;
}
.fs-204 {
  font-size: 2.04rem;
}
.fs-205 {
  font-size: 2.05rem;
}
.fs-206 {
  font-size: 2.06rem;
}
.fs-207 {
  font-size: 2.07rem;
}
.fs-208 {
  font-size: 2.08rem;
}
.fs-209 {
  font-size: 2.09rem;
}
/* 遍历动画延迟 */
/* 生成固定比例的图片元素 div.img>img */
/* 内页banner */
.page_banner {
  position: relative;
}
.page_banner h1 {
  position: absolute;
  top: 63%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  white-space: nowrap;
}
/* 内页导航 */
.nav {
  width: 2.2rem;
  margin-right: 0.7rem;
  position: sticky;
  top: calc(var(--headerHeight) + 0.2rem);
}
.nav a {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  color: #666666;
  background: #f5f5f5;
  padding: 0 0.2rem;
  line-height: 0.5rem;
  transition: background 0.3s, color 0.3s;
}
.nav a + a {
  margin-top: 0.02rem;
}
.nav a:hover,
.nav a.active {
  background-color: var(--themeColor);
  color: white;
}
/* 顶部 */
.header {
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: white;
  z-index: 99999;
}
.header > .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: var(--headerHeight);
}
.header > .container .logo {
  width: 3rem;
}
.header > .container .logo img {
  width: 100%;
}
.header > .container .menu {
  display: flex;
}
.header > .container .menu li {
  position: relative;
  /* 子菜单 */
}
.header > .container .menu li > a {
  display: block;
  font-weight: 500;
  transition: color 0.3s;
  color: var(--textColor);
  font-family: AlibabaSans-Bold;
  position: relative;
}
.header > .container .menu li > a::before {
  content: "";
  width: 0;
  height: 0.03rem;
  background-color: var(--themeColor);
  position: absolute;
  right: 0;
  bottom: 0;
  transition: all 0.3s;
}
.header > .container .menu li > a:hover,
.header > .container .menu li > a.active {
  color: var(--themeColor);
}
.header > .container .menu li > a:hover::before,
.header > .container .menu li > a.active::before {
  right: auto;
  left: 0;
  width: 100%;
}
.header > .container .menu li + li {
  margin-left: 0.6rem;
}
.header > .container .menu li .childs {
  display: none;
  background: white;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-bottom: 0.3rem;
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.1);
}
.header > .container .menu li .childs a {
  white-space: nowrap;
  display: block;
  line-height: 1;
  padding: 0.3rem 0.3rem 0;
  cursor: pointer;
}
.header > .container .menu li .childs a:hover {
  color: var(--themeColor);
}
.header > .container .right {
  display: flex;
  align-items: center;
}
.header > .container .right i,
.header > .container .right b,
.header > .container .right a {
  margin: 0 0.1rem;
  cursor: pointer;
  font-weight: 500;
}
.header > .container .right i:hover,
.header > .container .right b:hover,
.header > .container .right a:hover,
.header > .container .right i.active,
.header > .container .right b.active,
.header > .container .right a.active {
  color: var(--themeColor);
}
.header > .container .right b {
  font-weight: 100;
}
.header > .container .right i {
  margin-top: 0.07rem;
}
.header > .container .right a.active {
  color: var(--themeColor);
}
.header > .container .right .menu_btn {
  width: 50px;
  height: 50px;
  transform: scale(0.7) translateX(50%);
}
.header > .container .right .menu_btn span,
.header > .container .right .menu_btn::after,
.header > .container .right .menu_btn::before {
  content: "";
  display: block;
  width: 70%;
  height: 3px;
  border-radius: 2px;
  background: #444;
  position: absolute;
  left: 0;
  transition: all 0.3s;
}
.header > .container .right .menu_btn::after {
  transform-origin: right center;
  top: 25%;
}
.header > .container .right .menu_btn::before {
  transform-origin: right center;
  top: 75%;
}
.header > .container .right .menu_btn span {
  top: 50%;
}
.header > .container .right .menu_btn.active span {
  opacity: 0;
}
.header > .container .right .menu_btn.active::after {
  transform: rotate(-46deg);
}
.header > .container .right .menu_btn.active::before {
  transform: rotate(46deg);
}
.header > .container .right .menu_btn.active + ul {
  left: 0;
}
.header.active {
  box-shadow: 0 0.1rem 0.1rem rgba(0, 0, 0, 0.05);
}
.header .search_box {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: white;
  padding: 0.25rem 0;
  display: none;
}
.header .search_box .container {
  display: flex;
  align-items: center;
  line-height: 0.7rem;
  border-bottom: 1px solid #b8b8b8;
}
.header .search_box .container input {
  flex: 1;
}
/* 底部 */
.footer {
  background: #161616;
  padding-top: 1rem;
}
.footer .mianss {
  display: flex;
  justify-content: space-between;
}
.footer .mianss .left .logo {
  display: block;
  width: 3rem;
}
.footer .mianss .left .contact {
  margin: 0.4rem 0 0.33rem;
}
.footer .mianss .left .contact a {
  display: block;
  color: white;
}
.footer .mianss .left .contact a span {
  color: var(--themeColor);
}
.footer .mianss .left .ercode {
  display: flex;
}
.footer .mianss .left .ercode img {
  width: 0.88rem;
}
.footer .mianss .left .ercode img + img {
  margin-left: 0.12rem;
}
.footer .mianss .right {
  display: flex;
}
.footer .mianss .right li {
  display: flex;
  flex-direction: column;
}
.footer .mianss .right li a {
  color: white;
}
.footer .mianss .right li a:hover {
  color: var(--themeColor);
}
.footer .mianss .right li a:first-child {
  color: var(--themeColor);
  margin-bottom: 0.33rem;
  position: relative;
}
.footer .mianss .right li a:first-child::before {
  content: "";
  width: 1.7em;
  height: 0.01rem;
  background-color: var(--themeColor);
  position: absolute;
  left: 0;
  bottom: -0.07rem;
}
.footer .mianss .right li + li {
  margin-left: 0.6rem;
}
.footer .links {
  margin: 0.2rem auto 0;
}
.footer .links span {
  display: block;
  color: rgba(255, 255, 255, 0.8);
}
.footer .links a {
  display: inline-block;
  color: white;
}
.footer .links a:hover {
  color: var(--themeColor);
}
.footer .links a + a {
  margin-left: 0.05rem;
}
.footer .btm {
  margin-top: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0.6rem;
  border-top: 0.01rem solid rgba(255, 255, 255, 0.2);
}
.footer .btm p {
  color: white;
}
.more {
  width: 1.86rem;
  height: 0.55rem;
  line-height: 0.55rem;
  border-radius: 0.47rem;
  border: 1px solid var(--themeColor);
  color: var(--themeColor);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
  margin: auto;
  cursor: pointer;
  transition: all 0.3s;
}
.more::before {
  font-size: 0.22rem;
  transform: translateY(0.03rem);
}
.more:hover {
  background-color: var(--themeColor);
  color: white;
}
/* 首页 */
.home {
  /* 中小试产线建设 */
  /* 行业应用 */
  /* 实验代工 */
  /* 科技成果展示 */
  /* 落地成果展示 */
  /* 资讯中心 */
}
.home .titles {
  width: max-content;
  position: relative;
  padding-bottom: 0.05rem;
}
.home .titles h2 {
  font-weight: 850;
  line-height: 1;
  text-align: center;
}
.home .titles p {
  color: var(--subsTextColor);
  letter-spacing: 0.03rem;
  text-align: center;
}
.home .titles::before {
  content: "";
  width: 100%;
  max-width: 2.9rem;
  height: 0.03rem;
  background-color: #ebebeb;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.home .titles::after {
  content: "";
  width: 0.34rem;
  height: 0.03rem;
  background: linear-gradient(270deg, #f7931e 0%, #f70000 100%);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.home .titles.center {
  margin: auto;
}
.home .banner {
  position: relative;
}
.home .banner .btm {
  z-index: 9;
  position: absolute;
  bottom: 6%;
  left: var(--cm);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home .banner .btm .pagina {
  width: max-content;
  margin: 0;
}
.home .banner .btm .pagina .swiper-pagination-bullet {
  width: 0.06rem;
  height: 0.06rem;
  background-color: white;
  opacity: 1;
  position: relative;
}
.home .banner .btm .pagina .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  content: "";
  width: 0.27rem;
  height: 0.27rem;
  border-radius: 50%;
  border: 0.01rem solid white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.home .banner .btm .pagina .swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-left: 0.31rem;
}
.home .banner .btm .icons {
  display: flex;
  align-items: center;
  color: white;
}
.home .banner .btm .icons .iconfont {
  cursor: pointer;
}
.home .banner .btm .icons .iconfont:hover {
  color: var(--themeColor);
}
.home .banner .btm .icons .icon-lefts {
  margin-right: 0.1rem;
}
.home .banner .btm .icons .icon-rights {
  margin-left: 0.1rem;
}
.home .about {
  background-image: url(../image/home_about_bg.png);
  background-size: cover;
  padding: 1rem 0;
}
.home .about .cont {
  display: flex;
  align-items: center;
}
.home .about .cont .left {
  margin-right: 2rem;
  flex: 1;
}
.home .about .cont .left .rich {
  margin-top: 0.4rem;
  line-height: 2;
}
.home .about .cont .left .rich p + p {
  margin-top: 0.24rem;
}
.home .about .cont .left .item {
  display: none;
}
.home .about .cont .left .item.active {
  display: block;
}
.home .about .cont .right {
  width: 6rem;
  height: 6rem;
  position: relative;
}
.home .about .cont .right svg {
  width: 100%;
  height: 100%;
  display: block;
}
.home .about .cont .right svg .c4,
.home .about .cont .right svg .c1 {
  transition: all 0.3s;
}
.home .about .cont .right svg .c1 {
  animation: wline 10s linear infinite;
}
@keyframes wline {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.home .about .cont .right .list {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  transition: all 0.3s;
}
.home .about .cont .right .list .item {
  position: absolute;
  transition: all 0.3s;
}
.home .about .cont .right .list .item .iconfont {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  border: 0.14rem solid rgba(247, 147, 30, 0.08);
  background: white padding-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--themeColor);
  cursor: pointer;
  line-height: 1;
}
.home .about .cont .right .list .item .iconfont::before {
  font-size: 0.3rem;
  line-height: 1;
  margin-bottom: 0.1rem;
}
.home .about .cont .right .list .item:nth-child(1) {
  left: 6%;
  top: 2%;
}
.home .about .cont .right .list .item:nth-child(2) {
  left: -9%;
  top: 31%;
}
.home .about .cont .right .list .item:nth-child(3) {
  left: -2%;
  top: 66%;
}
.home .about .cont .right .list .item:nth-child(4) {
  left: 21%;
  top: 84%;
}
.home .about .cont .right .list .item.active {
  transform: scale(1.2);
}
.home .about .cont .right .list .item.active .iconfont {
  transition: all 0.3s;
  border-color: var(--themeColor);
  color: var(--subsColor);
}
.home .about .cont .right .list .item.active .iconfont::before {
  color: transparent;
  background-image: linear-gradient(to bottom, #f7931e 0%, #f70000 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.home .about .cont .right .logo {
  width: 1.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}
.home .about .cont .right .logo.active {
  display: block;
}
.home .about .btm {
  display: flex;
  justify-content: space-between;
  margin-top: 0.6rem;
}
.home .about .btm .item {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.home .about .btm .item div {
  position: relative;
  line-height: 1;
  margin-bottom: 0.2rem;
  display: flex;
  align-items: flex-end;
}
.home .about .btm .item div::after {
  content: "+";
  position: absolute;
  top: 0;
  right: -0.1rem;
}
.home .about .btm .item div b + span {
  margin-left: 0.05rem;
  margin-bottom: 0.05rem;
}
.home .about .btm .item p {
  color: var(--themeColor);
}
.home .product {
  padding: 1rem 0;
  background-image: url(../image/home_product_bg.png);
  background-size: cover;
}
.home .product .list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 0.2rem;
  margin: 0.5rem auto;
}
.home .product .list a {
  background: #f8f9fc;
  position: relative;
  padding: 0.2rem;
  display: flex;
  flex-direction: column;
}
.home .product .list a img {
  width: 80%;
  height: 1rem;
  margin: 0 auto 0.1rem;
  object-fit: contain;
}
.home .product .list a p {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
}
.home .product .list a p::before {
  margin-left: 0.1rem;
}
.home .product .list a::before {
  content: attr(text);
  line-height: 0.28rem;
  background-color: var(--themeColor);
  position: absolute;
  left: 0;
  top: 0;
  color: white;
  width: 0.8rem;
  border-radius: 0 0 0.1rem 0;
  text-align: center;
}
.home .product .list a .box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: white;
  background: rgba(8, 36, 60, 0.76);
  white-space: pre-wrap;
  opacity: 0;
  transition: all 0.3s;
  width: 100%;
  height: 100%;
  overflow: auto;
  display: flex;
  align-items: center;
  padding: 5% 0;
  padding-left: 15%;
}
.home .product .list a:hover .box {
  opacity: 1;
}
.home .product .list > *:nth-child(1) {
  animation-delay: 0.13s;
}
.home .product .list > *:nth-child(2) {
  animation-delay: 0.26s;
}
.home .product .list > *:nth-child(3) {
  animation-delay: 0.39s;
}
.home .product .list > *:nth-child(4) {
  animation-delay: 0.52s;
}
.home .product .list > *:nth-child(5) {
  animation-delay: 0.65s;
}
.home .product .list > *:nth-child(6) {
  animation-delay: 0.78s;
}
.home .product .list > *:nth-child(7) {
  animation-delay: 0.91s;
}
.home .product .list > *:nth-child(8) {
  animation-delay: 1.04s;
}
.home .product .list > *:nth-child(9) {
  animation-delay: 1.17s;
}
.home .product .list > *:nth-child(10) {
  animation-delay: 1.3s;
}
.home .product .list > *:nth-child(11) {
  animation-delay: 1.43s;
}
.home .product .list > *:nth-child(12) {
  animation-delay: 1.56s;
}
.home .product .list > *:nth-child(13) {
  animation-delay: 1.69s;
}
.home .product .list > *:nth-child(14) {
  animation-delay: 1.82s;
}
.home .product .list > *:nth-child(15) {
  animation-delay: 1.95s;
}
.home .product .list > *:nth-child(16) {
  animation-delay: 2.08s;
}
.home .product .list > *:nth-child(17) {
  animation-delay: 2.21s;
}
.home .product .list > *:nth-child(18) {
  animation-delay: 2.34s;
}
.home .product .list > *:nth-child(19) {
  animation-delay: 2.47s;
}
.home .product .list > *:nth-child(20) {
  animation-delay: 2.6s;
}
.home .product .list > *:nth-child(21) {
  animation-delay: 2.73s;
}
.home .product .list > *:nth-child(22) {
  animation-delay: 2.86s;
}
.home .product .list > *:nth-child(23) {
  animation-delay: 2.99s;
}
.home .product .list > *:nth-child(24) {
  animation-delay: 3.12s;
}
.home .product .list > *:nth-child(25) {
  animation-delay: 3.25s;
}
.home .product .list > *:nth-child(26) {
  animation-delay: 3.38s;
}
.home .product .list > *:nth-child(27) {
  animation-delay: 3.51s;
}
.home .product .list > *:nth-child(28) {
  animation-delay: 3.64s;
}
.home .product .list > *:nth-child(29) {
  animation-delay: 3.77s;
}
.home .construction {
  padding: 1rem 0;
  background-image: url(../image/home_construction_bg.png);
  background-size: cover;
}
.home .construction .titles {
  margin: auto;
}
.home .construction .titles p {
  letter-spacing: 0.01rem;
}
.home .construction .conts {
  margin-top: 1rem;
}
.home .construction .conts .list {
  display: flex;
  justify-content: space-between;
}
.home .construction .conts .list .item {
  width: 2.3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  padding: 0.45rem 0;
  box-shadow: 0 0.04rem 0.04rem 0 rgba(208, 208, 208, 0.17);
  position: relative;
}
.home .construction .conts .list .item img {
  width: 0.57rem;
  height: 0.53rem;
  object-fit: contain;
}
.home .construction .conts .list .item h4 {
  margin-top: 0.2rem;
  font-weight: 400;
}
.home .construction .conts .list .item p {
  color: var(--subsTextColor);
}
.home .construction .conts .list .item::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 0.13rem solid transparent;
  border-right: 0.13rem solid transparent;
  border-top: 0.13rem solid white;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  filter: drop-shadow(0 0.04rem 0.04rem rgba(208, 208, 208, 0.17));
}
.home .construction .conts .list .item:nth-child(even) {
  transform: translateY(-0.57rem);
}
.home .construction .conts #canvas {
  width: 100%;
  height: 0.88rem;
}
.home .construction .conts .box {
  width: 11.5rem;
  margin: 0.6rem auto 0.1rem;
}
.home .construction .conts .box p {
  margin-bottom: 0.2rem;
  text-align: center;
}
.home .construction .conts .box img {
  width: 100%;
}
.home .application {
  padding: 1rem 0;
}
.home .application .titles p {
  letter-spacing: 0.01rem;
}
.home .application .list {
  margin: 0.9rem auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 0.4rem 0.12rem;
}
.home .application .list a {
  border-bottom: 1px solid #e3e3e3;
}
.home .application .list a img {
  width: 100%;
}
.home .application .list a p {
  line-height: 0.6rem;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
}
.home .application .list a p::before {
  margin-left: 0.1rem;
}
.home .application .list > *:nth-child(1) {
  animation-delay: 0.13s;
}
.home .application .list > *:nth-child(2) {
  animation-delay: 0.26s;
}
.home .application .list > *:nth-child(3) {
  animation-delay: 0.39s;
}
.home .application .list > *:nth-child(4) {
  animation-delay: 0.52s;
}
.home .application .list > *:nth-child(5) {
  animation-delay: 0.65s;
}
.home .application .list > *:nth-child(6) {
  animation-delay: 0.78s;
}
.home .application .list > *:nth-child(7) {
  animation-delay: 0.91s;
}
.home .application .list > *:nth-child(8) {
  animation-delay: 1.04s;
}
.home .application .list > *:nth-child(9) {
  animation-delay: 1.17s;
}
.home .application .list > *:nth-child(10) {
  animation-delay: 1.3s;
}
.home .application .list > *:nth-child(11) {
  animation-delay: 1.43s;
}
.home .application .list > *:nth-child(12) {
  animation-delay: 1.56s;
}
.home .application .list > *:nth-child(13) {
  animation-delay: 1.69s;
}
.home .application .list > *:nth-child(14) {
  animation-delay: 1.82s;
}
.home .application .list > *:nth-child(15) {
  animation-delay: 1.95s;
}
.home .application .list > *:nth-child(16) {
  animation-delay: 2.08s;
}
.home .application .list > *:nth-child(17) {
  animation-delay: 2.21s;
}
.home .application .list > *:nth-child(18) {
  animation-delay: 2.34s;
}
.home .application .list > *:nth-child(19) {
  animation-delay: 2.47s;
}
.home .application .list > *:nth-child(20) {
  animation-delay: 2.6s;
}
.home .application .list > *:nth-child(21) {
  animation-delay: 2.73s;
}
.home .application .list > *:nth-child(22) {
  animation-delay: 2.86s;
}
.home .application .list > *:nth-child(23) {
  animation-delay: 2.99s;
}
.home .application .list > *:nth-child(24) {
  animation-delay: 3.12s;
}
.home .application .list > *:nth-child(25) {
  animation-delay: 3.25s;
}
.home .application .list > *:nth-child(26) {
  animation-delay: 3.38s;
}
.home .application .list > *:nth-child(27) {
  animation-delay: 3.51s;
}
.home .application .list > *:nth-child(28) {
  animation-delay: 3.64s;
}
.home .application .list > *:nth-child(29) {
  animation-delay: 3.77s;
}
.home .oem {
  padding: 1rem 0;
  background-image: url(../image/home_oem_bg.png);
  background-size: cover;
}
.home .oem .tab {
  margin: 0.6rem auto 0.26rem;
  display: flex;
  justify-content: space-between;
  line-height: 1.05rem;
  border-top: 0.01rem solid #dcdcdc;
}
.home .oem .tab .item {
  cursor: pointer;
  font-weight: 500;
  position: relative;
  z-index: 9;
}
.home .oem .tab .item::before {
  content: "";
  width: 0;
  height: 0.02rem;
  background-image: linear-gradient(to right, #f7931e 0%, #f70000 100%);
  position: absolute;
  right: 0;
  top: -0.02rem;
  transition: all 0.3s;
}
.home .oem .tab .item:hover,
.home .oem .tab .item.active {
  color: var(--themeColor);
}
.home .oem .tab .item:hover::before,
.home .oem .tab .item.active::before {
  right: auto;
  left: 0;
  width: 100%;
}
.home .oem .swiper {
  margin-top: 0.26rem;
  overflow: hidden;
  background-image: url(../image/icon2.svg);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center right;
}
.home .oem .swiper .swiper-slide {
  display: flex;
  align-items: center;
}
.home .oem .swiper .swiper-slide img {
  width: 50%;
  margin-right: 1rem;
}
.home .oem .swiper .swiper-slide .right h4 {
  margin-bottom: 0.12rem;
}
.home .oem .swiper .swiper-slide .right .more {
  margin: 1.6rem 0 0;
}
.home .achievements {
  margin: 0.6rem auto;
}
.home .achievements .titles p {
  letter-spacing: 0;
}
.home .achievements .list {
  margin: 0.5rem auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 0.4rem 0.16rem;
}
.home .achievements .list a img {
  width: 100%;
}
.home .achievements .list a p {
  margin-top: 0.14rem;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  padding: 0 0.2rem;
  height: 0.94rem;
  background: rgba(246, 246, 246, 0.5);
  line-height: 1.2;
}
.home .achievements .list a p::before {
  margin-left: 0.1rem;
}
.home .achievements .list > *:nth-child(1) {
  animation-delay: 0.13s;
}
.home .achievements .list > *:nth-child(2) {
  animation-delay: 0.26s;
}
.home .achievements .list > *:nth-child(3) {
  animation-delay: 0.39s;
}
.home .achievements .list > *:nth-child(4) {
  animation-delay: 0.52s;
}
.home .achievements .list > *:nth-child(5) {
  animation-delay: 0.65s;
}
.home .achievements .list > *:nth-child(6) {
  animation-delay: 0.78s;
}
.home .achievements .list > *:nth-child(7) {
  animation-delay: 0.91s;
}
.home .achievements .list > *:nth-child(8) {
  animation-delay: 1.04s;
}
.home .achievements .list > *:nth-child(9) {
  animation-delay: 1.17s;
}
.home .achievements .list > *:nth-child(10) {
  animation-delay: 1.3s;
}
.home .achievements .list > *:nth-child(11) {
  animation-delay: 1.43s;
}
.home .achievements .list > *:nth-child(12) {
  animation-delay: 1.56s;
}
.home .achievements .list > *:nth-child(13) {
  animation-delay: 1.69s;
}
.home .achievements .list > *:nth-child(14) {
  animation-delay: 1.82s;
}
.home .achievements .list > *:nth-child(15) {
  animation-delay: 1.95s;
}
.home .achievements .list > *:nth-child(16) {
  animation-delay: 2.08s;
}
.home .achievements .list > *:nth-child(17) {
  animation-delay: 2.21s;
}
.home .achievements .list > *:nth-child(18) {
  animation-delay: 2.34s;
}
.home .achievements .list > *:nth-child(19) {
  animation-delay: 2.47s;
}
.home .achievements .list > *:nth-child(20) {
  animation-delay: 2.6s;
}
.home .achievements .list > *:nth-child(21) {
  animation-delay: 2.73s;
}
.home .achievements .list > *:nth-child(22) {
  animation-delay: 2.86s;
}
.home .achievements .list > *:nth-child(23) {
  animation-delay: 2.99s;
}
.home .achievements .list > *:nth-child(24) {
  animation-delay: 3.12s;
}
.home .achievements .list > *:nth-child(25) {
  animation-delay: 3.25s;
}
.home .achievements .list > *:nth-child(26) {
  animation-delay: 3.38s;
}
.home .achievements .list > *:nth-child(27) {
  animation-delay: 3.51s;
}
.home .achievements .list > *:nth-child(28) {
  animation-delay: 3.64s;
}
.home .achievements .list > *:nth-child(29) {
  animation-delay: 3.77s;
}
.home .results {
  padding: 0.6rem 0;
  background-color: #fcfcfc;
  overflow: hidden;
}
.home .results .swiper {
  width: 100%;
  margin: 0.6rem auto;
  overflow: visible;
  position: relative;
}
.home .results .swiper .swiper-slide {
  border: 0.02rem solid #d0d0d0;
  padding: 0.24rem 0.26rem;
  position: relative;
  z-index: 9;
}
.home .results .swiper .swiper-slide h5 {
  height: 2.4em;
  line-height: 1.2;
  text-align: center;
}
.home .results .swiper .swiper-slide img {
  width: 100%;
}
.home .results .swiper .swiper-slide:hover {
  border: 0.02rem solid;
  border-image: linear-gradient(180deg, #f7931e, #f70000) 1 1;
  animation: rerere 1s linear infinite alternate-reverse;
}
@keyframes rerere {
  form {
    border-image: linear-gradient(0deg, #f7931e, #f70000) 1 1;
  }
  to {
    border-image: linear-gradient(360deg, #f7931e, #f70000) 1 1;
  }
}
.home .results .swiper::after,
.home .results .swiper::before {
  content: "";
  width: var(--cm);
  height: 100%;
  background: rgba(255, 255, 255, 0.65);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
}
.home .results .swiper::before {
  left: 100%;
}
.home .results .swiper::after {
  right: 100%;
}
.home .news {
  margin: 0.6rem auto 1rem;
}
.home .news .swiper {
  margin: 0.6rem auto;
}
.home .news .swiper .swiper-slide img {
  width: 100%;
}
.home .news .swiper .swiper-slide .text {
  padding: 0.3rem 0.2rem;
  transition: all 0.3s;
}
.home .news .swiper .swiper-slide .text p {
  margin-top: 0.1rem;
}
.home .news .swiper .swiper-slide .text .btm {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home .news .swiper .swiper-slide .text .btm span {
  color: var(--subsTextColor);
}
.home .news .swiper .swiper-slide .text .btm .iconfont {
  color: var(--themeColor);
  line-height: 0.24rem;
  padding: 0 0.2rem;
  border-radius: 0.47rem;
  border: 0.01rem solid var(--themeColor);
}
.home .news .swiper .swiper-slide:hover .text {
  background: #fafafa;
}
main {
  padding: 0.5rem 0 1rem;
}
main .container {
  display: flex;
  align-items: flex-start;
}
main .container .right {
  flex: 1;
}
/* 关于我们 */
.about main {
  background: url(../image/about_bg.png);
  background-size: cover;
  background-position: bottom right;
}
.about main .container {
  display: flex;
  align-items: flex-start;
}
.about main .container .right .btm {
  display: flex;
  justify-content: space-between;
  margin: 0.6rem auto;
}
.about main .container .right .btm .item {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.about main .container .right .btm .item div {
  position: relative;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.about main .container .right .btm .item div b {
  color: var(--themeColor);
}
.about main .container .right .btm .item div span {
  color: #bcbdc0;
}
.about main .container .right .btm .item div::after {
  content: "+";
  position: absolute;
  top: 0;
  right: -0.1rem;
  font-size: 0.24rem;
}
.about main .container .right .btm .item p {
  color: var(--textColor);
}
.about main .container .right .box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about main .container .right .box p,
.about main .container .right .box img {
  width: 47%;
}
.about main .container .right .box p {
  white-space: pre-wrap;
}
/* 荣誉资质 */
.honor main {
  background: url(../image/honor_bg.png);
  background-size: 100% 100%;
}
.honor main .container {
  display: flex;
  align-items: flex-start;
}
.honor main .container .right {
  flex: none;
  overflow: hidden;
  width: calc(var(--container) - 2.9rem);
  display: flex;
  align-items: center;
}
.honor main .container .right .swiper {
  flex: 1;
}
.honor main .container .right .swiper .swiper-slide {
  text-align: center;
}
.honor main .container .right .swiper .swiper-slide img {
  width: 100%;
  margin-bottom: 0.16rem;
}
.honor main .container .right .btns {
  margin-left: 0.84rem;
}
.honor main .container .right .btns .iconfont {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.05);
  color: var(--themeColor);
}
.honor main .container .right .btns .iconfont + .iconfont {
  margin-top: 0.2rem;
}
.honor main .container .right .btns .iconfont.swiper-button-disabled {
  opacity: 0.5;
  cursor: no-drop;
}
/* 合作伙伴 */
.parther main {
  background: url(../image/parther_bg.png);
  background-size: cover;
  background-position: top center;
}
.parther main .container .right img {
  width: 80%;
  margin-left: 1rem;
}
/* 案例展示 */
.case main .container .right {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 0.4rem 0.12rem;
}
.case main .container .right a {
  border-bottom: 1px solid #e3e3e3;
}
.case main .container .right a img {
  width: 100%;
}
.case main .container .right a p {
  line-height: 0.6rem;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
}
.case main .container .right a p::before {
  margin-left: 0.1rem;
}
/* 联系我们 */
.contact main {
  background: url(../image/contact_bg.png);
  background-size: 100% 100%;
}
.contact main .container .right h2 {
  margin-bottom: 0.22rem;
}
.contact main .container .right .cont {
  display: flex;
  align-items: flex-start;
}
.contact main .container .right .cont .box {
  width: 4.6rem;
  background-color: white;
  padding: 0.33rem 0.5rem;
}
.contact main .container .right .cont .box .item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.15rem;
  border-bottom: 0.01rem solid #e5e5e5;
  padding-bottom: 0.15rem;
}
.contact main .container .right .cont .box .item img {
  width: 0.4rem;
  margin-right: 0.1rem;
}
.contact main .container .right .cont .box .item .text {
  color: #666;
}
.contact main .container .right .cont .box .item .text p {
  color: #333;
}
.contact main .container .right .cont .box .ercode {
  display: flex;
  justify-content: center;
}
.contact main .container .right .cont .box .ercode .it {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact main .container .right .cont .box .ercode .it + .it {
  margin-left: 0.1rem;
}
.contact main .container .right .cont .form {
  flex: 1;
  margin-left: 0.4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0.16rem 0.3rem;
}
.contact main .container .right .cont .form input,
.contact main .container .right .cont .form textarea,
.contact main .container .right .cont .form div {
  background-color: white;
}
.contact main .container .right .cont .form input,
.contact main .container .right .cont .form textarea {
  padding: 0.15rem 0.2rem;
  line-height: 1;
}
.contact main .container .right .cont .form textarea {
  line-height: 1.5;
  grid-column-start: 1;
  grid-column-end: 3;
}
.contact main .container .right .cont .form .btn {
  font-weight: 500;
  line-height: 0.5rem;
  text-align: center;
}
.contact main .container .right .cont .form .btn.theme {
  color: white;
  background-color: var(--themeColor);
}
/* 核心产品 */
.product main .container .right .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.2rem;
  margin: 0.5rem auto;
  margin-top: 0;
}
.product main .container .right .list a {
  background: #f8f9fc;
  position: relative;
  padding: 0.2rem;
  display: flex;
  flex-direction: column;
}
.product main .container .right .list a img {
  width: 80%;
  height: 1rem;
  margin: 0 auto 0.1rem;
  object-fit: contain;
}
.product main .container .right .list a p {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
}
.product main .container .right .list a p::before {
  margin-left: 0.1rem;
}
.product main .container .right .list a::before {
  content: attr(text);
  line-height: 0.28rem;
  background-color: var(--themeColor);
  position: absolute;
  left: 0;
  top: 0;
  color: white;
  width: 0.8rem;
  border-radius: 0 0 0.1rem 0;
  text-align: center;
}
.product main .container .right .list a .box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: white;
  background: rgba(8, 36, 60, 0.76);
  white-space: pre-wrap;
  opacity: 0;
  transition: all 0.3s;
  width: 100%;
  height: 100%;
  overflow: auto;
  display: flex;
  align-items: center;
  padding: 5% 0;
  padding-left: 15%;
}
.product main .container .right .list a:hover .box {
  opacity: 1;
}
.product main .container .right .list > *:nth-child(1) {
  animation-delay: 0.13s;
}
.product main .container .right .list > *:nth-child(2) {
  animation-delay: 0.26s;
}
.product main .container .right .list > *:nth-child(3) {
  animation-delay: 0.39s;
}
.product main .container .right .list > *:nth-child(4) {
  animation-delay: 0.52s;
}
.product main .container .right .list > *:nth-child(5) {
  animation-delay: 0.65s;
}
.product main .container .right .list > *:nth-child(6) {
  animation-delay: 0.78s;
}
.product main .container .right .list > *:nth-child(7) {
  animation-delay: 0.91s;
}
.product main .container .right .list > *:nth-child(8) {
  animation-delay: 1.04s;
}
.product main .container .right .list > *:nth-child(9) {
  animation-delay: 1.17s;
}
.product main .container .right .list > *:nth-child(10) {
  animation-delay: 1.3s;
}
.product main .container .right .list > *:nth-child(11) {
  animation-delay: 1.43s;
}
.product main .container .right .list > *:nth-child(12) {
  animation-delay: 1.56s;
}
.product main .container .right .list > *:nth-child(13) {
  animation-delay: 1.69s;
}
.product main .container .right .list > *:nth-child(14) {
  animation-delay: 1.82s;
}
.product main .container .right .list > *:nth-child(15) {
  animation-delay: 1.95s;
}
.product main .container .right .list > *:nth-child(16) {
  animation-delay: 2.08s;
}
.product main .container .right .list > *:nth-child(17) {
  animation-delay: 2.21s;
}
.product main .container .right .list > *:nth-child(18) {
  animation-delay: 2.34s;
}
.product main .container .right .list > *:nth-child(19) {
  animation-delay: 2.47s;
}
.product main .container .right .list > *:nth-child(20) {
  animation-delay: 2.6s;
}
.product main .container .right .list > *:nth-child(21) {
  animation-delay: 2.73s;
}
.product main .container .right .list > *:nth-child(22) {
  animation-delay: 2.86s;
}
.product main .container .right .list > *:nth-child(23) {
  animation-delay: 2.99s;
}
.product main .container .right .list > *:nth-child(24) {
  animation-delay: 3.12s;
}
.product main .container .right .list > *:nth-child(25) {
  animation-delay: 3.25s;
}
.product main .container .right .list > *:nth-child(26) {
  animation-delay: 3.38s;
}
.product main .container .right .list > *:nth-child(27) {
  animation-delay: 3.51s;
}
.product main .container .right .list > *:nth-child(28) {
  animation-delay: 3.64s;
}
.product main .container .right .list > *:nth-child(29) {
  animation-delay: 3.77s;
}
/* 产品详情 */
.product-info .top-info {
  background-image: url(../image/info_bg.png);
  background-size: 100% auto;
  background-position: bottom center;
  background-repeat: no-repeat;
  padding: calc(var(--headerHeight) + 0.45rem) 0 0.45rem;
}
.product-info .top-info .container {
  display: flex;
  align-items: flex-start;
}
.product-info .top-info .container .right {
  flex: 1;
  display: flex;
  align-items: center;
}
.product-info .top-info .container .right .tos {
  flex: 1;
  margin-right: 0.72rem;
}
.product-info .top-info .container .right .tos h2 {
  color: var(--themeColor);
  display: flex;
  align-items: center;
}
.product-info .top-info .container .right .tos h2::before {
  content: "";
  width: 0.7rem;
  height: 0.04rem;
  background-color: var(--themeColor);
  margin-right: 0.2rem;
}
.product-info .top-info .container .right .tos p {
  line-height: 2.1;
  margin: 0.3rem 0 0.9rem;
}
.product-info .top-info .container .right .tos .btn {
  width: 100%;
  height: 0.68rem;
  line-height: 0.68rem;
  border-radius: 0.47rem;
  border: 1px solid var(--themeColor);
  color: var(--themeColor);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
  margin: auto;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0.2rem;
}
.product-info .top-info .container .right .tos .btn::before {
  font-size: 0.22rem;
  margin-left: 0.2rem;
}
.product-info .top-info .container .right .tos .btn:hover {
  background-color: var(--themeColor);
  color: white;
}
.product-info .top-info .container .right img {
  width: 7.5rem;
  height: 6rem;
  object-fit: contain;
}
.product-info .attr {
  margin: 1rem auto;
}
.product-info .attr h2 {
  margin-bottom: 0.3rem;
  text-align: center;
}
.product-info .attr .subs {
  line-height: 0.94rem;
  background: #f7931e;
  box-shadow: 0 0.16rem 0.43rem 0 rgba(247, 147, 30, 0.28);
  border-radius: 0.14rem;
  padding: 0 0.46rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  color: white;
  font-weight: 500;
}
.product-info .attr .subs::before {
  transform: rotate(90deg);
}
.product-info .attr .table .th,
.product-info .attr .table .tb {
  display: flex;
}
.product-info .attr .table .th .td,
.product-info .attr .table .tb .td {
  flex: 1;
  text-align: center;
}
.product-info .attr .table .th {
  margin-top: 0.4rem;
  background: #ffe6c8;
  line-height: 0.94rem;
  border-radius: 0.14rem;
}
.product-info .attr .table .tb {
  margin-top: 0.2rem;
  line-height: 0.82rem;
  border-radius: 0.14rem;
  border: 1px solid var(--themeColor);
}
.product-info .list .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-info .list .item .left,
.product-info .list .item .right {
  width: 48%;
}
.product-info .list .item .left {
  border-top: 0.01rem solid var(--themeColor);
  border-left: 0.01rem solid var(--themeColor);
}
.product-info .list .item .left .row {
  display: flex;
}
.product-info .list .item .left .row p {
  flex: 1;
  line-height: 0.7rem;
  border-bottom: 0.01rem solid var(--themeColor);
  border-right: 0.01rem solid var(--themeColor);
  padding-left: 0.2rem;
}
.product-info .list .item .left .row p:first-child {
  font-weight: 600;
  background-color: #ffe6c8;
}
.product-info .list .item .left .row p:last-child {
  color: var(--subsTextColor);
}
.product-info .list .item + .item {
  margin-top: 0.7rem;
}
.product-info .list .item:nth-child(even) {
  flex-direction: row-reverse;
}
/* 中小试产线建设 */
.page_construction main {
  background-image: url(../image/page_construction_bg.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center bottom;
}
.page_construction main .container {
  display: block;
}
.page_construction main .container .list {
  display: flex;
  justify-content: space-between;
}
.page_construction main .container .list .item {
  width: 1.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  padding: 0.22rem 0;
  box-shadow: 0 0.04rem 0.04rem 0 rgba(208, 208, 208, 0.17);
  position: relative;
}
.page_construction main .container .list .item img {
  width: 0.57rem;
  height: 0.53rem;
  object-fit: contain;
}
.page_construction main .container .list .item h4 {
  margin-top: 0.2rem;
  font-weight: 400;
}
.page_construction main .container .list .item p {
  color: var(--subsTextColor);
}
.page_construction main .container .list .item:first-child:before {
  content: "";
}
.page_construction main .container .list .item + .iconfont::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -0.6rem;
  font-size: 0.3rem;
  color: transparent;
  background: linear-gradient(to right, #f7931e 0%, #f70000 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.page_construction main .container .lists {
  display: flex;
  margin: 0.67rem auto 1.3rem;
}
.page_construction main .container .lists .item {
  flex: 1;
  aspect-ratio: 1 / 1;
  background-image: url(../image/litsts_item.svg);
  background-size: 100% 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page_construction main .container .lists .item:nth-child(even) {
  transform: translateY(30%);
}
.page_construction main .container .box {
  width: 11.5rem;
  margin: 0.6rem auto 0.1rem;
}
.page_construction main .container .box p {
  margin-bottom: 0.2rem;
  text-align: center;
}
.page_construction main .container .box img {
  width: 100%;
}
/* 行业应用 */
.page_application main .container .right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.4rem 0.12rem;
}
.page_application main .container .right a {
  border-bottom: 1px solid #e3e3e3;
}
.page_application main .container .right a img {
  width: 100%;
}
.page_application main .container .right a p {
  line-height: 0.6rem;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
}
.page_application main .container .right a p::before {
  margin-left: 0.1rem;
}
.page_application main .container .right > *:nth-child(1) {
  animation-delay: 0.13s;
}
.page_application main .container .right > *:nth-child(2) {
  animation-delay: 0.26s;
}
.page_application main .container .right > *:nth-child(3) {
  animation-delay: 0.39s;
}
.page_application main .container .right > *:nth-child(4) {
  animation-delay: 0.52s;
}
.page_application main .container .right > *:nth-child(5) {
  animation-delay: 0.65s;
}
.page_application main .container .right > *:nth-child(6) {
  animation-delay: 0.78s;
}
.page_application main .container .right > *:nth-child(7) {
  animation-delay: 0.91s;
}
.page_application main .container .right > *:nth-child(8) {
  animation-delay: 1.04s;
}
.page_application main .container .right > *:nth-child(9) {
  animation-delay: 1.17s;
}
.page_application main .container .right > *:nth-child(10) {
  animation-delay: 1.3s;
}
.page_application main .container .right > *:nth-child(11) {
  animation-delay: 1.43s;
}
.page_application main .container .right > *:nth-child(12) {
  animation-delay: 1.56s;
}
.page_application main .container .right > *:nth-child(13) {
  animation-delay: 1.69s;
}
.page_application main .container .right > *:nth-child(14) {
  animation-delay: 1.82s;
}
.page_application main .container .right > *:nth-child(15) {
  animation-delay: 1.95s;
}
.page_application main .container .right > *:nth-child(16) {
  animation-delay: 2.08s;
}
.page_application main .container .right > *:nth-child(17) {
  animation-delay: 2.21s;
}
.page_application main .container .right > *:nth-child(18) {
  animation-delay: 2.34s;
}
.page_application main .container .right > *:nth-child(19) {
  animation-delay: 2.47s;
}
.page_application main .container .right > *:nth-child(20) {
  animation-delay: 2.6s;
}
.page_application main .container .right > *:nth-child(21) {
  animation-delay: 2.73s;
}
.page_application main .container .right > *:nth-child(22) {
  animation-delay: 2.86s;
}
.page_application main .container .right > *:nth-child(23) {
  animation-delay: 2.99s;
}
.page_application main .container .right > *:nth-child(24) {
  animation-delay: 3.12s;
}
.page_application main .container .right > *:nth-child(25) {
  animation-delay: 3.25s;
}
.page_application main .container .right > *:nth-child(26) {
  animation-delay: 3.38s;
}
.page_application main .container .right > *:nth-child(27) {
  animation-delay: 3.51s;
}
.page_application main .container .right > *:nth-child(28) {
  animation-delay: 3.64s;
}
.page_application main .container .right > *:nth-child(29) {
  animation-delay: 3.77s;
}
/* 详情 */
.page_oem_info .page_banner,
.page_application_info .page_banner {
  margin-bottom: calc(-1 * var(--headerHeight));
}
.page_oem_info .info,
.page_application_info .info {
  --container: 12rem;
  margin-top: calc(1rem + var(--headerHeight));
}
.page_oem_info .info > p,
.page_application_info .info > p {
  margin-top: 0.45rem;
  color: var(--themeColor);
}
.page_oem_info .info .rich,
.page_application_info .info .rich {
  margin-top: 0.5rem;
  border-top: 0.01rem solid #d9d9d9;
  padding-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.page_oem_info .info .btms,
.page_application_info .info .btms {
  display: flex;
  gap: 0.3rem;
}
.page_oem_info .info .btms a,
.page_application_info .info .btms a {
  flex: 1;
  background: #f7f7f7;
  border-radius: 0.2rem;
  padding: 0.42rem;
  padding-left: 0.8rem;
  position: relative;
}
.page_oem_info .info .btms a span,
.page_application_info .info .btms a span {
  display: block;
}
.page_oem_info .info .btms a::before,
.page_application_info .info .btms a::before {
  font-size: 0.3rem;
  position: absolute;
  left: 0.42rem;
  top: 50%;
  transform: translateY(-50%);
}
.page_oem_info .info .btms a.icon-right,
.page_application_info .info .btms a.icon-right {
  text-align: right;
  padding-left: 0.42rem;
  padding-right: 0.8rem;
}
.page_oem_info .info .btms a.icon-right::before,
.page_application_info .info .btms a.icon-right::before {
  left: auto;
  right: 0.42rem;
}
.page_oem_info .info .icon-back,
.page_application_info .info .icon-back {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.7rem auto 1rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  border: 0.02rem solid #57585a;
  font-size: 0.25rem;
}
.page_oem_info .info .icon-back:hover,
.page_application_info .info .icon-back:hover {
  background-color: var(--themeColor);
  color: white;
  border-color: var(--themeColor);
}
/* 实验代工 */
.page_oem main .container .lc {
  position: sticky;
  top: calc(var(--headerHeight) + 0.2rem);
  padding-left: 0.2rem;
  margin-right: 0.6rem;
  border-left: 0.02rem solid #56687633;
}
.page_oem main .container .lc a {
  display: block;
  position: relative;
}
.page_oem main .container .lc a::before {
  content: "";
  background: #08243c;
  width: 0.04rem;
  height: 0.04rem;
  border-radius: 50%;
  position: absolute;
  left: -0.23rem;
  top: 50%;
  transform: translateY(-50%);
}
.page_oem main .container .lc a.active {
  color: var(--themeColor);
}
.page_oem main .container .lc a.active::before {
  background: linear-gradient(180deg, #f7931e 0%, #f70000 100%);
  width: 0.04rem;
  height: 0.26rem;
  border-radius: 0.2rem;
}
.page_oem main .container .lc a + a {
  margin-top: 0.34rem;
}
.page_oem main .container .right a {
  width: 90%;
  background-color: #f7f7f7;
  background-image: url(../image/fff_bg.png), url(../image/icon2.svg);
  background-repeat: no-repeat, no-repeat;
  background-size: 110% auto, 4.37rem auto;
  background-position: left center, center;
  border-radius: 0 0.3rem 0.3rem 0;
  display: flex;
  align-items: center;
  padding: 1.1rem 1rem;
  position: relative;
}
.page_oem main .container .right a .left {
  width: 5.1rem;
}
.page_oem main .container .right a .left p {
  margin-top: 0.3rem;
}
.page_oem main .container .right a .left .more {
  margin-left: 0;
  margin-top: 0.5rem;
}
.page_oem main .container .right a img {
  width: 6.36rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 7.6rem;
}
.page_oem main .container .right a:nth-child(even) {
  margin-left: 10%;
  flex-direction: row-reverse;
  border-radius: 0.3rem 0 0 0.3rem;
}
.page_oem main .container .right a:nth-child(even) img {
  left: auto;
  right: 7.6rem;
}
.page_oem main .container .right a + a {
  margin-top: 1rem;
}
/* 成果转化 */
.page_results main {
  background-image: url(../image/results_bg.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center bottom;
}
.page_results main .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 0.47rem 0.75rem;
}
.page_results main .container a img {
  width: 100%;
}
.page_results main .container a p {
  text-align: center;
  margin-top: 0.18rem;
}
.page_results main .container > *:nth-child(1) {
  animation-delay: 0.13s;
}
.page_results main .container > *:nth-child(2) {
  animation-delay: 0.26s;
}
.page_results main .container > *:nth-child(3) {
  animation-delay: 0.39s;
}
.page_results main .container > *:nth-child(4) {
  animation-delay: 0.52s;
}
.page_results main .container > *:nth-child(5) {
  animation-delay: 0.65s;
}
.page_results main .container > *:nth-child(6) {
  animation-delay: 0.78s;
}
.page_results main .container > *:nth-child(7) {
  animation-delay: 0.91s;
}
.page_results main .container > *:nth-child(8) {
  animation-delay: 1.04s;
}
.page_results main .container > *:nth-child(9) {
  animation-delay: 1.17s;
}
.page_results main .container > *:nth-child(10) {
  animation-delay: 1.3s;
}
.page_results main .container > *:nth-child(11) {
  animation-delay: 1.43s;
}
.page_results main .container > *:nth-child(12) {
  animation-delay: 1.56s;
}
.page_results main .container > *:nth-child(13) {
  animation-delay: 1.69s;
}
.page_results main .container > *:nth-child(14) {
  animation-delay: 1.82s;
}
.page_results main .container > *:nth-child(15) {
  animation-delay: 1.95s;
}
.page_results main .container > *:nth-child(16) {
  animation-delay: 2.08s;
}
.page_results main .container > *:nth-child(17) {
  animation-delay: 2.21s;
}
.page_results main .container > *:nth-child(18) {
  animation-delay: 2.34s;
}
.page_results main .container > *:nth-child(19) {
  animation-delay: 2.47s;
}
.page_results main .container > *:nth-child(20) {
  animation-delay: 2.6s;
}
.page_results main .container > *:nth-child(21) {
  animation-delay: 2.73s;
}
.page_results main .container > *:nth-child(22) {
  animation-delay: 2.86s;
}
.page_results main .container > *:nth-child(23) {
  animation-delay: 2.99s;
}
.page_results main .container > *:nth-child(24) {
  animation-delay: 3.12s;
}
.page_results main .container > *:nth-child(25) {
  animation-delay: 3.25s;
}
.page_results main .container > *:nth-child(26) {
  animation-delay: 3.38s;
}
.page_results main .container > *:nth-child(27) {
  animation-delay: 3.51s;
}
.page_results main .container > *:nth-child(28) {
  animation-delay: 3.64s;
}
.page_results main .container > *:nth-child(29) {
  animation-delay: 3.77s;
}
/* 新闻资讯 */
.page_news main .container .right {
  flex: none;
  width: calc(var(--container) - 2.6rem);
}
.page_news main .container .right .box {
  position: relative;
}
.page_news main .container .right .box .top.swiper {
  overflow: hidden;
}
.page_news main .container .right .box .top.swiper .swiper-slide img {
  width: 100%;
}
.page_news main .container .right .box .top.swiper .swiper-slide .text {
  padding: 0.3rem 0.2rem;
  background: #fafafa;
}
.page_news main .container .right .box .top.swiper .swiper-slide .text p {
  margin-top: 0.1rem;
}
.page_news main .container .right .box .top.swiper .swiper-slide .text .btm {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page_news main .container .right .box .top.swiper .swiper-slide .text .btm span {
  color: var(--subsTextColor);
}
.page_news main .container .right .box .top.swiper .swiper-slide .text .btm .iconfont {
  color: var(--themeColor);
  line-height: 0.24rem;
  padding: 0 0.2rem;
  border-radius: 0.47rem;
  border: 0.01rem solid var(--themeColor);
}
.page_news main .container .right .box > .iconfont {
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--themeColor);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 22%;
  z-index: 9;
  font-size: 0.25rem;
  cursor: pointer;
}
.page_news main .container .right .box > .iconfont.icon-left {
  left: -0.25rem;
}
.page_news main .container .right .box > .iconfont.icon-right {
  right: -0.25rem;
}
.page_news main .container .right .box > .iconfont.swiper-button-disabled {
  cursor: not-allowed;
  opacity: 0.6;
}
.page_news main .container .right .list {
  margin-top: 0.6rem;
}
.page_news main .container .right .list a {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.page_news main .container .right .list a .left {
  width: 8.2rem;
}
.page_news main .container .right .list a .left h3 {
  color: #333333;
}
.page_news main .container .right .list a .left span {
  color: #666666;
}
.page_news main .container .right .list a .left p {
  color: #666666;
  margin: 0.26rem auto 0.5rem;
}
.page_news main .container .right .list a .left .iconfont {
  width: max-content;
  color: var(--themeColor);
  line-height: 0.24rem;
  padding: 0 0.2rem;
  border-radius: 0.47rem;
  border: 0.01rem solid var(--themeColor);
}
.page_news main .container .right .list a .right {
  flex: 1;
  margin-left: 1.07rem;
}
.page_news main .container .right .list a .right img {
  width: 100%;
}
.page_news main .container .right .list a + a {
  border-top: none;
}
/* 手机 */
@media (max-width: 450px) {
  :root {
    --headerHeight: 60px;
    --container: 92vw;
  }
  body {
    font-size: 15px;
  }
  .moblie {
    display: block;
  }
  .fs-64,
  .fs-60,
  .fs-50,
  .fs-48 {
    font-size: 30px;
  }
  .fs-42 {
    font-size: 26px;
  }
  .fs-40 {
    font-size: 24px;
  }
  .fs-38,
  .fs-36 {
    font-size: 22px;
  }
  .fs-32 {
    font-size: 21px;
  }
  .fs-28,
  .fs-30 {
    font-size: 20px;
  }
  .fs-26,
  .fs-27 {
    font-size: 19px;
  }
  .fs-24 {
    font-size: 18px;
  }
  .fs-22 {
    font-size: 17px;
  }
  .fs-20 {
    font-size: 16px;
  }
  .fs-18 {
    font-size: 14px;
  }
  .fs-16,
  .fs-15,
  .fs-14 {
    font-size: 13px;
  }
  .fs-13,
  .fs-12 {
    font-size: 12px;
  }
  .iconfont {
    font-size: 16px;
  }
  .header {
    position: sticky;
  }
  .header > .container .menu {
    border-top: 1px solid #eee;
    position: fixed;
    top: var(--headerHeight);
    left: 100vw;
    display: block;
    width: 100vw;
    height: calc(100vh - var(--headerHeight));
    background-color: white;
    text-align: center;
    transition: left 0.3s;
  }
  .header > .container .menu.active {
    left: 0;
  }
  .header > .container .menu li > a {
    position: relative;
    border-bottom: 1px solid #ddd;
  }
  .header > .container .menu li > a::after,
  .header > .container .menu li > a::before {
    content: "";
    position: absolute;
    top: 50% !important;
    left: auto !important;
    right: 10px !important;
    width: 15px !important;
    height: 2px !important;
    background-color: #444;
    transition: all 0.3s;
  }
  .header > .container .menu li > a::after {
    transform: rotate(90deg);
  }
  .header > .container .menu li > a.kai::before,
  .header > .container .menu li > a.kai::after {
    transform: rotate(360deg);
  }
  .header > .container .menu li .childs {
    position: static;
    width: 100%;
    box-shadow: none;
    transform: none;
  }
  .header > .container .menu li + li {
    margin-left: 0;
  }
  .header > .container .logo {
    width: 35vw;
  }
  .home .banner .btm .pagina .swiper-pagination-bullet {
    width: 5px;
    height: 5px;
  }
  .home .banner .btm .pagina .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    width: 19px;
    height: 19px;
  }
  .home .about .cont {
    display: block;
  }
  .home .about .cont .left {
    margin-right: 0;
  }
  .home .about .cont .right {
    width: 92vw;
    height: 92vw;
    margin-top: 30px;
  }
  .home .about .cont .right .logo,
  .home .about .cont .right .list .item .iconfont {
    width: 18.4vw;
    height: 18.4vw;
    border-width: 1.4vw;
  }
  .home .about .cont .right .list .item .iconfont::before {
    font-size: 4.6vw;
  }
  .home .about .btm {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px 0;
  }
  .home .about .btm .item div::after {
    right: -10px;
  }
  .home .product .list {
    grid-template-columns: repeat(2, 1fr);
  }
  .product main .container .right .list a img,
  .home .product .list a img {
    height: 20vw;
  }
  .product main .container .right .list a::before,
  .home .product .list a::before {
    line-height: 1.2;
    width: auto;
    padding: 0 10px;
  }
  .more {
    width: max-content;
    line-height: 1.5;
    height: auto;
    padding: 0 10px;
    border-radius: 200px;
  }
  .more::before {
    font-size: 20px;
  }
  .home .construction .conts #canvas {
    display: none;
  }
  .home .construction .conts .list .item:nth-child(even) {
    transform: none;
  }
  .home .construction .conts .list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .home .construction .conts .list .item {
    width: 100%;
  }
  .home .construction .conts .list .item::after {
    display: none;
  }
  .home .construction .conts .list .item img {
    width: 7vw;
    height: 7vw;
  }
  .home .construction .conts .list .item p {
    text-align: center;
  }
  .home .construction .conts .box {
    width: 100%;
    margin: 20px auto;
  }
  .home .application .list {
    grid-template-columns: repeat(2, 1fr);
  }
  .home .application .list a p {
    line-height: 2;
  }
  .home .oem .swiper .swiper-slide {
    display: block;
  }
  .home .oem .swiper .swiper-slide img {
    width: 100%;
    margin-right: 0;
  }
  .home .oem .swiper .swiper-slide .right {
    margin-top: 10px;
  }
  .home .oem .swiper .swiper-slide .right .more {
    margin-top: 10px;
  }
  .home .oem .tab {
    overflow-x: auto;
  }
  .home .oem .tab .item {
    white-space: nowrap;
  }
  .home .oem .tab .item + .item {
    margin-left: 10px;
  }
  .home .achievements .list {
    grid-template-columns: repeat(2, 1fr);
  }
  .home .achievements .more {
    margin-top: 20px;
  }
  .home .achievements .list a p {
    width: 45vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
  }
  .home .achievements .list a p::before {
    display: none;
  }
  .home .news .swiper .swiper-slide .text .btm .iconfont {
    line-height: 1;
  }
  .footer .mianss {
    display: block;
  }
  .footer .mianss .left .logo {
    width: 35vw;
  }
  .footer .mianss .left .ercode img {
    width: 80px;
  }
  .footer .mianss .right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 20px auto;
  }
  .footer .mianss .right li + li {
    margin-left: 0;
  }
  .footer .btm {
    line-height: 3;
  }
  .footer .mianss .right li a {
    display: none;
  }
  .footer .mianss .right li a:first-child {
    display: block;
  }
  .pages a,
  .pagination a,
  .pages span,
  .pagination span {
    width: 30px;
    line-height: 30px;
  }
  .page_banner img {
    height: 50vw;
    object-fit: cover;
  }
  .page_banner h1 {
    top: 50%;
  }
  main .container {
    display: block;
  }
  .nav {
    width: 100%;
    margin-right: 0;
    position: static;
  }
  .nav a {
    line-height: 3;
  }
  main .container .right {
    margin-top: 20px;
  }
  .product main .container .right .list {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-info .top-info .nav {
    display: none;
  }
  .product-info .top-info .right {
    display: block;
  }
  .product-info .top-info .container .right {
    display: block;
  }
  .product-info .top-info .container .right .tos {
    margin-right: 0;
  }
  .product-info .top-info .container .right .tos .btn::before,
  .product-info .top-info .container .right .tos .btn {
    font-size: 14px;
  }
  .product-info .top-info .container .right .tos .btn {
    line-height: 40px;
    height: 40px;
    border-radius: 200px;
  }
  .product-info .attr .subs {
    line-height: 3;
  }
  .product-info .attr .table {
    overflow-x: auto;
  }
  .product-info .attr .table .th,
  .product-info .attr .table .tb {
    width: max-content;
  }
  .product-info .attr .table .th .td,
  .product-info .attr .table .tb .td {
    width: 35vw;
    flex: none;
    white-space: nowrap;
    line-height: 3;
  }
  .product-info .list .item {
    display: block;
  }
  .product-info .list {
    margin-bottom: 40px;
  }
  .product-info .list .item .left,
  .product-info .list .item .right {
    width: 100%;
  }
  .product-info .list .item .right {
    border: 1px solid var(--themeColor);
    border-top: none;
  }
  .product-info .list .item .left .row p {
    line-height: 2.5;
  }
  .page_application main .container .right {
    grid-template-columns: repeat(2, 1fr);
  }
  .page_application main .container .right a p {
    line-height: 3;
  }
  .page_oem_info .info .btms a::before,
  .page_application_info .info .btms a::before {
    font-size: 30px;
  }
  .page_oem_info .info .btms a,
  .page_application_info .info .btms a {
    padding-left: 40px;
  }
  .page_oem_info .info .btms a.icon-right,
  .page_application_info .info .btms a.icon-right {
    padding-right: 40px;
  }
  .page_oem_info .info .icon-back,
  .page_application_info .info .icon-back {
    width: 40px;
    height: 40px;
  }
  .page_oem_info .info .icon-back,
  .page_application_info .info .icon-back {
    font-size: 15px;
  }
  .page_results main .container {
    grid-template-columns: repeat(2, 1fr);
  }
  .page_results main {
    background-size: cover;
  }
  .page_news main .container .right {
    width: 100%;
  }
  .page_news main .container .right .box > .iconfont {
    width: 25px;
    height: 25px;
    font-size: 15px;
  }
  .page_news main .container .right .list a .left .iconfont,
  .page_news main .container .right .box .top.swiper .swiper-slide .text .btm .iconfont {
    line-height: 1;
  }
  .page_news main .container .right .list a {
    flex-direction: column-reverse;
  }
  .page_news main .container .right .list a .right {
    margin: 0;
  }
  .page_news main .container .right .list a .left {
    width: 100%;
    margin-top: 10px;
  }
  .page_oem main .container .right a:nth-child(even),
  .page_oem main .container .right a {
    padding: 15px;
    width: 100%;
    flex-direction: column-reverse;
    border-radius: 0.3rem;
  }
  .page_oem main .container .right a:nth-child(even) {
    margin-left: 0;
  }
  .page_oem main .container .right a .left,
  .page_oem main .container .right a img {
    position: static;
    transform: none;
    width: 100%;
  }
  .page_oem main .container .right a .left {
    margin-top: 10px;
  }
  .page_construction main .container .list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .page_construction main .container .list .item {
    width: 100%;
    padding: 20px 0;
  }
  .page_construction main .container .list .item + .item {
    border-left: 1px solid #eee;
  }
  .page_construction main .container .list .item:nth-child(n + 4) {
    border-top: 1px solid #eee;
  }
  .page_construction main .container .list .item img {
    width: 7vw;
    height: 7vw;
  }
  .page_construction main .container .list .item p {
    text-align: center;
  }
  .page_construction main .container .list .item + .iconfont::before {
    display: none;
  }
  .page_construction main {
    background-size: cover;
  }
  .page_construction main .container .box {
    width: 100%;
  }
  .page_construction main .container .lists {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .page_construction main .container .lists .item:nth-child(even) {
    transform: none;
  }
  .header .search_box .container input {
    font-size: 16px;
    line-height: 2;
  }
  .header .search_box .container .iconfont {
    font-size: 25px;
  }
}
