@import url(iconfont.css);
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --themeColor: #0074bd;
  --block_bc: #f7f6f1;
  --headerHeight: 0.8rem;
  --container: 16rem;
  --cm: calc((100vw - var(--container)) / 2);
}
.iconfont {
  font-size: 0.16rem;
}
body {
  -webkit-font-smoothing: antialiased;
  font: 0.16rem/1.73 Arial, Microsoft YaHei, Heiti SC, tahoma, Hiragino Sans GB,
    "\5B8B\4F53", sans-serif;
  color: #333;
  width: 100vw;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
}
p,
div {
  font-family: Arial;
}
em,
i {
  font-style: normal;
}
li {
  list-style: none;
}
img {
  border: 0;
  vertical-align: middle;
}
a {
  text-decoration: none;
  color: #333;
}
/* 表单元素 */
textarea,
select,
button,
input {
  /* "\5B8B\4F53" => 宋体 */
  font-family: Regular, Microsoft YaHei, Heiti SC, tahoma, arial,
    Hiragino Sans GB, "\5B8B\4F53", sans-serif;
  border: none;
  outline: none;
  resize: none;
  background: none;
  transition: all 0.3s;
  /* 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"] {
  -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;
}

.home .brands {
  display: flex;
  align-items: center;
}
.home .brands .left {
  width: 5.7rem;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home .brands .left h1 {
  writing-mode: tb;
}
.home .brands .left .icon-Group {
  color: var(--themeColor);
  margin: 0.53rem auto 0.24rem;
}
.home .brands .left p {
  font-weight: 500;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}
.home .brands .left a {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.home .brands .left a::after {
  content: "";
  width: 72%;
  height: 1px;
  background-color: #333;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 4.5em;
}
.home .brands .right {
  flex: 1;
  display: flex;
}
.home .brands .right a {
  position: relative;
}
.home .brands .right a .text {
  position: absolute;
  left: 0.4rem;
  top: 0.9rem;
  font-weight: 500;
}
.home .brands .right a .text img {
  width: 0.62rem;
  position: absolute;
  top: -55%;
  right: -33%;
}
/* 两行文本 */
.dh_text2 {
  display: -webkit-box;
  display: -moz-box;
  word-wrap: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal !important;
  -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;
  -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;
  -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;
  -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;
}
/* 手机 */
.moblie {
  display: none;
}
/* 分页 */
.pagination,
.pages {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.7rem auto 0.3rem;
  /* disabled */
}
.pagination a,
.pages a,
.pagination span,
.pages span {
  display: block;
  width: 0.4rem;
  line-height: 0.38rem;
  border: 1px solid #e6e6e6;
  color: #999999;
  text-align: center;
  border-radius: 0.05rem;
  transition: all 0.3s;
}
.pagination a.iconfont,
.pages a.iconfont,
.pagination span.iconfont,
.pages span.iconfont {
  color: var(--themeColor);
}
.pagination a + a,
.pages a + a,
.pagination span + a,
.pages span + a,
.pagination a + span,
.pages a + span,
.pagination span + span,
.pages span + span {
  margin-left: 0.1rem;
}
.pagination li + li,
.pages li + li {
  margin-left: 0.1rem;
}
.pagination li.active span,
.pages li.active span,
.pagination a.active,
.pages a.active,
.pagination a:hover,
.pages a:hover {
  color: #fff;
  background-color: var(--themeColor);
  border-color: var(--themeColor);
}
.pagination li.disabled,
.pages li.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.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 */
/* 左右切换按钮组合 */
.btns {
  width: max-content;
  display: flex;
}
.btns .iconfont {
  width: 0.7rem;
  height: 0.7rem;
  background-color: var(--themeColor);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0.3rem;
}
.btns .iconfont + .iconfont {
  margin-left: 0.2rem;
}
.btns .iconfont:hover {
  opacity: 0.3;
}
.btns.block .iconfont {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
}
/* 顶部导航 */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.29) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  box-shadow: 0 3px 10px rgba(51, 51, 51, 0.06);
  line-height: var(--headerHeight);
  transition: all 0.3s;
}
.header > .container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header > .container .logo {
  width: 1.57rem;
  filter: grayscale(100%) brightness(400%);
}
.header > .container > ul {
  width: 9rem;
  line-height: var(--headerHeight);
  display: flex;
  justify-content: space-between;
}
.header > .container > ul li {
  text-align: center;
}
.header > .container > ul li > a {
  color: white;
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
  display: block;
}
.header > .container > ul li > a::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  transition: all 0.3s;
}
.header > .container > ul li:hover > a,
.header > .container > ul li.active > a {
  color: var(--themeColor);
}

.header > .container > ul li > a + .menu {
  position: fixed;
  top: var(--headerHeight);
  left: 0;
  right: 0;
  background: #fff;
  line-height: 3;
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
  box-shadow: 0 3px 10px rgba(51, 51, 51, 0.06);
  display: none;
}

.header > .container > ul li > a + .menu .container {
  display: flex;
  justify-content: center;
}

.header > .container > ul li > a + .menu .container a + a {
  margin-left: 0.4rem;
}

.header > .container > ul li:hover > a::after,
.header > .container > ul li.active > a::after {
  background-color: var(--themeColor);
}
.header > .container > ul li .childs {
  display: none;
  position: fixed;
  top: var(--headerHeight);
  left: 0;
  right: 0;
  width: 100vw;
  background-color: white;
  box-shadow: 0 0.4rem 0.21rem 0 rgba(0, 0, 0, 0.05);
}
.header > .container > ul li .childs .container {
  display: flex;
}
.header > .container > ul li .childs .container .lefts {
  /*width: 1.1rem;*/
  height: 4.76rem;
  padding: 0.4rem 0;
  padding-right: 0.2rem;
  overflow-y: auto;
  border-right: 1px solid #dddddd;
}

/*定义滚动条高宽及背景
 高宽分别对应横竖滚动条的尺寸*/
.header > .container > ul li .childs .container .lefts::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background-color: #f5f5f5;
}

/*定义滚动条轨道
 内阴影+圆角*/
.header
  > .container
  > ul
  li
  .childs
  .container
  .lefts::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.03);
  border-radius: 6px;
  background-color: #f5f5f5;
}

/*定义滑块
 内阴影+圆角*/
.header
  > .container
  > ul
  li
  .childs
  .container
  .lefts::-webkit-scrollbar-thumb {
  border-radius: 6px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.03);
  background-color: #ddd;
}

.header > .container > ul li .childs .container .lefts p {
  width: max-content;
  color: #999999;
  text-align: left;
  cursor: pointer;
  line-height: 1;
  position: relative;
  transition: all 0.3s;
  word-spacing: nowrap;
}
.header > .container > ul li .childs .container .lefts p::after {
  content: "";
  width: 0;
  height: 2px;
  background-color: var(--themeColor);
  position: absolute;
  right: 0;
  bottom: 0;
  transition: all 0.3s;
}
.header > .container > ul li .childs .container .lefts p:hover,
.header > .container > ul li .childs .container .lefts p.active {
  color: #333333;
  font-weight: 800;
}
.header > .container > ul li .childs .container .lefts p:hover::after,
.header > .container > ul li .childs .container .lefts p.active::after {
  left: 0;
  width: 100%;
}
.header > .container > ul li .childs .container .lefts p + p {
  margin-top: 0.4rem;
}
.header > .container > ul li .childs .container .rights {
  flex: 1;
}
.header > .container > ul li .childs .container .rights .it {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  padding: 0.77rem 0 0.77rem 0.77rem;
}

.header > .container > ul li .childs .container .rights .it a .img {
  position: relative;
}

.header > .container > ul li .childs .container .rights .it a .img::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 64%;
}

.header > .container > ul li .childs .container .rights .it a .img img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: contain;
  padding: 0.3rem;
}

.header > .container > ul li .childs .container .rights .it a h3 {
  font-weight: 400;
  line-height: 1;
  margin-top: 0.2rem;
  color: #333;
}
.header > .container > ul li .childs .container .rights .it a p {
  width: max-content;
  margin: 0.2rem auto 0;
  border: 1px solid #999999;
  color: #999999;
  line-height: 0.3rem;
  padding: 0 0.28rem;
  transition: all 0.3s;
}
.header > .container > ul li .childs .container .rights .it a p:hover {
  color: white;
  background-color: var(--themeColor);
  border-color: var(--themeColor);
}
.header > .container > ul li .childs .container .rights .it.active {
  display: grid;
}
.header > .container .right {
  display: flex;
  align-items: center;
}

