@import url(iconfont/iconfont.css);

@font-face {
  font-family: "h_Regular";
  src: url(font/HarmonyOS_Sans_SC_Regular.ttf);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --themeColor: #1E3485;
  --themeColor2: #164DA0;
  --themeColor3: #EFC144;
  --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 h_Regular, 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: h_Regular;
}
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;
}
/* 两行文本 */
.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;
}
.btns .iconfont.iconfont {
  margin-left: 0.2rem;
}
.btns .iconfont:hover {
  opacity: 0.3;
}
/* 顶部导航 */
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999999;
  background-color: white;
  line-height: var(--headerHeight);
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.06);
}
.header .container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .container .logo {
  width: 1.24rem;
}
.header .container > ul {
  width: 10rem;
  margin-left: 3.3rem;
  line-height: var(--headerHeight);
  display: flex;
  justify-content: space-between;
}
.header .container > ul li {
  text-align: center;
}
.header .container > ul li a {
  font-weight: 500;
  transition: all 0.3s;
}
.header .container > ul li:hover a,
.header .container > ul li.active a {
  color: var(--themeColor);
  font-weight: 600;
}
.header .container .lang {
  position: relative;
}
.header .container .lang .ba {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.header .container .lang .ba::before {
  content: "\e655";
  font-family: "iconfont";
  color: var(--themeColor);
  font-size: 0.2rem;
  margin-right: 0.05rem;
}
.header .container .lang .ba::after {
  content: "\e64f";
  font-family: "iconfont";
  font-size: 0.07rem;
  color: #666;
  margin-left: 0.05rem;
}
.header .container .lang .ul {
  display: none;
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translateY(30px) translateX(-50%);
  opacity: 0;
  background-color: white;
  box-shadow: 0 0 10px #40444899;
  border-radius: 0.05rem;
  transition: all 0.3s;
}
.header .container .lang .ul a {
  display: block;
  width: 100%;
  white-space: nowrap;
  padding: 0 0.34rem;
  line-height: 0.5rem;
  text-align: center;
}
.header .container .lang .ul a + a {
  border-top: 1px solid #00000077;
}
.header .container .lang .ul a:hover,
.header .container .lang .ul a.active {
  color: var(--themeColor);
}
.header .container .lang:hover .ul {
  display: block;
  transform: translateX(-50%);
  opacity: 1;
}
.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: #444;
  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;
}
/* 底部 */
.footer {
  position: relative;
  background-color: #0E152Bef;
}
.footer::after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../image/footer_bg.jpg);
  background-size: cover;
  background-position: center;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.footer .top {
  --container: 14rem;
  padding: 1rem 0;
}
.footer .top .tt {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .top .tt .left h3 {
  color: white;
}
.footer .top .tt .left .ms {
  display: flex;
  margin-top: 0.5rem;
}
.footer .top .tt .left .ms .item {
  display: flex;
  align-items: flex-end;
}

.footer .top .tt .left .ms .item .list{
    display: flex;
    flex-wrap: wrap;
}

.footer .top .tt .left .ms .item .first {
  margin-right: 0.5rem;
  position: relative;
}
.footer .top .tt .left .ms .item .first p {
  color: white;
  white-space: nowrap;
}
.footer .top .tt .left .ms .item .first span {
  color: rgba(255, 255, 255, 0.4);
}
.footer .top .tt .left .ms .item .first::after,
.footer .top .tt .left .ms .item .first::before {
  content: "";
  width: 0.08rem;
  height: 0.08rem;
  background: #FFC300;
  position: absolute;
  left: 120%;
  bottom: calc(12% + 0.1rem);
}
.footer .top .tt .left .ms .item .first::before {
  bottom: 12%;
  opacity: 0.25;
}
.footer .top .tt .left .ms .item .list a {
  color: rgba(255, 255, 255, 0.5);
  /*line-height: 1;*/
  margin-right: 0.16rem;
}

.footer .top .tt .left .ms .item + .item {
  margin-left: 0.9rem;
}
.footer .top .tt .right {
  width: 1.9rem;
  filter: grayscale(100%) brightness(500%);
}
.footer .top .tbo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.36rem;
  border-top: 1px solid #fff;
  padding-top: 0.36rem;
}
.footer .top .tbo a {
  display: flex;
  align-items: center;
  color: white;
}
.footer .top .tbo a::before {
  width: 0.83rem;
  height: 0.83rem;
  background-color: var(--themeColor);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.3rem;
  margin-right: 0.2rem;
  border-radius: 50%;
}
.footer .bottom {
  background-color: white;
}
.footer .bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 0.8rem;
}
.footer .bottom .container img {
  width: 1.18rem;
}
/* 内页banner */
.page_banner {
  position: relative;
}
.page_banner .text {
  color: white;
  position: absolute;
  left: 0;
  top: 0;
  padding-left: var(--cm);
  width: 40%;
  height: 100%;
  background: var(--themeColor);
  display: flex;
  flex-direction: column;
  justify-content: center;
-webkit-clip-path: polygon(82% 0, 100% 32%, 65% 100%, 0 100%, 0 0);
clip-path: polygon(82% 0, 100% 32%, 65% 100%, 0 100%, 0 0);
}
.page_banner .text span {
  color: #FFFFFF75;
}
.page_banner .text p {
  font-weight: 500;
}
.page_banner .links {
  /*position: absolute;*/
  /*left: var(--cm);*/
  /*bottom: 0;*/
  /*line-height: 0.7rem;*/
  /*background: linear-gradient(125.27deg, #FAE198FF 0%, #FCCC73FF 100%);*/
  /*color: #754C00FF;*/
  /*border-radius: 0.05rem 0.05rem 0 0;*/
  /*padding: 0 0.5rem;*/
  display: flex;
  color: #fff;
}
.page_banner .links span + span {
  display: flex;
}
.page_banner .links span + span::before {
  content: "/";
  margin: 0 0.05rem;
}
/* 首页 */
.home .banner {
  overflow: hidden;
  position: relative;
}

.home .banner .swiper-slide{
    position: relative;
    z-index: 2;
}

.home .banner .swiper-slide::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    /*background: #00000066;*/
}

.home .banner .swiper-slide video,
.home .banner .swiper-slide img{
    width: 100%;
    /*height: 100vh;*/
    /*object-fit: cover;*/
    /*position: relative;*/
    /*z-index: -1;*/
}

@media (max-width: 450px){
    .home .banner .swiper-slide video,
    .home .banner .swiper-slide img{
        height: 100vw;
    }
}

