@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: #1ba64f;
  --headerHeight: 0.96rem;
  --container: 12.8rem;
  --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: #000;
  width: 100vw;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
}
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: #000;
}
/* 表单元素 */
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 img {
  width: 100%;
}
.page_banner .text {
  position: absolute;
  left: var(--cm);
  top: 50%;
  transform: translateY(-50%);
  color: white;
}
.page_banner .text .pa {
  padding: 0 0.1rem;
  width: max-content;
  background-color: #1ba64f;
  line-height: 0.3rem;
  border-radius: 0.05rem;
}
.page_banner .text h2 {
  margin: 0.3rem 0 0.2rem;
}
.page_banner .text a {
  width: max-content;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  color: white;
  border-bottom: 0.01rem solid white;
  margin-top: 0.3rem;
}
.page_banner .text a::before {
  margin-left: 0.1rem;
  font-size: 0.2rem;
}
.header {
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999999999;
  transition: all 0.3s;
  --container: calc(100vw - 0.8rem);
}
.header > .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: var(--headerHeight);
}
.header > .container .logo {
  width: 1.06rem;
}
.header > .container .logo img {
  width: 100%;
}
.header > .container .menu {
  display: flex;
}
.header > .container .menu li > a {
  display: block;
  transition: all 0.3s, font-size 0s;
  color: white;
  font-family: AlibabaSans-Bold;
  position: relative;
  font-size: 0.20rem;
}
.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) !important;
}
.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;
  width: 100vw;
  position: absolute;
  top: 100%;
  left: 0;
  border-top: 1px solid rgba(170, 175, 180, 0.3);
  background-color: white;
  box-shadow: 0 0.1rem 0.1rem rgba(170, 175, 180, 0.3);
  padding: 0.2rem 0;
}
.header > .container .menu li .childs .container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 0.4rem;
}
.header > .container .menu li .childs .container a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--themeColor);
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
}
.header > .container .menu li .childs .container a img {
  width: 1.36rem;
  height: 1.36rem;
  object-fit: contain;
  padding: 0.15rem;
}
.header > .container .right {
  display: flex;
  align-items: center;
}
.header > .container .right .iconfont {
  color: white;
  display: flex;
  align-items: center;
}
.header > .container .right .iconfont::before {
  margin-right: 0.1rem;
  font-size: 0.2rem;
}
.header > .container .right .menu_btn {
  --color: #fff;
  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: var(--color);
  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);
  background-color: white;
}
.header.active .logo {
  filter: invert(100%);
}
.header.active > .container .menu li > a {
  color: #333;
}
.header.active > .container .right .iconfont {
  color: #333;
}
.header.active > .container .right .menu_btn {
  --color: #444;
}
.footer {
  background-color: #f2f2f2;
}
.footer .mianss {
  padding: 1.2rem 0;
  display: flex;
  justify-content: space-between;
}
.footer .mianss .logo {
  width: 1.4rem;
}
.footer .mianss .logo img {
  width: 100%;
}
.footer .mianss h4 {
  margin-bottom: 0.28rem;
}
.footer .mianss .contact .cont .iconfont {
  display: flex;
  color: #8b8b8b;
}
.footer .mianss .contact .cont .iconfont::before {
  margin-right: 0.1rem;
}
.footer .mianss .ercode img {
  width: 1.5rem;
}
.footer .mianss .form .box textarea {
  width: 100%;
  background-color: white;
  padding: 0.12rem;
}
.footer .mianss .form .box .ercode {
  padding-left: 0.12rem;
  background-color: white;
  margin: 0.12rem 0;
}
.footer .mianss .form .box .btn {
  text-align: center;
  line-height: 0.4rem;
  background-color: #1ba64f;
  color: white;
  border-radius: 0.05rem;
}
.footer .mianss .form .box canvas {
  position: fixed;
  left: 111vw;
}
.footer .btm {
  line-height: 0.72rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  color: #a8a8a8;
}
.footer .btm a {
  color: #a8a8a8;
}
/* 首页 */
.home .banner {
  overflow: hidden;
}
.home .banner .swiper-slide {
  position: relative;
}
.home .banner .swiper-slide .text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home .banner .swiper-slide .text p,
.home .banner .swiper-slide .text h2 {
  color: white;
  white-space: nowrap;
  text-align: center;
  line-height: 1.2;
}
.home .banner .swiper-slide .text h2 {
  margin: 0.2rem auto 0.6rem;
}
.home .banner .swiper-slide .text a {
  width: 1.2rem;
  line-height: 0.52rem;
  border-radius: 0.05rem;
  background: #ffffff;
  text-align: center;
}
.home .about {
  margin: 1.6rem auto;
  display: flex;
}
.home .about .left {
  width: 6.8rem;
}
.home .about .right {
  flex: 1;
  margin-left: 1rem;
  display: flex;
  flex-direction: column;
}
.home .about .right .rich {
  margin: 0.6rem 0 0.4rem;
  color: #4b4b4b;
}
.home .about .right a {
  width: max-content;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  color: var(--themeColor);
  border-bottom: 0.01rem solid var(--themeColor);
}
.home .about .right a::before {
  font-size: 0.2rem;
  margin-left: 0.1rem;
}
.home .sl {
  background: linear-gradient(180deg, #eff7f0 0%, #ffffff 100%);
  padding: 1.68rem 0;
}
.home .sl .container {
  display: flex;
  align-items: center;
}
.home .sl .container .left {
  flex: 1;
  margin-right: 1rem;
}
.home .sl .container .left h2 {
  margin-bottom: 0.6rem;
}
.home .sl .container .left p {
  color: #4b4b4b;
}
.home .sl .container ul {
  width: 7rem;
  display: flex;
  justify-content: space-between;
}
.home .sl .container ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 1.8rem;
  color: #4b4b4b;
}
.home .sl .container ul li img {
  width: 100%;
  margin-bottom: 0.3rem;
}
.home .block {
  overflow: hidden;
  border-radius: 0.4rem;
  position: relative;
}
.home .block .swiper-slide {
  overflow: hidden;
  border-radius: 0.4rem;
  position: relative;
}
.home .block .swiper-slide img {
  width: 100%;
}
.home .block .swiper-slide .text {
  width: 45%;
  position: absolute;
  left: 1.3rem;
  top: 50%;
  transform: translateY(-50%);
  color: white;
}
.home .block .swiper-slide .text .rich {
  margin: 0.6rem 0;
}
.home .block .swiper-slide .text a {
  width: max-content;
  color: white;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  border-bottom: 0.01rem solid white;
}
.home .block .swiper-slide .text a::before {
  font-size: 0.2rem;
  margin-left: 0.1rem;
}
.home .block .pagi {
  position: absolute;
  left: 50%;
  bottom: 0.4rem;
  transform: translateX(-50%);
  z-index: 2;
  width: max-content;
}
.home .block .pagi .swiper-pagination-bullet {
  border-radius: 0;
  width: 0.8rem;
  height: 0.06rem;
}
.home .block .pagi .swiper-pagination-bullet-active {
  background-color: white;
}
.home .pf {
  margin-top: 1.4rem;
  padding: 1.4rem 0;
  background-color: #f8f8f8;
}
.home .pf .container .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home .pf .container .top a {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  color: #297d6b;
  border-bottom: 0.01rem solid #297d6b;
}
.home .pf .container .top a::before {
  font-size: 0.2rem;
  margin-left: 0.1rem;
}
.home .pf .container ul {
  display: flex;
  margin-top: 0.4rem;
}
.home .pf .container ul > li {
  flex: 1;
  padding: 0.3rem;
  background: #ffffff;
  box-shadow: 0 0.02rem 0.04rem rgba(0, 0, 0, 0.16);
  border-radius: 0.05rem;
}
.home .pf .container ul > li .tis {
  text-align: center;
  line-height: 0.36rem;
  font-weight: bold;
  margin-bottom: 0.2rem;
  border-bottom: 0.01rem solid #262626;
}
.home .pf .container ul > li ol li {
  display: flex;
}
.home .pf .container ul > li ol li p {
  color: #297d6b;
  white-space: nowrap;
  margin-right: 0.1rem;
}
.home .pf .container ul > li ol li div {
  flex: 1;
}
.home .pf .container ul > li ol li div span + span {
  margin-left: 5px;
}
.home .pf .container ul > li ol li + li {
  margin-top: 0.1rem;
}
.home .pf .container ul > li + li {
  margin-left: 0.1rem;
}
.home .qqls {
  background: url(../image/bg.png);
  padding: 1.6rem 0;
}
.home .qqls .container .tis {
  margin-bottom: 1rem;
  color: white;
}
.home .qqls .container .imgs {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home .qqls .container .imgs div {
  position: relative;
}
.home .qqls .container .imgs div + div::before {
  content: "|";
  color: white;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -1rem;
}
.home .qqls .container .imgs img {
  width: auto;
  height: 0.6rem;
}
/* 关于我们 */
.about .js {
  background: #f0eee9;
  padding: 1.5rem 0;
}
.about .js .container {
  display: flex;
  align-items: center;
}
.about .js .container .left {
  margin-right: 1rem;
  flex: 1;
}
.about .js .container .left .rich {
  margin-top: 0.6rem;
  color: #4b4b4b;
}
.about .js .container .right {
  width: 6.8rem;
}
.about .js .container .right img {
  width: 100%;
}
.about .jzg {
  background: url(../image/about_jzg.png);
  background-size: cover;
  padding: 1.5rem 0;
}
.about .jzg h2 {
  text-align: center;
  color: white;
}
.about .jzg p {
  margin: 0.5rem auto 1rem;
  text-align: center;
  color: white;
}
.about .jzg ul {
  display: flex;
  justify-content: space-between;
}
.about .jzg ul li {
  display: flex;
  align-items: center;
  flex-direction: column;
  color: white;
}
.about .jzg ul li div {
  width: 0.88rem;
  height: 0.88rem;
  background-color: white;
  border-radius: 1rem;
  margin-bottom: 0.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about .jzg ul li div img {
  width: 0.48rem;
}
.about .team {
  display: flex;
  margin: 1.5rem auto;
}
.about .team .left {
  width: 6rem;
}
.about .team .left img {
  width: 100%;
}
.about .team .right {
  flex: 1;
  margin-left: 0.7rem;
}
.about .team .right .descript {
  margin: 0.6rem auto;
  color: #4b4b4b;
}
.about .team .right ul {
  display: flex;
}
.about .team .right ul li {
  flex: 1;
}
.about .team .right ul li div {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background-color: #1ba64f;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about .team .right ul li div img {
  width: 40%;
}
.about .team .right ul li h4 {
  font-weight: 500;
  color: rgba(38, 38, 38, 0.75);
  margin: 0.3rem 0;
}
.about .team .right ul li p {
  color: #4b4b4b;
}
.about .team .right ul li + li {
  margin-left: 0.5rem;
}
.about .lc {
  background: url(../image/about_lc_bg.png);
  background-size: cover;
  padding: 1.5rem 0;
}
.about .lc .container > h2 {
  text-align: center;
  color: white;
  margin-bottom: 0.6rem;
}
.about .lc .container .swiper {
  overflow: hidden;
}
.about .lc .container .swiper-slide {
  display: flex;
  justify-content: space-between;
}
.about .lc .container .swiper-slide .left {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about .lc .container .swiper-slide .left .year {
  font-weight: bold;
  line-height: 0.8rem;
  padding: 0 0.7rem;
  border-radius: 0.05rem;
  border: 0.02rem solid rgba(255, 255, 255, 0.75);
  color: var(--themeColor);
  position: relative;
}
.about .lc .container .swiper-slide .left .year::after {
  content: "";
  width: 0.03rem;
  height: 0.5rem;
  background-color: white;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 141%;
}
.about .lc .container .swiper-slide .left p {
  color: rgba(255, 255, 255, 0.75);
  margin-top: 1rem;
}
.about .lc .container .swiper-slide .right {
  width: 5.87rem;
  position: relative;
}
.about .lc .container .swiper-slide .right img {
  width: 100%;
}
.about .lc .container .swiper-slide .right .text {
  position: absolute;
  top: 0.3rem;
  right: 0.3rem;
  text-align: right;
}
.about .lc .container .swiper-slide .right .text h3 {
  color: white;
  width: 3rem;
  line-height: 1.2;
  margin-bottom: 0.1rem;
}
.about .lc .container .swiper-slide .right .text h5 {
  font-weight: 900;
  color: #e6201a;
  text-shadow: 0 0 0.02rem #fff, -0.01rem -0.01rem 0 #fff, 0.01rem -0.01rem 0 #fff, -0.01rem 0.01rem 0 #fff, 0.01rem 0.01rem 0 #fff, -0.02rem -0.02rem 0 #fff, 0.02rem -0.02rem 0 #fff, -0.02rem 0.02rem 0 #fff, 0.02rem 0.02rem 0 #fff;
}
.about .lc .container .axle {
  border-top: 1px dashed white;
  margin-top: 0.9rem;
  position: relative;
  z-index: 1;
}
.about .lc .container .axle .axle_wrap {
  width: 100%;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  padding: 0.1rem 0 0.5rem;
  transform: translateY(-0.1rem);
}
.about .lc .container .axle .content {
  min-width: 100%;
  width: max-content;
  display: flex;
  justify-content: space-evenly;
  z-index: 99;
  padding: 0 0.7rem;
  transition: transform 0.3s;
}
.about .lc .container .axle .content div {
  width: 0.2rem;
  height: 0.2rem;
  background-color: white;
  border-radius: 50%;
  transform: translateY(-0.1rem);
  cursor: pointer;
}
.about .lc .container .axle .content div::after {
  content: attr(text);
  color: white;
  position: absolute;
  top: 200%;
  left: 50%;
  transform: translateX(-50%);
}
.about .lc .container .axle .content div + div {
  margin-left: 2rem;
}
.about .lc .container .axle .content div.min {
  width: 0.12rem;
  height: 0.12rem;
  background-color: rgba(150, 150, 150);
  transform: translateY(-0.06rem);
}
.about .lc .container .axle .content div.min::after {
  color: rgba(150, 150, 150);
  font-size: 0.14rem;
}
.about .lc .container .axle .content div.active {
  background-color: #1ba64f;
}
.about .lc .container .axle .content div.active::after {
  color: #1ba64f;
}
.about .lc .container .axle::before {
  position: absolute;
  left: 99%;
  top: 0;
  transform: translateY(-50%);
  color: white;
  font-size: 0.3rem;
}
/* 研发创新与技术实力 */
.research .page_main {
  margin: 1.5rem auto;
}
.research .page_main .top {
  display: flex;
  align-items: center;
}
.research .page_main .top .left {
  flex: 1;
  margin-right: 1rem;
}
.research .page_main .top .left h2 {
  margin-bottom: 0.6rem;
}
.research .page_main .top .left p {
  color: #4b4b4b;
}
.research .page_main .top ul {
  width: 7rem;
  display: flex;
  justify-content: space-between;
}
.research .page_main .top ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 1.8rem;
  color: #4b4b4b;
}
.research .page_main .top ul li img {
  width: 100%;
  margin-bottom: 0.3rem;
}
.research .page_main > img {
  display: block;
  width: 90%;
  margin: 1rem auto 0;
}
/* 生产与质量控制 */
.produce .js {
  background: #f0eee9;
  padding: 1.5rem 0;
}
.produce .js .container {
  display: flex;
  align-items: center;
}
.produce .js .container .left {
  margin-right: 1rem;
  flex: 1;
}
.produce .js .container .left .rich {
  margin-top: 0.6rem;
  color: #4b4b4b;
}
.produce .js .container .right {
  width: 6.8rem;
}
.produce .js .container .right img {
  width: 100%;
}
/* 解决方案/助剂应用 */
.solution .text_top {
  background: #f0eee9;
  padding: 1.5rem 0;
}
.solution .text_top .container h2 {
  text-align: center;
}
.solution .text_top .container .rich {
  margin-top: 0.6rem;
  color: #4b4b4b;
}
.solution .jzg {
  background: url(../image/about_jzg.png);
  background-size: cover;
  padding: 1.5rem 0;
}
.solution .jzg h2 {
  text-align: center;
  color: white;
}
.solution .jzg p {
  margin: 0.5rem auto 1rem;
  text-align: center;
  color: white;
}
.solution .jzg ul {
  display: flex;
  justify-content: space-between;
}
.solution .jzg ul li {
  display: flex;
  align-items: center;
  flex-direction: column;
  color: white;
  font-weight: 600;
}
.solution .jzg ul li div {
  width: 0.88rem;
  height: 0.88rem;
  background-color: white;
  border-radius: 1rem;
  margin-bottom: 0.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.solution .jzg ul li div img {
  width: 0.48rem;
}
.solution .jzg ul li p {
  font-weight: 400;
  margin-top: 0.06rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.75);
}
.solution .jzg ul li + li {
  margin-left: 0.82rem;
}
.solution .js {
  padding: 1.5rem 0;
}
.solution .js .container {
  display: flex;
  align-items: center;
}
.solution .js .container .left {
  margin-right: 1rem;
  flex: 1;
}
.solution .js .container .left .rich {
  margin-top: 0.6rem;
  color: #4b4b4b;
}
.solution .js .container .right {
  width: 6.8rem;
}
.solution .js .container .right img {
  width: 100%;
}
.solution .sl {
  background-color: #f8f8f8;
  padding: 1.5rem 0;
}
.solution .sl .container > h2,
.solution .sl .container > p {
  text-align: center;
}
.solution .sl .container > p {
  margin: 0.6rem auto;
  color: #4b4b4b;
}
.solution .sl .container .cont .item .lable {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  line-height: 0.68rem;
  font-weight: 500;
  cursor: pointer;
}
.solution .sl .container .cont .item .lable::before {
  font-size: 0.15rem;
}
.solution .sl .container .cont .item .mains {
  display: none;
}
.solution .sl .container .cont .item .main {
  display: flex;
  padding: 0.2rem 0;
}
.solution .sl .container .cont .item .main .left {
  width: 1.2rem;
  color: #297d6b;
  font-weight: 500;
}
.solution .sl .container .cont .item .main .right {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-left: 0.1rem;
  grid-gap: 0.2rem 0;
}
.solution .sl .container .cont .item .main .right span {
  color: #262626;
}
.solution .sl .container .cont .item .main + .main {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.solution .sl .container .cont .item + .item {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
/* 视频中心 */
.videos .js {
  background: #f0eee9;
  padding: 1.5rem 0;
}
.videos .js .container {
  display: flex;
  align-items: center;
}
.videos .js .container .left {
  margin-right: 1rem;
  flex: 1;
}
.videos .js .container .left .rich {
  margin-top: 0.6rem;
  color: #4b4b4b;
}
.videos .js .container .right {
  width: 6.8rem;
  border-radius: 0.08rem;
  overflow: hidden;
  position: relative;
}
.videos .js .container .right img {
  width: 100%;
}
.videos .js .container .right .iconfont {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.75);
}
.videos .js .container .right .iconfont:hover {
  color: #1ba64f;
}
.videos .list {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.4rem;
}
.videos .list .item h3,
.videos .list .item p {
  width: 20vw;
}
.videos .list .item p {
  color: rgba(38, 38, 38, 0.75);
}
.videos .list .item .img {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 0.1rem;
}
.videos .list .item .img img {
  width: 100%;
}
.videos .list .item .img .iconfont {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.75);
}
.videos .list .item .img .iconfont:hover {
  color: #1ba64f;
}
.videos .video_wrap {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999999999;
  display: none;
  align-items: center;
  justify-content: center;
}
.videos .video_wrap #my-video {
  width: 50%;
  height: auto;
}
.videos .video_wrap.active {
  display: flex;
}
.videos .video_wrap .iconfont {
  position: absolute;
  top: 0.4rem;
  right: 0.4rem;
  color: white;
  cursor: pointer;
}
.videos .video_wrap .iconfont:hover {
  color: #1ba64f;
}
/* 服务与定制化 */
.service .page_cont {
  padding: 1.5rem 0;
  background-color: #f0eee9;
}
.service .page_cont > .container > h2,
.service .page_cont > .container > p {
  text-align: center;
}
.service .page_cont > .container > p {
  margin-top: 0.6rem;
}
.service .page_cont ul {
  margin-top: 0.74rem;
  display: flex;
}
.service .page_cont ul li {
  border-radius: 0.1rem;
  flex: 1;
  overflow: hidden;
}
.service .page_cont ul li img {
  width: 100%;
}
.service .page_cont ul li .text {
  background-color: #297d6b;
  padding: 0.2rem 0.13rem;
  color: white;
}
.service .page_cont ul li .text h5 {
  text-align: center;
}
.service .page_cont ul li .text p {
  height: 6em;
  margin-top: 0.1rem;
}
.service .page_cont ul li + li {
  margin-left: 0.7rem;
}
.service .downloads {
  padding: 1.5rem 0;
}
.service .downloads > .container > h2,
.service .downloads > .container > p {
  text-align: center;
}
.service .downloads > .container > p {
  margin-top: 0.6rem;
}
.service .downloads .conts {
  margin-top: 0.4rem;
}
.service .downloads .conts .ro {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.service .downloads .conts .ro::before {
  width: 0.24rem;
  height: 0.24rem;
  margin-right: 0.1rem;
  border-radius: 0.04rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ededed;
  font-size: 0.1rem;
  color: transparent;
}
.service .downloads .conts .ro.active::before {
  background: #1ba64f;
  color: white;
}
.service .downloads .conts .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #dedede;
  padding-bottom: 0.12rem;
}
.service .downloads .conts .top .left {
  display: flex;
  align-items: center;
}
.service .downloads .conts .top .left a {
  display: flex;
  align-items: center;
  color: #1ba64f;
  line-height: 0.37rem;
  margin-left: 0.54rem;
  border: 0.02rem solid #1ba64f;
  padding: 0 0.2rem;
  border-radius: 1rem;
}
.service .downloads .conts .top .left a::before {
  margin-right: 0.1rem;
}
.service .downloads .conts .top .left a:hover {
  background-color: #1ba64f;
  color: white;
}
.service .downloads .conts .top .forms {
  display: flex;
  align-items: center;
  line-height: 0.6rem;
  border: 0.01rem solid rgba(1, 15, 52, 0.2);
  padding-left: 0.3rem;
  padding-right: 0.2rem;
  border-radius: 2.42rem;
}
.service .downloads .conts .top .forms input {
  margin-left: 0.05rem;
}
.service .downloads .conts .top .forms .iconfont {
  cursor: pointer;
}
.service .downloads .conts .top .forms .iconfont::before {
  margin-right: 0.1rem;
}
.service .downloads .conts .list .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.24rem 0;
  border-bottom: 1px solid #dedede;
}
.service .downloads .conts .list .item .left {
  display: flex;
  align-items: center;
}
.service .downloads .conts .list .item .left .text p {
  color: #262626;
  font-weight: 600;
}
.service .downloads .conts .list .item .left .text span {
  color: rgba(38, 38, 38, 0.75);
}
.service .downloads .conts .list .item .right {
  display: flex;
}
.service .downloads .conts .list .item .right a {
  display: flex;
  align-items: center;
  line-height: 0.36rem;
  padding: 0 0.2rem;
  color: rgba(38, 38, 38, 0.75);
  border: 0.01rem solid #1ba64f;
  border-radius: 2.45rem;
  margin-left: 0.1rem;
}
.service .downloads .conts .list .item .right a::before {
  margin-right: 0.05rem;
}
.service .downloads .conts .list .item .right a:hover {
  background-color: #1ba64f;
  color: white;
}
.service .sesese {
  position: relative;
}
.service .sesese img {
  width: 100%;
}
.service .sesese .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service .sesese .text h2 {
  color: white;
  white-space: nowrap;
  margin-bottom: 1rem;
}
.service .sesese .text a {
  width: max-content;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  color: white;
  border-bottom: 0.01rem solid white;
}
.service .sesese .text a::before {
  margin-left: 0.1rem;
  font-size: 0.2rem;
}
/* 联系我们 */
.contact .page_cont {
  margin: 1.5rem auto;
}
.contact .page_cont > h2,
.contact .page_cont > p {
  text-align: center;
}
.contact .page_cont > p {
  margin-top: 0.6rem;
  color: #4b4b4b;
}
.contact .page_cont .mains {
  display: flex;
}
.contact .page_cont .mains .left {
  width: 5rem;
  padding: 0.5rem;
}
.contact .page_cont .mains .left h3 {
  margin-bottom: 0.4rem;
}
.contact .page_cont .mains .left .address {
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(41, 125, 107, 0.32);
  margin-bottom: 0.4rem;
}
.contact .page_cont .mains .left .contacac,
.contact .page_cont .mains .left .address {
  display: flex;
  flex-direction: column;
}
.contact .page_cont .mains .left .contacac b,
.contact .page_cont .mains .left .address b {
  margin-bottom: 0.2rem;
}
.contact .page_cont .mains .left .contacac .iconfont,
.contact .page_cont .mains .left .address .iconfont {
  display: flex;
  align-items: center;
  color: #1a1a1a;
}
.contact .page_cont .mains .left .contacac .iconfont::before,
.contact .page_cont .mains .left .address .iconfont::before {
  color: #297d6b;
  margin-right: 0.1rem;
}
.contact .page_cont .mains .left .contacac .iconfont.icon-Vector::before,
.contact .page_cont .mains .left .address .iconfont.icon-Vector::before {
  font-size: 0.22rem;
}
.contact .page_cont .mains .left .contacac .iconfont.icon-a-Vector1::before,
.contact .page_cont .mains .left .address .iconfont.icon-a-Vector1::before {
  font-size: 0.2rem;
}
.contact .page_cont .mains .left .contacac .iconfont.icon-Group::before,
.contact .page_cont .mains .left .address .iconfont.icon-Group::before {
  font-size: 0.14rem;
}
.contact .page_cont .mains .right {
  flex: 1;
  margin-left: 0.6rem;
  padding: 0.5rem;
}
.contact .page_cont .mains .right input,
.contact .page_cont .mains .right textarea,
.contact .page_cont .mains .right select {
  width: 100%;
  display: block;
  line-height: 1;
  padding: 0.1rem 0.22rem;
  border-radius: 1rem;
  background: #f8f8f8;
  border: 1px solid rgba(41, 125, 107, 0.32);
}
.contact .page_cont .mains .right input + input,
.contact .page_cont .mains .right textarea + input,
.contact .page_cont .mains .right select + input,
.contact .page_cont .mains .right input + textarea,
.contact .page_cont .mains .right textarea + textarea,
.contact .page_cont .mains .right select + textarea,
.contact .page_cont .mains .right input + select,
.contact .page_cont .mains .right textarea + select,
.contact .page_cont .mains .right select + select {
  margin-top: 0.4rem;
}
.contact .page_cont .mains .right input::placeholder,
.contact .page_cont .mains .right textarea::placeholder,
.contact .page_cont .mains .right select::placeholder {
  color: rgba(41, 125, 107, 0.32);
}
.contact .page_cont .mains .right textarea {
  border-radius: 0.24rem;
}
.contact .page_cont .mains .right select {
  color: rgba(41, 125, 107, 0.32);
  -webkit-appearance: none;
  /* 移除Chrome/Safari默认样式 */
  -moz-appearance: none;
  /* 移除Firefox默认样式 */
  appearance: none;
  /* 移除标准默认样式 */
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23297D6B" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 0.1rem center;
  padding-right: 0.3rem;
  /* 为箭头留出空间 */
  line-height: 2;
}
.contact .page_cont .mains .right .btn {
  width: max-content;
  margin-top: 0.4rem;
  border-radius: 1.43rem;
  background: #297d6b;
  line-height: 0.5rem;
  color: white;
  padding: 0 0.85rem;
}
.contact .anchorBL {
  display: none !important;
}
.service .downloads {
  padding: 1.5rem 0;
}
.service .downloads > .container > h2,
.service .downloads > .container > p {
  text-align: center;
}
.service .downloads > .container > p {
  margin-top: 0.6rem;
}
.service .downloads .conts {
  margin-top: 0.4rem;
}
.service .downloads .conts .ro {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.service .downloads .conts .ro::before {
  width: 0.24rem;
  height: 0.24rem;
  margin-right: 0.1rem;
  border-radius: 0.04rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ededed;
  font-size: 0.1rem;
  color: transparent;
}
.service .downloads .conts .ro.active::before {
  background: #1ba64f;
  color: white;
}
.service .downloads .conts .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #dedede;
  padding-bottom: 0.12rem;
}
.service .downloads .conts .top .left {
  display: flex;
  align-items: center;
}
.service .downloads .conts .top .left a {
  display: flex;
  align-items: center;
  color: #1ba64f;
  line-height: 0.37rem;
  margin-left: 0.54rem;
  border: 0.02rem solid #1ba64f;
  padding: 0 0.2rem;
  border-radius: 1rem;
}
.service .downloads .conts .top .left a::before {
  margin-right: 0.1rem;
}
.service .downloads .conts .top .left a:hover {
  background-color: #1ba64f;
  color: white;
}
.service .downloads .conts .top .forms {
  display: flex;
  align-items: center;
  line-height: 0.6rem;
  border: 0.01rem solid rgba(1, 15, 52, 0.2);
  padding-left: 0.3rem;
  padding-right: 0.2rem;
  border-radius: 2.42rem;
}
.service .downloads .conts .top .forms input {
  margin-left: 0.05rem;
}
.service .downloads .conts .top .forms .iconfont {
  cursor: pointer;
}
.service .downloads .conts .top .forms .iconfont::before {
  margin-right: 0.1rem;
}
.service .downloads .conts .list .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.24rem 0;
  border-bottom: 1px solid #dedede;
}
.service .downloads .conts .list .item .left {
  display: flex;
  align-items: center;
}
.service .downloads .conts .list .item .left .text p {
  color: #262626;
  font-weight: 600;
}
.service .downloads .conts .list .item .left .text span {
  color: rgba(38, 38, 38, 0.75);
}
.service .downloads .conts .list .item .right {
  display: flex;
}
.service .downloads .conts .list .item .right a {
  display: flex;
  align-items: center;
  line-height: 0.36rem;
  padding: 0 0.2rem;
  color: rgba(38, 38, 38, 0.75);
  border: 0.01rem solid #1ba64f;
  border-radius: 2.45rem;
  margin-left: 0.1rem;
}
.service .downloads .conts .list .item .right a::before {
  margin-right: 0.05rem;
}
.service .downloads .conts .list .item .right a:hover {
  background-color: #1ba64f;
  color: white;
}
/* 手机 */
@media (max-width: 450px) {
  :root {
    --headerHeight: 60px;
    --container: 92vw;
  }
  body {
    font-size: 15px;
  }
  .moblie {
    display: block;
  }
  .fs-64,
  .fs-60,
  .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 > .container .menu {
    position: fixed;
    top: var(--headerHeight);
    left: 100vw;
    width: 100vw;
    height: calc(100vh - var(--headerHeight));
    background-color: white;
    display: block;
    transition: left 0.2s;
  }
  .header > .container .menu li {
    text-align: center;
  }
  .header > .container .menu li + li {
    margin-left: 0;
  }
  .header > .container .menu.active {
    left: 0;
  }
  .header > .container .right .iconfont {
    font-size: 14px;
  }
  .header > .container .right .iconfont::before {
    font-size: 16px;
  }
  .header > .container .logo {
    width: 20vw;
  }
  .header > .container .menu li > a {
    color: #333;
  }
  .home .banner .swiper-slide .text a {
    width: max-content;
    line-height: 1.7;
    padding: 0 10px;
  }
  .home .banner .swiper-slide .text {
    top: 60%;
  }
  .home .about {
    display: block;
  }
  .home .about .left {
    width: 100%;
  }
  .home .about .right {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }
  .home .about .right a::before {
    font-size: 18px;
  }
  .home .sl .container {
    display: block;
  }
  .home .sl .container .left {
    margin-right: 0;
  }
  .home .sl .container ul {
    width: 100%;
    margin-top: 20px;
  }
  .home .sl .container ul li {
    flex: 1;
  }
  .home .sl .container ul li + li {
    margin-left: 40px;
  }
  .home .pf .container ul {
    display: block;
  }
  .home .pf .container ul > li .tis {
    line-height: 2;
  }
  .home .pf .container ul > li + li {
    margin-left: 0;
    margin-top: 10px;
  }
  .home .pf .container .top {
    display: block;
  }
  .home .pf .container .top a {
    width: max-content;
  }
  .home .pf .container .top a::before {
    font-size: 20px;
  }
  .footer .mianss {
    display: block;
  }
  .footer .mianss .contact,
  .footer .mianss .ercode,
  .footer .mianss .form {
    margin-top: 20px;
  }
  .footer .btm {
    font-size: 14px;
  }
  .footer .mianss .form .box textarea {
    font-size: 14px;
  }
  .footer .mianss > .ercode img {
    width: 35vw;
  }
  .footer .mianss .form .box .ercode {
    display: flex;
  }
  .footer .mianss .form .box .ercode input {
    flex: 1;
    font-size: 14px;
  }
  .footer .mianss .form .box .ercode .captcha-img {
    width: 30%;
  }
  .footer .mianss .form .box .btn {
    line-height: 2;
    margin-top: 0.3rem;
  }
  .home .block .swiper-slide .text {
    width: 100%;
    position: static;
    transform: none;
    color: #333;
  }
  .home .block .pagi .swiper-pagination-bullet-active {
    background-color: #000;
  }
  .page_banner img {
    height: 80vw;
    object-fit: cover;
  }
  .footer .mianss h4 {
    font-size: 18px;
  }
  .page_banner .text .pa {
    line-height: 1.7;
    padding: 0 10px;
  }
  .about .js .container {
    display: block;
  }
  .about .js .container .left {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .about .js .container .right {
    width: 100%;
  }
  .about .lc .container .swiper-slide {
    display: block;
  }
  .about .lc .container .swiper-slide .left,
  .about .lc .container .swiper-slide .right {
    width: 100%;
  }
  .about .lc .container .swiper-slide .right .text {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .about .lc .container .swiper-slide .right .text h3 {
    width: 80%;
  }
  .about .team {
    flex-direction: column-reverse;
  }
  .about .team .right {
    margin-left: 0;
  }
  .about .team .left {
    width: 100%;
    margin-top: 10px;
  }
  .about .team .right ul li div {
    width: 30px;
    height: 30px;
  }
  .solution .jzg ul,
  .about .jzg ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
  }
  .solution .jzg ul li div,
  .about .jzg ul li div {
    width: 50px;
    height: 50px;
  }
  .solution .jzg ul li div img,
  .about .jzg ul li div img {
    width: 45%;
  }
  .solution .jzg ul li + li,
  .about .jzg ul li + li {
    margin-left: 0;
  }
  .about .lc .container .swiper-slide .left .year {
    line-height: 1.3;
  }
  .about .lc .container .axle::before {
    font-size: 16px;
  }
  .about .lc .container .axle .axle_wrap {
    padding: 10px 0 35px;
    transform: translateY(-10px);
  }
  .about .lc .container .axle .content div {
    width: 10px;
    height: 10px;
    transform: translateY(-5px);
  }
  .about .lc .container .axle .content div.min {
    width: 6px;
    height: 6px;
    transform: translateY(-3px);
  }
  .about .lc .container .axle .content div::after {
    font-size: 12px;
  }
  .about .lc .container .axle .content div.min::after {
    font-size: 10px;
  }
  .research .page_main .top {
    display: block;
  }
  .research .page_main .top .left {
    margin-right: 0;
  }
  .research .page_main .top ul {
    width: 100%;
  }
  .page_banner .text h2 {
    font-size: 24px;
  }
  .research .page_main .top ul li {
    flex: 1;
    margin-top: 20px;
  }
  .research .page_main .top ul li + li {
    margin-left: 30px;
  }
  .videos .js .container,
  .solution .js .container,
  .produce .js .container {
    display: block;
  }
  .videos .js .container .left,
  .solution .js .container .left,
  .produce .js .container .left {
    margin-right: 0;
  }
  .videos .js .container .right,
  .solution .js .container .right,
  .produce .js .container .right {
    width: 100%;
    margin-top: 10px;
  }
  .solution .sl .container .cont .item .lable {
    line-height: 3;
  }
  .solution .sl .container .cont .item .lable::before {
    font-size: 13px;
  }
  .solution .sl .container .cont .item .main {
    display: block;
  }
  .solution .sl .container .cont .item .main .left {
    width: 100%;
    margin-bottom: 15px;
  }
  .solution .sl .container .cont .item .main .right {
    grid-template-columns: repeat(2, 1fr);
  }
  .solution .sl .container .cont .item .main .right span {
    font-size: 11px;
  }
  .videos .js .container .right {
    border-radius: 10px;
  }
  .videos .js .container .right .iconfont {
    font-size: 40px;
  }
  .videos .list {
    grid-template-columns: 1fr;
  }
  .videos .list .item h3,
  .videos .list .item p {
    width: 100%;
  }
  .pages a,
  .pagination a,
  .pages span,
  .pagination span {
    width: 20px;
    line-height: 20px;
  }
  .pages li + li,
  .pagination li + li {
    margin-left: 5px;
  }
  .page_banner .text a::before {
    font-size: 20px;
  }
  .service .page_cont ul {
    display: block;
  }
  .service .page_cont ul li + li {
    margin-top: 10px;
    margin-left: 0;
  }
  .service .page_cont ul li .text p {
    height: auto;
  }
  .service .sesese img {
    height: 50vw;
  }
  .service .sesese .text h2 {
    font-size: 12px;
  }
  .service .sesese .text a::before {
    font-size: 20px;
  }
  .contact .page_cont .mains {
    display: block;
  }
  .contact .page_cont .mains .left {
    width: 100%;
    padding: 0;
    margin: 20px 0;
  }
  .contact .page_cont .mains .right {
    margin-left: 0;
    padding: 0;
  }
  .contact .page_cont .mains .right input,
  .contact .page_cont .mains .right textarea,
  .contact .page_cont .mains .right select {
    font-size: 14px;
    padding: 5px 10px;
  }
  .contact .page_cont .mains .right .btn {
    line-height: 1.7;
  }
  .contact .page_cont .mains .left .contacac .iconfont.icon-Vector::before,
  .contact .page_cont .mains .left .address .iconfont.icon-Vector::before {
    font-size: 22px;
  }
  .contact .page_cont .mains .left .contacac .iconfont.icon-a-Vector1::before,
  .contact .page_cont .mains .left .address .iconfont.icon-a-Vector1::before {
    font-size: 20px;
  }
  .contact .page_cont .mains .left .contacac .iconfont.icon-Group::before,
  .contact .page_cont .mains .left .address .iconfont.icon-Group::before {
    font-size: 14px;
  }
  .contact #map {
    height: 100vw !important;
  }
  .home .pf .container ul > li ol li {
    flex-direction: column;
  }
  .home .pf .container ul > li ol li p {
    margin-bottom: 5px;
  }
  .home .pf .container ul > li ol li + li {
    margin-top: 10px;
  }
}