.header > .container .right .search {
  font-size: 0.24rem;
  color: white;
  cursor: pointer;
}
.header > .container .right .search_box {
  display: none;
  position: fixed;
  top: var(--headerHeight);
  left: 0;
  right: 0;
  line-height: 3;
  background-color: white;
  padding: 0.1rem 0;
  box-shadow: 0 3px 10px rgba(51, 51, 51, 0.06);
}
.search_box form {
  display: inline-flex;
  width: 100%;
}
.header > .container .right .search_box .container {
  width: 54%;
  display: flex;
}
.header > .container .right .search_box .container input {
  flex: 1;
  height: 39px;
  margin-right: 0.2rem;
  border-bottom: 1px solid #eee;
}
.header > .container .right .search_box .container button {
  line-height: 39px;
  display: inline-block;
  height: 39px;
  background-color: var(--themeColor);
  color: white;
  padding: 0 0.5rem;
}
.header > .container .right .lang {
  line-height: 0.42rem;
  border: 1px solid white;
  border-radius: 1rem;
  color: white;
  padding: 0 0.2rem;
  margin-left: 0.4rem;
  position: relative;
  cursor: pointer;
}
.header > .container .right .lang::after {
  content: "\e839";
  font-family: "iconfont";
  margin-left: 0.27rem;
}
.header > .container .right .lang::before {
  margin-right: 0.13rem;
}
.header > .container .right .lang .langs {
  position: absolute;
  top: 110%;
  left: 0;
  right: 0;
  display: none;
  flex-direction: column;
  background-color: white;
  text-align: center;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 3px 7px rgba(51, 51, 51, 0.2);
}
.header > .container .right .lang .langs a {
  display: block;
  cursor: pointer;
}
.header > .container .right .lang .langs a:hover,
.header > .container .right .lang .langs a.active {
  color: var(--themeColor);
}
.header > .container .menu_btn {
  width: 50px;
  height: 50px;
  transform: scale(0.7) translateX(50%);
}
.header > .container .menu_btn span,
.header > .container .menu_btn::after,
.header > .container .menu_btn::before {
  content: "";
  display: block;
  width: 70%;
  height: 3px;
  border-radius: 2px;
  background-color: white;
  position: absolute;
  left: 0;
  transition: all 0.3s;
}
.header > .container .menu_btn::after {
  transform-origin: right center;
  top: 25%;
}
.header > .container .menu_btn::before {
  transform-origin: right center;
  top: 75%;
}
.header > .container .menu_btn span {
  top: 50%;
}
.header > .container .menu_btn.active span {
  opacity: 0;
}
.header > .container .menu_btn.active::after {
  transform: rotate(-46deg);
}
.header > .container .menu_btn.active::before {
  transform: rotate(46deg);
}
.header > .container .menu_btn.active + ul {
  left: 0;
}
.header.active {
  background: white;
}
.header.active .container .logo {
  filter: none;
}
.proInfo .parameter .container .right ul {
  max-height: 220px;
  overflow: hidden;
}
.header.active .container > ul li a {
  font-size: 15px;
  color: #333;
}
.header.active .container > ul li:hover a,
.header.active .container > ul li.active a {
  color: var(--themeColor);
}
.header.active .container > ul li:hover a::after,
.header.active .container > ul li.active a::after {
  background-color: var(--themeColor);
}
.header.active .container .right .search {
  color: #333;
}
.header.active .container .right .lang {
  border: 1px solid #333;
  color: #333;
}
.header.active .container .menu_btn span,
.header.active .container .menu_btn::after,
.header.active .container .menu_btn::before {
  background: #444;
}
/* 底部 */
.footer {
  background-color: white;
  padding: 0.64rem 0;
  border-top: 1px solid #e9e9e9;
}
.footer .container {
  display: flex;
  position: relative;
}
.footer .container .left {
  margin-right: 2.4rem;
  flex-direction: column;
  align-items: center;
}
.footer .container .left .logo {
  width: 1.57rem;
}
.footer .container .left .ercode {
  width: 1.32rem;
  margin-top: 0.7rem;
  text-align: center;
  color: #666666;
}
.footer .container .left .ercode img {
  width: 100%;
  margin-bottom: 0.05rem;
}
.footer .container .right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer .container .right .links a + a {
  margin-left: 0.7rem;
}
.footer .container .right .address a {
  color: #666666;
}
.footer .container .right .address a:last-child {
  margin-left: 0.44rem;
}
.footer .container .right .policy,
.footer .container .right .policy a {
  color: #666666;
}
.footer .container .right .policy .privacy {
  color: #333;
  display: block;
}
.footer .container a:hover {
  color: var(--themeColor) !important;
}
.footer .container .toTop {
  position: absolute;
  right: 0;
  bottom: 0.76rem;
  border-radius: 50%;
  cursor: pointer;
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--themeColor);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
/* 内页banner */
.page_banner {
  position: relative;
}
.page_banner h1 {
  color: white;
  font-weight: 900;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-transform: uppercase;
}
/* 首页 */
.home .banner {
  overflow: hidden;
  position: relative;
}
.home .banner .swiper-slide {
  position: relative;
}
.home .banner .swiper-slide video,
.home .banner .swiper-slide img {
  width: 100%;
  height: 100vh;
  display: block;
  object-fit: cover;
}
.home .banner .swiper-slide .zz {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.home .banner .swiper-slide .text {
  position: absolute;
  left: 50%;
  top: 35%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.home .banner .swiper-slide .text h1 {
  font-weight: 900;
  color: white;
  line-height: 1.266;
}
.home .banner .swiper-slide .text p {
  color: #f2f3f4;
  letter-spacing: 0.05rem;
}
.home .banner .swiper-slide .btns {
  position: absolute;
  left: 50%;
  bottom: 14%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
}
.home .banner .swiper-slide .btns a {
  line-height: 0.46rem;
  padding: 0 0.36rem;
  border: 1px solid #ffffff;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 0.3s;
}
.home .banner .swiper-slide .btns a + a {
  margin-left: 0.26rem;
  color: #333;
  background-color: white;
}
.home .banner .swiper-slide .btns a:hover {
  color: white;
  background-color: var(--themeColor);
  border-color: var(--themeColor);
}
.home .product {
  margin: 0 auto;
}
.home .product .box {
  padding: 1rem 0;
}
.home .product h2 {
  font-weight: 500;
  text-align: center;
}
.home .product ul {
  display: flex;
  justify-content: center;
  margin: 0.47rem auto 0.6rem;
}
.home .product ul a {
  font-size: 18px;
  color: #a0a0a0;
  cursor: pointer;
}
.home .product ul a + a {
  margin-left: 0.36rem;
}
.home .product ul a:hover,
.home .product ul a.active {
  color: #333;
}
.home .product ul > *:nth-child(1) {
  animation-delay: 0.13s;
}
.home .product ul > *:nth-child(2) {
  animation-delay: 0.26s;
}
.home .product ul > *:nth-child(3) {
  animation-delay: 0.39s;
}
.home .product ul > *:nth-child(4) {
  animation-delay: 0.52s;
}
.home .product ul > *:nth-child(5) {
  animation-delay: 0.65s;
}
.home .product ul > *:nth-child(6) {
  animation-delay: 0.78s;
}
.home .product ul > *:nth-child(7) {
  animation-delay: 0.91s;
}
.home .product ul > *:nth-child(8) {
  animation-delay: 1.04s;
}
.home .product ul > *:nth-child(9) {
  animation-delay: 1.17s;
}
.home .product ul > *:nth-child(10) {
  animation-delay: 1.3s;
}
.home .product ul > *:nth-child(11) {
  animation-delay: 1.43s;
}
.home .product ul > *:nth-child(12) {
  animation-delay: 1.56s;
}
.home .product ul > *:nth-child(13) {
  animation-delay: 1.69s;
}
.home .product ul > *:nth-child(14) {
  animation-delay: 1.82s;
}
.home .product ul > *:nth-child(15) {
  animation-delay: 1.95s;
}
.home .product ul > *:nth-child(16) {
  animation-delay: 2.08s;
}
.home .product ul > *:nth-child(17) {
  animation-delay: 2.21s;
}
.home .product ul > *:nth-child(18) {
  animation-delay: 2.34s;
}
.home .product ul > *:nth-child(19) {
  animation-delay: 2.47s;
}
.home .product ul > *:nth-child(20) {
  animation-delay: 2.6s;
}
.home .product ul > *:nth-child(21) {
  animation-delay: 2.73s;
}
.home .product ul > *:nth-child(22) {
  animation-delay: 2.86s;
}
.home .product ul > *:nth-child(23) {
  animation-delay: 2.99s;
}
.home .product ul > *:nth-child(24) {
  animation-delay: 3.12s;
}
.home .product ul > *:nth-child(25) {
  animation-delay: 3.25s;
}
.home .product ul > *:nth-child(26) {
  animation-delay: 3.38s;
}
.home .product ul > *:nth-child(27) {
  animation-delay: 3.51s;
}
.home .product ul > *:nth-child(28) {
  animation-delay: 3.64s;
}
.home .product ul > *:nth-child(29) {
  animation-delay: 3.77s;
}
.home .product .swiper {
  display: none;
  overflow: hidden;
  padding-bottom: 0.8rem;
  position: relative;
  /* background-image: url(../images/home_product_bg.svg); */
  background-position: center 20%;
  background-repeat: no-repeat;
  background-size: 70% auto;
}
.home .product .swiper .swiper-wrapper {
  align-items: flex-end;
}
.home .product .swiper .swiper-wrapper .swiper-slide {
  opacity: 0.6;
  transform: scale(0.6);
  transform-origin: bottom center;
  transition: all 0.3s;
  position: relative;
}
.home .product .swiper .swiper-wrapper .swiper-slide .text {
  text-align: center;
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.home .product .swiper .swiper-wrapper .swiper-slide .text p {
  color: #666;
}
.home .product .swiper .swiper-wrapper .swiper-slide.swiper-slide-active {
  opacity: 1;
  transform: none;
}
.home .product .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .text {
  display: block;
}
.home .product .swiper .iconfont {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background-color: #f2f2f2;
  position: absolute;
  top: 45%;
  z-index: 9;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
}
.home .product .swiper .iconfont.icon-left {
  left: 0;
}
.home .product .swiper .iconfont.icon-right {
  right: 0;
}
.home .product .swiper .iconfont:hover {
  background-color: var(--themeColor);
  color: white;
}
.home .product .swiper.active {
  display: block;
}
.home .product .btns {
  width: 100%;
  margin-top: 0.6rem;
  display: flex;
  justify-content: center;
}
.home .product .btns a {
  line-height: 0.46rem;
  padding: 0 0.36rem;
  border: 1px solid #333333;
  background: rgba(255, 255, 255, 0.1);
  color: #333333;
  transition: all 0.3s;
}
.home .product .btns a + a {
  margin-left: 0.26rem;
  color: white;
  background-color: #333333;
}
.home .product .btns a:hover {
  color: white;
  background-color: var(--themeColor);
  border-color: var(--themeColor);
}
.home .top_box {
  position: relative;
  width: 100vw;
  height: 500vh;
  overflow: hidden;
}
.home .top_box video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.home .top_box .zw {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: white;
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-weight: 900;
  mix-blend-mode: lighten;
  transition: opacity 0.3s;
}
.home .brand {
  background-image: url(../images/home_brand_bg.png);
  background-size: cover;
}
.home .brand .box {
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(22px);
}
.home .brand .box .container {
  display: flex;
}
.home .brand .box .container .left {
  flex: 1;
  padding-right: 1.5rem;
  border-right: 1px solid #ffffff4d;
  margin-right: 1.5rem;
  padding-top: 0.65rem;
  padding-bottom: 1rem;
}
.home .brand .box .container .left .list {
  margin-top: 0.8rem;
}
.home .brand .box .container .left .list a {
  display: flex;
  transition: all 0.3s;
}
.home .brand .box .container .left .list a .img {
  width: 100%;
  position: relative;
}
.home .brand .box .container .left .list a .img img {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home .brand .box .container .left .list a .img::after {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 65%;
}
.home .brand .box .container .left .list a .img {
  width: 1.6rem;
  margin-right: 0.44rem;
}
.home .brand .box .container .left .list a .ri {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.home .brand .box .container .left .list a .ri p {
  color: white;
  margin-bottom: 0.1rem;
}
.home .brand .box .container .left .list a .ri span {
  color: #ffffffcc;
}
.home .brand .box .container .left .list a + a {
  margin-top: 0.6rem;
}
.home .brand .box .container .left .list a:hover .ri {
  border-color: var(--themeColor);
}
.home .brand .box .container .left .list a:hover .ri * {
  color: var(--themeColor) !important;
}
.home .brand .box .container .right {
  width: 4.5rem;
  padding-top: 0.65rem;
  padding-bottom: 1rem;
}
.home .brand .box .container .right .img {
  width: 100%;
  position: relative;
}
.home .brand .box .container .right .img img {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home .brand .box .container .right .img::after {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 53%;
}
.home .brand .box .container .right .img {
  margin: 0.7rem 0 0.5rem;
}
.home .brand .box .container .right .list a {
  display: block;
  line-height: 1.08rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  transition: all 0.3s;
}
.home .brand .box .container .right .list a::before {
  font-size: 0.24rem;
  margin-right: 0.06rem;
}
.home .brand .box .container .right .list a .iconfont {
  float: right;
  font-size: 0.24rem;
}

.home .brand .box .container .right .list a + a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.home .brand .box .container .right .list a:hover {
  color: var(--themeColor);
  border-bottom-color: var(--themeColor);
}
.home .brand .box .container .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
  font-weight: 800;
  color: white;
  line-height: 2;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
/* 关于我们 */
.about .banner {
  position: relative;
}

.about .banner::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.3);
}

.about .banner .text {
  width: 55%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.about .banner .text h1 {
  color: white;
  margin-bottom: 0.65rem;
}
.about .banner .text ul {
  display: flex;
  justify-content: space-between;
}
.about .banner .text ul li {
  color: white;
}
.about .banner .text ul li .nums {
  display: flex;
  align-items: flex-end;
  line-height: 2;
}
.about .banner .text ul li .nums span {
  line-height: 1;
  font-weight: 900;
}
.about .banner .text ul li p {
  /*margin-top: 0.1rem;*/
}
.about .banner .text ul li p span {
  color: var(--themeColor);
}
.about .banner .icon-shubiao {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 12%;
  color: white;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}
.about .banner .icon-shubiao::before {
  font-size: 0.3rem;
  animation: oo 0.54s infinite linear;
}
@keyframes oo {
  50% {
    transform: translateY(0.01rem);
  }
  100% {
    transform: translateY(-0.01rem);
  }
}
.about .js {
  margin: 1rem 0 2rem;
}
.about .js .logo {
  display: block;
  width: 3.75rem;
  margin: 0 auto;
  margin-bottom: 0.5rem;
}
.about .js .rich * {
  color: #666666;
}
.about .zz {
  overflow: hidden;
  position: relative;
  background: #000;
}
.about .zz img {
  position: absolute;
  left: 0;
  right: 0;
  opacity: 0;
  transition: all 0.3s;
}
.about .zz img:first-child {
  position: static;
}
.about .zz img.active {
  opacity: 0.7;
}
.about .zz .text {
  position: absolute;
  left: var(--cm);
  bottom: 80%;
  color: white;
  line-height: 1.1;
  font-weight: 900;
}
.about .zz .text p:before {
  width: max-content;
  content: "”";
  display: block;
  transform: rotateZ(180deg);
  font-weight: 900;
  font-size: 1rem;
}
/* .about .zz .text p:after {
  width: max-content;
  content: "”";
  display: block;
  transform: rotateZ(180deg);
  font-weight: 900;
  font-size: 1rem;
} */
.about .zz .text p {
  width: 14rem;
  line-height: 1.3;
  position: absolute;
  left: 0;
  top: 100%;
  /*white-space: nowrap;*/
  opacity: 0;
  transition: all 0.3s;
}
.about .zz .text p.active {
  opacity: 1;
}
.about .zz ul {
  position: absolute;
  left: var(--cm);
  bottom: 1rem;
  display: flex;
}
.about .zz ul li {
  width: 2.76rem;
  background-color: white;
  padding: 0.4rem 0.5rem;
  display: flex;
  flex-direction: column;
  font-weight: 500;
  background-image: url(../images/zz_item_bg.svg);
  background-size: auto 90%;
  background-position: right center;
  background-repeat: no-repeat;
  transition: all 0.3s;
  cursor: pointer;
}
.about .zz ul li::before {
  font-size: 0.4rem;
}
.about .zz ul li + li {
  margin-left: 0.35rem;
}
.about .zz ul li:hover,
.about .zz ul li.active {
  background-color: var(--themeColor);
  color: white;
}
.about .ln {
  position: relative;
  background: #000;
}
.about .ln > img {
  opacity: 0.8;
}
.about .ln h3,
.about .ln p {
  color: white;
  text-align: center;
  position: absolute;
}
.about .ln h3 {
  width: 100%;
  top: 1.6rem;
  left: 0;
}
.about .ln p {
  width: 73%;
  top: 2.87rem;
  left: 50%;
  transform: translateX(-50%);
}
.about .honor {
  padding: 1rem 0;
  background-image: url(../fonts/honor_bg.svg), url(../fonts/honor_bg1.svg);
  background-position: right bottom, center 63%;
  background-repeat: no-repeat;
  background-size: 50% auto, 35% auto;
}
.about .honor h3 {
  text-align: center;
  margin-bottom: 1rem;
}
.about .honor .swiper {
  overflow: hidden;
  padding-top: 0.4rem;
}
.about .honor .swiper .swiper-wrapper .swiper-slide {
  transition: all 0.3s;
}
.about .honor .swiper .swiper-wrapper .swiper-slide p {
  text-align: center;
  margin-top: 0.46rem;
}
.about .honor .swiper .swiper-wrapper .swiper-slide.swiper-slide-active {
  transform: scale(1.1);
}
.about .honor .swiper .btm {
  width: 27%;
  margin: 1.4rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about .honor .swiper .btm p .now {
  color: var(--themeColor);
  font-weight: 500;
}
.about .honor .swiper .btm .iconfont {
  width: 0.86rem;
  height: 0.86rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--themeColor);
  color: var(--themeColor);
  border-radius: 50%;
  font-size: 0.22rem;
  cursor: pointer;
  transition: all 0.3s;
}
.about .honor .swiper .btm .iconfont:hover {
  color: white;
  background-color: var(--themeColor);
}
/* 创新技术 */
.innovate .top {
  margin: 1rem auto 1.2rem;
}
.innovate .top p {
  margin: 0.27rem 0 0.68rem;
}
.innovate .top .img {
  width: 100%;
  display: flex;
}
.innovate .top .img img {
  width: 50%;
  flex: 1;
}
.innovate .top .img img + img {
  margin-left: 0.36rem;
}
.innovate .list .item {
  position: relative;
  margin-bottom: 0.37rem;
}
.innovate .list .item .container {
  /*position: absolute;*/
  /*top: 25%;*/
  /*left: var(--cm);*/
  display: flex;
}
.innovate .list .item .container .left {
  width: 35%;
  /*background-image: url(../images/innovate_item_main_bg.png);*/
  background-size: cover;
  position: relative;
  border: 1px solid #ddd;
}
.innovate .list .item .container .left::after {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 70%;
}
.innovate .list .item .container .left img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: contain;
  padding: 0.1rem;
}
.innovate .list .item .container .right {
  flex: 1;
  margin-left: 0.2rem;
  /*margin-top: 0.32rem;*/
  padding: 0.4rem;
  border: 1px solid #ddd;
}
.innovate .list .item .container .right h4 {
  font-weight: 500;
  /*color: white;*/
  line-height: 1;
}
.innovate .list .item .container .right p {
  margin: 0.32rem 0 0.65rem;
  /*color: white;*/
}
.innovate .list .item .container .right a {
  width: max-content;
  display: block;
  margin-top: 30px;
  line-height: 0.46rem;
  padding: 0 0.36rem;
  border: 1px solid var(--themeColor);
  background: var(--themeColor);
  color: white;
}
.innovate .list .item:nth-child(even) .container {
  /*flex-direction: row-reverse;*/
}
.innovate .list .item:nth-child(even) .container .right {
  /*margin-left: 0;*/
  /*margin-right: 1rem;*/
}
.innovate .videos {
  padding: 1rem 0 1.24rem;
  background-color: #f6f6f6;
}
.innovate .videos h2 {
  margin-bottom: 0.5rem;
  margin-left: var(--cm);
}
.innovate .videos .swiper {
  position: relative;
  padding: 0 var(--cm);
  overflow: hidden;
}
.innovate .videos .swiper .swiper-wrapper .swiper-slide {
  position: relative;
}
.innovate .videos .swiper .swiper-wrapper .swiper-slide .play {
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 50%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.14rem;
  cursor: pointer;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.innovate .videos .swiper .swiper-wrapper .swiper-slide .play::after {
  content: "";
  width: 0;
  height: 0;
  border: 0.18rem solid var(--themeColor);
  border-top: 0.11rem solid transparent;
  border-bottom: 0.11rem solid transparent;
  border-right: none;
  transform: translateX(0.02rem);
}
.innovate .videos .swiper .swiper-wrapper > *:nth-child(1) {
  animation-delay: 0.13s;
}
.innovate .videos .swiper .swiper-wrapper > *:nth-child(2) {
  animation-delay: 0.26s;
}
.innovate .videos .swiper .swiper-wrapper > *:nth-child(3) {
  animation-delay: 0.39s;
}
.innovate .videos .swiper .swiper-wrapper > *:nth-child(4) {
  animation-delay: 0.52s;
}
.innovate .videos .swiper .swiper-wrapper > *:nth-child(5) {
  animation-delay: 0.65s;
}
.innovate .videos .swiper .swiper-wrapper > *:nth-child(6) {
  animation-delay: 0.78s;
}
.innovate .videos .swiper .swiper-wrapper > *:nth-child(7) {
  animation-delay: 0.91s;
}
.innovate .videos .swiper .swiper-wrapper > *:nth-child(8) {
  animation-delay: 1.04s;
}
.innovate .videos .swiper .swiper-wrapper > *:nth-child(9) {
  animation-delay: 1.17s;
}
.innovate .videos .swiper .swiper-wrapper > *:nth-child(10) {
  animation-delay: 1.3s;
}
.innovate .videos .swiper .swiper-wrapper > *:nth-child(11) {
  animation-delay: 1.43s;
}
.innovate .videos .swiper .swiper-wrapper > *:nth-child(12) {
  animation-delay: 1.56s;
}
.innovate .videos .swiper .swiper-wrapper > *:nth-child(13) {
  animation-delay: 1.69s;
}
.innovate .videos .swiper .swiper-wrapper > *:nth-child(14) {
  animation-delay: 1.82s;
}
.innovate .videos .swiper .swiper-wrapper > *:nth-child(15) {
  animation-delay: 1.95s;
}
.innovate .videos .swiper .swiper-wrapper > *:nth-child(16) {
  animation-delay: 2.08s;
}
.innovate .videos .swiper .swiper-wrapper > *:nth-child(17) {
  animation-delay: 2.21s;
}
.innovate .videos .swiper .swiper-wrapper > *:nth-child(18) {
  animation-delay: 2.34s;
}
.innovate .videos .swiper .swiper-wrapper > *:nth-child(19) {
  animation-delay: 2.47s;
}
.innovate .videos .swiper .swiper-wrapper > *:nth-child(20) {
  animation-delay: 2.6s;
}
.innovate .videos .swiper .swiper-wrapper > *:nth-child(21) {
  animation-delay: 2.73s;
}
.innovate .videos .swiper .swiper-wrapper > *:nth-child(22) {
  animation-delay: 2.86s;
}
.innovate .videos .swiper .swiper-wrapper > *:nth-child(23) {
  animation-delay: 2.99s;
}
.innovate .videos .swiper .swiper-wrapper > *:nth-child(24) {
  animation-delay: 3.12s;
}
.innovate .videos .swiper .swiper-wrapper > *:nth-child(25) {
  animation-delay: 3.25s;
}
.innovate .videos .swiper .swiper-wrapper > *:nth-child(26) {
  animation-delay: 3.38s;
}
.innovate .videos .swiper .swiper-wrapper > *:nth-child(27) {
  animation-delay: 3.51s;
}
.innovate .videos .swiper .swiper-wrapper > *:nth-child(28) {
  animation-delay: 3.64s;
}
.innovate .videos .swiper .swiper-wrapper > *:nth-child(29) {
  animation-delay: 3.77s;
}
.innovate .videos .swiper-scrollbar {
  width: var(--container);
  margin-left: var(--cm);
  margin-top: 0.8rem;
  height: 1px;
  background-color: var(--themeColor);
}
.innovate .videos .swiper-scrollbar .swiper-scrollbar-drag {
  height: 3px;
  background-color: var(--themeColor);
}
.innovate .video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: contain;
  background-color: black;
  z-index: 999999999;
  display: none;
}
/* 创新技术详情 */
.innovateInfo .banner {
  position: relative;
}
.innovateInfo .banner .left {
  width: 5rem;
  position: absolute;
  left: calc(var(--cm) * 2);
  top: calc(var(--headerHeight) + 1.2rem);
}
.innovateInfo .banner h3 {
  font-weight: 500;
  color: #666666;
  position: absolute;
  left: calc(var(--cm) * 2 + 5.5rem);
  bottom: 30%;
}
.innovateInfo .ta {
  margin: 0.72rem auto 1.82rem;
  border-top: 1px solid #e5e5e5;
  border-left: 1px solid #e5e5e5;
}
.innovateInfo .ta .tis {
  line-height: 0.6rem;
  background: #eeeeee;
  padding-left: 0.48rem;
  font-weight: 500;
  border-right: 1px solid #e5e5e5;
}
.innovateInfo .ta dl {
  display: flex;
  flex-wrap: wrap;
}
.innovateInfo .ta dl dd {
  color: #666666;
  width: 25%;
  padding-left: 0.48rem;
  background-color: #fbfbfb;
  line-height: 0.44rem;
  border-right: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}
/* 新闻 */
.news .news_top {
  position: relative;
  margin-top: calc(var(--headerHeight) + 0.36rem);
  overflow: hidden;
}
.news .news_top .swiper-slide {
  position: relative;
  background: #000;
}
.news .news_top .swiper-slide .img {
  width: 100%;
  position: relative;
  opacity: 0.7;
}
.news .news_top .swiper-slide .img img {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}

.news .news_top .swiper-slide:hover .img img {
  transform: scale(1.1);
}

.news .news_top .swiper-slide .img::after {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 37.5%;
}
.news .news_top .swiper-slide .text {
  position: absolute;
  left: 0.76rem;
  top: 50%;
  transform: translateY(-50%);
}
.news .news_top .swiper-slide .text h1 {
  color: white;
  width: 60%;
}
.news .news_top .swiper-slide .text .iconfont {
  margin-top: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0.74rem;
  height: 0.74rem;
  background-color: var(--themeColor);
  color: white;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s;
}

.news .news_top .swiper-slide:hover .text .iconfont {
  opacity: 1;
}

.news .news_top .swiper-slide .text .iconfont::before {
  transform: rotateZ(45deg);
}
.news .news_top .swiper-pagination .swiper-pagination-bullet {
  width: 0.6rem;
  height: 0.03rem;
  opacity: 1;
  border-radius: 0;
  background-color: white;
}
.news
  .news_top
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--themeColor);
}
.news .news_wrap {
  margin-top: 1rem;
}
.news .news_wrap h2 {
  margin-bottom: 0.4rem;
}
.news .news_wrap .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.2rem 0.6rem;
}
.news .news_wrap .list a {
  padding-bottom: 0.47rem;
  border-bottom: 1px solid #d9d9d9;
}
.news .news_wrap .list a .img {
  width: 100%;
  margin: 0.16rem 0 0.34rem;
  position: relative;
}
.news .news_wrap .list a .img .iconfont {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0.74rem;
  height: 0.74rem;
  background-color: var(--themeColor);
  color: white;
  border-radius: 50%;
  transition: all 0.3s;
}
.news .news_wrap .list a .img .iconfont::before {
  transform: rotateZ(45deg);
}
.news .news_wrap .list a .img {
  width: 100%;
  position: relative;
}
.news .news_wrap .list a .img img {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news .news_wrap .list a .img::after {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 66.5%;
}
.news .news_wrap .list a span {
  color: #666;
}
.news .news_wrap .list a:hover {
  border-color: var(--themeColor);
}
.news .news_wrap .list a:hover .img .iconfont {
  opacity: 1;
}
.news .news_wrap .list > *:nth-child(1) {
  animation-delay: 0.13s;
}
.news .news_wrap .list > *:nth-child(2) {
  animation-delay: 0.26s;
}
.news .news_wrap .list > *:nth-child(3) {
  animation-delay: 0.39s;
}
.news .news_wrap .list > *:nth-child(4) {
  animation-delay: 0.52s;
}
.news .news_wrap .list > *:nth-child(5) {
  animation-delay: 0.65s;
}
.news .news_wrap .list > *:nth-child(6) {
  animation-delay: 0.78s;
}
.news .news_wrap .list > *:nth-child(7) {
  animation-delay: 0.91s;
}
.news .news_wrap .list > *:nth-child(8) {
  animation-delay: 1.04s;
}
.news .news_wrap .list > *:nth-child(9) {
  animation-delay: 1.17s;
}
.news .news_wrap .list > *:nth-child(10) {
  animation-delay: 1.3s;
}
.news .news_wrap .list > *:nth-child(11) {
  animation-delay: 1.43s;
}
.news .news_wrap .list > *:nth-child(12) {
  animation-delay: 1.56s;
}
.news .news_wrap .list > *:nth-child(13) {
  animation-delay: 1.69s;
}
.news .news_wrap .list > *:nth-child(14) {
  animation-delay: 1.82s;
}
.news .news_wrap .list > *:nth-child(15) {
  animation-delay: 1.95s;
}
.news .news_wrap .list > *:nth-child(16) {
  animation-delay: 2.08s;
}
.news .news_wrap .list > *:nth-child(17) {
  animation-delay: 2.21s;
}
.news .news_wrap .list > *:nth-child(18) {
  animation-delay: 2.34s;
}
.news .news_wrap .list > *:nth-child(19) {
  animation-delay: 2.47s;
}
.news .news_wrap .list > *:nth-child(20) {
  animation-delay: 2.6s;
}
.news .news_wrap .list > *:nth-child(21) {
  animation-delay: 2.73s;
}
.news .news_wrap .list > *:nth-child(22) {
  animation-delay: 2.86s;
}
.news .news_wrap .list > *:nth-child(23) {
  animation-delay: 2.99s;
}
.news .news_wrap .list > *:nth-child(24) {
  animation-delay: 3.12s;
}
.news .news_wrap .list > *:nth-child(25) {
  animation-delay: 3.25s;
}
.news .news_wrap .list > *:nth-child(26) {
  animation-delay: 3.38s;
}
.news .news_wrap .list > *:nth-child(27) {
  animation-delay: 3.51s;
}
.news .news_wrap .list > *:nth-child(28) {
  animation-delay: 3.64s;
}
.news .news_wrap .list > *:nth-child(29) {
  animation-delay: 3.77s;
}
/* 新闻详情 */
.newsInfo .wrap {
  --container: 12rem;
  margin-bottom: 1rem;
}
.newsInfo .wrap .back {
  width: max-content;
  margin-top: calc(var(--headerHeight) + 0.4rem);
  margin-bottom: 0.7rem;
  display: flex;
  color: #666;
  border: 1px solid #d9d9d9;
  border-radius: 0.52rem;
  line-height: 0.48rem;
  padding: 0 0.18rem;
  white-space: nowrap;
}
.newsInfo .wrap .back::before {
  margin-right: 0.16rem;
}
.newsInfo .wrap .date {
  color: var(--themeColor);
  margin-bottom: 0.3rem;
}
.newsInfo .wrap .rich {
  padding: 0.5rem 0;
  margin: 0.7rem auto 0.5rem;
  border: 1px solid #d9d9d9;
  border-left: none;
  border-right: none;
}
.newsInfo .wrap .btm {
  display: flex;
  justify-content: space-between;
}
.newsInfo .wrap .btm a {
  display: flex;
  flex-direction: column;
  width: 35%;
}
.newsInfo .wrap .btm a span {
  color: #bcbdc0;
}
.newsInfo .wrap .btm a:last-child {
  align-items: flex-end;
  text-align: right;
}
/* 联系我们 */
.contact .banner {
  position: relative;
}
.contact .banner h1 {
  color: white;
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.contact .banner .list {
  display: flex;
  justify-content: space-between;
  position: absolute;
  left: 50%;
  bottom: 1.23rem;
  transform: translateX(-50%);
}
.contact .banner .list a {
  flex: 1;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.contact .banner .list a + a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  width: 1px;
  height: 80%;
  background-color: white;
  opacity: 0.7;
}
.contact .wrap {
  background: url(../images/cont_bg.png);
  background-size: cover;
  padding-bottom: 0.6rem;
}
.contact .wrap .box {
  padding: 0.9rem 1rem;
  background-color: white;
  border-radius: 0.33rem;
  transform: translateY(-0.4rem);
  box-shadow: 0.05rem 0 0.1rem rgba(51, 51, 51, 0.06);
}
.contact .wrap .box .from {
  margin: 0.56rem auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.3rem;
}
.contact .wrap .box .from .input {
  position: relative;
}
.contact .wrap .box .from .input input,
.contact .wrap .box .from .input textarea {
  padding: 0 0.2rem;
  width: 100%;
  line-height: 0.6rem;
  background: rgba(237, 237, 237, 0.5);
  border-radius: 0.05rem;
}
.contact .wrap .box .from .input .code {
  position: absolute;
  top: 50%;
  right: 0.2rem;
  transform: translateY(-50%);
  border-radius: 0.05rem;
  background-color: var(--themeColor);
  width: 1rem;
  line-height: 0.4rem;
  color: #fff;
  text-align: center;

  -moz-user-select: none; /* Firefox私有属性 */
  -webkit-user-select: none; /* WebKit内核私有属性 */
  -ms-user-select: none; /* IE私有属性(IE10及以后) */
  -khtml-user-select: none; /* KHTML内核私有属性 */
  -o-user-select: none; /* Opera私有属性 */
  user-select: none; /* CSS3属性 */
}
.contact .wrap .box .from .input:last-child {
  grid-column-start: 1;
  grid-column-end: 3;
}
.contact .wrap .box .btn {
  width: max-content;
  margin: 0 auto;
  line-height: 0.46rem;
  background-color: var(--themeColor);
  color: white;
  padding: 0 0.4rem;
  border-radius: 0.04rem;
  cursor: pointer;
}
/* 协议 */
.privacy .wrap {
  --cnotainer: 1.2rem;
  margin: 2.1rem auto 0.7rem;
}
.privacy .wrap h1 {
  text-align: center;
  margin-bottom: 0.7rem;
}
/* 产品列表 */
.product .wrap .cates {
  background-color: white;
  position: sticky;
  top: var(--headerHeight);
  z-index: 9;
  border-bottom: 1px solid #f0f0f0;
  box-shadow: 0 3px 10px rgba(51, 51, 51, 0.06);
}
.product .wrap .cates .container {
  display: flex;
  line-height: 0.7rem;
  overflow-x: auto;
}
.product .wrap .cates .container .item {
  cursor: pointer;
  transition: all 0.3s;
}
.product .wrap .cates .container .item:hover,
.product .wrap .cates .container .item.active {
  color: var(--themeColor);
}
.product .wrap .cates .container .item + .item {
  margin-left: 0.47rem;
}
.product .wrap .cates .container > *:nth-child(1) {
  animation-delay: 0.13s;
}
.product .wrap .cates .container > *:nth-child(2) {
  animation-delay: 0.26s;
}
.product .wrap .cates .container > *:nth-child(3) {
  animation-delay: 0.39s;
}
.product .wrap .cates .container > *:nth-child(4) {
  animation-delay: 0.52s;
}
.product .wrap .cates .container > *:nth-child(5) {
  animation-delay: 0.65s;
}
.product .wrap .cates .container > *:nth-child(6) {
  animation-delay: 0.78s;
}
.product .wrap .cates .container > *:nth-child(7) {
  animation-delay: 0.91s;
}
.product .wrap .cates .container > *:nth-child(8) {
  animation-delay: 1.04s;
}
.product .wrap .cates .container > *:nth-child(9) {
  animation-delay: 1.17s;
}
.product .wrap .cates .container > *:nth-child(10) {
  animation-delay: 1.3s;
}
.product .wrap .cates .container > *:nth-child(11) {
  animation-delay: 1.43s;
}
.product .wrap .cates .container > *:nth-child(12) {
  animation-delay: 1.56s;
}
.product .wrap .cates .container > *:nth-child(13) {
  animation-delay: 1.69s;
}
.product .wrap .cates .container > *:nth-child(14) {
  animation-delay: 1.82s;
}
.product .wrap .cates .container > *:nth-child(15) {
  animation-delay: 1.95s;
}
.product .wrap .cates .container > *:nth-child(16) {
  animation-delay: 2.08s;
}
.product .wrap .cates .container > *:nth-child(17) {
  animation-delay: 2.21s;
}
.product .wrap .cates .container > *:nth-child(18) {
  animation-delay: 2.34s;
}
.product .wrap .cates .container > *:nth-child(19) {
  animation-delay: 2.47s;
}
.product .wrap .cates .container > *:nth-child(20) {
  animation-delay: 2.6s;
}
.product .wrap .cates .container > *:nth-child(21) {
  animation-delay: 2.73s;
}
.product .wrap .cates .container > *:nth-child(22) {
  animation-delay: 2.86s;
}
.product .wrap .cates .container > *:nth-child(23) {
  animation-delay: 2.99s;
}
.product .wrap .cates .container > *:nth-child(24) {
  animation-delay: 3.12s;
}
.product .wrap .cates .container > *:nth-child(25) {
  animation-delay: 3.25s;
}
.product .wrap .cates .container > *:nth-child(26) {
  animation-delay: 3.38s;
}
.product .wrap .cates .container > *:nth-child(27) {
  animation-delay: 3.51s;
}
.product .wrap .cates .container > *:nth-child(28) {
  animation-delay: 3.64s;
}
.product .wrap .cates .container > *:nth-child(29) {
  animation-delay: 3.77s;
}
.product .boxs {
  margin-bottom: 1.5rem;
}
.product .boxs .box {
  margin: 1rem 0 0;
}
.product .boxs .box h3 {
  margin-bottom: 0.34rem;
}
.product .boxs .box .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.38rem 0.6rem;
}

.product .boxs .box .list a .img {
  position: relative;
}
.product .boxs .box .list a .img::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 64%;
}

.product .boxs .box .list a .img img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: contain;
  padding: 0.3rem;
}