.home .banner .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home .banner .text h2 {
  color: white;
  white-space: nowrap;
  margin-bottom: 0.5rem;
}
.home .banner .text ul {
  display: flex;
}
.home .banner .text ul li {
  padding: 0.13rem 0.26rem;
  background-color: #FFFFFFCC;
}
.home .block_title {
  background-image: url(../image/ONE.svg);
  background-repeat: no-repeat;
  background-size: 35% 2em;
  background-position: 0.15rem 0;
}
.home .block_title span {
  color: #999999;
  letter-spacing: 0.04rem;
}
.home .block_title h3 i {
  color: var(--themeColor);
}
.home .product {
  margin-top: 1rem;
}
.home .product .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.home .product .top .more {
  display: flex;
  align-items: center;
}
.home .product .top .more::after {
  content: "\e840";
  font-family: "iconfont";
  color: #666;
}
.home .product .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  margin: 1rem auto;
}
.home .product .list a {
  border: 1px solid #CCCCCCFF;
  border-radius: 0.05rem;
  overflow: hidden;
}
.home .product .list a .text {
  padding: 0.7rem 0.5rem 0.3rem;
  background-color: var(--block_bc);
  position: relative;
}
.home .product .list a .text h4 {
  position: relative;
  line-height: 1;
  z-index: 2;
}
.home .product .list a .text h4::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 7em;
  height: 0.14rem;
  border-radius: 54px;
  background: linear-gradient(90deg, #FFC300FF 0%, #FFC30000 100%);
}
.home .product .list a .text p {
  font-weight: 700;
  margin-top: 0.26rem;
  opacity: 0.75;
}
.home .product .list a .text .icon {
  position: absolute;
  top: -0.6rem;
  left: 0.5rem;
  background-color: var(--themeColor);
  width: 0.94rem;
  height: 0.94rem;
  transform: rotateZ(45deg);
  border-radius: 0.03rem;
  transition: all 0.3s;
}
.home .product .list a .text .icon .iconfont {
  position: absolute;
  opacity: 0;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotateZ(-45deg);
  color: white;
  transition: all 0.3s;
}
.home .product .list a .text .icon img {
  width: 100%;
  height: 100%;
  padding: 0.2rem;
  transition: all 0.3s;
}
.home .product .list a .text .icon:hover {
  background-color: var(--themeColor3);
  border-radius: 50%;
}
.home .product .list a .text .icon:hover img {
  opacity: 0;
}
.home .product .list a .text .icon:hover .iconfont {
  opacity: 1;
}
.home .product .list > *:nth-child(1) {
  animation-delay: 0.13s;
}
.home .product .list > *:nth-child(2) {
  animation-delay: 0.26s;
}
.home .product .list > *:nth-child(3) {
  animation-delay: 0.39s;
}
.home .product .list > *:nth-child(4) {
  animation-delay: 0.52s;
}
.home .product .list > *:nth-child(5) {
  animation-delay: 0.65s;
}
.home .product .list > *:nth-child(6) {
  animation-delay: 0.78s;
}
.home .product .list > *:nth-child(7) {
  animation-delay: 0.91s;
}
.home .product .list > *:nth-child(8) {
  animation-delay: 1.04s;
}
.home .product .list > *:nth-child(9) {
  animation-delay: 1.17s;
}
.home .product .list > *:nth-child(10) {
  animation-delay: 1.3s;
}
.home .product .list > *:nth-child(11) {
  animation-delay: 1.43s;
}
.home .product .list > *:nth-child(12) {
  animation-delay: 1.56s;
}
.home .product .list > *:nth-child(13) {
  animation-delay: 1.69s;
}
.home .product .list > *:nth-child(14) {
  animation-delay: 1.82s;
}
.home .product .list > *:nth-child(15) {
  animation-delay: 1.95s;
}
.home .product .list > *:nth-child(16) {
  animation-delay: 2.08s;
}
.home .product .list > *:nth-child(17) {
  animation-delay: 2.21s;
}
.home .product .list > *:nth-child(18) {
  animation-delay: 2.34s;
}
.home .product .list > *:nth-child(19) {
  animation-delay: 2.47s;
}
.home .product .list > *:nth-child(20) {
  animation-delay: 2.6s;
}
.home .product .list > *:nth-child(21) {
  animation-delay: 2.73s;
}
.home .product .list > *:nth-child(22) {
  animation-delay: 2.86s;
}
.home .product .list > *:nth-child(23) {
  animation-delay: 2.99s;
}
.home .product .list > *:nth-child(24) {
  animation-delay: 3.12s;
}
.home .product .list > *:nth-child(25) {
  animation-delay: 3.25s;
}
.home .product .list > *:nth-child(26) {
  animation-delay: 3.38s;
}
.home .product .list > *:nth-child(27) {
  animation-delay: 3.51s;
}
.home .product .list > *:nth-child(28) {
  animation-delay: 3.64s;
}
.home .product .list > *:nth-child(29) {
  animation-delay: 3.77s;
}
.home .bs {
  position: relative;
}
.home .bs .text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home .bs .text h2 {
  position: relative;
  line-height: 1;
  margin-bottom: 0.27rem;
  z-index: 2;
}
.home .bs .text h2::after {
  content: "";
  position: absolute;
  height: 0.1rem;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 90px;
  z-index: -1;
  background: var(--themeColor3);
}
.home .bs .text p {
  font-weight: 500;
  text-align: center;
}
.home .history {
  margin: 1rem auto;
  overflow: hidden;
  padding-bottom: 0.2rem;
}
.home .history .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.1rem;
}
.home .history .swiper {
  border-bottom: 3.49px solid #C0C8CA;
  position: relative;
}
.home .history .swiper .swiper-wrapper {
  padding: 0 var(--cm);
}
.home .history .swiper .swiper-wrapper .swiper-slide {
  border-left: 2px dashed #C0C8CA;
  padding-left: 0.4rem;
  padding-bottom: 0.5rem;
  position: relative;
}
.home .history .swiper .swiper-wrapper .swiper-slide h3 {
  /*width: max-content;*/
  line-height: 1;
}
.home .history .swiper .swiper-wrapper .swiper-slide h3:first-child {
  color: var(--themeColor);
  margin-bottom: 0.13rem;
}
.home .history .swiper .swiper-wrapper .swiper-slide h3:last-of-type {
  /*position: relative;*/
  z-index: 2;
}
.home .history .swiper .swiper-wrapper .swiper-slide h3:last-of-type::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 2rem;
  height: 2rem;
  background-color: #EBEBEB;
  border-radius: 50%;
  /*left: calc(100% - 3.5rem);*/
  /*top: 0;*/
  left: 30%;
  bottom: 18%;
}
.home .history .swiper .swiper-wrapper .swiper-slide img {
  position: relative;
  z-index: 3;
  width: 70%;
  object-fit: contain;
  height: 1.7rem;
  margin-top: 1.2rem;
}
.home .history .swiper .swiper-wrapper .swiper-slide::before {
  content: "";
  width: 0.26rem;
  height: 0.26rem;
  border: 2px solid #C0C8CA;
  background-color: white;
  position: absolute;
  left: -0.16rem;
  bottom: -0.15rem;
  border-radius: 50%;
}
.home .history .swiper .swiper-wrapper .swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: -0.13rem;
  width: 0.24rem;
  height: 0.24rem;
  border-radius: 50%;
  background: radial-gradient(49.12% 49.12% at 40.9327797% 40.9327797%, #FFDA5EFF 0%, #BD971AFF 100%);
}
.home .history .swiper .swiper-wrapper .swiper-slide.swiper-slide-active::after {
  background: linear-gradient(125.27deg, #FAE198FF 0%, #FCCC73FF 100%);
}
.home .history .swiper .swiper-wrapper > *:nth-child(1) {
  animation-delay: 0.13s;
}
.home .history .swiper .swiper-wrapper > *:nth-child(2) {
  animation-delay: 0.26s;
}
.home .history .swiper .swiper-wrapper > *:nth-child(3) {
  animation-delay: 0.39s;
}
.home .history .swiper .swiper-wrapper > *:nth-child(4) {
  animation-delay: 0.52s;
}
.home .history .swiper .swiper-wrapper > *:nth-child(5) {
  animation-delay: 0.65s;
}
.home .history .swiper .swiper-wrapper > *:nth-child(6) {
  animation-delay: 0.78s;
}
.home .history .swiper .swiper-wrapper > *:nth-child(7) {
  animation-delay: 0.91s;
}
.home .history .swiper .swiper-wrapper > *:nth-child(8) {
  animation-delay: 1.04s;
}
.home .history .swiper .swiper-wrapper > *:nth-child(9) {
  animation-delay: 1.17s;
}
.home .history .swiper .swiper-wrapper > *:nth-child(10) {
  animation-delay: 1.3s;
}
.home .history .swiper .swiper-wrapper > *:nth-child(11) {
  animation-delay: 1.43s;
}
.home .history .swiper .swiper-wrapper > *:nth-child(12) {
  animation-delay: 1.56s;
}
.home .history .swiper .swiper-wrapper > *:nth-child(13) {
  animation-delay: 1.69s;
}
.home .history .swiper .swiper-wrapper > *:nth-child(14) {
  animation-delay: 1.82s;
}
.home .history .swiper .swiper-wrapper > *:nth-child(15) {
  animation-delay: 1.95s;
}
.home .history .swiper .swiper-wrapper > *:nth-child(16) {
  animation-delay: 2.08s;
}
.home .history .swiper .swiper-wrapper > *:nth-child(17) {
  animation-delay: 2.21s;
}
.home .history .swiper .swiper-wrapper > *:nth-child(18) {
  animation-delay: 2.34s;
}
.home .history .swiper .swiper-wrapper > *:nth-child(19) {
  animation-delay: 2.47s;
}
.home .history .swiper .swiper-wrapper > *:nth-child(20) {
  animation-delay: 2.6s;
}
.home .history .swiper .swiper-wrapper > *:nth-child(21) {
  animation-delay: 2.73s;
}
.home .history .swiper .swiper-wrapper > *:nth-child(22) {
  animation-delay: 2.86s;
}
.home .history .swiper .swiper-wrapper > *:nth-child(23) {
  animation-delay: 2.99s;
}
.home .history .swiper .swiper-wrapper > *:nth-child(24) {
  animation-delay: 3.12s;
}
.home .history .swiper .swiper-wrapper > *:nth-child(25) {
  animation-delay: 3.25s;
}
.home .history .swiper .swiper-wrapper > *:nth-child(26) {
  animation-delay: 3.38s;
}
.home .history .swiper .swiper-wrapper > *:nth-child(27) {
  animation-delay: 3.51s;
}
.home .history .swiper .swiper-wrapper > *:nth-child(28) {
  animation-delay: 3.64s;
}
.home .history .swiper .swiper-wrapper > *:nth-child(29) {
  animation-delay: 3.77s;
}
.home .history .swiper::after,
.home .history .swiper::before {
  content: "";
  width: var(--cm);
  height: 100%;
  transform: none;
  background: linear-gradient(90deg, #FFffFF 0%, #FFFFFF00 100%);
  position: absolute;
  top: 0;
  bottom: -4px;
  left: 0;
  z-index: 4;
}
.home .history .swiper::after {
  transform: rotate(180deg);
  right: 0;
  left: auto;
}
.home .about {
  background-image: url(../image/home_about_bg.png);
  background-size: cover;
  padding: 1rem 0;
}
.home .about .container {
  display: flex;
}
.home .about .container .left {
  flex: 1;
  margin-right: 0.84rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.home .about .container .left > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.home .about .container .left p {
  margin: 0.5rem 0;
}
.home .about .container .left span {
  margin-bottom: 0.5rem;
}
.home .about .container .left a {
  line-height: 0.5rem;
  padding: 0 0.4rem;
  background-color: var(--themeColor);
  color: white;
  border-radius: 0.05rem;
  display: flex;
  align-items: center;
}
.home .about .container .left a::after {
  content: "\e840";
  font-family: "iconfont";
  margin-left: 0.1rem;
}
.home .about .container .left ul {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home .about .container .left ul li p {
  margin: 0;
}
.home .about .container .left ul li p span {
  color: var(--themeColor);
  font-weight: 700;
}
.home .about .container .right {
  width: 50%;
  display: flex;
  justify-content: space-between;
}
.home .about .container .right .ll,
.home .about .container .right .rr {
  width: calc(50% - 0.15rem);
}
.home .about .container .right .ll p {
  margin-top: 0.34rem;
}
.home .about .container .right .rr {
  background-color: var(--themeColor);
  padding: 0.43rem;
  position: relative;
}
.home .about .container .right .rr img {
  margin-bottom: 1.5rem;
}
.home .about .container .right .rr p {
  color: white;
  position: absolute;
  left: 0.43rem;
  bottom: 0.43rem;
  line-height: 1;
  font-weight: 700;
}
.home .about .container .right .rr p span {
  font-weight: 100;
}
.home .kh {
  padding: 0.9rem var(--cm);
  overflow: hidden;
}
.home .kh .swiper-wrapper {
  transition-timing-function: linear;
}
.home .kh .swiper-wrapper .swiper-slide {
  height: 0.6rem;
  object-fit: contain;
}
/* 关于我们 */
.about {
  /* 企业概况 */
  /* 发展历程 */
  /* 企业文化 */
  /* 设备介绍 */
  /* 荣誉资质 */
  /* logos */
}
.about .tiss {
  display: flex;
  align-items: center;
  position: relative;
}
.about .tiss::after,
.about .tiss::before {
  content: "";
  background-color: var(--themeColor3);
  width: 0.14rem;
  height: 0.14rem;
  transform: rotateZ(45deg);
  margin-right: 0.24rem;
}
.about .tiss::after {
  background-color: var(--themeColor);
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotateZ(45deg);
  left: 0.1rem;
}
.about .tiss.white {
  color: white;
}
.about .tiss.white::after {
  background-color: white;
}
.about #js {
  padding: 1rem 0;
}
.about #js .container {
  display: flex;
}
.about #js .container .left {
  flex: 1;
  margin-right: 1.45rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.about #js .container .left > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.about #js .container .left > div .sub {
  margin: 0.3rem 0 0.5rem;
  color: var(--themeColor);
}
.about #js .container .left > div .rich {
  margin-bottom: 0.5rem;
}