.product .boxs .box .list img {
  padding: 0.63rem 0.92rem;
  background-color: #f8f8f8;
}
.product .boxs .box .list p {
  color: #666666;
  margin-top: 0.34rem;
  text-align: center;
}
.product .boxs .box .list > *:nth-child(1) {
  animation-delay: 0.13s;
}
.product .boxs .box .list > *:nth-child(2) {
  animation-delay: 0.26s;
}
.product .boxs .box .list > *:nth-child(3) {
  animation-delay: 0.39s;
}
.product .boxs .box .list > *:nth-child(4) {
  animation-delay: 0.52s;
}
.product .boxs .box .list > *:nth-child(5) {
  animation-delay: 0.65s;
}
.product .boxs .box .list > *:nth-child(6) {
  animation-delay: 0.78s;
}
.product .boxs .box .list > *:nth-child(7) {
  animation-delay: 0.91s;
}
.product .boxs .box .list > *:nth-child(8) {
  animation-delay: 1.04s;
}
.product .boxs .box .list > *:nth-child(9) {
  animation-delay: 1.17s;
}
.product .boxs .box .list > *:nth-child(10) {
  animation-delay: 1.3s;
}
.product .boxs .box .list > *:nth-child(11) {
  animation-delay: 1.43s;
}
.product .boxs .box .list > *:nth-child(12) {
  animation-delay: 1.56s;
}
.product .boxs .box .list > *:nth-child(13) {
  animation-delay: 1.69s;
}
.product .boxs .box .list > *:nth-child(14) {
  animation-delay: 1.82s;
}
.product .boxs .box .list > *:nth-child(15) {
  animation-delay: 1.95s;
}
.product .boxs .box .list > *:nth-child(16) {
  animation-delay: 2.08s;
}
.product .boxs .box .list > *:nth-child(17) {
  animation-delay: 2.21s;
}
.product .boxs .box .list > *:nth-child(18) {
  animation-delay: 2.34s;
}
.product .boxs .box .list > *:nth-child(19) {
  animation-delay: 2.47s;
}
.product .boxs .box .list > *:nth-child(20) {
  animation-delay: 2.6s;
}
.product .boxs .box .list > *:nth-child(21) {
  animation-delay: 2.73s;
}
.product .boxs .box .list > *:nth-child(22) {
  animation-delay: 2.86s;
}
.product .boxs .box .list > *:nth-child(23) {
  animation-delay: 2.99s;
}
.product .boxs .box .list > *:nth-child(24) {
  animation-delay: 3.12s;
}
.product .boxs .box .list > *:nth-child(25) {
  animation-delay: 3.25s;
}
.product .boxs .box .list > *:nth-child(26) {
  animation-delay: 3.38s;
}
.product .boxs .box .list > *:nth-child(27) {
  animation-delay: 3.51s;
}
.product .boxs .box .list > *:nth-child(28) {
  animation-delay: 3.64s;
}
.product .boxs .box .list > *:nth-child(29) {
  animation-delay: 3.77s;
}
/* 产品详情 */
.proInfo {
  /* 产品细节 */
  /* 技术参数 */
  /* 相似车型 */
  /* 摩友分享 */
  /* 预约试驾 */
}
.proInfo .banner {
  position: relative;
}
.proInfo .banner .text {
  position: absolute;
  left: var(--cm);
  top: 47%;
  transform: translate(0, -50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.proInfo .banner .text h1 {
  font-weight: 900;
  color: white;
  line-height: 1.266;
}
.proInfo .banner .text p {
  color: #f2f3f4;
  letter-spacing: 0.05rem;
}
.proInfo .banner .text .btns {
  display: flex;
  justify-content: center;
  margin-top: 1.1rem;
}
.proInfo .banner .text .btns a {
  line-height: 0.46rem;
  padding: 0 0.36rem;
  border: 1px solid #ffffff;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 0.3s;
}
.proInfo .banner .text .btns a + a {
  margin-left: 0.26rem;
  color: #333;
  background-color: white;
}
.proInfo .banner .text .btns a:hover {
  color: white;
  background-color: var(--themeColor);
  border-color: var(--themeColor);
}
.proInfo .color {
  position: relative;
}
.proInfo .color .left {
  position: absolute;
  left: var(--cm);
  top: 50%;
  transform: translateY(-50%);
}
.proInfo .color .left h3 {
  line-height: 1;
}
.proInfo .color .left .btn {
  width: max-content;
  margin-top: 0.7rem;
  color: var(--themeColor);
  border: 1px solid var(--themeColor);
  line-height: 0.42rem;
  border-radius: 0.7rem;
  padding: 0 0.42rem;
  cursor: pointer;
  transition: all 0.3s;
}
.proInfo .color .left .btn:hover {
  background-color: var(--themeColor);
  color: white;
}
.proInfo .color .main {
  width: 35%;
  position: absolute;
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
}
.proInfo .color .main .colors {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.proInfo .color .main .colors span {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  border: 0.04rem solid #acbcc9;
  background-size: 0.4rem 0.4rem;
  background-position: center;
  cursor: pointer;
  position: relative;
}
.proInfo .color .main .colors span + span {
  margin-left: 0.3rem;
}
.proInfo .color .main .colors span.active {
  border-color: white;
}
.proInfo .color .main .colors span.active::after {
  content: attr(title);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.12rem);
  transform: translateX(-50%);
  white-space: nowrap;
  font-weight: 500;
}
.proInfo .color .paginations {
  position: absolute;
  right: var(--cm);
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  display: flex;
  flex-direction: column;
}
.proInfo .color .paginations span {
  width: 0.37rem;
  height: 0.37rem;
  position: relative;
  color: #9f9f9f;
  text-align: center;
  line-height: 0.37rem;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 50%;
}
.proInfo .color .paginations span + span {
  margin-top: 0.1rem;
}
.proInfo .color .paginations span.active {
  border-color: var(--themeColor);
}
.proInfo .color .toast {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999999999;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  display: none;
}
.proInfo .color .toast .cont {
  width: 11.8rem;
  padding: 0.96rem 0.8rem 1rem;
  background-color: white;
  border-radius: 0.2rem;
  position: relative;
}
.proInfo .color .toast .cont .top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.4rem;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 0.3rem;
}
.proInfo .color .toast .cont .top .img {
  width: 30%;
}

.proInfo .color .toast .cont .top .right {
  flex: 1;
  margin-left: 0.3rem;
  background-image: url("../images/proinfo_sss_bg.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80% auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.proInfo .color .toast .cont .top .right h4 {
  font-weight: 500;
  color: var(--themeColor);
  /*margin-bottom: 0.2rem;*/
}
.proInfo .color .toast .cont .top .right p {
  color: #666666;
  line-height: 2;
}
.proInfo .color .toast .cont .top .right .fs-20 {
  color: #333;
  font-weight: 500;
}

.proInfo .color .toast .cont .table {
  max-height: 40vh;
  overflow-y: auto;
}

/*定义滚动条高宽及背景
 高宽分别对应横竖滚动条的尺寸*/
.proInfo .color .toast .cont .table::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background-color: #f5f5f5;
}

/*定义滚动条轨道
 内阴影+圆角*/
.proInfo .color .toast .cont .table::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.03);
  border-radius: 6px;
  background-color: #f5f5f5;
}

/*定义滑块
 内阴影+圆角*/
.proInfo .color .toast .cont .table::-webkit-scrollbar-thumb {
  border-radius: 6px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.03);
  background-color: #ddd;
}

.proInfo .color .toast .cont .table .item:first-child {
  position: sticky;
  top: 0;
}

.proInfo .color .toast .cont .table .item {
  display: flex;
}
.proInfo .color .toast .cont .table .item div {
  flex: 1;
  line-height: 0.44rem;
  border-bottom: 1px solid #e5e5e5;
  padding-left: 0.5rem;
  color: #666666;
}
.proInfo .color .toast .cont .table .item div:first-child {
  border-right: 1px solid #e5e5e5;
}
.proInfo .color .toast .cont .table .item:first-child div {
  color: #333333;
  background-color: #eeeeee;
}
.proInfo .color .toast .cont .table .item:first-child div:first-child {
  border: none;
}
.proInfo .color .toast .cont .cha {
  width: 0.23rem;
  height: 0.23rem;
  background-color: #666;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  right: 0.8rem;
  top: 0.36rem;
  text-align: center;
  line-height: 0.23rem;
}
.proInfo .color .toast .cont .cha::after {
  content: "×";
  color: white;
}
.proInfo .color .toast.active {
  display: flex;
}
.proInfo .big .swiper-slide {
  position: relative;
}
.proInfo .big .swiper-slide .text {
  position: absolute;
  top: 15%;
  left: var(--cm);
}
.proInfo .big .swiper-slide .text h3 {
  color: white;
  font-weight: 500;
  line-height: 1.4;
}
.proInfo .big .swiper-slide .text.right {
  left: auto;
  right: var(--cm);
}
.proInfo .big .swiper-slide .text.right h3 {
  text-align: right;
}
.proInfo .product-detail {
  margin: 1rem 0;
}
.proInfo .product-detail .product-detail-title {
  text-align: center;
  font-weight: 500;
}