.about #js .container .left > div .rich *{
    font-size: 0.2rem;
}

.about #js .container .left ul {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about #js .container .left ul li p {
  margin: 0;
}
.about #js .container .left ul li p span {
  color: var(--themeColor);
  font-weight: 700;
}
.about #js .container .right {
  width: 50%;
  display: flex;
  justify-content: space-between;
}
.about #js .container .right .ll,
.about #js .container .right .rr {
  width: calc(50% - 0.15rem);
}
.about #js .container .right .ll p {
  margin-top: 0.34rem;
}
.about #js .container .right .rr {
  background-color: var(--themeColor);
  padding: 0.43rem;
  position: relative;
}
.about #js .container .right .rr img {
  margin-bottom: 1.5rem;
}
.about #js .container .right .rr p {
  color: white;
  position: absolute;
  left: 0.43rem;
  bottom: 0.43rem;
  line-height: 1;
  font-weight: 700;
}
.about #js .container .right .rr p span {
  font-weight: 100;
}
.about #lc {
  background-image: url(../image/about_lc_bg.png);
  background-size: cover;
  display: flex;
}
.about #lc .left {
  width: 3.92rem;
  padding: 1rem 0;
  position: relative;
}
.about #lc .left .tiss {
  margin-bottom: 0.5rem;
  margin-left: var(--cm);
}
.about #lc .left .yuan {
  width: 5.4rem;
  height: 5.4rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 4px solid #2056B3FF;
  transform: translateX(-40%);
}
.about #lc .left .yuan img {
  width: 80%;
  height: 80%;
  border-radius: 50%;
}
.about #lc .left .ming {
  border-radius: 0 2rem 2rem 0;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  padding: 0.3rem 0;
  padding-right: 0.83rem;
  text-align: right;
  color: white;
  background: linear-gradient(90deg, #1E348500 0%, #2157B3BF 39.58%, #2156B3FF 81.25%);
}
.about #lc .left .ming::after {
  content: "";
  width: 85%;
  height: 1px;
  background-color: white;
  position: absolute;
  left: 0;
  top: 53%;
}
.about #lc .left .ming::before {
  content: "";
  width: 0.2rem;
  height: 0.2rem;
  background: #FFFFFFE5;
  filter: blur(4px);
  position: absolute;
  top: calc(50% - 0.06rem);
  left: calc(85% - 0.1rem);
  border-radius: 50%;
}
.about #lc .right {
  width: calc(100vw - 3.92rem);
  display: flex;
  flex-direction: column;
  position: relative;
}
.about #lc .right .btns {
  width: 100%;
  padding-right: var(--cm);
  justify-content: flex-end;
  transform: translateY(80%);
  position: relative;
  z-index: 22;
}
.about #lc .right .swiper_box {
  width: 100%;
  margin-top: -0.6rem;
  position: relative;
  display: flex;
  align-items: center;
  flex: 1;
  overflow: hidden;
}
.about #lc .right .swiper_box .swiper {
  width: 100%;
  height: 4px;
  background-color: var(--themeColor);
  padding: 0 1rem;
}
.about #lc .right .swiper_box .swiper .swiper-slide {
  --tc: #5FBCCF;
  position: relative;
}
.about #lc .right .swiper_box .swiper .swiper-slide.t2 {
  --tc: #339AF0;
}
.about #lc .right .swiper_box .swiper .swiper-slide.t3 {
  --tc: #005AA8;
}
.about #lc .right .swiper_box .swiper .swiper-slide .box {
  width: 160%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  left: 0.3rem;
  bottom: -2.5rem;
}
.about #lc .right .swiper_box .swiper .swiper-slide .box b,
.about #lc .right .swiper_box .swiper .swiper-slide .box i,
.about #lc .right .swiper_box .swiper .swiper-slide .box p {
  font-weight: 500;
}
.about #lc .right .swiper_box .swiper .swiper-slide .box b {
  color: var(--tc);
}
.about #lc .right .swiper_box .swiper .swiper-slide .box i {
  background-color: var(--tc);
  color: white;
  margin: 0.14rem 0;
  line-height: 0.32rem;
  padding: 0 0.2rem;
  border-radius: 0.66rem;
}
.about #lc .right .swiper_box .swiper .swiper-slide .duiv {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0.2rem;
  height: 0.2rem;
  background-color: white;
  border-radius: 50%;
  border: 1px solid var(--tc);
  transform: translateY(-0.07rem);
}
.about #lc .right .swiper_box .swiper .swiper-slide .duiv::after {
  content: "";
  width: 0.1rem;
  height: 0.1rem;
  background-color: var(--tc);
  border-radius: 50%;
}
.about #lc .right .swiper_box .swiper .swiper-slide::after {
  content: "";
  width: 1px;
  height: 1.6rem;
  background-color: var(--tc);
  position: absolute;
  left: 0.1rem;
  top: 0.13rem;
}
.about #lc .right .swiper_box .swiper .swiper-slide::before {
  content: "";
  width: 0.06rem;
  height: 0.06rem;
  background-color: var(--tc);
  border-radius: 50%;
  position: absolute;
  top: 1.7rem;
  left: 0.08rem;
}
.about #lc .right .swiper_box .swiper .swiper-slide:nth-child(even)::after {
  top: auto;
  bottom: 0.13rem;
}
.about #lc .right .swiper_box .swiper .swiper-slide:nth-child(even)::before {
  bottom: 1.7rem;
  top: auto;
}
.about #lc .right .swiper_box .swiper .swiper-slide:nth-child(even) .box {
  top: -2.5rem;
  bottom: auto;
}
.about #lc .right .swiper_box .swiper .swiper-wrapper > *:nth-child(1) {
  animation-delay: 0.13s;
}
.about #lc .right .swiper_box .swiper .swiper-wrapper > *:nth-child(2) {
  animation-delay: 0.26s;
}
.about #lc .right .swiper_box .swiper .swiper-wrapper > *:nth-child(3) {
  animation-delay: 0.39s;
}
.about #lc .right .swiper_box .swiper .swiper-wrapper > *:nth-child(4) {
  animation-delay: 0.52s;
}
.about #lc .right .swiper_box .swiper .swiper-wrapper > *:nth-child(5) {
  animation-delay: 0.65s;
}
.about #lc .right .swiper_box .swiper .swiper-wrapper > *:nth-child(6) {
  animation-delay: 0.78s;
}
.about #lc .right .swiper_box .swiper .swiper-wrapper > *:nth-child(7) {
  animation-delay: 0.91s;
}
.about #lc .right .swiper_box .swiper .swiper-wrapper > *:nth-child(8) {
  animation-delay: 1.04s;
}
.about #lc .right .swiper_box .swiper .swiper-wrapper > *:nth-child(9) {
  animation-delay: 1.17s;
}
.about #lc .right .swiper_box .swiper .swiper-wrapper > *:nth-child(10) {
  animation-delay: 1.3s;
}
.about #lc .right .swiper_box .swiper .swiper-wrapper > *:nth-child(11) {
  animation-delay: 1.43s;
}
.about #lc .right .swiper_box .swiper .swiper-wrapper > *:nth-child(12) {
  animation-delay: 1.56s;
}
.about #lc .right .swiper_box .swiper .swiper-wrapper > *:nth-child(13) {
  animation-delay: 1.69s;
}
.about #lc .right .swiper_box .swiper .swiper-wrapper > *:nth-child(14) {
  animation-delay: 1.82s;
}
.about #lc .right .swiper_box .swiper .swiper-wrapper > *:nth-child(15) {
  animation-delay: 1.95s;
}
.about #lc .right .swiper_box .swiper .swiper-wrapper > *:nth-child(16) {
  animation-delay: 2.08s;
}
.about #lc .right .swiper_box .swiper .swiper-wrapper > *:nth-child(17) {
  animation-delay: 2.21s;
}
.about #lc .right .swiper_box .swiper .swiper-wrapper > *:nth-child(18) {
  animation-delay: 2.34s;
}
.about #lc .right .swiper_box .swiper .swiper-wrapper > *:nth-child(19) {
  animation-delay: 2.47s;
}
.about #lc .right .swiper_box .swiper .swiper-wrapper > *:nth-child(20) {
  animation-delay: 2.6s;
}
.about #lc .right .swiper_box .swiper .swiper-wrapper > *:nth-child(21) {
  animation-delay: 2.73s;
}
.about #lc .right .swiper_box .swiper .swiper-wrapper > *:nth-child(22) {
  animation-delay: 2.86s;
}
.about #lc .right .swiper_box .swiper .swiper-wrapper > *:nth-child(23) {
  animation-delay: 2.99s;
}
.about #lc .right .swiper_box .swiper .swiper-wrapper > *:nth-child(24) {
  animation-delay: 3.12s;
}
.about #lc .right .swiper_box .swiper .swiper-wrapper > *:nth-child(25) {
  animation-delay: 3.25s;
}
.about #lc .right .swiper_box .swiper .swiper-wrapper > *:nth-child(26) {
  animation-delay: 3.38s;
}
.about #lc .right .swiper_box .swiper .swiper-wrapper > *:nth-child(27) {
  animation-delay: 3.51s;
}
.about #lc .right .swiper_box .swiper .swiper-wrapper > *:nth-child(28) {
  animation-delay: 3.64s;
}
.about #lc .right .swiper_box .swiper .swiper-wrapper > *:nth-child(29) {
  animation-delay: 3.77s;
}
.about #lc .right::after,
.about #lc .right::before {
  content: "";
  width: 1.6rem;
  height: 100%;
  background: linear-gradient(90deg, #e7f5ff 0%, rgba(231, 245, 255, 0) 100%);
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 22;
}
.about #lc .right::after {
  left: auto;
  right: 0;
  transform: rotateZ(180deg);
}
.about #wh {
  padding: 1rem 0;
  /*background-image: url(../image/about_wh_bg.png);*/
  /*background-size: cover;*/
}