.proInfo .product-detail .swiper {
  margin-top: 0.4rem;
}

.proInfo .product-detail .swiper .swiper-slide {
  position: relative;
  background: #000;
}

.proInfo .product-detail .swiper .swiper-slide img {
  object-fit: cover;
  height: 500px;
  opacity: 0.7;
}

.proInfo .product-detail .swiper .swiper-slide .text {
  position: absolute;
  left: 0.8rem;
  bottom: 0.8rem;
}
.proInfo .product-detail .swiper .swiper-slide .text h4 {
  font-weight: 500;
  color: white;
  /*margin-bottom: 0.34rem;*/
}
.proInfo .product-detail .swiper .swiper-slide .text p {
  color: white;
}
.proInfo .product-detail .swiper .btm {
  width: calc(50% - 0.4rem);
  margin: 0.5rem auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.proInfo .product-detail .swiper .btm .paginations .swiper-pagination-bullet {
  width: 0.2rem;
  height: 0.02rem;
  border-radius: 0;
}
.proInfo
  .product-detail
  .swiper
  .btm
  .paginations
  .swiper-pagination-bullet
  + .swiper-pagination-bullet {
  margin-left: 0.05rem;
}
.proInfo
  .product-detail
  .swiper
  .btm
  .paginations
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--themeColor);
}
.proInfo .product-detail .swiper .btm .btns .iconfont {
  width: 0.46rem;
  height: 0.46rem;
  background-color: #f2f2f2;
  color: #333;
  transition: all 0.3s;
}
.proInfo .product-detail .swiper .btm .btns .iconfont:hover {
  background-color: var(--themeColor);
  color: white;
  opacity: 1;
}
.proInfo .parameter {
  margin: 1rem 0;
  background-color: #eef0ef;
  padding: 0.6rem 0 0.9rem;
}
.proInfo .parameter .container {
  display: flex;
  align-items: center;
}
.proInfo .parameter .container .left {
  flex: 1;
  margin-right: 2rem;
}
.proInfo .parameter .container .right {
  width: 50%;
}
.proInfo .parameter .container .right ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem 0.2rem;
  margin: 0.64rem 0 0.72rem;
}
.proInfo .parameter .container .right ul li {
  display: flex;
  flex-direction: column;
  color: #666666;
  line-height: 1.2;
}
.proInfo .parameter .container .right ul li span {
  font-weight: 700;
  color: #333;
  margin-top: 0.1rem;
}
.proInfo .parameter .container .right .btn {
  width: max-content;
  line-height: 0.53rem;
  background-color: var(--themeColor);
  padding: 0 0.5rem;
  color: white;
  border-radius: 0.7rem;
  cursor: pointer;
  font-weight: 500;
}
.proInfo .similar {
  margin: 1rem 0;
}
.proInfo .similar .similar-title {
  text-align: center;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.proInfo .similar .container {
  display: grid;
  gap: 0.2rem;
  grid-template-columns: 1fr 1fr 1fr;
}
.proInfo .similar .container a {
  flex: 1;
}

.proInfo .similar .container a .img {
  position: relative;
}

.proInfo .similar .container a .img::after {
  content: "";
  width: 100%;
  padding-bottom: 95%;
  display: block;
}

.proInfo .similar .container a .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.4rem 0.4rem 0;
}

.proInfo .similar .container a p {
  font-weight: 500;
  margin-top: 0.34rem;
  text-align: center;
}
.proInfo .similar .container a + a {
  margin-left: 0.47rem;
}
.proInfo .share {
  margin: 1rem 0;
}
.proInfo .share .share-title {
  text-align: center;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.proInfo .share .swiper {
  overflow: hidden;
}
.proInfo .share .swiper + .swiper {
  margin-top: 0.2rem;
}
.proInfo .share .swiper-wrapper {
  transition-timing-function: linear;
}
.proInfo .test {
  position: relative;
}
.proInfo .test .box {
  width: 5.5rem;
  position: absolute;
  right: var(--cm);
  top: 50%;
  transform: translateY(-50%);
  background-color: white;
  padding: 0.63rem 0.68rem;
}
.proInfo .test .box h3 {
  margin-bottom: 0.5rem;
}
.proInfo .test .box .form .item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #dfdfdf;
  line-height: 0.5rem;
}
.proInfo .test .box .form .item .label {
  width: 4.3em;
  margin-right: 0.5rem;
  font-weight: 500;
}
.proInfo .test .box .form .item .input {
  flex: 1;
  position: relative;
}
.proInfo .test .box .form .item .input select,
.proInfo .test .box .form .item .input input {
  width: 100%;
}
.proInfo .test .box .form .item .input select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  /* 右侧添加小箭头的背景图 */
  background-image: url("../fonts/down.svg");
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: 100% center;
}
.proInfo .test .box .form .item .input .ercode {
  min-width: 5em;
  text-align: center;
  position: absolute;
  right: 0.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #ff5841;
  font-weight: 500;
  cursor: pointer;
}
.proInfo .test .box .form .item + .item {
  margin-top: 0.2rem;
}
.proInfo .test .box p {
  color: #999;
  margin: 0.6rem 0 0.4rem;
  display: flex;
  align-items: center;
}
.proInfo .test .box p span {
  margin-right: 0.05rem;
  width: 0.16rem;
  height: 0.16rem;
  border: 1px solid #666666;
  cursor: pointer;
  text-align: center;
  line-height: 0.16rem;
  color: white;
  transition: all 0.3s;
}
.proInfo .test .box p span.active {
  background-color: #666;
}
.proInfo .test .box p a {
  color: #ff5841;
}
.proInfo .test .box .btn {
  text-align: center;
  color: #000;
  background: #e9e9e9;
  line-height: 0.6rem;
  cursor: pointer;
  transition: all 0.3s;
}
.proInfo .test .box .btn.active,
.proInfo .test .box .btn:hover {
  background-color: var(--themeColor);
  color: white;
}
/* 服务支持 */
.service .swiper {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.service .swiper .swiper-slide {
  position: relative;
  background: #000;
}

.service .swiper .swiper-slide > img {
  opacity: 0.7;
}

.service .swiper .swiper-slide .text {
  position: absolute;
  left: var(--cm);
  top: 35%;
  color: white;
}
.service .swiper .swiper-slide .text h3 {
  margin-bottom: 0.1rem;
}
.service .swiper .swiper-slide .text p {
  width: 70%;
  line-height: 1.3;
}
.service .swiper .paginations {
  position: fixed;
  right: 0.33rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  color: white;
}
.service .swiper .paginations .item {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.service .swiper .paginations .item .d {
  width: 0.3rem;
  height: 0.3rem;
  margin-left: 0.2rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.service .swiper .paginations .item.active .d {
  border: 1px solid #fff;
}

.service .swiper .paginations .item .d::after {
  content: "";
  width: 0.05rem;
  height: 0.05rem;
  background-color: white;
  border-radius: 50%;
}
.service .swiper .paginations .item .d svg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.service .swiper .paginations .item .d svg circle {
  fill: none;
  stroke: white;
  stroke-width: 1;
}
.service .swiper .paginations .item .d svg circle.active {
  transition: stroke-dashoffset 3s linear;
}
.service .swiper .paginations .item + .item {
  margin-top: 0.1rem;
}
.service .map_wrap {
  position: relative;
  width: 100%;
  height: 100vh;
}
.service .map_wrap #map {
  width: 100%;
  height: 100%;
}
.service .map_wrap #map .anchorBL,
.service .map_wrap #map .BMap_cpyCtrl span {
  display: none !important;
}
.service .map_wrap .box {
  width: 5rem;
  height: 80vh;
  position: absolute;
  left: var(--cm);
  top: 50%;
  z-index: 111;
  transform: translateY(-50%);
  background-color: white;
  padding: 0.2rem;
  box-shadow: 0 0 10px rgba(51, 51, 51, 0.06);
}
.service .map_wrap .box .top {
  display: flex;
  padding-bottom: 0.1rem;
  border-bottom: 1px solid #e7e7e7;
  margin-bottom: 0.1rem;
}
.service .map_wrap .box .top select {
  flex: 1;
  padding: 0.17rem;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  /* 右侧添加小箭头的背景图 */
  background-color: #f4f5f6;
  background-image: url("../fonts/down.svg");
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: 92% center;
}
.service .map_wrap .box .top select + select {
  margin-left: 0.14rem;
}
.service .map_wrap .box .list {
  height: calc(100% - 0.8rem);
  overflow-y: auto;
}
.service .map_wrap .box .list .item {
  border: 1px solid #e7e7e7;
  padding: 0.26rem 0.2rem;
  cursor: pointer;
  transition: all 0.3s;
}
.service .map_wrap .box .list .item h4 {
  font-weight: 500;
}
.service .map_wrap .box .list .item p {
  color: #666666;
}
.service .map_wrap .box .list .item div {
  color: #666666;
}
.service .map_wrap .box .list .item div .iconfont::before {
  font-size: 0.15rem;
  margin-right: 0.05rem;
}
.service .map_wrap .box .list .item div .icon-dianhua::before {
  font-size: 0.17rem;
  margin-right: 0.05rem;
}
.service .map_wrap .box .list .item + .item {
  margin-top: 0.1rem;
}
.service .map_wrap .box .list .item:hover,
.service .map_wrap .box .list .item.active {
  border-color: var(--themeColor);
}
.service .map_wrap .box .list .item.active * {
  color: var(--themeColor);
}
/* 图片全屏 */
.perview {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 99999999;
  background-color: #000000;
  display: none;
}
.perview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* 入口页 */
.inlet {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-image: url(../images/inlet_bg.png);
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 0 var(--cm);
}
.inlet .top img {
  width: 4.6rem;
}
.inlet .center {
  margin: 1rem 0;
}
.inlet .center img {
  width: 3.74rem;
}
.inlet .btm {
  display: flex;
}
.inlet .btm .item {
  flex: 1;
  display: flex;
  align-items: center;
}
.inlet .btm .item span {
  color: white;
  font-weight: 800;
  margin: 0 0.2rem 0 0.1rem;
}
.inlet .btm .item a {
  line-height: 0.6rem;
  color: white;
  border-radius: 1rem;
  border: 1px solid #ffffff;
  background: rgba(255, 255, 255, 0.1);
  padding: 0 0.3rem;
  display: flex;
  transition: all 0.3s;
}
.inlet .btm .item a::before {
  content: "点击进入";
  margin-right: 0.3rem;
}
.inlet .btm .item a:hover {
  background-color: white;
  color: var(--themeColor);
}
.inlet .btm .item + .item {
  justify-content: flex-end;
  border-left: 1px solid rgba(242, 243, 244, 0.8);
}
/* 搜索页 */
.search .wrap {
  margin-top: calc(var(--headerHeight) * 2);
}
.search .wrap .search_box {
  width: calc(var(--container) * 0.7);
  margin: 0 auto;
  display: flex;
  line-height: 3;
}
.search .wrap .search_box input {
  flex: 1;
  border: 1px solid #eeeeee;
  padding: 0 0.2rem;
  margin-right: 0.2rem;
  border-radius: 0.07rem;
}
.search .wrap .search_box a {
  background-color: var(--themeColor);
  color: white;
  font-weight: 500;
  padding: 0 0.5rem;
  border-radius: 0.07rem;
}
.search .wrap h2 {
  margin: 0.5rem 0;
}
.search .wrap .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.38rem 0.6rem;
  margin-bottom: 1rem;
}
.search .wrap .list img {
  padding: 0.63rem 0.92rem;
  background-color: #f8f8f8;
}