.about #wh .main{
    margin-top: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about #wh .main img{
    width: 50%;
}

.about #wh .main ul{
    margin-right: var(--cm);
}

.about #wh .main ul li + li{
    margin-top: 0.1rem;
}

.about #wh .main ul span{
    font-weight: 600;
}

.about #wh .container > p {
  /*color: white;*/
  font-weight: 500;
}
.about #wh .container ul {
  margin-top: 0.5rem;
  display: flex;
}
.about #wh .container ul > li {
  position: relative;
  flex: 1;
  border-radius: 0.05rem;
  background: linear-gradient(223.78deg, #c2e9fb 0%, #a1c4fd 100%);
  padding: 0.8rem 0.3rem 1.2rem;
}
.about #wh .container ul > li img {
  height: 0.64rem;
  object-fit: contain;
  object-position: left;
}
.about #wh .container ul > li h4 {
  font-weight: 500;
  margin: 0.36rem 0 0.92rem;
  position: relative;
}
.about #wh .container ul > li h4::after,
.about #wh .container ul > li h4::before {
  content: "";
  background-color: var(--themeColor3);
  width: 0.14rem;
  height: 0.14rem;
  transform: rotateZ(45deg);
  position: absolute;
  top: 180%;
}
.about #wh .container ul > li h4::after {
  background-color: var(--themeColor);
  left: 0.1rem;
}
.about #wh .container ul > li ol {
  line-height: 0.62rem;
}
.about #wh .container ul > li ol li {
  border-bottom: 1px dashed rgba(0, 0, 0, 0.16);
}
.about #wh .container ul > li ol li:nth-child(1) {
  border-top: 1px dashed rgba(0, 0, 0, 0.16);
}
.about #wh .container ul > li + li {
  margin-left: 0.2rem;
}
.about #wh .container ul > li::after {
  content: attr(num);
  position: absolute;
  bottom: 0.15rem;
  left: 0.3rem;
  color: white;
  font-size: 0.6rem;
  line-height: 1;
  font-weight: 500;
}
.about #wh .container ul > *:nth-child(1) {
  animation-delay: 0.13s;
}
.about #wh .container ul > *:nth-child(2) {
  animation-delay: 0.26s;
}
.about #wh .container ul > *:nth-child(3) {
  animation-delay: 0.39s;
}
.about #wh .container ul > *:nth-child(4) {
  animation-delay: 0.52s;
}
.about #wh .container ul > *:nth-child(5) {
  animation-delay: 0.65s;
}
.about #wh .container ul > *:nth-child(6) {
  animation-delay: 0.78s;
}
.about #wh .container ul > *:nth-child(7) {
  animation-delay: 0.91s;
}
.about #wh .container ul > *:nth-child(8) {
  animation-delay: 1.04s;
}
.about #wh .container ul > *:nth-child(9) {
  animation-delay: 1.17s;
}
.about #wh .container ul > *:nth-child(10) {
  animation-delay: 1.3s;
}
.about #wh .container ul > *:nth-child(11) {
  animation-delay: 1.43s;
}
.about #wh .container ul > *:nth-child(12) {
  animation-delay: 1.56s;
}
.about #wh .container ul > *:nth-child(13) {
  animation-delay: 1.69s;
}
.about #wh .container ul > *:nth-child(14) {
  animation-delay: 1.82s;
}
.about #wh .container ul > *:nth-child(15) {
  animation-delay: 1.95s;
}
.about #wh .container ul > *:nth-child(16) {
  animation-delay: 2.08s;
}
.about #wh .container ul > *:nth-child(17) {
  animation-delay: 2.21s;
}
.about #wh .container ul > *:nth-child(18) {
  animation-delay: 2.34s;
}
.about #wh .container ul > *:nth-child(19) {
  animation-delay: 2.47s;
}
.about #wh .container ul > *:nth-child(20) {
  animation-delay: 2.6s;
}
.about #wh .container ul > *:nth-child(21) {
  animation-delay: 2.73s;
}
.about #wh .container ul > *:nth-child(22) {
  animation-delay: 2.86s;
}
.about #wh .container ul > *:nth-child(23) {
  animation-delay: 2.99s;
}
.about #wh .container ul > *:nth-child(24) {
  animation-delay: 3.12s;
}
.about #wh .container ul > *:nth-child(25) {
  animation-delay: 3.25s;
}
.about #wh .container ul > *:nth-child(26) {
  animation-delay: 3.38s;
}
.about #wh .container ul > *:nth-child(27) {
  animation-delay: 3.51s;
}
.about #wh .container ul > *:nth-child(28) {
  animation-delay: 3.64s;
}
.about #wh .container ul > *:nth-child(29) {
  animation-delay: 3.77s;
}
.about #sb {
  padding: 1rem 0;
}
.about #sb .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about #sb .container .more {
  display: flex;
  align-items: center;
}

.about #sb .container .more::after {
  content: "\e840";
  font-family: "iconfont";
  color: #666;
}

.about #sb .swiper {
  margin-top: 0.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0.2rem;
}

.about #sb .swiper .swiper-slide .img{
    position: relative;
}

.about #sb .swiper .swiper-slide .img::after{
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 125%;
}

.about #sb .swiper .swiper-slide .img img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about #sb .swiper .swiper-slide {
  position: relative;
  border-radius: 0.05rem;
  overflow: hidden;
}
.about #sb .swiper .swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 0.07rem solid rgba(255, 255, 255, 0.7);
}
.about #sb .swiper .swiper-slide .text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: white;
  z-index: 2;
  background-color: rgba(22, 77, 160, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(1.3);
  transition: all 0.3s;
}
.about #sb .swiper .swiper-slide .text::before {
  content: "+";
  width: 0.9rem;
  height: 0.9rem;
  background-color: #efc144;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 0.5rem;
}
.about #sb .swiper .swiper-slide .text h5 {
  margin: 0.4rem 0 0.1rem;
}
.about #sb .swiper .swiper-slide:hover .text {
  opacity: 1;
  transform: none;
}
.about #sb .swiper .swiper-wrapper > *:nth-child(1) {
  animation-delay: 0.13s;
}
.about #sb .swiper .swiper-wrapper > *:nth-child(2) {
  animation-delay: 0.26s;
}
.about #sb .swiper .swiper-wrapper > *:nth-child(3) {
  animation-delay: 0.39s;
}
.about #sb .swiper .swiper-wrapper > *:nth-child(4) {
  animation-delay: 0.52s;
}
.about #sb .swiper .swiper-wrapper > *:nth-child(5) {
  animation-delay: 0.65s;
}
.about #sb .swiper .swiper-wrapper > *:nth-child(6) {
  animation-delay: 0.78s;
}
.about #sb .swiper .swiper-wrapper > *:nth-child(7) {
  animation-delay: 0.91s;
}
.about #sb .swiper .swiper-wrapper > *:nth-child(8) {
  animation-delay: 1.04s;
}
.about #sb .swiper .swiper-wrapper > *:nth-child(9) {
  animation-delay: 1.17s;
}
.about #sb .swiper .swiper-wrapper > *:nth-child(10) {
  animation-delay: 1.3s;
}
.about #sb .swiper .swiper-wrapper > *:nth-child(11) {
  animation-delay: 1.43s;
}
.about #sb .swiper .swiper-wrapper > *:nth-child(12) {
  animation-delay: 1.56s;
}
.about #sb .swiper .swiper-wrapper > *:nth-child(13) {
  animation-delay: 1.69s;
}
.about #sb .swiper .swiper-wrapper > *:nth-child(14) {
  animation-delay: 1.82s;
}
.about #sb .swiper .swiper-wrapper > *:nth-child(15) {
  animation-delay: 1.95s;
}
.about #sb .swiper .swiper-wrapper > *:nth-child(16) {
  animation-delay: 2.08s;
}
.about #sb .swiper .swiper-wrapper > *:nth-child(17) {
  animation-delay: 2.21s;
}
.about #sb .swiper .swiper-wrapper > *:nth-child(18) {
  animation-delay: 2.34s;
}
.about #sb .swiper .swiper-wrapper > *:nth-child(19) {
  animation-delay: 2.47s;
}
.about #sb .swiper .swiper-wrapper > *:nth-child(20) {
  animation-delay: 2.6s;
}
.about #sb .swiper .swiper-wrapper > *:nth-child(21) {
  animation-delay: 2.73s;
}
.about #sb .swiper .swiper-wrapper > *:nth-child(22) {
  animation-delay: 2.86s;
}
.about #sb .swiper .swiper-wrapper > *:nth-child(23) {
  animation-delay: 2.99s;
}
.about #sb .swiper .swiper-wrapper > *:nth-child(24) {
  animation-delay: 3.12s;
}
.about #sb .swiper .swiper-wrapper > *:nth-child(25) {
  animation-delay: 3.25s;
}
.about #sb .swiper .swiper-wrapper > *:nth-child(26) {
  animation-delay: 3.38s;
}
.about #sb .swiper .swiper-wrapper > *:nth-child(27) {
  animation-delay: 3.51s;
}
.about #sb .swiper .swiper-wrapper > *:nth-child(28) {
  animation-delay: 3.64s;
}
.about #sb .swiper .swiper-wrapper > *:nth-child(29) {
  animation-delay: 3.77s;
}
.about #zz {
  background-image: url(../image/about_lc_bg.png);
  background-size: cover;
  padding: 1rem 0;
}
.about #zz .container {
  display: flex;
  align-items: center;
}
.about #zz .container .left p {
  margin: 0.26rem 0 0.6rem;
  color: var(--themeColor);
}
.about #zz .container .right {
  margin-left: 1.25rem;
  display: flex;
  align-items: center;
  flex: 1;
}
.about #zz .container .right img:first-child {
  margin-right: 0.5rem;
}
.about .kh {
  padding: 0.9rem var(--cm);
  overflow: hidden;
}
.about .kh .swiper-wrapper {
  transition-timing-function: linear;
}
.about .kh .swiper-wrapper .swiper-slide {
  height: 0.6rem;
  object-fit: contain;
}
/* 产品中心 */
.product .contss {
  margin: 1rem auto;
  /*display: flex;*/
  /*align-items: flex-start;*/
}
.product .contss .left {
  /*width: 4rem;*/
  /*position: sticky;*/
  /*top: calc(var(--headerHeight) + 0.1rem);*/
  /*margin-right: 0.6rem;*/
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0.1rem;
  margin-bottom: 0.2rem;
}
.product .contss .left .item {
  background-color: #f7f6f1;
  line-height: 0.63rem;
  padding: 0 0.34rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
  border-radius: 0.02rem;
  transition: all 0.3s;
}
.product .contss .left .item::after {
  content: "\e649";
  font-family: "iconfont";
  opacity: 0.7;
}
.product .contss .left .item.active,
.product .contss .left .item:hover {
  background-color: var(--themeColor);
  color: white;
}
.product .contss .left .item + .item {
  /*margin-top: 0.2rem;*/
}
.product .contss .left .download {
  background-color: #f7f6f1;
  line-height: 0.63rem;
  padding: 0 0.34rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border-radius: 0.05rem;
  border: 1px solid var(--themeColor2);
  transition: all 0.3s;
  /*margin-top: 0.2rem;*/
  color: var(--themeColor2);
  font-weight: 500;
}
.product .contss .left .download::after {
  content: "\e65b";
  font-family: "iconfont";
  font-size: 0.28rem;
}
.product .contss .left .download:hover {
  background-color: var(--themeColor2);
  color: white;
}
.product .contss .right {
  position: sticky;
  top: calc(var(--headerHeight) + 0.1rem);
  flex: 1;
}
.product .contss .right ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.22rem;
}
.product .contss .right ul a,
.product .contss .right ul li {
  background-color: #f7f6f1;
  border: 1px solid #cccccc;
  border-radius: 0.08rem;
  padding: 0.15rem;
  text-align: center;
  position: relative;
}

.product .contss .right ul a>div,
.product .contss .right ul li>div{
    position: relative;
}

.product .contss .right ul a>div::after,
.product .contss .right ul li>div::after{
    content: "";
    width: 100%;
    display: block;
    padding-bottom: 65%;
}

.product .contss .right ul a img,
.product .contss .right ul li img {
  background-color: white;
  transition: all 0.3s;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product .contss .right ul a h5,
.product .contss .right ul li h5 {
  margin-top: 0.16rem;
}
.product .contss .right ul a::after,
.product .contss .right ul li::after {
  content: "+";
  width: 0.9rem;
  height: 0.9rem;
  background-color: #efc144;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 0.5rem;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.3s;
}
.product .contss .right ul a:hover img,
.product .contss .right ul li:hover img {
  opacity: 0.5;
}
.product .contss .right ul a:hover::after,
.product .contss .right ul li:hover::after {
  opacity: 1;
}
/* 新闻资讯 */
.news .contss {
  margin: 1rem auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
}
.news .contss a {
  border-radius: 0.05rem;
  transition: all 0.3s;
  overflow: hidden;
}
.news .contss a .img {
  width: 100%;
  display: flex;
  position: relative;
  background-color: var(--block_bc);
  padding: 0.05rem;
}
.news .contss a .img img {
  flex: 1;
  transition: all 0.3s;
}
.news .contss a .img img:first-child {
  margin-right: 0.05rem;
}
.news .contss a .img .da {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateZ(45deg);
  background-color: var(--themeColor);
  padding: 0.2rem;
  width: 0.94rem;
  height: 0.94rem;
  border-radius: 0.03rem;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.news .contss a .img .da .dvs {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: rotateZ(-45deg);
}
.news .contss a .img .da .dvs span {
  color: white;
  transition: all 0.3s;
}
.news .contss a .img .da .iconfont {
  position: absolute;
  opacity: 0;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotateZ(-45deg);
  color: white;
  transition: all 0.3s;
}
.news .contss a .text {
  width: 100%;
  padding: 0.3rem;
}
.news .contss a .text h4,
.news .contss a .text p {
  width: 100%;
}
.news .contss a .text p {
  margin: 0.1rem 0;
  opacity: 0.75;
}
.news .contss a .text .more {
  color: var(--themeColor);
  display: flex;
  align-items: center;
}
.news .contss a .text .more::after {
  content: "\e658";
  font-family: "iconfont";
  margin-left: 0.1rem;
  font-size: 0.12rem;
}
.news .contss a:hover {
  background-color: var(--block_bc);
}
.news .contss a:hover .img img {
  opacity: 0.6;
}
.news .contss a:hover .img .da {
  background-color: var(--themeColor3);
  border-radius: 50%;
}
.news .contss a:hover .img .da span {
  opacity: 0;
}
.news .contss a:hover .img .da .iconfont {
  opacity: 1;
}
.news .contss > *:nth-child(1) {
  animation-delay: 0.13s;
}
.news .contss > *:nth-child(2) {
  animation-delay: 0.26s;
}
.news .contss > *:nth-child(3) {
  animation-delay: 0.39s;
}
.news .contss > *:nth-child(4) {
  animation-delay: 0.52s;
}
.news .contss > *:nth-child(5) {
  animation-delay: 0.65s;
}
.news .contss > *:nth-child(6) {
  animation-delay: 0.78s;
}
.news .contss > *:nth-child(7) {
  animation-delay: 0.91s;
}
.news .contss > *:nth-child(8) {
  animation-delay: 1.04s;
}
.news .contss > *:nth-child(9) {
  animation-delay: 1.17s;
}
.news .contss > *:nth-child(10) {
  animation-delay: 1.3s;
}
.news .contss > *:nth-child(11) {
  animation-delay: 1.43s;
}
.news .contss > *:nth-child(12) {
  animation-delay: 1.56s;
}
.news .contss > *:nth-child(13) {
  animation-delay: 1.69s;
}
.news .contss > *:nth-child(14) {
  animation-delay: 1.82s;
}
.news .contss > *:nth-child(15) {
  animation-delay: 1.95s;
}
.news .contss > *:nth-child(16) {
  animation-delay: 2.08s;
}
.news .contss > *:nth-child(17) {
  animation-delay: 2.21s;
}
.news .contss > *:nth-child(18) {
  animation-delay: 2.34s;
}
.news .contss > *:nth-child(19) {
  animation-delay: 2.47s;
}
.news .contss > *:nth-child(20) {
  animation-delay: 2.6s;
}
.news .contss > *:nth-child(21) {
  animation-delay: 2.73s;
}
.news .contss > *:nth-child(22) {
  animation-delay: 2.86s;
}
.news .contss > *:nth-child(23) {
  animation-delay: 2.99s;
}
.news .contss > *:nth-child(24) {
  animation-delay: 3.12s;
}
.news .contss > *:nth-child(25) {
  animation-delay: 3.25s;
}
.news .contss > *:nth-child(26) {
  animation-delay: 3.38s;
}
.news .contss > *:nth-child(27) {
  animation-delay: 3.51s;
}
.news .contss > *:nth-child(28) {
  animation-delay: 3.64s;
}
.news .contss > *:nth-child(29) {
  animation-delay: 3.77s;
}
/* 新闻详情 */
.newsinfo .contss {
  padding: 1rem 0;
  display: flex;
  align-items: flex-start;
}
.newsinfo .contss .left {
  flex: 1;
  margin-right: 0.6rem;
  position: sticky;
  top: calc(var(--headerHeight) + 0.1rem);
}
.newsinfo .contss .left h2 {
  margin-bottom: 0.3rem;
}
.newsinfo .contss .left .btms {
  margin-top: 0.3rem;
  border: 1px solid;
  border-width: 1px 0 1px 0;
  border-style: solid;
  border-color: rgba(51, 51, 51, 0.36);
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1rem;
}
.newsinfo .contss .left .btms .next::after,
.newsinfo .contss .left .btms .perv::before {
  font-family: "iconfont";
  font-size: 0.18rem;
  color: var(--themeColor);
  width: 0.6rem;
  height: 0.6rem;
  background-color: var(--block_bc);
  border-radius: 0.05rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.newsinfo .contss .left .btms .perv,
.newsinfo .contss .left .btms .next {
  display: flex;
  align-items: center;
}
.newsinfo .contss .left .btms .perv::before {
  content: "\e62c";
  margin-right: 0.1rem;
}
.newsinfo .contss .left .btms .next::after {
  content: "\e62b";
  margin-left: 0.1rem;
}
/* 资料下载 */
.download .contss {
  padding: 1rem 0;
  display: flex;
  align-items: flex-start;
}
.download .contss .left {
  flex: 1;
  margin-right: 0.6rem;
  position: sticky;
  top: calc(var(--headerHeight) + 0.2rem);
}
.download .contss .left .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.17rem;
  border-bottom: 1px solid #eee;
}
.download .contss .left .item .lefts {
  display: flex;
}
.download .contss .left .item .lefts .iconfont {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 0.05rem;
  background: linear-gradient(125.27deg, #fae198 0%, #fccc73 100%);
  border: 1px solid #e6bd4c;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 0.1rem;
  color: #754c00;
  font-size: 0.26rem;
}
.download .contss .left .item .lefts .tt p {
  font-weight: 500;
}
.download .contss .left .item .lefts .tt div {
  display: flex;
  font-weight: 500;
}
.download .contss .left .item .lefts .tt div i {
  border-radius: 0.02rem;
  background: rgba(0, 140, 179, 0.16);
  margin-right: 0.1rem;
  color: var(--themeColor2);
  padding: 0 0.1rem;
}
.download .contss .left .item a {
  padding: 0 0.2rem;
  background-color: #F2FAFA;
  display: flex;
  align-items: center;
  line-height: 2;
}
.download .contss .left .item a::before {
  content: "\e856";
  font-family: "iconfont";
  margin-right: 0.06rem;
  color: var(--themeColor);
  font-size: 0.2rem;
  font-weight: 600;
}
.download .contss .left .item + .item {
  margin-top: 0.46rem;
}
.download .contss .left > *:nth-child(1) {
  animation-delay: 0.13s;
}
.download .contss .left > *:nth-child(2) {
  animation-delay: 0.26s;
}
.download .contss .left > *:nth-child(3) {
  animation-delay: 0.39s;
}
.download .contss .left > *:nth-child(4) {
  animation-delay: 0.52s;
}
.download .contss .left > *:nth-child(5) {
  animation-delay: 0.65s;
}
.download .contss .left > *:nth-child(6) {
  animation-delay: 0.78s;
}
.download .contss .left > *:nth-child(7) {
  animation-delay: 0.91s;
}
.download .contss .left > *:nth-child(8) {
  animation-delay: 1.04s;
}
.download .contss .left > *:nth-child(9) {
  animation-delay: 1.17s;
}
.download .contss .left > *:nth-child(10) {
  animation-delay: 1.3s;
}
.download .contss .left > *:nth-child(11) {
  animation-delay: 1.43s;
}
.download .contss .left > *:nth-child(12) {
  animation-delay: 1.56s;
}
.download .contss .left > *:nth-child(13) {
  animation-delay: 1.69s;
}
.download .contss .left > *:nth-child(14) {
  animation-delay: 1.82s;
}
.download .contss .left > *:nth-child(15) {
  animation-delay: 1.95s;
}
.download .contss .left > *:nth-child(16) {
  animation-delay: 2.08s;
}
.download .contss .left > *:nth-child(17) {
  animation-delay: 2.21s;
}
.download .contss .left > *:nth-child(18) {
  animation-delay: 2.34s;
}
.download .contss .left > *:nth-child(19) {
  animation-delay: 2.47s;
}
.download .contss .left > *:nth-child(20) {
  animation-delay: 2.6s;
}
.download .contss .left > *:nth-child(21) {
  animation-delay: 2.73s;
}
.download .contss .left > *:nth-child(22) {
  animation-delay: 2.86s;
}
.download .contss .left > *:nth-child(23) {
  animation-delay: 2.99s;
}
.download .contss .left > *:nth-child(24) {
  animation-delay: 3.12s;
}
.download .contss .left > *:nth-child(25) {
  animation-delay: 3.25s;
}
.download .contss .left > *:nth-child(26) {
  animation-delay: 3.38s;
}
.download .contss .left > *:nth-child(27) {
  animation-delay: 3.51s;
}
.download .contss .left > *:nth-child(28) {
  animation-delay: 3.64s;
}
.download .contss .left > *:nth-child(29) {
  animation-delay: 3.77s;
}
/* 资料下载/新闻详情右侧新闻板块 */
.page_news_right {
  width: 4rem;
  position: sticky;
  top: calc(var(--headerHeight) + 0.1rem);
}
.page_news_right .search_box {
  background-color: var(--block_bc);
  padding: 0.06rem;
  border-radius: 0.05rem;
  display: flex;
  align-items: center;
  line-height: 0.56rem;
  margin-bottom: 0.3rem;
}
.page_news_right .search_box input {
  flex: 1;
  padding-left: 0.1rem;
}
.page_news_right .search_box .iconfont {
  width: 0.56rem;
  text-align: center;
  background-color: var(--themeColor3);
  font-size: 0.18rem;
  cursor: pointer;
}
.page_news_right .search_box .iconfont:active {
  opacity: 0.7;
}
.page_news_right .list_box {
  background-color: var(--block_bc);
  border-radius: 0.05rem;
  padding: 0.6rem 0.35rem;
}
.page_news_right .list_box .tis {
  color: var(--themeColor);
  position: relative;
  z-index: 2;
  line-height: 1.3;
}
.page_news_right .list_box .tis::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 60%;
  height: 0.14rem;
  border-radius: 0.54rem;
  background: linear-gradient(90deg, #FFC300 0%, #FFC30000 100%);
}
.page_news_right .list_box .list a {
  background-color: white;
  border-radius: 0.05rem;
  padding: 0.18rem 0.24rem;
  margin-top: 0.3rem;
  display: flex;
}
.page_news_right .list_box .list a .img {
  width: 45%;
}
.page_news_right .list_box .list a .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page_news_right .list_box .list a .right {
  margin-left: 0.2rem;
}
.page_news_right .list_box .list a .right span {
  display: flex;
  color: rgba(51, 51, 51, 0.75);
  align-items: center;
}
.page_news_right .list_box .list a .right span::before {
  content: "\e65a";
  font-family: "iconfont";
  color: var(--themeColor);
  margin-right: 0.05rem;
}
/* 技术支持 */
.support .container.rich {
  margin: 0.7rem auto;
  min-height: 12vh;
}
/* 加入我们 */
.join .contss {
  padding: 1rem 0;
  display: flex;
  align-items: flex-start;
}
.join .contss .left {
  flex: 1;
  margin-right: 0.6rem;
  position: sticky;
  top: calc(var(--headerHeight) + 0.2rem);
}
.join .contss .left .item .box {
  overflow: hidden;
}
.join .contss .left .item .tiss {
  color: var(--themeColor);
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 0.2rem;
}
.join .contss .left .item .tiss::after,
.join .contss .left .item .tiss::before {
  content: "";
  background-color: var(--themeColor3);
  width: 0.14rem;
  height: 0.14rem;
  transform: rotateZ(45deg);
  margin-right: 0.24rem;
}
.join .contss .left .item .tiss::after {
  background-color: var(--themeColor);
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotateZ(45deg);
  left: 0.1rem;
}
.join .contss .left .item .info .itss h3 {
  font-weight: 500;
}
.join .contss .left .item .info .itss .tags {
  margin: 0.16rem 0;
  display: flex;
}
.join .contss .left .item .info .itss .tags i {
  margin-right: 0.1rem;
  background-color: #DFE8F2;
  color: rgba(51, 51, 51, 0.65);
  padding: 0 0.06rem;
  border-radius: 0.02rem;
}
.join .contss .left .item .info .itss ul {
  color: rgba(51, 51, 51, 0.65);
}
.join .contss .left .item .info .itss + .itss {
  margin-top: 0.16rem;
}
.join .contss .left .item .bns {
  width: max-content;
  display: flex;
  align-items: center;
  color: var(--themeColor);
  margin-top: 0.16rem;
  position: relative;
  line-height: 1.3;
  cursor: pointer;
}
.join .contss .left .item .bns::after {
  content: "\e62b";
  font-family: "iconfont";
  margin-left: 0.1rem;
  transform: rotateZ(90deg);
  font-size: 0.2rem;
}
.join .contss .left .item .bns::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--themeColor);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.join .contss .left .item .bns span:nth-child(2) {
  display: none;
}
.join .contss .left .item .bns.down span:nth-child(1) {
  display: none;
}
.join .contss .left .item .bns.down span:nth-child(2) {
  display: block;
}
.join .contss .left .item .bns.down::after {
  transform: rotateZ(-90deg);
}
.join .contss .left .item + .item {
  margin-top: 0.3rem;
  border-top: 1px solid #eee;
  padding-top: 0.3rem;
}
.join .contss .left > *:nth-child(1) {
  animation-delay: 0.13s;
}
.join .contss .left > *:nth-child(2) {
  animation-delay: 0.26s;
}
.join .contss .left > *:nth-child(3) {
  animation-delay: 0.39s;
}
.join .contss .left > *:nth-child(4) {
  animation-delay: 0.52s;
}
.join .contss .left > *:nth-child(5) {
  animation-delay: 0.65s;
}
.join .contss .left > *:nth-child(6) {
  animation-delay: 0.78s;
}
.join .contss .left > *:nth-child(7) {
  animation-delay: 0.91s;
}
.join .contss .left > *:nth-child(8) {
  animation-delay: 1.04s;
}
.join .contss .left > *:nth-child(9) {
  animation-delay: 1.17s;
}
.join .contss .left > *:nth-child(10) {
  animation-delay: 1.3s;
}
.join .contss .left > *:nth-child(11) {
  animation-delay: 1.43s;
}
.join .contss .left > *:nth-child(12) {
  animation-delay: 1.56s;
}
.join .contss .left > *:nth-child(13) {
  animation-delay: 1.69s;
}
.join .contss .left > *:nth-child(14) {
  animation-delay: 1.82s;
}
.join .contss .left > *:nth-child(15) {
  animation-delay: 1.95s;
}
.join .contss .left > *:nth-child(16) {
  animation-delay: 2.08s;
}
.join .contss .left > *:nth-child(17) {
  animation-delay: 2.21s;
}
.join .contss .left > *:nth-child(18) {
  animation-delay: 2.34s;
}
.join .contss .left > *:nth-child(19) {
  animation-delay: 2.47s;
}
.join .contss .left > *:nth-child(20) {
  animation-delay: 2.6s;
}
.join .contss .left > *:nth-child(21) {
  animation-delay: 2.73s;
}
.join .contss .left > *:nth-child(22) {
  animation-delay: 2.86s;
}
.join .contss .left > *:nth-child(23) {
  animation-delay: 2.99s;
}
.join .contss .left > *:nth-child(24) {
  animation-delay: 3.12s;
}
.join .contss .left > *:nth-child(25) {
  animation-delay: 3.25s;
}
.join .contss .left > *:nth-child(26) {
  animation-delay: 3.38s;
}
.join .contss .left > *:nth-child(27) {
  animation-delay: 3.51s;
}
.join .contss .left > *:nth-child(28) {
  animation-delay: 3.64s;
}
.join .contss .left > *:nth-child(29) {
  animation-delay: 3.77s;
}
/* 联系我们 */
.contact .contss {
  padding: 1rem 0;
  display: flex;
  align-items: flex-start;
}
.contact .contss .left {
  flex: 1;
  margin-right: 0.6rem;
  position: sticky;
  top: calc(var(--headerHeight) + 0.2rem);
}
.contact .contss .left .form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.3rem;
}
.contact .contss .left .form textarea,
.contact .contss .left .form input {
  background-color: var(--block_bc);
  padding: 0.16rem;
  line-height: 1.75;
}
.contact .contss .left .form textarea,
.contact .contss .left .form input:last-of-type {
  grid-column-start: 1;
  grid-column-end: 3;
}
.contact .contss .left .form > *:nth-child(1) {
  animation-delay: 0.13s;
}
.contact .contss .left .form > *:nth-child(2) {
  animation-delay: 0.26s;
}
.contact .contss .left .form > *:nth-child(3) {
  animation-delay: 0.39s;
}
.contact .contss .left .form > *:nth-child(4) {
  animation-delay: 0.52s;
}
.contact .contss .left .form > *:nth-child(5) {
  animation-delay: 0.65s;
}
.contact .contss .left .form > *:nth-child(6) {
  animation-delay: 0.78s;
}
.contact .contss .left .form > *:nth-child(7) {
  animation-delay: 0.91s;
}
.contact .contss .left .form > *:nth-child(8) {
  animation-delay: 1.04s;
}
.contact .contss .left .form > *:nth-child(9) {
  animation-delay: 1.17s;
}
.contact .contss .left .form > *:nth-child(10) {
  animation-delay: 1.3s;
}
.contact .contss .left .form > *:nth-child(11) {
  animation-delay: 1.43s;
}
.contact .contss .left .form > *:nth-child(12) {
  animation-delay: 1.56s;
}
.contact .contss .left .form > *:nth-child(13) {
  animation-delay: 1.69s;
}
.contact .contss .left .form > *:nth-child(14) {
  animation-delay: 1.82s;
}
.contact .contss .left .form > *:nth-child(15) {
  animation-delay: 1.95s;
}
.contact .contss .left .form > *:nth-child(16) {
  animation-delay: 2.08s;
}
.contact .contss .left .form > *:nth-child(17) {
  animation-delay: 2.21s;
}
.contact .contss .left .form > *:nth-child(18) {
  animation-delay: 2.34s;
}
.contact .contss .left .form > *:nth-child(19) {
  animation-delay: 2.47s;
}
.contact .contss .left .form > *:nth-child(20) {
  animation-delay: 2.6s;
}
.contact .contss .left .form > *:nth-child(21) {
  animation-delay: 2.73s;
}
.contact .contss .left .form > *:nth-child(22) {
  animation-delay: 2.86s;
}
.contact .contss .left .form > *:nth-child(23) {
  animation-delay: 2.99s;
}
.contact .contss .left .form > *:nth-child(24) {
  animation-delay: 3.12s;
}
.contact .contss .left .form > *:nth-child(25) {
  animation-delay: 3.25s;
}
.contact .contss .left .form > *:nth-child(26) {
  animation-delay: 3.38s;
}
.contact .contss .left .form > *:nth-child(27) {
  animation-delay: 3.51s;
}
.contact .contss .left .form > *:nth-child(28) {
  animation-delay: 3.64s;
}
.contact .contss .left .form > *:nth-child(29) {
  animation-delay: 3.77s;
}
.contact .contss .left .btn {
  width: max-content;
  padding: 0 0.9rem;
  background-color: var(--themeColor2);
  color: white;
  line-height: 0.7rem;
  border-radius: 0.05rem;
  margin-top: 0.3rem;
}
.contact .contss .list_box {
  margin-top: 0;
  padding: 0.36rem;
}
.contact .contss .list_box .contactss .item {
  display: flex;
  align-items: center;
  margin-top: 0.36rem;
  padding: 0.2rem;
  background-color: white;
}
.contact .contss .list_box .contactss .item .iconfont {
  width: 0.54rem;
  height: 0.54rem;
  flex-shrink: 0;
  margin-right: 0.12rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(125.27deg, #FAE198 0%, #FCCC73 100%);
  border: 1px solid #E6BD4C;
  border-radius: 50%;
  color: #754C00;
  font-size: 0.2rem;
}
.contact .contss .list_box .contactss .item .ri p {
  display: flex;
}
.contact .contss .list_box .contactss .item .ri p span {
  white-space: nowrap;
}
.contact .contss .list_box .contactss > *:nth-child(1) {
  animation-delay: 0.13s;
}
.contact .contss .list_box .contactss > *:nth-child(2) {
  animation-delay: 0.26s;
}
.contact .contss .list_box .contactss > *:nth-child(3) {
  animation-delay: 0.39s;
}
.contact .contss .list_box .contactss > *:nth-child(4) {
  animation-delay: 0.52s;
}
.contact .contss .list_box .contactss > *:nth-child(5) {
  animation-delay: 0.65s;
}
.contact .contss .list_box .contactss > *:nth-child(6) {
  animation-delay: 0.78s;
}
.contact .contss .list_box .contactss > *:nth-child(7) {
  animation-delay: 0.91s;
}
.contact .contss .list_box .contactss > *:nth-child(8) {
  animation-delay: 1.04s;
}
.contact .contss .list_box .contactss > *:nth-child(9) {
  animation-delay: 1.17s;
}
.contact .contss .list_box .contactss > *:nth-child(10) {
  animation-delay: 1.3s;
}
.contact .contss .list_box .contactss > *:nth-child(11) {
  animation-delay: 1.43s;
}
.contact .contss .list_box .contactss > *:nth-child(12) {
  animation-delay: 1.56s;
}
.contact .contss .list_box .contactss > *:nth-child(13) {
  animation-delay: 1.69s;
}
.contact .contss .list_box .contactss > *:nth-child(14) {
  animation-delay: 1.82s;
}
.contact .contss .list_box .contactss > *:nth-child(15) {
  animation-delay: 1.95s;
}
.contact .contss .list_box .contactss > *:nth-child(16) {
  animation-delay: 2.08s;
}
.contact .contss .list_box .contactss > *:nth-child(17) {
  animation-delay: 2.21s;
}
.contact .contss .list_box .contactss > *:nth-child(18) {
  animation-delay: 2.34s;
}
.contact .contss .list_box .contactss > *:nth-child(19) {
  animation-delay: 2.47s;
}
.contact .contss .list_box .contactss > *:nth-child(20) {
  animation-delay: 2.6s;
}
.contact .contss .list_box .contactss > *:nth-child(21) {
  animation-delay: 2.73s;
}
.contact .contss .list_box .contactss > *:nth-child(22) {
  animation-delay: 2.86s;
}
.contact .contss .list_box .contactss > *:nth-child(23) {
  animation-delay: 2.99s;
}
.contact .contss .list_box .contactss > *:nth-child(24) {
  animation-delay: 3.12s;
}
.contact .contss .list_box .contactss > *:nth-child(25) {
  animation-delay: 3.25s;
}
.contact .contss .list_box .contactss > *:nth-child(26) {
  animation-delay: 3.38s;
}
.contact .contss .list_box .contactss > *:nth-child(27) {
  animation-delay: 3.51s;
}
.contact .contss .list_box .contactss > *:nth-child(28) {
  animation-delay: 3.64s;
}
.contact .contss .list_box .contactss > *:nth-child(29) {
  animation-delay: 3.77s;
}
.contact #map {
  width: 100%;
  height: 30vw;
}
/* 图片全屏 */
.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;
}
/* 手机 */
@media (max-width: 450px) {
  :root {
    --headerHeight: 60px;
    --container: 92vw;
  }
  body {
    font-size: 15px;
  }
  .moblie {
    display: block;
  }
  .fs-48 {
    font-size: 30px;
  }
  .fs-36 {
    font-size: 22px;
  }
  .fs-30 {
    font-size: 20px;
  }
  .fs-27 {
    font-size: 19px;
  }
  
  .fs-26{
    font-size: 18px;
  }
  
  .fs-24 {
    font-size: 18px;
  }
  .fs-22 {
    font-size: 17px;
  }
  .fs-20 {
    font-size: 16px;
  }
  .fs-18 {
    font-size: 14px;
  }
  .fs-16 {
    font-size: 13px;
  }
  .fs-14 {
    font-size: 13px;
  }
  .fs-12 {
    font-size: 12px;
  }
  .header .container .logo {
    width: auto;
    height: calc(var(--headerHeight) * 0.6);
  }
  .header .container .logo img {
    width: auto;
    height: 100%;
    display: block;
  }
  .header .container > ul {
    position: fixed;
    top: var(--headerHeight);
    left: 100vw;
    background-color: var(--themeColor);
    display: block;
    margin-left: 0;
    width: 100vw;
    height: calc(100vh - var(--headerHeight));
    transition: left 0.3s;
  }
  .header .container > ul li {
    border-bottom: 1px solid #eeeeee55;
  }
  .header .container > ul li a {
    display: block;
    color: white;
  }
  .header .container > ul li.active a {
    color: white;
  }
  .header .container > ul.active {
    left: 0;
  }
  .header .container .lang {
    order: -1;
  }
  .header .container .lang .ba::after {
    font-size: 12px;
    transform: scale(0.4);
    transform-origin: left;
  }
  .header .container .lang .ba::before {
    font-size: 15px;
  }
  .header .container .lang .ul a {
    line-height: 2;
  }
  .home .block_title {
    background: none;
  }
  .home .block_title span {
    display: none;
  }
  .home .product .list a .text h4::before {
    height: 10px;
  }
  .home .product .list {
    grid-template-columns: 1fr;
  }
  .home .product .list a .text .icon {
    display: none;
  }
  .home .product .list {
    margin: 10px 0;
  }
  .home .bs {
    text-align: center;
  }
  .home .bs h2 {
    white-space: nowrap;
  }
  .home .bs img {
    height: 40vh;
    object-fit: cover;
  }
  .home .about .container {
    display: block;
  }
  .home .about .container .left {
    margin-right: 0;
  }
  .home .about .container .right {
    width: 100%;
  }
  .home .about .container .left a {
    line-height: 2.5;
  }
  .home .history .swiper .swiper-wrapper .swiper-slide h3:last-of-type::after {
    display: none;
  }
  .home .about .container .left ul {
    margin: 15px 0;
  }
  .home .history .swiper .swiper-wrapper .swiper-slide img {
    height: auto;
  }
  .home .history .swiper .swiper-wrapper .swiper-slide::before {
    margin: -2px;
  }
  .home .history .swiper .swiper-wrapper .swiper-slide::after {
    margin: -1px;
  }
  .home .kh .swiper-wrapper .swiper-slide {
    height: auto;
  }
  .footer .top .tt .right {
    display: none;
  }
  .footer .top .tt .left h3 {
    display: none;
  }
  .footer .top .tt .left .ms .item .first::after,
  .footer .top .tt .left .ms .item .first::before {
    display: none;
  }
  .footer .top .tt .left .ms .item .first span {
    display: none;
  }
  .footer .top .tt .left .ms .item {
    display: block;
  }
  .footer .top .tt .left .ms .item .list {
    display: flex;
    flex-direction: column;
  }
  .footer .top .tt .left .ms .item .list a {
    margin-top: 10px;
  }
  .footer .top .tt .left .ms .item .list a + a {
    margin-left: 0;
  }
  .footer .top .tt .left .ms {
    width: 100%;
    justify-content: space-between;
  }
  .footer .top .tt .left {
    width: 100%;
  }
  .footer .top .tbo a {
    font-size: 15px;
  }
  .footer .top .tbo {
    display: block;
  }
  .footer .top .tbo a::before {
    width: 40px;
    height: 40px;
  }
  .footer .top .tbo a::before {
    font-size: 20px;
  }
  .footer .top .tbo a + a {
    margin-top: 10px;
  }
  .footer .bottom .container img {
    display: none;
  }
  .footer .bottom .container {
    padding: 10px 0;
    text-align: center;
  }
  .home .banner .text h2 {
    font-size: 14px;
  }
  .page_banner img {
    height: 80vw;
    object-fit: cover;
  }
  .page_banner .links {
    line-height: 3;
  }
  .about .tiss::after,
  .about .tiss::before {
    width: 10px;
    height: 10px;
    margin-right: 15px;
  }
  .about .tiss::after {
    left: 5px;
  }
  .about #js .container {
    display: block;
  }
  .about #js .container .left {
    margin-right: 0;
  }
  .about #js .container .right {
    width: 100%;
  }
  .about #js .container .left ul {
    margin-bottom: 20px;
  }
  .about #lc .left .yuan,
  .about #lc .left .ming {
    display: none;
  }
  .about #lc {
    display: block;
  }
  .about #lc .left .tiss {
    white-space: nowrap;
  }
  .about #lc .right {
    width: 100%;
  }
  .about #lc .right .swiper_box {
    height: 50vh;
    flex: auto;
  }
  .about #lc .right::after,
  .about #lc .right::before {
    display: none;
  }
  .about .tiss::before {
    flex-shrink: 0;
  }
  .about #lc {
    position: relative;
  }
  .about #lc .left {
    position: absolute;
    left: 0;
    top: 0;
  }
  .about #lc .right .swiper_box .swiper .swiper-slide::before {
    width: 5px;
    height: 5px;
    left: 1px;
  }
  .about #lc .right .swiper_box .swiper .swiper-slide .box i {
    line-height: 1.6;
  }
  .about #lc .right .swiper_box .swiper .swiper-slide::after {
    height: 15vh;
  }
  .about #lc .right .swiper_box .swiper .swiper-slide::before {
    top: 15vh;
  }
  .about #lc .right .swiper_box .swiper .swiper-slide:nth-child(even)::before {
    bottom: 15vh;
  }
  .about #lc .right .swiper_box .swiper .swiper-slide:nth-child(even) .box {
    top: -20vh;
  }
  .about #lc .right .swiper_box .swiper .swiper-slide .box {
    bottom: -20vh;
    left: 20px;
  }
  .about #lc .left {
    padding-top: 10px;
  }
  .btns .iconfont {
    width: 30px;
    height: 30px;
    font-size: 8px;
  }
  .about #lc .right .btns {
    transform: translateY(25%);
  }
  .about #wh .container > p {
    font-size: 14px;
  }
  .about #wh .container ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .about #wh .container ul > li ol li {
    line-height: 2.4;
  }
  .about #wh .container ul > li h4::after,
  .about #wh .container ul > li h4::before {
    width: 10px;
    height: 10px;
    top: 100%;
  }
  .about #wh .container ul > li h4::after {
    margin-left: 3px;
  }
  .about #wh .container ul > li img {
    height: 30px;
  }
  .about #wh .container ul > li::after {
    font-size: 25px;
  }
  .about #wh .container ul > li {
    border-radius: 5px;
  }
  .about #wh .container ul > li + li {
    margin-left: 0;
  }
  .about #wh .container ul > li h4 {
    margin: 15px 0 25px;
  }
  .about #wh .container ul > li {
    padding-bottom: 35px;
  }
  .about #sb .left p {
    font-size: 14px;
  }
  .about #zz .container {
    display: block;
  }
  .about #zz .container .right {
    margin-left: 0;
    display: block;
  }
  .about #zz .container .right img {
    width: 100%;
  }
  .about #sb .swiper .swiper-slide .text {
    opacity: 1;
    transform: none;
    background: none;
  }
  .about .kh .swiper-wrapper .swiper-slide {
    height: auto;
  }
  .product .contss {
    display: block;
  }
  .product .contss .right,
  .product .contss .left {
    width: 100%;
    position: static;
  }
  .product .contss .left .item {
    line-height: 3;
  }
  .product .contss .left .download {
    line-height: 3;
  }
  .product .contss .left .download::after {
    font-size: 20px;
  }
  .product .contss .right {
    margin-top: 20px;
  }
  .product .contss .right ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .product .contss .right ul a,
  .product .contss .right ul li {
    padding: 10px;
  }
  .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;
  }
  .download .contss .left .item .lefts .iconfont {
    display: none;
  }
  .download .contss .left .item {
    display: block;
  }
  .download .contss .left .item .lefts .tt p {
    width: var(--container);
  }
  .download .contss .left .item a::before {
    font-size: 18px;
  }
  .download .contss .left {
    width: 100%;
    flex: auto;
  }
  .download .contss .left .item {
    width: 100%;
  }
  .news .contss {
    grid-template-columns: repeat(2, 1fr);
  }
  .news .contss a .text .more::after {
    font-size: 8px;
  }
  .news .contss a .img .da {
    width: 50px;
    height: 50px;
  }
  .newsinfo .contss {
    display: block;
  }
  .newsinfo .contss .left {
    margin-right: 0;
  }
  .page_news_right {
    width: 100%;
    margin-top: 20px;
    position: static;
  }
  .newsinfo .contss .left {
    position: static;
  }
  .page_news_right .search_box input,
  .page_news_right .search_box {
    line-height: 3;
  }
  .newsinfo .contss .left .btms .next::after,
  .newsinfo .contss .left .btms .perv::before {
    font-size: 18px;
  }
  .newsinfo .contss .left .btms .next::after,
  .newsinfo .contss .left .btms .perv::before {
    width: 25px;
    height: 25px;
  }
  .newsinfo .contss .left .btms {
    padding: 10px 0;
  }
  .page_news_right .list_box .list a .right span::before {
    margin-right: 5px;
  }
  .page_news_right .search_box .iconfont {
    width: 30px;
    line-height: 30px;
  }
  .page_news_right .search_box .iconfont {
    font-size: 10px;
  }
  .page_news_right .search_box {
    padding: 0 10px;
  }
  .join .contss {
    display: block;
  }
  .join .contss .left {
    margin-right: 0;
    position: static;
  }
  .join .contss .left .item .tiss::after,
  .join .contss .left .item .tiss::before {
    width: 10px;
    height: 10px;
    flex-shrink: 0;
    margin-right: 10px;
  }
  .join .contss .left .item .tiss::after {
    left: 5px;
  }
  .join .contss .left .item .bns::after {
    font-size: 10px;
  }
  .contact #map {
    height: 100vw;
  }
  .contact .contss {
    display: block;
  }
  .contact .contss .left {
    margin-right: 0;
    position: static;
  }
  .contact .contss .left .btn {
    line-height: 2;
  }
  .contact .contss .list_box .contactss .item .iconfont {
    width: 40px;
    height: 40px;
    font-size: 20px;
    margin-right: 10px;
  }
  
  .home .history .swiper .swiper-wrapper .swiper-slide{
      border-left: none;
  }
  
  .home .history .swiper .swiper-wrapper .swiper-slide img{
      width: 90%;
  }
  
  .home .history .swiper .swiper-wrapper .swiper-slide::before,
  .home .history .swiper .swiper-wrapper .swiper-slide::after{
      display: none;
  }
  
  .contact .contss .list_box .contactss .item {
    padding: 10px;
  }
  
  .about #wh .main{
      display: block;
  }
  
  .about #wh .main img{
      width: 100%;
  }
  
  .about #wh .main ul{
      margin-left: var(--cm);
  }
  
  .about #sb .swiper{
      grid-template-columns: 1fr 1fr;
  }
  
  .home .history .swiper .swiper-wrapper .swiper-slide h3{
      font-size: 20px;
  }
  
  .home .history .swiper .swiper-wrapper .swiper-slide h3:last-of-type{
      font-size: 16px;
      line-height: 2;
  }
}