.search .wrap .list a .img {
  position: relative;
}

.search .wrap .list a .img::after {
  content: "";
  width: 100%;
  padding-bottom: 60%;
  display: block;
}

.search .wrap .list a .img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.search .wrap .list p {
  color: #666666;
  margin-top: 0.34rem;
  text-align: center;
}
/* 手机 */
@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-36 {
    font-size: 22px;
  }
  .fs-32 {
    font-size: 21px;
  }
  .fs-30 {
    font-size: 20px;
  }
  .fs-26,
  .fs-27 {
    font-size: 19px;
  }
  .fs-24 {
    font-size: 13px;
  }
  .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-12 {
    font-size: 12px;
  }
  .iconfont {
    font-size: 16px;
  }
  .pagination,
  .pages {
    margin: 30px auto 60px;
  }
  .pagination a,
  .pages a,
  .pagination span,
  .pages span {
    width: 30px;
    line-height: 28px;
  }
  .pagination a.iconfont,
  .pages a.iconfont,
  .pagination span.iconfont,
  .pages span.iconfont {
    font-size: 14px;
  }
  .pagination a + a,
  .pages a + a,
  .pagination span + a,
  .pages span + a,
  .pagination a + span,
  .pages a + span,
  .pagination span + span,
  .pages span + span {
    margin-left: 8px;
  }
  .pagination a,
  .pages a,
  .pagination span,
  .pages span {
    border-radius: 4px;
  }
  .btn {
    padding: 0 15px;
    border-radius: 20px;
    line-height: 2.4;
  }
  .header > .container .logo {
    width: 20vw;
  }
  .header > .container .right .search {
    font-size: 20px;
  }
  .header .container .right .lang {
    line-height: 2;
  }
  .header > .container > ul li .childs {
    display: none;
    position: static;
  }
  .header > .container > ul li .childs .container {
    display: block;
  }
  .header > .container > ul li .childs .container .lefts {
    display: flex;
    width: 100%;
    height: auto;
    overflow-x: auto;
    border-right: none;
  }
  .header > .container > ul li .childs .container .lefts p + p {
    margin-top: 0;
    margin-left: 10px;
  }
  .header > .container > ul li .childs .container .rights .it {
    padding-left: 0;
    grid-template-columns: repeat(2, 1fr);
  }

  .header > .container > ul li .childs .container .rights .it a p {
    line-height: 1.4;
  }
  .header > .container > ul {
    position: fixed;
    top: var(--headerHeight);
    left: 100vw;
    background-color: var(--themeColor);
    width: 100vw;
    height: calc(100vh - var(--headerHeight));
    overflow-y: auto;
    display: block;
    transition: all 0.3s;
  }
  .header > .container > ul li {
    border-bottom: 1px solid white;
  }
  .header > .container > ul li a {
    font-size: 16px;
    color: white !important;
  }
  .header > .container > ul li a:hover {
    color: white !important;
  }
  .header > .container > ul.active {
    left: 0;
  }
  .header > .container .right .search_box .container {
    width: 92%;
  }
  .home .banner .swiper-slide video,
  .home .banner .swiper-slide img {
    height: 100vw;
  }
  .home .galloping .text a,
  .home .product .btns a,
  .home .banner .swiper-slide .btns a {
    line-height: 2.5;
    background-color: var(--themeColor) !important;
    border-color: var(--themeColor) !important;
    color: white !important;
  }
  .home .banner .swiper-slide .text {
    width: var(--container);
    top: 45%;
  }
  .home .top_box {
    height: auto;
  }
  .home .top_box .zw {
    display: none;
  }
  .home .top_box video {
    height: auto;
    display: block;
  }
  .home .product .swiper .iconfont {
    width: 35px;
    height: 35px;
  }
  .home .brand .box .container {
    display: block;
  }
  .home .product .list {
    grid-template-columns: repeat(2, 1fr);
  }
  .home .support .container {
    flex-direction: column;
  }
  .home .support .container a + a {
    margin-top: 10px;
    margin-left: 0;
  }
  .home .galloping .text h2 {
    width: var(--container);
    text-align: center;
    line-height: 1.2;
  }
  .home .galloping > img {
    height: 100vw;
    object-fit: cover;
  }
  .home .galloping .btm .play {
    width: 30px;
    height: 30px;
  }
  .home .galloping .btm .play::after {
    border: 10px solid white;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: none;
  }
  .footer .container .toTop {
    display: none;
  }
  .footer .container {
    display: block;
  }
  .footer .container .left .logo {
    width: 35vw;
  }
  .footer .container .left .ercode {
    width: 25vw;
    margin-top: 0;
  }
  .footer .container .left {
    margin-right: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer .container .right .links {
    margin: 20px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .footer .container .right .links a + a {
    margin-left: 0;
  }
  .footer .container .right .address {
    display: flex;
    flex-direction: column;
  }
  .footer .container .right .address br {
    display: none;
  }
  .footer .container .right .address a:last-child {
    margin-left: 0;
  }
  .footer .container .right .policy {
    margin-top: 20px;
    text-align: center;
  }
  .about .js {
    display: block;
  }
  .about .js .left {
    margin-right: 0;
  }
  .innovate .top .img {
    flex-direction: column;
  }
  .innovate .top .img img + img {
    margin-left: 0;
    margin-top: 10px;
  }
  .innovate .list .item .container {
    position: static;
    display: block;
    margin-top: 10px;
  }
  .innovate .list .item .container .left {
    width: 100%;
  }
  .innovate .list .item .container .right {
    margin-left: 0;
  }
  .innovate .list .item .container .right h4,
  .innovate .list .item .container .right p {
    color: #333;
  }
  .innovate .list .item .container .right a {
    line-height: 2.5;
  }
  .innovate .videos .swiper .swiper-wrapper .swiper-slide .play {
    width: 30px;
    height: 30px;
  }
  .innovate .videos .swiper .swiper-wrapper .swiper-slide .play::after {
    border: 10px solid var(--themeColor);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: none;
  }
  .innovateInfo .banner .bg {
    height: 100vw;
    object-fit: cover;
  }
  .innovateInfo .banner .left {
    top: 45%;
  }
  .innovateInfo .ta .tis {
    line-height: 2;
  }
  .innovateInfo .ta dl dd {
    width: 50%;
    line-height: 2;
    font-size: 14px;
  }
  .service .swiper .swiper-slide img {
    height: 100vw;
    object-fit: cover;
  }
  .service .swiper .paginations {
    top: auto;
    bottom: 0.33rem;
    transform: none;
  }
  .service .swiper .paginations .item .d::after {
    width: 4px;
    height: 4px;
  }
  .service .swiper .paginations .item .d {
    width: 25px;
    height: 25px;
  }
  .service .map_wrap .box {
    position: static;
    transform: none;
    width: 100%;
    height: auto;
    padding: var(--cm);
  }
  .service .map_wrap {
    height: auto;
  }
  .service .map_wrap .box .top select {
    padding: 10px 20px;
  }
  .service .map_wrap #map {
    height: 100vw;
  }
  .service .map_wrap .box .list {
    height: auto;
  }
  .news .news_top .swiper-slide .img::after {
    padding-bottom: 100%;
  }
  .news .news_top .swiper-pagination .swiper-pagination-bullet {
    width: 40px;
    height: 4px;
  }
  .news .news_top .swiper-slide .text .iconfont {
    width: 40px;
    height: 40px;
  }
  .news .news_wrap .list {
    display: block;
  }
  .news .news_top .swiper-slide .text h1 {
    width: 100%;
  }
  .newsInfo .wrap .back {
    line-height: 1.7;
    padding: 0 15px;
  }
  .newsInfo .wrap {
    --container: 92vw;
  }
  .newsInfo .wrap .btm {
    display: block;
  }
  .newsInfo .wrap .btm a {
    width: 100%;
  }
  .newsInfo .wrap .btm a:last-child {
    text-align: left;
    align-items: flex-start;
  }
  .contact .wrap .box {
    transform: none;
    box-shadow: none;
    width: 100vw;
    border-radius: 0;
  }
  .contact .banner > img {
    height: 100vw;
    object-fit: cover;
  }
  .contact .banner h1 {
    font-size: 16px;
    width: var(--container);
    top: 30%;
  }
  .contact .banner .list a {
    text-align: center;
  }
  .contact .wrap .box .btn,
  .contact .wrap .box .from .input input,
  .contact .wrap .box .from .input textarea {
    line-height: 1.7;
  }
  .contact .wrap .box .from .input input,
  .contact .wrap .box .from .input textarea {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .contact .wrap .box .from {
    display: block;
  }
  .contact .wrap {
    padding-bottom: 0;
  }
  .contact .banner .list {
    flex-wrap: wrap;
  }
  .contact .banner .list a {
    width: 50%;
    flex: none;
  }
  .contact .banner .list a img {
    width: 30px;
  }
  .proInfo .top_box {
    display: flex;
    flex-direction: column-reverse;
    height: auto;
  }
  .proInfo .top_box video {
    height: auto;
  }
  .proInfo .top_box .zw {
    padding-top: var(--headerHeight);
    line-height: 50vw;
    height: auto;
    position: static;
    mix-blend-mode: normal;
    color: var(--themeColor);
    background-color: black;
  }
  .proInfo .lights {
    margin-bottom: 40vw;
  }
  .proInfo .lights .text {
    top: 100%;
    transform: none;
  }
  .proInfo .lights .text p,
  .proInfo .lights .text h2 {
    color: #333;
  }
  .proInfo .lights .text p {
    line-height: 1.4;
  }
  .proInfo .video .text h3 {
    width: var(--container);
    position: absolute;
    text-align: left;
    top: 100%;
  }
  .proInfo .Parts h3,
  .proInfo .Big h3 {
    position: static;
    margin: 10px auto 30px;
    padding: 0 var(--cm);
    width: 100%;
    font-size: 25px;
  }
  .proInfo .with p {
    position: static;
    transform: none;
    color: #333;
    margin: 10px auto 30px;
    padding: 0 var(--cm);
    width: 100%;
  }
  .proInfo .Inverted {
    display: block;
  }
  .proInfo .Class {
    display: block;
  }
  .proInfo .Class img {
    width: 100%;
  }
  .proInfo .ex {
    display: block;
  }
  .proInfo .ex p {
    margin-left: 0;
  }
  .proInfo .ex img {
    margin-top: 0;
    width: 100%;
  }
  .product .boxs .box .list {
    grid-template-columns: 1fr;
  }
  .home .brand .box .container .left {
    padding-right: 0;
    margin-right: 0;
  }
  .home .brand .box .container .left .list a .ri,
  .home .brand .box .container .left .list a .ri p {
    width: 100%;
  }
  .home .brand .box .container .left .list a {
    flex-direction: column;
  }
  .home .brand .box .container .left .list a .img {
    width: 100%;
  }
  .home .brand .box .container .left {
    border-right: none;
  }
  .home .brand .box .container .top {
    font-size: 22px;
  }
  .home .brand .box .container .right {
    width: 100%;
  }
  .home .brand .box .container .right .list a .iconfont,
  .home .brand .box .container .right .list a::before {
    font-size: 18px;
  }
  .home .brand .box .container .right .list a {
    line-height: 3;
  }
  .about .js .logo {
    width: 60%;
  }
  .about .banner img {
    height: 100vw;
    object-fit: cover;
  }
  .about .banner .icon-shubiao {
    display: none;
  }
  .about .banner .text {
    width: 92%;
  }
  .about .banner .text h1 {
    text-align: center;
  }
  .about .honor .swiper .swiper-wrapper .swiper-slide.swiper-slide-active {
    transform: none;
  }
  .about .zz ul {
    position: static;
    width: 100%;
  }
  .about .zz ul li {
    flex: 1;
  }
  .about .zz ul li::before {
    font-size: 30px;
  }
  .about .ln > img {
    height: 100vw;
    object-fit: cover;
  }
  .about .ln p {
    margin-top: 10%;
  }
  .about .honor .swiper .btm {
    align-items: center;
  }
  .about .honor .swiper .btm {
    width: 45%;
  }
  .about .honor .swiper .btm .iconfont {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
  .about .honor .swiper {
    width: 92vw;
    margin: auto;
  }
  .product .wrap .cates .container {
    line-height: 3;
  }
  .product .wrap .cates .container .item {
    white-space: nowrap;
  }
  .proInfo .color .left .btn {
    line-height: 2;
  }
  .proInfo .color .paginations span {
    width: 20px;
    height: 20px;
    line-height: 20px;
  }
  .proInfo .color .toast .cont {
    width: 92vw;
  }
  .proInfo .color .toast .cont .table .item div {
    line-height: 2;
  }
  .proInfo .color .toast .cont .top {
    flex-direction: column;
  }
  .proInfo .color .toast .cont .cha {
    width: 20px;
    height: 20px;
    line-height: 20px;
  }
  .proInfo .big .swiper-slide .text h3 {
    font-size: 20px;
  }
  .proInfo .product-detail .swiper .btm .paginations .swiper-pagination-bullet {
    width: 10px;
    height: 3px;
  }
  .proInfo .product-detail .swiper .btm .btns .iconfont {
    width: 30px;
    height: 30px;
    font-size: 20px;
  }
  .proInfo .parameter .container {
    display: block;
  }
  .proInfo .parameter .container .left {
    margin-right: 0;
  }
  .proInfo .parameter .container .right {
    width: 100%;
  }
  .proInfo .parameter .container .right .btn {
    line-height: 2;
  }
  .proInfo .test .box {
    width: 100%;
    position: static;
    transform: none;
  }
  .proInfo .test .box .form .item {
    line-height: 3;
  }
  .proInfo .test .box p span {
    width: 16px;
    height: 16px;
    line-height: 16px;
  }
  .proInfo .test .box .btn {
    line-height: 3;
  }
  .proInfo .banner .text .btns a {
    line-height: 2;
  }
  .search .wrap .search_box {
    width: 92vw;
  }
  .search .wrap .list {
    grid-template-columns: repeat(2, 1fr);
  }
  .proInfo .banner > img {
    object-fit: cover;
  }
  .innovate .list .item:nth-child(even) .container .right {
    margin-right: 0;
  }
}

@media screen and (max-width: 768px) {
  .input .code img {
    height: 30px;
  }
  .contact .wrap .box .from .input .code {
    right: 2.3rem;
    top: 38%;
  }
  .brands {
    margin-top: 50px;
  }
  .about .banner .text ul {
    flex-wrap: wrap;
  }
  .about .zz .text p {
    font-size: 14px;
  }
  .rich p,
  .rich span {
    font-size: 14px !important;
  }
  .about .ln p {
    top: 1.27rem;
    font-size: 14px;
  }
  .about .ln h3 {
    font-size: 22px;
    top: 1rem;
  }
  .proInfo .color {
    height: 300px;
  }
  .proInfo .color img {
    height: 100%;
  }
  .proInfo .color .left {
    top: 32%;
  }
  .proInfo .color .left .fs-40 {
    font-size: 18px;
  }
  .proInfo .color .left .fs-70 {
    font-size: 20px;
  }
  .proInfo .color .toast .cont .top .img {
    justify-content: center;
    display: flex;
    width: 100%;
  }
  .proInfo .parameter .container .right ul {
    max-height: 200px;
    overflow: hidden;
  }
  .proInfo .test .box p {
    display: block;
  }
  .x-p {
    font-size: 14px;
  }
  .proInfo .product-detail .swiper .swiper-slide img {
    object-fit: cover;
    max-height: 300px;
    opacity: 0.7;
  }
  .home .brands .right a .text img {
    right: 8%;
  }
  .home .brands .left a::after {
    width: 0;
  }
  .home .brands .left {
    padding: 0;
  }
  .home .brands .left {
    width: 4.7rem;
  }
  .home .brands .left a {
    font-size: 14px;
    padding-left: 1rem;
  }
  .home .brands .right a .home .brands .right a .text {
    font-size: 12px;
  }
  .zhezhao {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
  }
  .home .brands .right a .text img {
    top: -27%;
  }
  .home .brands .left p {
    text-align: center;
    margin-bottom: 0;
  }
  .about .banner .text ul li p span {
    color: #fefefe;
  }
  .contact .banner .list {
    bottom: 0.23rem;
  }
  .contact .fs-20 {
    font-size: 14px;
  }
  .home .product ul a {
    font-size: 12px;
    color: #a0a0a0;
    cursor: pointer;
  }
}
