@import url(iconfont/iconfont.css);
@font-face {
  font-family: "Regular";
  src: url(SourceHanSansCN-Regular.otf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
body {
  -webkit-font-smoothing: antialiased;
  font: 16px/1.5 Regular;
  color: #333;
}
#page {
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
}
em,
i {
  font-style: normal;
}
li {
  list-style: none;
}
object,
img {
  border: 0;
  vertical-align: middle;
}
a {
  text-decoration: none;
  cursor: pointer;
  color: #333;
}
/* 表单元素 */
textarea,
select,
button,
input {
  /* "\5B8B\4F53" => 宋体 */
  font-family: Microsoft YaHei, Heiti SC, tahoma, arial, Hiragino Sans GB, "\5B8B\4F53", sans-serif;
  border: none;
  background: none;
  resize: none;
  outline: none;
  /* 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:focus,
select:focus,
button:focus,
input:focus {
  outline: none !important;
}
/* 单行文本 */
.dh_text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* 2行文本 */
.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;
}
/* 3行文本 */
.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;
}
/* 4行文本 */
.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;
}
/* 5行文本 */
.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;
}
/* 版芯 */
.container {
  width: var(--container);
  margin: 0 auto;
}
/* 富文本 */
.rich img,
.rich video {
  max-width: 100% !important;
}
.rich * {
  white-space: wrap !important;
  text-wrap: wrap !important;
}
/* 手机 */
.moblie_par,
.moblie {
  display: none;
}
/* 圆角按钮 */
.btn {
  width: max-content;
  font-size: 18px;
  padding: 11px 34px;
  border-radius: 46px 46px 46px 46px;
  border: 1px solid #ffffff;
  color: #ffffff;
  margin-bottom: 160px;
  position: relative;
  z-index: 22;
}
.btn::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #FFFFFF33;
  position: absolute;
  top: 2px;
  left: 2px;
  border-radius: 46px 46px 46px 46px;
  transition: all 0.3s;
}
.btn:hover::after {
  top: 0;
  left: 0;
}
.btn.theme {
  border-color: var(--themeColor);
}
.btn.theme::after {
  background-image: var(--themeLinearGradient);
  z-index: -1;
}
/* 分页器 */
.pages {
  width: max-content;
  margin: var(--glup) auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  line-height: 40px;
  cursor: pointer;
}
.pages .iconfont {
  width: 40px;
  display: flex;
  justify-content: center;
  border-radius: 5px;
  border: 1px solid #F1F1F1;
  color: var(--themeColor);
  margin: 0 6px;
}
.pages .iconfont:hover {
  background: var(--themeLinearGradient);
  color: #fff;
}
.pages .iconfont::before {
  font-size: 18px;
}
.pages .nums {
  display: flex;
  margin: 0 20px;
}
.pages .nums a {
  width: 40px;
  text-align: center;
  border-radius: 5px;
  border: 1px solid #F1F1F1;
  color: #999999;
}
.pages .nums a + a {
  margin-left: 12px;
}
.pages .nums a:hover,
.pages .nums a.active {
  background: var(--themeLinearGradient);
  color: #fff;
}
:root {
  --container: 1600px;
  --check_container: 1800px;
  --container_margin: calc((100vw - var(--container)) / 2);
  --themeColor: #009ED5;
  --themeColor2: #C4E3FF;
  --themeColor3: rgba(196, 227, 255, 0.14);
  --themeColor4: #315D84;
  --themeLinearGradient: linear-gradient(to right, #009ED5, #C4E3FF);
  --themeLinearGradient2: linear-gradient(to bottom, #009ED5, #C4E3FF);
  --themeLinearGradient3: linear-gradient(to right, var(--themeColor2), var(--themeColor3));
  --glup: 100px;
  --top_height: 110px;
  --top_nav_height: 78px;
}
circle {
  transition: all 0.3s;
}
/* 顶部 */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 987654321;
  background-color: transparent;
  transition: background-color 0.5s, top 0.5s;
  /* 变单行变白 */
  /* 移动到上面隐藏 */
}
header .nav_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: var(--container);
  line-height: var(--top_height);
  margin: 0 auto;
  transition: all 0.5s;
}
header .nav_container .logo {
  width: 223px;
  position: relative;
}
header .nav_container .logo img {
  transition: opacity 0.5s;
  width: 100%;
}
header .nav_container .logo img:not(:first-child) {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
}
header .nav_container .canter {
  padding: 0;
  width: 70%;
  display: flex;
  transform: translateY(-100%);
  transition: transform 0.45s;
}
header .nav_container .canter li {
  flex: 1;
  text-align: center;
  position: relative;
  /* 子级菜单 */
}
header .nav_container .canter li > a {
  display: block;
  width: max-content;
  margin: 0 auto;
  color: #333;
  font-size: 16px;
  position: relative;
}
header .nav_container .canter li > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 3px;
  background: var(--themeColor);
  transition: all 0.5s;
}
header .nav_container .canter li:not(:first-child)::after {
  content: "";
  width: 1px;
  height: 1em;
  background-color: #66666690;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
header .nav_container .canter li.active > a,
header .nav_container .canter li > a:hover {
  color: var(--themeColor) !important;
}
header .nav_container .canter li.active > a::after,
header .nav_container .canter li > a:hover::after {
  left: 0;
  width: 100%;
}
header .nav_container .canter li.menu .childs {
  display: none;
  width: 100vw;
  background-color: #ffffff;
  position: fixed;
  left: 0;
  top: var(--top_height);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
header .nav_container .canter li.menu .default {
  padding: 0 0 calc(var(--glup) * 0.4);
}
header .nav_container .canter li.menu .default .container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: calc(var(--glup) * 0.27);
}
header .nav_container .canter li.menu .default .container a {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: calc(var(--glup) * 0.5);
}
header .nav_container .canter li.menu .default .container a img {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
header .nav_container .canter li.menu .default .container a span {
  margin-top: 15px;
  font-size: 18px;
  line-height: 1;
}
header .nav_container .canter li.menu .default .container a:nth-child(0) {
  animation-delay: calc(0 * 0.1s + 0.2s);
}
header .nav_container .canter li.menu .default .container a:nth-child(1) {
  animation-delay: calc(1 * 0.1s + 0.2s);
}
header .nav_container .canter li.menu .default .container a:nth-child(2) {
  animation-delay: calc(2 * 0.1s + 0.2s);
}
header .nav_container .canter li.menu .default .container a:nth-child(3) {
  animation-delay: calc(3 * 0.1s + 0.2s);
}
header .nav_container .canter li.menu .default .container a:nth-child(4) {
  animation-delay: calc(4 * 0.1s + 0.2s);
}
header .nav_container .canter li.menu .default .container a:nth-child(5) {
  animation-delay: calc(5 * 0.1s + 0.2s);
}
header .nav_container .canter li.menu .products .boxss {
  display: flex;
}
header .nav_container .canter li.menu .products .boxss .left {
  width: calc(var(--glup) * 4.8);
  background-color: #F6F6F6;
  padding: calc(var(--glup) * 0.37) 0 0 calc(var(--glup) * 2.3);
}
header .nav_container .canter li.menu .products .boxss .left .cate_item {
  display: block;
  line-height: calc(var(--glup) * 0.8);
  padding: 0 calc(var(--glup) * 1.17) 0 calc(var(--glup) * 0.63);
  position: relative;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.5s;
}
header .nav_container .canter li.menu .products .boxss .left .cate_item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 0;
  background-image: var(--themeLinearGradient2);
  transition: all 0.5s;
}
header .nav_container .canter li.menu .products .boxss .left .cate_item.active {
  background-color: #ffffff;
}
header .nav_container .canter li.menu .products .boxss .left .cate_item.active::after {
  height: 100%;
}
header .nav_container .canter li.menu .products .boxss .right {
  flex: 1;
  height: calc(var(--glup) * 6);
  margin: calc(var(--glup) * 0.2) calc(var(--glup) * 2.3) calc(var(--glup) * 0.2) 0;
  padding: calc(var(--glup) * 0.7) calc(var(--glup) * 0.6) calc(var(--glup) * 0.52) calc(var(--glup) * 1.2);
  overflow: auto;
}
header .nav_container .canter li.menu .products .boxss .right .product_list {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: calc(var(--glup) * 0.7) calc(var(--glup) * 1.5);
}
header .nav_container .canter li.menu .products .boxss .right .product_list a {
  display: flex;
  flex-direction: column;
  align-items: center;
}
header .nav_container .canter li.menu .products .boxss .right .product_list a img {
  width: 100%;
  height: calc(var(--glup) * 1.8);
  object-fit: contain;
}
header .nav_container .canter li.menu .products .boxss .right .product_list a span {
  line-height: 1.5;
}
header .nav_container .canter li.menu .products .boxss .right .product_list a:nth-child(0) {
  animation-delay: calc(0 * 0.1s + 0.2s);
}
header .nav_container .canter li.menu .products .boxss .right .product_list a:nth-child(1) {
  animation-delay: calc(1 * 0.1s + 0.2s);
}
header .nav_container .canter li.menu .products .boxss .right .product_list a:nth-child(2) {
  animation-delay: calc(2 * 0.1s + 0.2s);
}
header .nav_container .canter li.menu .products .boxss .right .product_list a:nth-child(3) {
  animation-delay: calc(3 * 0.1s + 0.2s);
}
header .nav_container .canter li.menu .products .boxss .right .product_list a:nth-child(4) {
  animation-delay: calc(4 * 0.1s + 0.2s);
}
header .nav_container .canter li.menu .products .boxss .right .product_list a:nth-child(5) {
  animation-delay: calc(5 * 0.1s + 0.2s);
}
header .nav_container .canter li.menu .products .boxss .right .product_list a:nth-child(6) {
  animation-delay: calc(6 * 0.1s + 0.2s);
}
header .nav_container .canter li.menu .products .boxss .right .product_list a:nth-child(7) {
  animation-delay: calc(7 * 0.1s + 0.2s);
}
header .nav_container .canter li.menu .products .boxss .right .product_list a:nth-child(8) {
  animation-delay: calc(8 * 0.1s + 0.2s);
}
header .nav_container .canter li.menu .products .boxss .right .product_list a:nth-child(9) {
  animation-delay: calc(9 * 0.1s + 0.2s);
}
header .nav_container .canter li.menu .products .boxss .right .product_list a:nth-child(10) {
  animation-delay: calc(10 * 0.1s + 0.2s);
}
header .nav_container .canter li.menu .products .boxss .right .product_list a:nth-child(11) {
  animation-delay: calc(11 * 0.1s + 0.2s);
}
header .nav_container .canter li.menu .products .boxss .right .product_list a:nth-child(12) {
  animation-delay: calc(12 * 0.1s + 0.2s);
}
header .nav_container .canter li.menu .products .boxss .right .product_list a:nth-child(13) {
  animation-delay: calc(13 * 0.1s + 0.2s);
}
header .nav_container .canter li.menu .products .boxss .right .product_list a:nth-child(14) {
  animation-delay: calc(14 * 0.1s + 0.2s);
}
header .nav_container .canter li.menu .products .boxss .right .product_list a:nth-child(15) {
  animation-delay: calc(15 * 0.1s + 0.2s);
}
header .nav_container .canter li.menu .products .boxss .right .product_list a:nth-child(16) {
  animation-delay: calc(16 * 0.1s + 0.2s);
}
header .nav_container .canter li.menu .products .boxss .right .product_list a:nth-child(17) {
  animation-delay: calc(17 * 0.1s + 0.2s);
}
header .nav_container .canter li.menu .products .boxss .right .product_list a:nth-child(18) {
  animation-delay: calc(18 * 0.1s + 0.2s);
}
header .nav_container .canter li.menu .products .boxss .right .product_list a:nth-child(19) {
  animation-delay: calc(19 * 0.1s + 0.2s);
}
header .nav_container .canter li.menu .products .boxss .right .product_list a:nth-child(20) {
  animation-delay: calc(20 * 0.1s + 0.2s);
}
header .nav_container .canter li.menu .products .boxss .right .product_list a:nth-child(21) {
  animation-delay: calc(21 * 0.1s + 0.2s);
}
header .nav_container .canter li.menu .products .boxss .right .product_list a:nth-child(22) {
  animation-delay: calc(22 * 0.1s + 0.2s);
}
header .nav_container .canter li.menu .products .boxss .right .product_list a:nth-child(23) {
  animation-delay: calc(23 * 0.1s + 0.2s);
}
header .nav_container .canter li.menu .products .boxss .right .product_list a:nth-child(24) {
  animation-delay: calc(24 * 0.1s + 0.2s);
}
header .nav_container .canter li.menu .products .boxss .right .product_list a:nth-child(25) {
  animation-delay: calc(25 * 0.1s + 0.2s);
}
header .nav_container .canter li.menu .products .boxss .right .product_list a:nth-child(26) {
  animation-delay: calc(26 * 0.1s + 0.2s);
}
header .nav_container .canter li.menu .products .boxss .right .product_list a:nth-child(27) {
  animation-delay: calc(27 * 0.1s + 0.2s);
}
header .nav_container .canter li.menu .products .boxss .right .product_list a:nth-child(28) {
  animation-delay: calc(28 * 0.1s + 0.2s);
}
header .nav_container .canter li.menu .products .boxss .right .product_list a:nth-child(29) {
  animation-delay: calc(29 * 0.1s + 0.2s);
}
header .nav_container .canter li.menu .products .boxss .right .product_list.active {
  display: grid;
}
header .nav_container .canter li.menu .products .boxss .right::-webkit-scrollbar {
  width: 2px;
}
header .nav_container .canter li.menu .products .boxss .right::-webkit-scrollbar-thumb {
  background: var(--themeLinearGradient2);
  border-radius: 5px;
}
header .nav_container .canter li.menu .pdf .container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: calc(var(--glup) * 0.3);
  padding: calc(var(--glup) * 0.3) var(--glup);
}
header .nav_container .canter li.menu .pdf .container .item a {
  display: block;
  line-height: 2;
  text-align: left;
}
header .nav_container .canter li.menu .pdf .container .item a:first-child {
  color: var(--themeColor);
  font-size: 24px;
  font-weight: 800;
}
header .nav_container > .right {
  --r: 58px;
  --h: 50px;
  display: flex;
  line-height: var(--h);
}
header .nav_container > .right .search_to {
  --c: var(--themeColor2);
  width: var(--h);
  color: var(--c);
  position: relative;
}
header .nav_container > .right .search_to .iconfont {
  cursor: pointer;
}
header .nav_container > .right .search_to .input {
  position: absolute;
  right: 0;
  z-index: 2;
  border: 1px solid var(--c);
  padding: 0 30px;
  border-radius: var(--r);
  display: flex;
}
header .nav_container > .right .search_to .input input {
  color: var(--c);
}
header .nav_container > .right .search_to .input input::placeholder {
  color: var(--c);
}
header .nav_container > .right .search_to .kg {
  display: none;
}
header .nav_container > .right .search_to.check .input {
  display: flex;
}
header .nav_container > .right .search_to.check .kg {
  display: none;
}
header .nav_container > .right a {
  background: var(--themeColor2);
  border-radius: var(--r);
  color: #315D84;
  min-width: var(--h);
  padding: 0 8px;
  text-align: center;
  white-space: nowrap;
}
header .nav_container > .right * + * {
  margin-left: 20px;
}
header > .nav {
  width: 100%;
  padding: 0 var(--container_margin);
  display: flex;
  position: absolute;
  top: var(--top_height);
  left: 50%;
  transform: translateX(-50%);
  background-color: #cccccc11;
  backdrop-filter: blur(30px);
  transition: top 0.45s, opacity 0.45s;
}
header > .nav li {
  flex: 1;
  text-align: center;
  position: relative;
  /* 子级菜单 */
}
header > .nav li > a {
  display: block;
  width: max-content;
  margin: 0 auto;
  line-height: var(--top_nav_height);
  color: #ffffff;
  font-size: 16px;
  position: relative;
  transition: all 0.5s;
}
header > .nav li > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 3px;
  background: var(--themeColor);
  transition: all 0.5s;
}
header > .nav li::after,
header > .nav li:last-child::before {
  content: "";
  width: 1px;
  height: 1em;
  background-color: #ffffff90;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
header > .nav li::after {
  left: 0;
}
header > .nav li:last-child::before {
  right: 0;
}
header > .nav li.active > a,
header > .nav li > a:hover {
  color: var(--themeColor) !important;
}
header > .nav li.active > a::after,
header > .nav li > a:hover::after {
  left: 0;
  width: 100%;
}
header > .nav li.menu .childs {
  display: none;
  width: 100vw;
  background-color: #ffffff;
  position: fixed;
  left: 0;
  top: var(--top_nav_height);
}
header > .nav li.menu .default {
  padding: 0 0 calc(var(--glup) * 0.4);
}
header > .nav li.menu .default .container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 27px;
}
header > .nav li.menu .default .container a {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
}
header > .nav li.menu .default .container a img {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
header > .nav li.menu .default .container a span {
  margin-top: 15px;
  font-size: 18px;
}
header > .nav li.menu .default .container a:nth-child(0) {
  animation-delay: calc(0 * 0.1s + 0.2s);
}
header > .nav li.menu .default .container a:nth-child(1) {
  animation-delay: calc(1 * 0.1s + 0.2s);
}
header > .nav li.menu .default .container a:nth-child(2) {
  animation-delay: calc(2 * 0.1s + 0.2s);
}
header > .nav li.menu .default .container a:nth-child(3) {
  animation-delay: calc(3 * 0.1s + 0.2s);
}
header > .nav li.menu .default .container a:nth-child(4) {
  animation-delay: calc(4 * 0.1s + 0.2s);
}
header > .nav li.menu .default .container a:nth-child(5) {
  animation-delay: calc(5 * 0.1s + 0.2s);
}
header > .nav li.menu .products .boxss {
  display: flex;
}
header > .nav li.menu .products .boxss .left {
  width: calc(var(--glup) * 4.8);
  background-color: #F6F6F6;
  padding: calc(var(--glup) * 0.37) 0 0 calc(var(--glup) * 2.3);
}
header > .nav li.menu .products .boxss .left .cate_item {
  display: block;
  line-height: calc(var(--glup) * 0.8);
  padding: 0 calc(var(--glup) * 1.17) 0 calc(var(--glup) * 0.63);
  position: relative;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.5s;
}
header > .nav li.menu .products .boxss .left .cate_item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 0;
  background-image: var(--themeLinearGradient2);
  transition: all 0.5s;
}
header > .nav li.menu .products .boxss .left .cate_item.active {
  background-color: #ffffff;
}
header > .nav li.menu .products .boxss .left .cate_item.active::after {
  height: 100%;
}
header > .nav li.menu .products .boxss .right {
  flex: 1;
  height: calc(var(--glup) * 6);
  margin: calc(var(--glup) * 0.2) calc(var(--glup) * 2.3) calc(var(--glup) * 0.2) 0;
  padding: calc(var(--glup) * 0.7) calc(var(--glup) * 0.6) calc(var(--glup) * 0.52) calc(var(--glup) * 1.2);
  overflow: auto;
}
header > .nav li.menu .products .boxss .right .product_list {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: calc(var(--glup) * 0.7) calc(var(--glup) * 1.5);
}
header > .nav li.menu .products .boxss .right .product_list a {
  display: flex;
  flex-direction: column;
  align-items: center;
}
header > .nav li.menu .products .boxss .right .product_list a img {
  width: 100%;
  height: calc(var(--glup) * 1.8);
  object-fit: contain;
}
header > .nav li.menu .products .boxss .right .product_list a span {
  line-height: 1.5;
}
header > .nav li.menu .products .boxss .right .product_list a:nth-child(0) {
  animation-delay: calc(0 * 0.1s + 0.2s);
}
header > .nav li.menu .products .boxss .right .product_list a:nth-child(1) {
  animation-delay: calc(1 * 0.1s + 0.2s);
}
header > .nav li.menu .products .boxss .right .product_list a:nth-child(2) {
  animation-delay: calc(2 * 0.1s + 0.2s);
}
header > .nav li.menu .products .boxss .right .product_list a:nth-child(3) {
  animation-delay: calc(3 * 0.1s + 0.2s);
}
header > .nav li.menu .products .boxss .right .product_list a:nth-child(4) {
  animation-delay: calc(4 * 0.1s + 0.2s);
}
header > .nav li.menu .products .boxss .right .product_list a:nth-child(5) {
  animation-delay: calc(5 * 0.1s + 0.2s);
}
header > .nav li.menu .products .boxss .right .product_list a:nth-child(6) {
  animation-delay: calc(6 * 0.1s + 0.2s);
}
header > .nav li.menu .products .boxss .right .product_list a:nth-child(7) {
  animation-delay: calc(7 * 0.1s + 0.2s);
}
header > .nav li.menu .products .boxss .right .product_list a:nth-child(8) {
  animation-delay: calc(8 * 0.1s + 0.2s);
}
header > .nav li.menu .products .boxss .right .product_list a:nth-child(9) {
  animation-delay: calc(9 * 0.1s + 0.2s);
}
header > .nav li.menu .products .boxss .right .product_list a:nth-child(10) {
  animation-delay: calc(10 * 0.1s + 0.2s);
}
header > .nav li.menu .products .boxss .right .product_list a:nth-child(11) {
  animation-delay: calc(11 * 0.1s + 0.2s);
}
header > .nav li.menu .products .boxss .right .product_list a:nth-child(12) {
  animation-delay: calc(12 * 0.1s + 0.2s);
}
header > .nav li.menu .products .boxss .right .product_list a:nth-child(13) {
  animation-delay: calc(13 * 0.1s + 0.2s);
}
header > .nav li.menu .products .boxss .right .product_list a:nth-child(14) {
  animation-delay: calc(14 * 0.1s + 0.2s);
}
header > .nav li.menu .products .boxss .right .product_list a:nth-child(15) {
  animation-delay: calc(15 * 0.1s + 0.2s);
}
header > .nav li.menu .products .boxss .right .product_list a:nth-child(16) {
  animation-delay: calc(16 * 0.1s + 0.2s);
}
header > .nav li.menu .products .boxss .right .product_list a:nth-child(17) {
  animation-delay: calc(17 * 0.1s + 0.2s);
}
header > .nav li.menu .products .boxss .right .product_list a:nth-child(18) {
  animation-delay: calc(18 * 0.1s + 0.2s);
}
header > .nav li.menu .products .boxss .right .product_list a:nth-child(19) {
  animation-delay: calc(19 * 0.1s + 0.2s);
}
header > .nav li.menu .products .boxss .right .product_list a:nth-child(20) {
  animation-delay: calc(20 * 0.1s + 0.2s);
}
header > .nav li.menu .products .boxss .right .product_list a:nth-child(21) {
  animation-delay: calc(21 * 0.1s + 0.2s);
}
header > .nav li.menu .products .boxss .right .product_list a:nth-child(22) {
  animation-delay: calc(22 * 0.1s + 0.2s);
}
header > .nav li.menu .products .boxss .right .product_list a:nth-child(23) {
  animation-delay: calc(23 * 0.1s + 0.2s);
}
header > .nav li.menu .products .boxss .right .product_list a:nth-child(24) {
  animation-delay: calc(24 * 0.1s + 0.2s);
}
header > .nav li.menu .products .boxss .right .product_list a:nth-child(25) {
  animation-delay: calc(25 * 0.1s + 0.2s);
}
header > .nav li.menu .products .boxss .right .product_list a:nth-child(26) {
  animation-delay: calc(26 * 0.1s + 0.2s);
}
header > .nav li.menu .products .boxss .right .product_list a:nth-child(27) {
  animation-delay: calc(27 * 0.1s + 0.2s);
}
header > .nav li.menu .products .boxss .right .product_list a:nth-child(28) {
  animation-delay: calc(28 * 0.1s + 0.2s);
}
header > .nav li.menu .products .boxss .right .product_list a:nth-child(29) {
  animation-delay: calc(29 * 0.1s + 0.2s);
}
header > .nav li.menu .products .boxss .right .product_list.active {
  display: grid;
}
header > .nav li.menu .products .boxss .right::-webkit-scrollbar {
  width: 2px;
}
header > .nav li.menu .products .boxss .right::-webkit-scrollbar-thumb {
  background: var(--themeLinearGradient2);
  border-radius: 5px;
}
header > .nav li.menu .pdf .container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: calc(var(--glup) * 0.3);
  padding: calc(var(--glup) * 0.3) var(--glup);
}
header > .nav li.menu .pdf .container .item a {
  display: block;
  line-height: 2;
  text-align: left;
}
header > .nav li.menu .pdf .container .item a:first-child {
  color: var(--themeColor);
  font-size: 24px;
  font-weight: 800;
}
header.product_des_check,
header.check {
  --top_height: 100px;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
header.product_des_check .nav_container,
header.check .nav_container {
  width: var(--check_container);
}
header.product_des_check .nav_container .logo img,
header.check .nav_container .logo img {
  opacity: 0;
}
header.product_des_check .nav_container .logo img:not(:first-child),
header.check .nav_container .logo img:not(:first-child) {
  opacity: 1;
}
header.product_des_check .nav_container .canter,
header.check .nav_container .canter {
  transform: none;
}
header.product_des_check .nav_container .right .search_to,
header.check .nav_container .right .search_to {
  --c: #33333390;
}
header.product_des_check .nav_container .right .search_to .input,
header.check .nav_container .right .search_to .input {
  display: none;
  background-color: #ffffff;
}
header.product_des_check .nav_container .right .search_to .kg,
header.check .nav_container .right .search_to .kg {
  display: block;
}
header.product_des_check .nav_container .right .search_to.check .input,
header.check .nav_container .right .search_to.check .input {
  display: flex;
}
header.product_des_check .nav_container .right .search_to.check .kg,
header.check .nav_container .right .search_to.check .kg {
  display: none;
}
header.product_des_check > .nav,
header.check > .nav {
  top: calc(var(--top_height) + 100%);
  opacity: 0;
  display: none;
}
header.hides {
  top: calc(0px - (var(--top_height) + var(--top_nav_height)));
}
header.bai {
  background-color: #fff !important;
}
header.bai .logo img {
  opacity: 0;
}
header.bai .logo img:not(:first-child) {
  opacity: 1;
}
header.bai > .nav {
  background-color: #fff;
}
header.bai * {
  color: #333 !important;
}
/* 移动端顶部 */
.moblie_nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 987654321;
  background: #ffffff;
}
.moblie_nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: var(--top_height);
}
.moblie_nav .container .logo {
  width: 100px;
}
.moblie_nav .container .logo img {
  width: 100%;
}
.moblie_nav .container .canter {
  position: absolute;
  top: var(--top_height);
  left: 100%;
  width: 100vw;
  height: calc(100vh - var(--top_height));
  background-image: linear-gradient(135deg, var(--themeColor), var(--themeColor2));
  text-align: center;
  transition: left 0.5s;
}
.moblie_nav .container .canter li {
  border-bottom: 1px solid #ffffff;
  position: relative;
}
.moblie_nav .container .canter li a {
  color: #fff;
  font-weight: 600;
}
.moblie_nav .container .canter li .childs {
  display: none;
}
.moblie_nav .container .canter li .childs a {
  line-height: 2.7;
  display: block;
}
.moblie_nav .container .canter li.menu span {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 20px;
  top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.moblie_nav .container .canter li.menu span::before,
.moblie_nav .container .canter li.menu span::after {
  content: "";
  background-color: #ffffff;
  display: block;
}
.moblie_nav .container .canter li.menu span::after {
  width: 100%;
  height: 3px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.moblie_nav .container .canter li.menu span::before {
  width: 3px;
  height: 100%;
  transition: all 0.4s;
}
.moblie_nav .container .canter li.menu span.check::before {
  width: 100%;
  height: 3px;
}
.moblie_nav .container .canter.check {
  left: 0;
}
.moblie_nav .container .right {
  display: flex;
  align-items: center;
}
.moblie_nav .container .right .iconfont,
.moblie_nav .container .right a {
  background-image: var(--themeLinearGradient);
  border-radius: 50%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  font-size: 12px;
  margin-right: 5px;
}
.moblie_nav .container .right .moblie_nav_kg {
  width: 50px;
  height: 50px;
  transform: scale(0.7) translateX(50%);
}
.moblie_nav .container .right .moblie_nav_kg span,
.moblie_nav .container .right .moblie_nav_kg::after,
.moblie_nav .container .right .moblie_nav_kg::before {
  content: "";
  display: block;
  width: 70%;
  height: 3px;
  border-radius: 2px;
  background: #888;
  position: absolute;
  left: 0;
  transition: all 0.3s;
}
.moblie_nav .container .right .moblie_nav_kg::after {
  transform-origin: right center;
  top: 25%;
}
.moblie_nav .container .right .moblie_nav_kg::before {
  transform-origin: right center;
  top: 75%;
}
.moblie_nav .container .right .moblie_nav_kg span {
  top: 50%;
}
.moblie_nav .container .right .moblie_nav_kg.check span {
  opacity: 0;
}
.moblie_nav .container .right .moblie_nav_kg.check::after {
  transform: rotate(-46deg);
}
.moblie_nav .container .right .moblie_nav_kg.check::before {
  transform: rotate(46deg);
}
.moblie_nav .search_to {
  width: 100%;
  position: absolute;
  left: 0;
  top: var(--lih);
  line-height: 60px;
  background-color: #ffffff;
  padding: 0 var(--container_margin);
  display: none;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}
.moblie_nav .search_to .input {
  width: 100%;
  display: flex;
  align-items: center;
}
.moblie_nav .search_to .input input {
  flex: 1;
}
/* 底部 */
footer {
  background-color: #000;
}
footer .container .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: calc(var(--glup) * 0.38) 0;
  position: relative;
}
footer .container .top::after {
  content: "";
  width: 100%;
  height: 1px;
  opacity: 0.4;
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--themeLinearGradient);
}
footer .container .top .logo {
  width: 223px;
}
footer .container .top .logo img {
  width: 100%;
}
footer .container .top .r {
  display: flex;
}
footer .container .top .r .iconfont {
  color: #fff;
  position: relative;
  font-size: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #fff;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .container .top .r .iconfont + .iconfont {
  margin-left: 10px;
}
footer .container .top .r .iconfont .er_box {
  display: none;
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  padding: 10px;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}
footer .container .top .r .iconfont .er_box img {
  width: 100%;
}
footer .container .top .r .iconfont .er_box:before {
  content: "";
  width: 0px;
  height: 0px;
  border: 5px solid transparent;
  border-top-color: #fff;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
footer .container .top .r .iconfont:hover .er_box {
  display: block;
}
footer .container .bottom {
  padding: calc(var(--glup) * 0.6) 0 calc(var(--glup) * 1.2);
  display: flex;
  justify-content: space-between;
}
footer .container .bottom .left a {
  display: block;
  font-size: 18px;
  color: #FFFFFF99;
}
footer .container .bottom .left a span {
  color: #ffffff;
  font-weight: 900;
}
footer .container .bottom .left a + a {
  margin-top: calc(var(--glup) * 0.3);
}
footer .container .bottom .right {
  width: 60%;
  display: flex;
  justify-content: space-between;
}
footer .container .bottom .right li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
footer .container .bottom .right li a {
  color: #FFFFFF99;
  font-size: 18px;
  margin-top: calc(var(--glup) * 0.12);
}
footer .container .bottom .right li a:first-child {
  color: #fff;
  font-size: 20px;
  margin-top: 0;
}
footer .container .bottom .right li a:nth-child(2) {
  margin-top: calc(var(--glup) * 0.3);
}
footer .su {
  line-height: calc(var(--glup) * 0.75);
  text-align: center;
  background-color: #1b1b1b;
  position: relative;
}
footer .su p {
  font-size: 14px;
}
footer .su p,
footer .su p a {
  color: #FFFFFF80;
}
footer .su .toTop {
  position: absolute;
  right: var(--container_margin);
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-image: var(--themeLinearGradient);
  border: 4px solid #fff;
  font-size: 36px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
footer .su .toTop::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: var(--themeLinearGradient);
  border-radius: 50%;
}
footer .su .toTop:hover::after {
  animation: scales 1.3s infinite;
}
@keyframes scales {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}
footer a {
  position: relative;
  width: max-content;
}
footer a::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 1px;
  opacity: 0.5;
  background-image: var(--themeLinearGradient);
  transition: width 0.5s;
}
footer a:hover::after {
  width: 100%;
  left: 0;
}
/* 内页banner */
.page_banner {
  position: relative;
}
.page_banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page_banner .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page_banner .text h1 {
  font-size: 62px;
  line-height: 1;
}
.page_banner .text .en {
  font-size: 26px;
  margin: 16px auto 28px;
}
.page_banner .text span {
  font-size: 32px;
}
.page_banner .text > *:nth-child(0) {
  animation-delay: calc((0 - 1) * 0.1s);
}
.page_banner .text > *:nth-child(1) {
  animation-delay: calc((1 - 1) * 0.1s);
}
.page_banner .text > *:nth-child(2) {
  animation-delay: calc((2 - 1) * 0.1s);
}
.page_banner .text > *:nth-child(3) {
  animation-delay: calc((3 - 1) * 0.1s);
}
.page_banner .text > *:nth-child(4) {
  animation-delay: calc((4 - 1) * 0.1s);
}
.page_banner .tip {
  position: absolute;
  bottom: 0;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page_banner .tip .iconfont {
  color: #ffffff;
  font-size: 30px;
  animation: dou 0.5s infinite alternate-reverse;
}
@keyframes dou {
  100% {
    transform: translateY(3px);
  }
}
.page_banner .tip div {
  width: 1px;
  height: 100px;
  background-color: #FFFFFF66;
  margin-top: 30px;
  position: relative;
}
.page_banner .tip div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 40%;
  background-image: var(--themeLinearGradient2);
}
/* 首页 */
#home .sxl-page {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
#home .sxl-page .sxl-page-slide {
  --pl: calc(var(--glup) * 0.75);
  --fs: calc(var(--glup) * 0.36);
}
#home .sxl-page .sxl-page-slide main {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
#home .sxl-page .sxl-page-slide .home_title {
  padding: var(--pl) calc(var(--glup) * 0.4);
  font-size: 36px;
  line-height: 1;
  font-weight: 900;
  position: relative;
}
#home .sxl-page .sxl-page-slide .home_title .cn,
#home .sxl-page .sxl-page-slide .home_title .en {
  font-size: 36px;
}
#home .sxl-page .sxl-page-slide .home_title .en {
  color: #DCDCDC;
}
#home .sxl-page .sxl-page-slide .home_title::after,
#home .sxl-page .sxl-page-slide .home_title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: calc(100% - var(--pl) * 0.5);
  background-color: #DCDCDC;
}
#home .sxl-page .sxl-page-slide .home_title::before {
  top: var(--pl);
  width: 5px;
  height: calc(100% - (var(--pl) * 2));
  border-radius: 0px 36px 36px 0px;
  background-image: var(--themeLinearGradient2);
}
#home .sxl-page .sxl-page-slide .banner {
  position: relative;
}
#home .sxl-page .sxl-page-slide .banner .swiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#home .sxl-page .sxl-page-slide .banner .swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#home .sxl-page .sxl-page-slide .banner .text {
  position: absolute;
  top: 60%;
  left: var(--container_margin);
  z-index: 2;
  transform: translateY(-50%);
  color: #fff;
}
#home .sxl-page .sxl-page-slide .banner .text h1 {
  font-size: 68px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
}
#home .sxl-page .sxl-page-slide .banner .text .pagination {
  margin: calc(var(--glup) * 0.35) 0 calc(var(--glup) * 0.48);
  position: relative;
  width: max-content;
  padding: 0 calc(var(--glup) * 0.28);
}
#home .sxl-page .sxl-page-slide .banner .text .pagination span {
  color: #999;
  cursor: pointer;
}
#home .sxl-page .sxl-page-slide .banner .text .pagination span:hover,
#home .sxl-page .sxl-page-slide .banner .text .pagination span.active {
  color: #fff;
}
#home .sxl-page .sxl-page-slide .banner .text .pagination span + span {
  margin-left: calc(var(--glup) * 0.28);
}
#home .sxl-page .sxl-page-slide .banner .text .pagination::after,
#home .sxl-page .sxl-page-slide .banner .text .pagination::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: var(--container_margin);
  height: 1px;
  background-color: #999;
  opacity: 0.7;
}
#home .sxl-page .sxl-page-slide .banner .text .pagination::after {
  left: 100%;
}
#home .sxl-page .sxl-page-slide .banner .text .pagination::before {
  left: calc(0px - var(--container_margin));
}
#home .sxl-page .sxl-page-slide .banner .text > *:nth-child(0) {
  animation-delay: calc((0 - 1) * 0.1s);
}
#home .sxl-page .sxl-page-slide .banner .text > *:nth-child(1) {
  animation-delay: calc((1 - 1) * 0.1s);
}
#home .sxl-page .sxl-page-slide .banner .text > *:nth-child(2) {
  animation-delay: calc((2 - 1) * 0.1s);
}
#home .sxl-page .sxl-page-slide .banner .text > *:nth-child(3) {
  animation-delay: calc((3 - 1) * 0.1s);
}
#home .sxl-page .sxl-page-slide .banner .text > *:nth-child(4) {
  animation-delay: calc((4 - 1) * 0.1s);
}
#home .sxl-page .sxl-page-slide .banner .tip {
  position: absolute;
  bottom: 0;
  z-index: 2;
  right: var(--container_margin);
  display: flex;
  flex-direction: column;
  align-items: center;
}
#home .sxl-page .sxl-page-slide .banner .tip .iconfont {
  color: #ffffff;
  font-size: 30px;
  animation: dou 0.5s infinite alternate-reverse;
}
@keyframes dou {
  100% {
    transform: translateY(3px);
  }
}
#home .sxl-page .sxl-page-slide .banner .tip div {
  width: 1px;
  height: 100px;
  background-color: #FFFFFF66;
  margin-top: 30px;
  position: relative;
}
#home .sxl-page .sxl-page-slide .banner .tip div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 0;
  background-image: var(--themeLinearGradient2);
}
#home .sxl-page .sxl-page-slide .banner .tip div.anis::before {
  animation: anis 3s linear;
}
@keyframes anis {
  100% {
    height: 100%;
  }
}
#home .sxl-page .sxl-page-slide .product {
  background-color: #FBFBFB;
}
#home .sxl-page .sxl-page-slide .product .top {
  display: flex;
  border-bottom: 1px solid #EDEDED;
}
#home .sxl-page .sxl-page-slide .product .top .l {
  flex: 1;
  padding-left: var(--container_margin);
  padding-right: 118px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#home .sxl-page .sxl-page-slide .product .top .l .home_title {
  padding-top: calc(var(--glup) * 0.6);
  padding-bottom: calc(var(--glup) * 0.6);
}
#home .sxl-page .sxl-page-slide .product .top .l ul {
  display: flex;
}
#home .sxl-page .sxl-page-slide .product .top .l ul li {
  width: calc(var(--glup) * 1.52);
  line-height: calc(var(--glup) * 0.55);
  text-align: center;
  color: #999;
  border: 1px solid #999;
  border-radius: calc(var(--glup) * 0.28);
  margin-left: calc(var(--glup) * 0.68);
  cursor: pointer;
  transition: all 0.2s;
}
#home .sxl-page .sxl-page-slide .product .top .l ul li:hover,
#home .sxl-page .sxl-page-slide .product .top .l ul li.active {
  background-color: var(--themeColor);
  border-color: var(--themeColor);
  color: #fff;
}
#home .sxl-page .sxl-page-slide .product .top .r {
  width: 32vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: var(--themeLinearGradient);
}
#home .sxl-page .sxl-page-slide .product .top .r img {
  width: 70%;
}
#home .sxl-page .sxl-page-slide .product .bottom {
  display: none;
  position: relative;
}
#home .sxl-page .sxl-page-slide .product .bottom > div:first-child {
  flex: 1;
}
#home .sxl-page .sxl-page-slide .product .bottom .left {
  width: 100%;
  padding: calc(var(--glup) * 1.4) var(--glup) 0 var(--container_margin);
  display: none;
  border-right: 1px solid #EDEDED;
  min-height: 100vh;
}
#home .sxl-page .sxl-page-slide .product .bottom .left .l {
  margin-right: var(--glup);
  flex: 1;
}
#home .sxl-page .sxl-page-slide .product .bottom .left .l h2 {
  font-size: 32px;
  font-weight: 900;
}
#home .sxl-page .sxl-page-slide .product .bottom .left .l p {
  font-size: 24px;
  margin-top: calc(var(--glup) * 0.37);
}
#home .sxl-page .sxl-page-slide .product .bottom .left .l .x {
  margin: calc(var(--glup) * 0.28) 0 calc(var(--glup) * 0.35);
  width: 50px;
  height: 2px;
  background: var(--themeLinearGradient);
}
#home .sxl-page .sxl-page-slide .product .bottom .left .l span {
  color: #666;
  display: block;
  width: 100%;
  margin-bottom: calc(var(--glup));
}
#home .sxl-page .sxl-page-slide .product .bottom .left .l .btns {
  display: flex;
}
#home .sxl-page .sxl-page-slide .product .bottom .left .l > *:nth-child(0) {
  animation-delay: calc(0 * 0.05s);
}
#home .sxl-page .sxl-page-slide .product .bottom .left .l > *:nth-child(1) {
  animation-delay: calc(1 * 0.05s);
}
#home .sxl-page .sxl-page-slide .product .bottom .left .l > *:nth-child(2) {
  animation-delay: calc(2 * 0.05s);
}
#home .sxl-page .sxl-page-slide .product .bottom .left .l > *:nth-child(3) {
  animation-delay: calc(3 * 0.05s);
}
#home .sxl-page .sxl-page-slide .product .bottom .left .l > *:nth-child(4) {
  animation-delay: calc(4 * 0.05s);
}
#home .sxl-page .sxl-page-slide .product .bottom .left .l > *:nth-child(5) {
  animation-delay: calc(5 * 0.05s);
}
#home .sxl-page .sxl-page-slide .product .bottom .left .l > *:nth-child(6) {
  animation-delay: calc(6 * 0.05s);
}
#home .sxl-page .sxl-page-slide .product .bottom .left .l > *:nth-child(7) {
  animation-delay: calc(7 * 0.05s);
}
#home .sxl-page .sxl-page-slide .product .bottom .left .l > *:nth-child(8) {
  animation-delay: calc(8 * 0.05s);
}
#home .sxl-page .sxl-page-slide .product .bottom .left .l > *:nth-child(9) {
  animation-delay: calc(9 * 0.05s);
}
#home .sxl-page .sxl-page-slide .product .bottom .left .r {
  width: 35%;
  animation-delay: calc(6 * 0.05s);
}
#home .sxl-page .sxl-page-slide .product .bottom .left .r img {
  width: 100%;
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 75% auto;
}
#home .sxl-page .sxl-page-slide .product .bottom .left.active {
  display: flex;
}
#home .sxl-page .sxl-page-slide .product .bottom .right {
  display: none;
  width: 32vw;
  padding-top: calc(var(--glup) * 1.4);
  padding-left: calc(var(--glup) * 1.47);
  position: relative;
  background-color: #ffffff;
  opacity: 0.3;
}
#home .sxl-page .sxl-page-slide .product .bottom .right h2 {
  font-size: 32px;
  font-weight: 900;
}
#home .sxl-page .sxl-page-slide .product .bottom .right p {
  font-size: 24px;
  margin: calc(var(--glup) * 0.37) 0 calc(var(--glup) * 2);
}
#home .sxl-page .sxl-page-slide .product .bottom .right .btns {
  display: flex;
}
#home .sxl-page .sxl-page-slide .product .bottom .right.active {
  display: block;
}
#home .sxl-page .sxl-page-slide .product .bottom .right > *:nth-child(0) {
  animation-delay: calc(0 * 0.05s);
}
#home .sxl-page .sxl-page-slide .product .bottom .right > *:nth-child(1) {
  animation-delay: calc(1 * 0.05s);
}
#home .sxl-page .sxl-page-slide .product .bottom .right > *:nth-child(2) {
  animation-delay: calc(2 * 0.05s);
}
#home .sxl-page .sxl-page-slide .product .bottom .right > *:nth-child(3) {
  animation-delay: calc(3 * 0.05s);
}
#home .sxl-page .sxl-page-slide .product .bottom .right > *:nth-child(4) {
  animation-delay: calc(4 * 0.05s);
}
#home .sxl-page .sxl-page-slide .product .bottom .right > *:nth-child(5) {
  animation-delay: calc(5 * 0.05s);
}
#home .sxl-page .sxl-page-slide .product .bottom .right > *:nth-child(6) {
  animation-delay: calc(6 * 0.05s);
}
#home .sxl-page .sxl-page-slide .product .bottom .right > *:nth-child(7) {
  animation-delay: calc(7 * 0.05s);
}
#home .sxl-page .sxl-page-slide .product .bottom .right > *:nth-child(8) {
  animation-delay: calc(8 * 0.05s);
}
#home .sxl-page .sxl-page-slide .product .bottom .right > *:nth-child(9) {
  animation-delay: calc(9 * 0.05s);
}
#home .sxl-page .sxl-page-slide .product .bottom .btnss {
  position: absolute;
  top: 25%;
  right: calc(32vw - 23px);
}
#home .sxl-page .sxl-page-slide .product .bottom .btnss .iconfont {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #EAEBED;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #666;
  cursor: pointer;
}
#home .sxl-page .sxl-page-slide .product .bottom .btnss .iconfont:hover {
  background: var(--themeLinearGradient);
  color: #fff;
}
#home .sxl-page .sxl-page-slide .product .bottom .btnss .iconfont + .iconfont {
  margin-top: 10px;
}
#home .sxl-page .sxl-page-slide .product .bottom.active {
  display: flex;
}
#home .sxl-page .sxl-page-slide .about {
  background-image: url(../img/home_about_bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}
#home .sxl-page .sxl-page-slide .about .title {
  line-height: 1;
}
#home .sxl-page .sxl-page-slide .about .title h2 {
  font-weight: 900;
}
#home .sxl-page .sxl-page-slide .about .title .en {
  color: #DCDCDCC9;
  font-size: 36px;
  margin-bottom: 10px;
}
#home .sxl-page .sxl-page-slide .about .title .cn {
  color: #FFFFFF;
  font-size: 36px;
}
#home .sxl-page .sxl-page-slide .about p {
  width: var(--container);
  max-width: 1150px;
  font-size: 18px;
  color: #FFFFFF;
  margin: calc(var(--glup) * 0.8) 0 calc(var(--glup) * 0.5);
}
#home .sxl-page .sxl-page-slide .about ul {
  width: var(--container);
  max-width: 1150px;
  display: flex;
  justify-content: space-between;
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
}
#home .sxl-page .sxl-page-slide .about ul li {
  text-align: left;
  position: relative;
}
#home .sxl-page .sxl-page-slide .about ul li div {
  width: max-content;
  background-image: var(--themeLinearGradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: flex-end;
}
#home .sxl-page .sxl-page-slide .about ul li div .num {
  font-size: 90px;
  font-weight: 900;
  line-height: 1;
}
#home .sxl-page .sxl-page-slide .about ul li div:last-child {
  margin-top: 10px;
}
#home .sxl-page .sxl-page-slide .about ul li + li::after {
  content: "";
  width: 2px;
  height: 90px;
  background-image: var(--themeLinearGradient2);
  position: absolute;
  left: -90%;
  top: 0;
}
#home .sxl-page .sxl-page-slide .about > * {
  position: relative;
  z-index: 2;
}
#home .sxl-page .sxl-page-slide .about::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
#home .sxl-page .sxl-page-slide .about > *:nth-child(0) {
  animation-delay: calc(0 * 0.1s);
}
#home .sxl-page .sxl-page-slide .about > *:nth-child(1) {
  animation-delay: calc(1 * 0.1s);
}
#home .sxl-page .sxl-page-slide .about > *:nth-child(2) {
  animation-delay: calc(2 * 0.1s);
}
#home .sxl-page .sxl-page-slide .about > *:nth-child(3) {
  animation-delay: calc(3 * 0.1s);
}
#home .sxl-page .sxl-page-slide .about > *:nth-child(4) {
  animation-delay: calc(4 * 0.1s);
}
#home .sxl-page .sxl-page-slide .about > *:nth-child(5) {
  animation-delay: calc(5 * 0.1s);
}
#home .sxl-page .sxl-page-slide .about > *:nth-child(6) {
  animation-delay: calc(6 * 0.1s);
}
#home .sxl-page .sxl-page-slide .about > *:nth-child(7) {
  animation-delay: calc(7 * 0.1s);
}
#home .sxl-page .sxl-page-slide .about > *:nth-child(8) {
  animation-delay: calc(8 * 0.1s);
}
#home .sxl-page .sxl-page-slide .about > *:nth-child(9) {
  animation-delay: calc(9 * 0.1s);
}
#home .sxl-page .sxl-page-slide .news {
  background-image: url(../img/home_news_bg.jpg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}
#home .sxl-page .sxl-page-slide .news ul {
  --ds: 0.8s;
  margin-top: var(--glup);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* 123 */
  gap: 55px;
  position: relative;
}
#home .sxl-page .sxl-page-slide .news ul a,
#home .sxl-page .sxl-page-slide .news ul li {
  height: max-content;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
#home .sxl-page .sxl-page-slide .news ul a .img,
#home .sxl-page .sxl-page-slide .news ul li .img {
  transform: translateY(-100%);
}
#home .sxl-page .sxl-page-slide .news ul a .img img,
#home .sxl-page .sxl-page-slide .news ul li .img img {
  width: 100%;
}
#home .sxl-page .sxl-page-slide .news ul a .btm,
#home .sxl-page .sxl-page-slide .news ul li .btm {
  padding: calc(var(--glup) * 0.27);
  position: relative;
  transform: translateY(-70%);
}
#home .sxl-page .sxl-page-slide .news ul a .btm .title,
#home .sxl-page .sxl-page-slide .news ul li .btm .title {
  margin-bottom: calc(var(--glup) * 0.5);
  font-size: 24px;
  height: 3em;
}
#home .sxl-page .sxl-page-slide .news ul a .btm p,
#home .sxl-page .sxl-page-slide .news ul li .btm p {
  line-height: 2;
}
#home .sxl-page .sxl-page-slide .news ul a .btm .bt,
#home .sxl-page .sxl-page-slide .news ul li .btm .bt {
  width: calc(100% - var(--glup) * 0.54);
  position: absolute;
  display: flex;
  justify-content: space-between;
  margin-top: calc(var(--glup) * 0.6);
}
#home .sxl-page .sxl-page-slide .news ul a,
#home .sxl-page .sxl-page-slide .news ul li,
#home .sxl-page .sxl-page-slide .news ul a *,
#home .sxl-page .sxl-page-slide .news ul li * {
  transition: all 0.5s;
}
#home .sxl-page .sxl-page-slide .news ul a.active > *,
#home .sxl-page .sxl-page-slide .news ul li.active > * {
  color: #fff !important;
  border-color: #fff;
}
#home .sxl-page .sxl-page-slide .news ul a.active > * .iconfont,
#home .sxl-page .sxl-page-slide .news ul li.active > * .iconfont {
  color: #fff;
}
#home .sxl-page .sxl-page-slide .news ul a.active::after,
#home .sxl-page .sxl-page-slide .news ul li.active::after {
  opacity: 1;
}
#home .sxl-page .sxl-page-slide .news ul a.active::before,
#home .sxl-page .sxl-page-slide .news ul li.active::before {
  opacity: 0.7;
}
#home .sxl-page .sxl-page-slide .news ul a:hover,
#home .sxl-page .sxl-page-slide .news ul li:hover {
  /* 123 */
  background-color: #C4E3FF4D;
}
#home .sxl-page .sxl-page-slide .news ul a:hover .img,
#home .sxl-page .sxl-page-slide .news ul li:hover .img {
  transform: none;
}
#home .sxl-page .sxl-page-slide .news ul a:hover .btm,
#home .sxl-page .sxl-page-slide .news ul li:hover .btm {
  transform: none;
}
#home .sxl-page .sxl-page-slide .news ul a:hover .btm .title,
#home .sxl-page .sxl-page-slide .news ul li:hover .btm .title {
  margin-bottom: calc(var(--glup) * 0.3);
}
#home .sxl-page .sxl-page-slide .news ul a:hover .btm .bt,
#home .sxl-page .sxl-page-slide .news ul li:hover .btm .bt {
  margin-top: calc(var(--glup) * 0.5);
}
#home .sxl-page .sxl-page-slide .news ul > li:nth-child(0) {
  animation-delay: calc(0 * 0.1s);
}
#home .sxl-page .sxl-page-slide .news ul > li:nth-child(1) {
  animation-delay: calc(1 * 0.1s);
}
#home .sxl-page .sxl-page-slide .news ul > li:nth-child(2) {
  animation-delay: calc(2 * 0.1s);
}
#home .sxl-page .sxl-page-slide .news ul > li:nth-child(3) {
  animation-delay: calc(3 * 0.1s);
}
#home .sxl-page .sxl-page-slide .news ul > li:nth-child(4) {
  animation-delay: calc(4 * 0.1s);
}
#home .sxl-page .sxl-page-slide .news ul > li:nth-child(5) {
  animation-delay: calc(5 * 0.1s);
}
#home .sxl-page .sxl-page-slide .partner .par_wrap {
  /* 123 */
  width: 100%;
  margin: var(--glup) auto 0;
}
#home .sxl-page .sxl-page-slide .partner .par_wrap .row {
  display: flex;
}
#home .sxl-page .sxl-page-slide .partner .par_wrap .row .item {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: calc(var(--glup) * 0.45) calc(var(--glup) * 0.4);
}
#home .sxl-page .sxl-page-slide .partner .par_wrap .row .item .changeShow img {
  width: 90%;
  height: calc(var(--glup) * 0.7);
  object-fit: contain;
  transition: all 0.4s;
}
#home .sxl-page .sxl-page-slide .partner .par_wrap .row .item + .item {
  border-left: 1px solid #eee;
}
#home .sxl-page .sxl-page-slide .partner .par_wrap .row:hover .item .changeShow img {
  transform: none;
  filter: none;
  -webkit-filter: none;
}
#home .sxl-page .sxl-page-slide .partner .par_wrap .row:nth-child(0) .changeShow {
  animation-delay: calc(0 * 0.1s);
}
#home .sxl-page .sxl-page-slide .partner .par_wrap .row:nth-child(1) .changeShow {
  animation-delay: calc(1 * 0.1s);
}
#home .sxl-page .sxl-page-slide .partner .par_wrap .row:nth-child(2) .changeShow {
  animation-delay: calc(2 * 0.1s);
}
#home .sxl-page .sxl-page-slide .partner .par_wrap .row:nth-child(3) .changeShow {
  animation-delay: calc(3 * 0.1s);
}
#home .sxl-page .sxl-page-slide .partner .par_wrap .row:nth-child(4) .changeShow {
  animation-delay: calc(4 * 0.1s);
}
#home .sxl-page .sxl-page-slide .partner .par_wrap .row:nth-child(5) .changeShow {
  animation-delay: calc(5 * 0.1s);
}
/* 关于我们 */
#about .sxl-page {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
#about .sxl-page .sxl-page-slide {
  /* 板块标题 */
  /* 公司简介 */
  /* 公司文化 */
  /* 组织架构 */
  /* 发展历程 */
  /* 荣誉资质 */
}
#about .sxl-page .sxl-page-slide main {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
#about .sxl-page .sxl-page-slide .titles h4 {
  font-size: 36px;
  font-weight: 900;
}
#about .sxl-page .sxl-page-slide .titles h3 {
  font-size: 36px;
  font-weight: 900;
}
#about .sxl-page .sxl-page-slide .js {
  background-image: url(../img/about_js_bg.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: bottom center;
  backdrop-filter: grayscale(100%);
}
#about .sxl-page .sxl-page-slide .js .container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#about .sxl-page .sxl-page-slide .js .container .left {
  flex: 1;
  margin-right: calc(var(--glup) * 2);
}
#about .sxl-page .sxl-page-slide .js .container .left h2 {
  font-size: 48px;
  white-space: nowrap;
}
#about .sxl-page .sxl-page-slide .js .container .left .rich {
  font-size: 16px;
  line-height: 2.5;
  margin: calc(var(--glup) * 0.36) auto calc(var(--glup) * 0.46);
  color: #666;
}
#about .sxl-page .sxl-page-slide .js .container .left ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
#about .sxl-page .sxl-page-slide .js .container .left ul li .t {
  display: flex;
  align-items: flex-end;
}
#about .sxl-page .sxl-page-slide .js .container .left ul li .t span {
  color: var(--themeColor2);
}
#about .sxl-page .sxl-page-slide .js .container .left ul li .t .num {
  line-height: 1;
  font-size: 90px;
  background-image: var(--themeLinearGradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
#about .sxl-page .sxl-page-slide .js .container .left ul li p {
  margin: 10px auto 20px;
}
#about .sxl-page .sxl-page-slide .js .container .right {
  width: 40%;
  background-image: var(--themeLinearGradient);
  border-radius: 50%;
  padding: 0 0 calc(var(--glup) * 0.45) calc(var(--glup) * 0.45);
}
#about .sxl-page .sxl-page-slide .js .container .right img {
  border-radius: 50%;
  width: 100%;
}
#about .sxl-page .sxl-page-slide .culture {
  position: relative;
}
#about .sxl-page .sxl-page-slide .culture > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#about .sxl-page .sxl-page-slide .culture .titles {
  position: absolute;
  top: 5%;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  text-align: center;
}
#about .sxl-page .sxl-page-slide .culture .titles h4 {
  color: #FFFFFF8A;
}
#about .sxl-page .sxl-page-slide .culture .titles h3 {
  color: #ffffff;
}
#about .sxl-page .sxl-page-slide .culture ul {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
}
#about .sxl-page .sxl-page-slide .culture ul li {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  transition: all 0.8s;
}
#about .sxl-page .sxl-page-slide .culture ul li h4 {
  font-size: 30px;
}
#about .sxl-page .sxl-page-slide .culture ul li p {
  height: 1em;
  margin: calc(var(--glup) * 0.34) 0 calc(var(--glup) * 0.5);
}
#about .sxl-page .sxl-page-slide .culture ul li p,
#about .sxl-page .sxl-page-slide .culture ul li span {
  font-size: 20px;
}
#about .sxl-page .sxl-page-slide .culture ul li h4,
#about .sxl-page .sxl-page-slide .culture ul li p,
#about .sxl-page .sxl-page-slide .culture ul li span {
  transform: translateY(30px);
  transition: transform 0.8s, opacity 0.8s;
}
#about .sxl-page .sxl-page-slide .culture ul li span {
  padding: 0 30px;
  opacity: 0;
  transform: translateY(100px);
  text-align: center;
  height: 4em;
  transition: none;
}
#about .sxl-page .sxl-page-slide .culture ul li + li {
  border-left: 1px solid #FFFFFF33;
}
#about .sxl-page .sxl-page-slide .culture ul li:hover {
  backdrop-filter: blur(20px);
  flex: 2;
}
#about .sxl-page .sxl-page-slide .culture ul li:hover h4,
#about .sxl-page .sxl-page-slide .culture ul li:hover p,
#about .sxl-page .sxl-page-slide .culture ul li:hover span {
  transform: none;
  opacity: 1;
}
#about .sxl-page .sxl-page-slide .culture ul li:hover span {
  transition: transform 0.8s, opacity 0.8s;
  transition-delay: 0.8s;
}
#about .sxl-page .sxl-page-slide .culture ul:hover li:not(:hover) p {
  opacity: 0;
}
#about .sxl-page .sxl-page-slide .or {
  background-image: url(../img/about_or_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
#about .sxl-page .sxl-page-slide .or .titles {
  width: max-content;
  text-align: center;
  margin: calc(var(--glup) * 0.7) auto var(--glup);
}
#about .sxl-page .sxl-page-slide .or .titles h4 {
  color: #8F8F8F;
}
#about .sxl-page .sxl-page-slide .or img {
  display: block;
}
#about .sxl-page .sxl-page-slide .history {
  background-color: #000;
}
#about .sxl-page .sxl-page-slide .history .titles {
  width: max-content;
  text-align: center;
  margin: calc(var(--glup) * 0.7) auto var(--glup);
}
#about .sxl-page .sxl-page-slide .history .titles h4 {
  color: #8F8F8F;
}
#about .sxl-page .sxl-page-slide .history .titles h3 {
  color: #ffffff;
}
#about .sxl-page .sxl-page-slide .history .year_swiper .swiper-slide {
  font-size: 150px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
// opacity: 0;
  transition: opacity 0.5s;
  cursor: pointer;
  padding: 0 var(--container_margin);
}
#about .sxl-page .sxl-page-slide .history .year_swiper .swiper-slide.swiper-slide-active {
  background-image: var(--themeLinearGradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 1;
}
#about .sxl-page .sxl-page-slide .history .year_swiper:hover .swiper-slide {
  opacity: 1;
}
#about .sxl-page .sxl-page-slide .history .his_swiper {
  position: relative;
  margin-top: var(--glup);
  animation-delay: 0.1s;
  /* 横线 */
  /* 按钮 */
}
#about .sxl-page .sxl-page-slide .history .his_swiper::after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #FFFFFF80;
  opacity: 0.5;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
#about .sxl-page .sxl-page-slide .history .his_swiper .swiper-slide .des_swiper .swiper-slide {
  position: relative;
}
#about .sxl-page .sxl-page-slide .history .his_swiper .swiper-slide .des_swiper .swiper-slide .item {
  flex: 1;
  color: #fff;
  padding-left: 10px;
}
#about .sxl-page .sxl-page-slide .history .his_swiper .swiper-slide .des_swiper .swiper-slide .item .m {
  font-size: 20px;
  margin-bottom: 10px;
}
#about .sxl-page .sxl-page-slide .history .his_swiper .swiper-slide .des_swiper .swiper-slide .item .m span {
  font-weight: 900;
  font-size: 24px;
}
#about .sxl-page .sxl-page-slide .history .his_swiper .swiper-slide .des_swiper .swiper-slide .item p {
  height: 3em;
  opacity: 0.7;
}
#about .sxl-page .sxl-page-slide .history .his_swiper .swiper-slide .des_swiper .swiper-slide .item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #FFFFFF80;
  opacity: 0.5;
}
#about .sxl-page .sxl-page-slide .history .his_swiper .swiper-slide .des_swiper .swiper-slide .item .before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: var(--themeLinearGradient);
  margin-left: -4.5px;
}
#about .sxl-page .sxl-page-slide .history .his_swiper .swiper-slide .des_swiper .swiper-slide .item .before span {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: dadada 2s infinite;
  border: 1px solid var(--themeColor);
  border-radius: 50%;
}
@keyframes dadada {
  100% {
    width: 300%;
    height: 300%;
    opacity: 0;
  }
}
#about .sxl-page .sxl-page-slide .history .his_swiper .swiper-slide .des_swiper .swiper-slide .item .before span:nth-child(0) {
  animation-delay: calc((0 - 1) * 0.3s);
}
#about .sxl-page .sxl-page-slide .history .his_swiper .swiper-slide .des_swiper .swiper-slide .item .before span:nth-child(1) {
  animation-delay: calc((1 - 1) * 0.3s);
}
#about .sxl-page .sxl-page-slide .history .his_swiper .swiper-slide .des_swiper .swiper-slide .item .before span:nth-child(2) {
  animation-delay: calc((2 - 1) * 0.3s);
}
#about .sxl-page .sxl-page-slide .history .his_swiper .swiper-slide .des_swiper .swiper-slide .item .before span:nth-child(3) {
  animation-delay: calc((3 - 1) * 0.3s);
}
#about .sxl-page .sxl-page-slide .history .his_swiper .swiper-slide .des_swiper .swiper-slide .item .before span:nth-child(4) {
  animation-delay: calc((4 - 1) * 0.3s);
}
#about .sxl-page .sxl-page-slide .history .his_swiper .swiper-slide .des_swiper .swiper-slide .item .before span:nth-child(5) {
  animation-delay: calc((5 - 1) * 0.3s);
}
#about .sxl-page .sxl-page-slide .history .his_swiper .swiper-slide .des_swiper .swiper-slide .item .before span:nth-child(6) {
  animation-delay: calc((6 - 1) * 0.3s);
}
#about .sxl-page .sxl-page-slide .history .his_swiper .swiper-slide .des_swiper .swiper-slide .item .before span:nth-child(7) {
  animation-delay: calc((7 - 1) * 0.3s);
}
#about .sxl-page .sxl-page-slide .history .his_swiper .swiper-slide .des_swiper .swiper-slide .item .before span:nth-child(8) {
  animation-delay: calc((8 - 1) * 0.3s);
}
#about .sxl-page .sxl-page-slide .history .his_swiper .swiper-slide .des_swiper .swiper-slide .item .before span:nth-child(9) {
  animation-delay: calc((9 - 1) * 0.3s);
}
#about .sxl-page .sxl-page-slide .history .his_swiper .swiper-slide .des_swiper .swiper-slide .item:nth-child(odd) {
  padding-bottom: 1.5em;
  transform: translateX(10%);
}
#about .sxl-page .sxl-page-slide .history .his_swiper .swiper-slide .des_swiper .swiper-slide .item:nth-child(odd) .m,
#about .sxl-page .sxl-page-slide .history .his_swiper .swiper-slide .des_swiper .swiper-slide .item:nth-child(odd) p {
  transform: translate(10px, -16px);
}
#about .sxl-page .sxl-page-slide .history .his_swiper .swiper-slide .des_swiper .swiper-slide .item:nth-child(even) {
  padding-top: 1.5em;
  transform: translateX(25%);
}
#about .sxl-page .sxl-page-slide .history .his_swiper .swiper-slide .des_swiper .swiper-slide .item:nth-child(even) .m,
#about .sxl-page .sxl-page-slide .history .his_swiper .swiper-slide .des_swiper .swiper-slide .item:nth-child(even) p {
  transform: translate(10px, 72px);
}
#about .sxl-page .sxl-page-slide .history .his_swiper .swiper-slide .des_swiper .swiper-slide .item:nth-child(even) .before {
  bottom: 0;
  top: auto;
}
#about .sxl-page .sxl-page-slide .history .his_swiper .swiper-slide .des_swiper .swiper-slide .item:nth-child(3) {
  position: absolute;
  left: 50%;
  top: 0;
}
#about .sxl-page .sxl-page-slide .history .his_swiper .swiper-slide .des_swiper .swiper-slide .item:nth-child(4) {
  position: absolute;
  bottom: 0;
  left: 55%;
}
#about .sxl-page .sxl-page-slide .history .his_swiper .swiper-slide .des_swiper .swiper-slide .item:nth-child(0) .m {
  animation-delay: calc(0 * 0.2s);
}
#about .sxl-page .sxl-page-slide .history .his_swiper .swiper-slide .des_swiper .swiper-slide .item:nth-child(0) p {
  animation-delay: calc(0 * 0.2s);
}
#about .sxl-page .sxl-page-slide .history .his_swiper .swiper-slide .des_swiper .swiper-slide .item:nth-child(1) .m {
  animation-delay: calc(1 * 0.2s);
}
#about .sxl-page .sxl-page-slide .history .his_swiper .swiper-slide .des_swiper .swiper-slide .item:nth-child(1) p {
  animation-delay: calc(1 * 0.2s);
}
#about .sxl-page .sxl-page-slide .history .his_swiper .swiper-slide .des_swiper .swiper-slide .item:nth-child(2) .m {
  animation-delay: calc(2 * 0.2s);
}
#about .sxl-page .sxl-page-slide .history .his_swiper .swiper-slide .des_swiper .swiper-slide .item:nth-child(2) p {
  animation-delay: calc(2 * 0.2s);
}
#about .sxl-page .sxl-page-slide .history .his_swiper .swiper-slide .des_swiper .swiper-slide .item:nth-child(3) .m {
  animation-delay: calc(3 * 0.2s);
}
#about .sxl-page .sxl-page-slide .history .his_swiper .swiper-slide .des_swiper .swiper-slide .item:nth-child(3) p {
  animation-delay: calc(3 * 0.2s);
}
#about .sxl-page .sxl-page-slide .history .his_swiper .swiper-slide .des_swiper .swiper-slide .item:nth-child(4) .m {
  animation-delay: calc(4 * 0.2s);
}
#about .sxl-page .sxl-page-slide .history .his_swiper .swiper-slide .des_swiper .swiper-slide .item:nth-child(4) p {
  animation-delay: calc(4 * 0.2s);
}
#about .sxl-page .sxl-page-slide .history .his_swiper .swiper-slide .des_swiper .swiper-slide .item .m,
#about .sxl-page .sxl-page-slide .history .his_swiper .swiper-slide .des_swiper .swiper-slide .item p {
  display: none;
  animation: showin 0.8s forwards;
  position: relative;
  top: 30px;
  opacity: 0;
}
@keyframes showin {
  100% {
    top: 0;
    opacity: 1;
  }
}
#about .sxl-page .sxl-page-slide .history .his_swiper .swiper-slide:not(.swiper-slide-active) {
  opacity: 0;
}
#about .sxl-page .sxl-page-slide .history .his_swiper .swiper-slide.swiper-slide-active .des_swiper .swiper-slide.swiper-slide-active .item .m,
#about .sxl-page .sxl-page-slide .history .his_swiper .swiper-slide.swiper-slide-active .des_swiper .swiper-slide.swiper-slide-active .item p {
  display: block;
}
#about .sxl-page .sxl-page-slide .history .his_swiper .iconfont {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.4s;
}
#about .sxl-page .sxl-page-slide .history .his_swiper .iconfont.his_prev {
  left: -60px;
}
#about .sxl-page .sxl-page-slide .history .his_swiper .iconfont.his_next {
  right: -60px;
}
#about .sxl-page .sxl-page-slide .history .his_swiper .iconfont:hover {
  opacity: 1;
}
#about .sxl-page .sxl-page-slide .honorary {
  background-image: url(../img/about_honorary_bg.jpg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
#about .sxl-page .sxl-page-slide .honorary .titles {
  width: max-content;
  text-align: center;
  margin: calc(var(--glup) * 0.7) auto var(--glup);
}
#about .sxl-page .sxl-page-slide .honorary .titles h4 {
  color: #8F8F8F;
}
#about .sxl-page .sxl-page-slide .honorary .honor_swiper {
  width: calc(var(--container) - 212px);
  margin: 0 auto;
  margin-top: calc(var(--glup) * 0.75);
  overflow: hidden;
}
#about .sxl-page .sxl-page-slide .honorary .honor_swiper .swiper-wrapper {
  height: 100%;
}
#about .sxl-page .sxl-page-slide .honorary .honor_swiper .swiper-wrapper .swiper-slide {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: margin 0.5s, background 0.5s;
}
#about .sxl-page .sxl-page-slide .honorary .honor_swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--themeColor);
  padding: 0 calc(var(--glup) * 0.5);
  object-fit: contain;
}
#about .sxl-page .sxl-page-slide .honorary .honor_swiper .swiper-wrapper .swiper-slide span {
  margin-top: 20px;
}
#about .sxl-page .sxl-page-slide .honorary .honor_swiper .swiper-wrapper .swiper-slide.swiper-slide-active + .swiper-slide {
  margin-top: calc(var(--glup) * 0.8);
}
#about .sxl-page .sxl-page-slide .honorary .honor_swiper .swiper-wrapper .swiper-slide.swiper-slide-active + .swiper-slide img {
  background-color: var(--themeColor2);
}
#about .sxl-page .sxl-page-slide .honorary .honor_swiper .swiper-wrapper .swiper-slide.swiper-slide-active + .swiper-slide + .swiper-slide {
  margin-top: calc(var(--glup) * 0.8);
}
#about .sxl-page .sxl-page-slide .honorary .honor_swiper .swiper-wrapper .swiper-slide.swiper-slide-active + .swiper-slide + .swiper-slide img {
  background-color: var(--themeColor2);
}
#about .sxl-page .sxl-page-slide .honorary .iconfont {
  position: absolute;
  top: 45%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--themeColor);
  color: var(--themeColor);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
#about .sxl-page .sxl-page-slide .honorary .iconfont.honor_prev {
  left: var(--container_margin);
}
#about .sxl-page .sxl-page-slide .honorary .iconfont.honor_next {
  right: var(--container_margin);
}
#about .sxl-page .sxl-page-slide .honorary .iconfont:hover {
  background-image: var(--themeLinearGradient);
  color: #fff;
}
/* 产品中心 - 分类 */
#product .cates {
  --fr: calc((100% - var(--glup) * 0.44) / 2);
  margin: var(--glup) auto;
  display: grid;
  grid-template-columns: repeat(2, var(--fr));
  gap: calc(var(--glup) * 0.44);
}
#product .cates a {
  width: 100%;
  display: flex;
  justify-content: space-between;
  background-color: #F6F6F6;
  padding: calc(var(--glup) * 0.65) calc(var(--glup) * 0.3);
  transition: all 0.4s;
  border: 1px solid transparent;
}
#product .cates a .left {
  width: 52%;
}
#product .cates a .left h2 {
  width: 100%;
  font-size: 32px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#product .cates a .left .xian {
  width: 100%;
  height: 1px;
  background-color: #D6D6D6;
  margin: calc(var(--glup) * 0.35) 0 calc(var(--glup) * 0.2);
}
#product .cates a .left .xian::after {
  content: "";
  width: 0;
  height: 1px;
  transform: translateY(-1px);
  background: var(--themeColor);
  display: block;
  transition: all 0.2s;
}
#product .cates a .left p {
  width: 100%;
  color: #666666;
  margin-bottom: calc(var(--glup) * 0.35);
}
#product .cates a .left .btn {
  width: max-content;
  margin-bottom: 0;
  color: #fff;
  display: none;
}
#product .cates a .img {
  width: 40%;
  position: relative;
}
#product .cates a .img img {
  width: 100%;
  position: relative;
  z-index: 1;
}
#product .cates a .img svg {
  width: 110%;
  height: 110%;
  position: absolute;
  top: -20%;
  left: -20%;
}
#product .cates a:hover {
  background-color: transparent;
  border-image: var(--themeLinearGradient) 1;
}
#product .cates a:hover .dh_text5 {
  -webkit-line-clamp: 2;
}
#product .cates a:hover .xian::after {
  width: 100%;
}
#product .cates a:hover .btn {
  display: block;
}
/* 产品中心 - 列表 */
#product_list .mains {
  display: flex;
  margin: var(--glup) auto;
}
#product_list .mains .left {
  position: sticky;
  top: var(--top_height);
  width: 275px;
}
#product_list .mains .left * {
  white-space: nowrap;
}
#product_list .mains .left .tis {
  background-color: var(--themeColor);
  color: #fff;
  line-height: 110px;
  padding-left: 30px;
  font-size: 20px;
  margin-bottom: 8px;
}
#product_list .mains .left ul li {
  background-color: #F3F3F3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 65px;
  color: #666666;
  padding: 0 35px 0 30px;
  margin-bottom: 4px;
  cursor: pointer;
  transition: all 0.4s;
}
#product_list .mains .left ul li::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: 11px solid transparent;
  border-top-width: 7px;
  border-bottom-width: 7px;
  border-left-color: var(--themeColor);
}
#product_list .mains .left ul li:hover,
#product_list .mains .left ul li.active {
  background-color: var(--themeColor2);
  color: var(--themeColor);
}
#product_list .mains .right {
  flex: 1;
  margin-left: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
#product_list .mains .right a {
  padding: 40px;
  background-color: #F3F3F3;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid transparent;
  transition: all 0.3s;
}
#product_list .mains .right a .top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#product_list .mains .right a .top .names .cn {
  font-size: 24px;
}
#product_list .mains .right a .top .names .en {
  font-size: 14px;
  color: #666666;
}
#product_list .mains .right a .top .iconfont {
  width: 80px;
  line-height: 40px;
  border-radius: 23px;
  text-align: center;
  color: var(--themeColor);
  border: 1px solid var(--themeColor);
  display: block;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s;
}
#product_list .mains .right a .img {
  width: 70%;
  margin-top: var(--glup);
  position: relative;
}
#product_list .mains .right a .img img {
  width: 100%;
}
#product_list .mains .right a .img svg {
  width: 110%;
  height: 110%;
  position: absolute;
  top: -20%;
  left: -20%;
  z-index: -1;
}
#product_list .mains .right a:hover {
  background-color: transparent;
  border: 1px solid;
  border-image: var(--themeLinearGradient) 1;
}
#product_list .mains .right a:hover .top .iconfont {
  opacity: 1;
}
/* 产品中心 - 详情 */
#product_des .mains {
  background-image: url(../img/product_des_bg.jpg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: top center;
  padding-top: var(--top_height);
  margin-bottom: var(--glup);
  /* 选框 */
  /* 表头设置 侧栏对比选项 所有参数/差异参数在里面 */
  /* 表格 */
  /* 数据对比 */
  /* 产品介绍气泡框 */
  /* 型号图片预览 */
}
#product_des .mains .pros {
  margin-bottom: calc(var(--glup) * 1.3);
}
#product_des .mains .pros a {
  font-size: 18px;
  color: #666;
}
#product_des .mains .pros span {
  font-size: 18px;
  color: var(--themeColor);
}
#product_des .mains .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 calc(var(--glup) * 1.5);
}
#product_des .mains .top .img {
  position: relative;
  width: calc(var(--glup) * 4);
}
#product_des .mains .top .img img {
  width: 100%;
  position: relative;
  z-index: 2;
}
#product_des .mains .top .img svg {
  position: absolute;
  top: -15%;
  left: -15%;
}
#product_des .mains .top .right {
  flex: 1;
  margin-left: calc(var(--glup) * 1.8);
  margin-top: -40px;
}
#product_des .mains .top .right h3 {
  font-size: 32px;
  margin-bottom: calc(var(--glup) * 0.5);
}
#product_des .mains .top .right p {
  color: #666666;
  line-height: 2;
}
#product_des .mains .ro {
  margin-right: 13px;
  width: 16px;
  height: 16px;
  border-radius: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--themeColor4);
}
#product_des .mains .ro .iconfont {
  font-size: 12px;
  color: transparent;
}
#product_des .mains .ro.active {
  background-color: var(--themeColor4);
}
#product_des .mains .ro.active .iconfont {
  color: #ffffff;
}
#product_des .mains .setHead {
  margin: 70px 0 15px;
  position: relative;
  /* 侧栏对比选项 所有参数/差异参数 */
}
#product_des .mains .setHead .pro_btn {
  width: max-content;
  line-height: 50px;
  padding: 0 18px;
  margin-bottom: 10px;
  border-radius: 5px;
  background-color: var(--themeColor2);
  color: var(--themeColor4);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s;
}
#product_des .mains .setHead .pro_btn .iconfont {
  font-size: 20px;
}
#product_des .mains .setHead .pro_btn:active {
  opacity: 0.8;
}
#product_des .mains .setHead .heads {
  padding: 10px 18px;
  background-color: var(--themeColor3);
  border: 1px solid var(--themeColor2);
  border-radius: 8px;
  display: none;
}
#product_des .mains .setHead .heads ul {
  display: flex;
  flex-wrap: wrap;
}
#product_des .mains .setHead .heads ul li {
  color: var(--themeColor);
  display: flex;
  align-items: center;
  margin-right: 20px;
  line-height: 2.5;
  cursor: pointer;
  color: var(--themeColor4);
}
#product_des .mains .setHead .heads ul li.active .ro {
  background-color: var(--themeColor4);
}
#product_des .mains .setHead .heads ul li.active .ro .iconfont {
  color: #ffffff;
}
#product_des .mains .setHead .left_duibi_op {
  position: absolute;
  top: 100%;
  left: -120px;
}
#product_des .mains .setHead .left_duibi_op .item {
  width: 110px;
  line-height: 90px;
  border-radius: 8px;
  background-color: var(--themeColor3);
  color: var(--themeColor4);
  text-align: center;
  cursor: pointer;
}
#product_des .mains .setHead .left_duibi_op .item.active {
  background-color: var(--themeColor2);
  color: var(--themeColor4);
}
#product_des .mains .setHead .left_duibi_op .item + .item {
  margin-top: 10px;
}
#product_des .mains .table_warp {
  --border-color: #E9E9E9;
  --h: 90px;
  width: 100%;
  min-height: calc(var(--h) * 5);
  max-height: calc(var(--h) * 10);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  overflow: auto;
  background-color: #ffffff;
  /* 滚动时第一列加阴影 */
  /*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
  /*定义滚动条轨道 内阴影+圆角*/
  /*定义滑块 内阴影+圆角*/
}
#product_des .mains .table_warp table {
  width: max-content;
  min-width: calc(var(--container) - 14px);
  /* 行 */
  /* 表头 */
  /* 筛选 */
  /* 每一行底部边框 */
  /* 每一行hover颜色变深 */
}
#product_des .mains .table_warp table tr {
  /* 表体单元格 */
  /* 控制每一列宽度 */
}
#product_des .mains .table_warp table tr td {
  height: var(--h);
  background-color: #ffffff;
  text-align: center;
  transition: background-color 0.3s;
}
#product_des .mains .table_warp table tr td .ms {
  display: flex;
  align-items: center;
  justify-content: center;
  /* 图片 */
  /* 长文本 */
  /* 链接 */
}
#product_des .mains .table_warp table tr td .ms.img {
  cursor: pointer;
}
#product_des .mains .table_warp table tr td .ms.img img {
  width: 50px;
}
#product_des .mains .table_warp table tr td .ms.longText {
  display: block;
  width: 150px;
  margin: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  cursor: pointer;
}
#product_des .mains .table_warp table tr td .ms.link {
  cursor: pointer;
}
#product_des .mains .table_warp table tr td .ms.link > .iconfont {
  color: var(--themeColor);
  font-size: 25px;
}
#product_des .mains .table_warp table tr td .ms.link > .iconfont.icon-a-wendang1 {
  font-size: 23px;
}
#product_des .mains .table_warp table tr td:first-child .ms {
  padding-left: 10%;
  justify-content: flex-start;
  white-space: nowrap;
  cursor: pointer;
}
#product_des .mains .table_warp table tr th,
#product_des .mains .table_warp table tr td {
  min-width: 120px;
  padding: 0 calc(var(--glup) * 0.25);
  text-align: center;
}
#product_des .mains .table_warp table tr th:first-child,
#product_des .mains .table_warp table tr td:first-child {
  position: sticky;
  left: 0;
  transition: box-shadow 0.3s, background-color 0.3s;
}
#product_des .mains .table_warp table tr:first-child {
  position: sticky;
  top: 0;
  z-index: 9999999;
  background: var(--themeColor);
  /* 表头单元格 */
}
#product_des .mains .table_warp table tr:first-child th {
  font-size: 15px;
  color: #fff;
  height: var(--h);
  position: relative;
}
#product_des .mains .table_warp table tr:first-child th::after {
  content: "";
  width: 1px;
  height: 1.5em;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
#product_des .mains .table_warp table tr:first-child th:first-child {
  position: sticky;
  z-index: 2;
  background-color: var(--themeColor);
}
#product_des .mains .table_warp table tr:first-child th:first-child::after {
  display: none;
}
#product_des .mains .table_warp table tr:nth-child(2) {
  position: sticky;
  top: var(--h);
  z-index: 9999999;
  transition: box-shadow 0.3s;
}
#product_des .mains .table_warp table tr:nth-child(2) td {
  height: calc(var(--h) / 3 * 2);
  background-color: #f2f2f4;
  /* 筛选按钮 */
  /* 筛选内容盒子 */
}
#product_des .mains .table_warp table tr:nth-child(2) td .bos {
  width: max-content;
  margin: auto;
  white-space: nowrap;
  display: flex;
  align-items: center;
  color: #999999;
  font-size: 14px;
  line-height: 1;
  padding: 6px 10px;
  border-radius: 4px;
  border: 1px solid #E9E9E9;
  cursor: pointer;
}
#product_des .mains .table_warp table tr:nth-child(2) td .bos .iconfont {
  margin-left: 5px;
}
#product_des .mains .table_warp table tr:nth-child(2) td .model_box {
  display: none;
  min-width: 300px;
  border-radius: 10px;
  padding: calc(var(--glup) * 0.25) calc(var(--glup) * 0.35);
  background-color: #fff;
  border: 1px solid #E9E9E9;
  position: absolute;
  top: calc(var(--h) / 3 * 2);
  left: 50%;
  transform: translateX(-50%);
}
#product_des .mains .table_warp table tr:nth-child(2) td .model_box > .iconfont {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--themeColor);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
}
#product_des .mains .table_warp table tr:nth-child(2) td .model_box > .iconfont::before {
  transform: scale(0.7);
}
#product_des .mains .table_warp table tr:nth-child(2) td .model_box .input {
  width: 300px;
  display: flex;
  align-items: center;
  border: 1px solid #e1e1e1;
  padding: 5px 17px;
  border-radius: 4px;
}
#product_des .mains .table_warp table tr:nth-child(2) td .model_box .input input {
  flex: 1;
}
#product_des .mains .table_warp table tr:nth-child(2) td .model_box .input .iconfont {
  font-size: 13px;
  color: #999999;
}
#product_des .mains .table_warp table tr:nth-child(2) td .model_box .all {
  display: flex;
  align-items: center;
  margin-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e1e1e1;
  cursor: pointer;
}
#product_des .mains .table_warp table tr:nth-child(2) td .model_box .all span {
  color: var(--themeColor);
}
#product_des .mains .table_warp table tr:nth-child(2) td .model_box ul {
  margin-top: 20px;
  max-height: 200px;
  overflow: auto;
}
#product_des .mains .table_warp table tr:nth-child(2) td .model_box ul li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  cursor: pointer;
}
#product_des .mains .table_warp table tr:nth-child(2) td .model_box ul li span {
  color: #666;
  margin-right: 15px;
  white-space: nowrap;
}
#product_des .mains .table_warp table tr:nth-child(2) td:first-child {
  z-index: 99999;
}
#product_des .mains .table_warp table tr:nth-child(2) td:first-child .model_box {
  transform: translateX(-30%);
}
#product_des .mains .table_warp table tr:nth-child(2) td:last-child .model_box {
  transform: translateX(-80%);
}
#product_des .mains .table_warp table tr:nth-child(2) td:hover .bos {
  border-color: var(--themeColor);
}
#product_des .mains .table_warp table tr:nth-child(2) td:hover .model_box {
  display: block;
}
#product_des .mains .table_warp table tr:nth-child(2) td:not(:first-child) {
  position: relative;
}
#product_des .mains .table_warp table tr:not(:last-child):not(:first-child) td {
  border-bottom: 1px solid var(--border-color);
}
#product_des .mains .table_warp table tr:not(:nth-child(2)):not(:first-child):hover td {
  background-color: #f8f8f8;
}
#product_des .mains .table_warp.scrollLeft table th:first-child,
#product_des .mains .table_warp.scrollLeft table td:first-child {
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.05);
}
#product_des .mains .table_warp.scrollTop table tr:nth-child(2) {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
#product_des .mains .table_warp::-webkit-scrollbar,
#product_des .mains .table_warp .model_box ul::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
#product_des .mains .table_warp::-webkit-scrollbar-track,
#product_des .mains .table_warp .model_box ul::-webkit-scrollbar-track {
  border-radius: 15px;
  background-color: #EFEFEF;
}
#product_des .mains .table_warp::-webkit-scrollbar-thumb,
#product_des .mains .table_warp .model_box ul::-webkit-scrollbar-thumb {
  border-radius: 15px;
  background-color: var(--themeColor);
}
#product_des .mains .duibi {
  padding: 20px;
  background-color: var(--themeColor3);
  border-radius: 8px;
  margin: 10px 0 var(--glup);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
#product_des .mains .duibi .pro_btn {
  width: max-content;
  white-space: nowrap;
  line-height: 50px;
  padding: 0 18px;
  border-radius: 5px;
  background-color: var(--themeColor2);
  color: var(--themeColor4);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s;
}
#product_des .mains .duibi .pro_btn .iconfont {
  font-size: 20px;
}
#product_des .mains .duibi .pro_btn:active {
  opacity: 0.8;
}
#product_des .mains .duibi span {
  margin-left: 23px;
  color: var(--themeColor);
  cursor: pointer;
  display: flex;
  white-space: nowrap;
  margin-top: 5px;
}
#product_des .mains .duibi span i {
  transform: scaleX(1.2);
  margin-left: 5px;
}
#product_des .mains .duibi span i:active {
  opacity: 0.7;
}
#product_des .mains .duibi span + span {
  color: var(--themeColor4);
}
#product_des .mains .duibi span + span i {
  color: var(--themeColor);
}
#product_des .mains .tooltip {
  position: fixed;
  z-index: 99999;
  transition: all 0.1s;
  padding: 6px 10px;
  background-color: #e7f4de;
  border: 1px solid var(--themeColor);
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--themeColor);
  display: none;
  max-width: 250px;
  word-wrap: break-word;
}
#product_des .mains .imgView {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 987654322;
  background-color: #000;
  display: none;
}
#product_des .mains .imgView img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* 技术与支持 */
#support .sxl-page {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
#support .sxl-page .sxl-page-slide {
  /* banner */
}
#support .sxl-page .sxl-page-slide main {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
#support .sxl-page .sxl-page-slide main .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: var(--glup) 0;
}
#support .sxl-page .sxl-page-slide main .top .ti .en {
  font-size: 36px;
  color: #DCDCDC;
}
#support .sxl-page .sxl-page-slide main .top .ti h3 {
  font-size: 36px;
}
#support .sxl-page .sxl-page-slide main .top .page_num {
  font-weight: 900;
  font-size: 16px;
  color: #999;
  display: flex;
  align-items: center;
}
#support .sxl-page .sxl-page-slide main .top .page_num span {
  font-size: 20px;
  color: #333;
}
#support .sxl-page .sxl-page-slide main .top .page_num::after {
  content: "";
  width: 60px;
  height: 1px;
  background-image: var(--themeLinearGradient);
  margin-left: 3px;
}
#support .sxl-page .sxl-page-slide main .main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: center;
}
#support .sxl-page .sxl-page-slide main .main .item {
  position: relative;
}
#support .sxl-page .sxl-page-slide main .main .item img {
  width: 100%;
}
#support .sxl-page .sxl-page-slide main .main .item .bt {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  height: var(--glup);
  overflow: hidden;
}
#support .sxl-page .sxl-page-slide main .main .item .bt .name {
  width: 80%;
  font-weight: 900;
  color: #fff;
  font-size: 24px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: left 0.5s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#support .sxl-page .sxl-page-slide main .main .item .bt .iconfont {
  width: 80px;
  line-height: 40px;
  border-radius: 23px;
  text-align: center;
  color: #fff;
  border: 1px solid #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 100%;
  transition: left 0.5s;
}
#support .sxl-page .sxl-page-slide main .main .item .bt::before {
  content: "";
  width: 0;
  height: 100%;
  background-image: var(--themeLinearGradient);
  position: absolute;
  right: 0;
  top: 0;
  transition: width 0.5s;
}
#support .sxl-page .sxl-page-slide main .main .item:hover .bt::before {
  width: 100%;
}
#support .sxl-page .sxl-page-slide main .main .item:hover .bt .name {
  left: 7%;
  transform: translate(0, -50%);
}
#support .sxl-page .sxl-page-slide main .main .item:hover .bt .iconfont {
  left: 70%;
}
#support .sxl-page .sxl-page-slide main .main .item:nth-child(even) {
  margin-top: 80px;
}
#support .sxl-page .sxl-page-slide main .main .item:nth-child(0) {
  animation-delay: calc((0 - 1) * 0.1s);
}
#support .sxl-page .sxl-page-slide main .main .item:nth-child(1) {
  animation-delay: calc((1 - 1) * 0.1s);
}
#support .sxl-page .sxl-page-slide main .main .item:nth-child(2) {
  animation-delay: calc((2 - 1) * 0.1s);
}
#support .sxl-page .sxl-page-slide main .main .item:nth-child(3) {
  animation-delay: calc((3 - 1) * 0.1s);
}
#support .sxl-page .sxl-page-slide main .main .item:nth-child(4) {
  animation-delay: calc((4 - 1) * 0.1s);
}
#support .sxl-page .sxl-page-slide:nth-child(odd) {
  background-color: #F6F6F6;
}
#support .sxl-page .sxl-page-slide .banner {
  position: relative;
}
#support .sxl-page .sxl-page-slide .banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#support .sxl-page .sxl-page-slide .banner .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#support .sxl-page .sxl-page-slide .banner .text h1 {
  font-size: 62px;
  line-height: 1;
}
#support .sxl-page .sxl-page-slide .banner .text .en {
  font-size: 26px;
  margin: 16px auto 28px;
}
#support .sxl-page .sxl-page-slide .banner .text span {
  font-size: 32px;
}
#support .sxl-page .sxl-page-slide .banner .text > *:nth-child(0) {
  animation-delay: calc((0 - 1) * 0.1s);
}
#support .sxl-page .sxl-page-slide .banner .text > *:nth-child(1) {
  animation-delay: calc((1 - 1) * 0.1s);
}
#support .sxl-page .sxl-page-slide .banner .text > *:nth-child(2) {
  animation-delay: calc((2 - 1) * 0.1s);
}
#support .sxl-page .sxl-page-slide .banner .text > *:nth-child(3) {
  animation-delay: calc((3 - 1) * 0.1s);
}
#support .sxl-page .sxl-page-slide .banner .text > *:nth-child(4) {
  animation-delay: calc((4 - 1) * 0.1s);
}
#support .sxl-page .sxl-page-slide .banner .tip {
  position: absolute;
  bottom: 0;
  z-index: 2;
  right: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
#support .sxl-page .sxl-page-slide .banner .tip .iconfont {
  color: #ffffff;
  font-size: 30px;
  animation: dou 0.5s infinite alternate-reverse;
}
@keyframes dou {
  100% {
    transform: translateY(3px);
  }
}
#support .sxl-page .sxl-page-slide .banner .tip div {
  width: 1px;
  height: 100px;
  background-color: #FFFFFF66;
  margin-top: 30px;
  position: relative;
}
#support .sxl-page .sxl-page-slide .banner .tip div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 40%;
  background-image: var(--themeLinearGradient2);
}
/* 技术与支持详情 */
.ongs_warp {
  padding-top: calc(var(--glup) * 3);
  background-image: url(../img/support_des_bg1.png);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}
.ongs_warp .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ongs_warp .container .l {
  flex: 1;
  margin-right: calc(var(--glup) * 1.84);
}
.ongs_warp .container .l h2 {
  font-size: 36px;
}
.ongs_warp .container .l p {
  margin: 30px 0;
  color: #666666;
  line-height: 2.25;
  font-size: 20px;
}
.ongs_warp .container .l p:not(:first-of-type) {
  margin-top: 0;
}
.ongs_warp .container .r {
  width: 40%;
  transform: translateY(calc(var(--glup) * 0.6));
}
.ongs_warp .container .r img {
  width: 100%;
}
/* 细化分类 */
.class {
  padding: var(--glup) 0;
  background-image: url(../img/sup_class_bg.png);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}
.class .l .en {
  color: #DCDCDC;
  font-size: 36px;
}
.class .l h2 {
  margin-top: calc(var(--glup) * 0.15);
  margin-bottom: calc(var(--glup) * 0.6);
  font-size: 36px;
}
.class .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(var(--glup) * 0.35);
}
.class .list .item {
  position: relative;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
}
.class .list .item img {
  width: 100%;
  transition: all 0.4s;
}
.class .list .item span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-weight: 800;
  font-size: 24px;
  text-align: center;
}
.class .list .item:hover img {
  transform: scale(1.1);
}
.ongs_warp + .xg_product {
  padding-top: calc(var(--glup) * 1.5);
}
/* 相关产品 */
.xg_product {
  padding: var(--glup) 0;
  padding-left: var(--container_margin);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.xg_product .l .en {
  color: #DCDCDC;
  font-size: 36px;
}
.xg_product .l h2 {
  margin-top: 20px;
  margin-bottom: 60px;
  font-size: 36px;
}
.xg_product .l div {
  display: flex;
}
.xg_product .l div .iconfont {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--themeColor);
  border-radius: 50%;
  border: 1px solid var(--themeColor);
  width: 48px;
  height: 48px;
  cursor: pointer;
}
.xg_product .l div .iconfont:first-child {
  margin-right: 10px;
}
.xg_product .l div .iconfont:hover {
  background-image: var(--themeLinearGradient);
  color: #fff;
}
.xg_product .swiper {
  width: 60%;
  overflow: hidden;
}
.xg_product .swiper .swiper-slide .slider {
  padding: 40px;
  background-color: #F3F3F3;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid transparent;
  transition: all 0.3s;
}
.xg_product .swiper .swiper-slide .slider .top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.xg_product .swiper .swiper-slide .slider .top .names .cn {
  font-size: 24px;
}
.xg_product .swiper .swiper-slide .slider .top .names .en {
  font-size: 14px;
  color: #666666;
}
.xg_product .swiper .swiper-slide .slider .top .iconfont {
  width: calc(var(--glup) * 0.8);
  line-height: calc(var(--glup) * 0.4);
  border-radius: 23px;
  text-align: center;
  color: var(--themeColor);
  border: 1px solid var(--themeColor);
  display: block;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s;
}
.xg_product .swiper .swiper-slide .slider .img {
  width: 70%;
  margin-top: 100px;
  position: relative;
}
.xg_product .swiper .swiper-slide .slider .img img {
  width: 100%;
}
.xg_product .swiper .swiper-slide .slider .img svg {
  position: absolute;
  top: -10%;
  left: -10%;
  z-index: -1;
}
.xg_product .swiper .swiper-slide:hover .slider {
  background-color: transparent;
  border: 1px solid;
  border-image: var(--themeLinearGradient) 1;
}
.xg_product .swiper .swiper-slide:hover .slider .top .iconfont {
  opacity: 1;
}
.xg_product.pt178 {
  padding-top: calc(var(--glup) * 1.78);
}
/* 新闻 */
#new .titles {
  margin-left: var(--container_margin);
  margin-top: var(--glup);
}
#new .titles .en {
  font-size: 36px;
  color: #666;
}
#new .titles .cn {
  font-size: 36px;
}
#new .newList {
  margin-top: calc(var(--glup) * 0.7);
  margin-bottom: calc(var(--glup) * 0.5);
}
#new .newList .item {
  display: block;
  transition: background 0.3s;
}
#new .newList .item .container {
  display: flex;
  justify-content: space-between;
  padding: calc(var(--glup) * 0.7) 0;
  border-bottom: 1px solid #DEDEDE;
}
#new .newList .item .container .l {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#new .newList .item .container .l .date {
  font-size: 24px;
  font-weight: 600;
}
#new .newList .item .container .l h5 {
  width: 100%;
  font-size: 22px;
}
#new .newList .item .container .l p {
  width: 100%;
  color: #666666;
}
#new .newList .item .container .l .btn {
  margin-bottom: 0;
}
#new .newList .item .container .r {
  width: 22%;
}
#new .newList .item .container .r img {
  width: 100%;
}
#new .newList .item:hover {
  background-color: #F5F5F5;
}
/* 新闻详情 */
#new_des {
  background-color: #F5F5F5;
}
#new_des .main {
  display: flex;
  margin-top: var(--glup);
  margin-bottom: var(--glup);
}
#new_des .main .l {
  width: 70%;
  background-color: #ffffff;
  padding: calc(var(--glup) * 0.6) calc(var(--glup) * 1.1);
  position: relative;
}
#new_des .main .l::before {
  content: "";
  width: 100%;
  height: 16px;
  position: absolute;
  left: 0;
  top: 0;
  background-image: var(--themeLinearGradient);
}
#new_des .main .l .title {
  margin-left: calc(var(--glup) * 1.4);
  font-size: 28px;
}
#new_des .main .l .date {
  position: absolute;
  left: calc(var(--glup) * 1.1);
  top: 0;
  background-color: var(--themeColor);
  color: #fff;
  padding: 35px 15px 20px;
  text-align: center;
}
#new_des .main .l .date .ms {
  font-size: 20px;
  font-weight: 600;
}
#new_des .main .l .date .year {
  font-size: 14px;
  opacity: 0.8;
}
#new_des .main .l .rich {
  margin-top: calc(var(--glup) * 0.7);
  padding: calc(var(--glup) * 0.5) 0 calc(var(--glup) * 0.6);
  border-top: 1px solid #F5F5F5;
  border-bottom: 1px solid #F5F5F5;
}
#new_des .main .l .rich p {
  line-height: 2;
  color: #666;
}
#new_des .main .l .bts {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: calc(var(--glup) * 0.35);
}
#new_des .main .l .bts .le a {
  display: block;
  line-height: 2;
}
#new_des .main .l .bts .le a span {
  transition: color 0.4s;
}
#new_des .main .l .bts .le a:hover span {
  color: var(--themeColor);
}
#new_des .main .l .bts .ri {
  margin-top: 10px;
}
#new_des .main .l .bts .ri .btns {
  padding: 10px 33px;
  border-radius: 46px;
  border: 1px solid var(--themeColor);
  background-image: var(--themeLinearGradient);
  color: #ffffff;
  cursor: pointer;
}
#new_des .main .r {
  flex: 1;
  margin-left: calc(var(--glup) * 0.4);
}
#new_des .main .r > div {
  position: sticky;
  top: 130px;
}
#new_des .main .r a {
  display: block;
  margin-bottom: 25px;
  padding: calc(var(--glup) * 0.45) calc(var(--glup) * 0.4);
  background-color: #ffffff;
  position: relative;
}
#new_des .main .r a .date {
  margin-bottom: calc(var(--glup) * 0.24);
  padding-bottom: calc(var(--glup) * 0.24);
  border-bottom: 1px solid #EEEEEE;
  font-size: 20px;
  font-weight: 600;
}
#new_des .main .r a h6 {
  font-size: 20px;
  margin-bottom: calc(var(--glup) * 0.24);
}
#new_des .main .r a p {
  color: #666;
  line-height: 2;
}
#new_des .main .r a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background-image: var(--themeLinearGradient);
  transition: width 0.5s;
}
#new_des .main .r a:hover::after {
  width: 100%;
  left: 0;
}
/* 加入恒拓 */
#join_sxl .titles {
  padding: var(--glup) 0 var(--glup);
  text-align: center;
}
#join_sxl .titles .en {
  color: #C1C1C1;
  font-size: 36px;
  font-weight: 900;
}
#join_sxl .titles .cn {
  font-size: 36px;
  font-weight: 900;
}
#join_sxl .link {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(var(--glup) * 0.35);
}
#join_sxl .link a {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
#join_sxl .link a img {
  width: 100%;
  transition: all 0.3s;
}
#join_sxl .link a div {
  position: absolute;
  top: 50%;
  left: var(--glup);
  transform: translateY(-50%);
  color: #fff;
}
#join_sxl .link a div h4 {
  font-size: 32px;
  margin-bottom: 20px;
}
#join_sxl .link a div span {
  font-size: 20px;
}
#join_sxl .link a div span.ic::after {
  content: "\e634";
  font-family: "iconfont";
  margin-left: 10px;
}
#join_sxl .link a:hover img {
  transform: scale(1.1);
}
#join_sxl img.container {
  margin-bottom: var(--glup);
  display: block;
}
/* 加入我们 */
#join .main {
  margin-bottom: var(--glup);
}
#join .main .titles {
  margin-top: var(--glup);
  margin-bottom: calc(var(--glup) * 0.7);
}
#join .main .titles .en {
  font-size: 36px;
  color: #666;
}
#join .main .titles .cn {
  font-size: 36px;
}
#join .main .list .item .head {
  padding: calc(var(--glup) * 0.33) calc(var(--glup) * 0.57);
  display: flex;
  justify-content: space-between;
  border: 1px solid #e1e1e1;
  cursor: pointer;
}
#join .main .list .item .head div {
  width: 5em;
}
#join .main .list .item .head .name {
  width: 13em;
  margin-right: calc(var(--glup) * 0.3);
}
#join .main .list .item .head div:nth-last-child(2) {
  width: 8em;
}
#join .main .list .item .head div:last-child {
  color: var(--themeColor);
}
#join .main .list .item .head:hover {
  border: 1px solid;
  border-image: var(--themeLinearGradient) 1;
}
#join .main .list .item .head.active {
  background-image: var(--themeLinearGradient);
  color: #fff !important;
}
#join .main .list .item .des {
  display: none;
  padding: calc(var(--glup) * 0.6);
  box-shadow: 0 2px 12px #00000012;
  background-color: #ffffff;
}
#join .main .list .item .des h4 {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 20px;
  line-height: 1;
}
#join .main .list .item .des ul {
  color: #666666;
  line-height: 2;
  margin-bottom: 50px;
}
#join .main .list .item .des a {
  color: var(--themeColor);
}
#join .main .list .item + .item {
  margin-top: 30px;
}
/* 联系我们 */
#contact {
  /* 全国营销网络 */
  /* 拜访我/一般咨询/产品与服务咨询相关 */
  /* 代理商招募 */
  /* 销售平台 */
}
#contact .main {
  background-color: #F8FCFF;
}
#contact .main .titles {
  padding-top: calc(var(--glup) * 0.6);
}
#contact .main .titles .en {
  color: #C1C1C1;
  font-size: 36px;
  font-weight: 900;
}
#contact .main .titles .cn {
  font-size: 36px;
  font-weight: 900;
}
#contact .main h3,
#contact .main p {
  text-align: center;
}
#contact .main h3 {
  margin-top: var(--glup);
  font-size: 30px;
}
#contact .main p {
  color: #666666;
  margin: calc(var(--glup) * 0.25) auto 0;
  padding: 0 15px;
}
#contact .main #chinaChart {
  width: 100%;
  height: 800px;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  position: relative;
}
#contact .main #chinaChart canvas {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  user-select: none;
}
#contact .main #chinaChart .formatterRich {
  padding: calc(var(--glup) * 0.22) calc(var(--glup) * 0.27);
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 10px;
}
#contact .main #chinaChart .formatterRich .titless {
  font-size: 20px;
  font-weight: 900;
  color: var(--themeColor);
  padding-bottom: 15px;
  margin-top: 0;
  border-bottom: 1px solid #eeeeee;
  margin-bottom: 5px;
  text-align: left;
}
#contact .main #chinaChart .formatterRich .des {
  text-align: left;
  line-height: 2;
  font-size: 14px;
  color: #999999;
}
#contact .bfw,
#contact .ybsx,
#contact .cpfw {
  margin-bottom: var(--glup);
}
#contact .bfw .titles,
#contact .ybsx .titles,
#contact .cpfw .titles {
  padding: var(--glup) 0 calc(var(--glup) * 0.8);
}
#contact .bfw .titles .en,
#contact .ybsx .titles .en,
#contact .cpfw .titles .en {
  color: #C1C1C1;
  font-size: 36px;
  font-weight: 900;
}
#contact .bfw .titles .cn,
#contact .ybsx .titles .cn,
#contact .cpfw .titles .cn {
  font-size: 36px;
  font-weight: 900;
}
#contact .bfw:not(.bfw),
#contact .ybsx:not(.bfw),
#contact .cpfw:not(.bfw) {
  border-top: 1px solid rgba(222, 222, 222, 0.7);
}
#contact .bfw ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(var(--glup) * 0.8);
}
#contact .bfw ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-image: linear-gradient(to bottom, #EFF7FF, #ffffff);
  padding: calc(var(--glup) * 0.4);
  border-radius: 8px;
  border: 2px solid #F0F4F9;
}
#contact .bfw ul li .left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-right: 20px;
}
#contact .bfw ul li .left h4 {
  font-size: 24px;
}
#contact .bfw ul li .left a {
  display: block;
}
#contact .bfw ul li .left div,
#contact .bfw ul li .left a {
  color: #666666;
}
#contact .bfw ul li .right {
  border: 1px solid var(--themeColor);
  border-radius: 8px;
}
#contact .bfw ul li .right img {
  border-radius: 8px;
  display: block;
  transform: translate(-10px, -10px);
}
#contact .ybsx .list,
#contact .cpfw .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(var(--glup) * 0.35);
}
#contact .ybsx .list a,
#contact .cpfw .list a {
  background-color: #EFF7FF;
  border-radius: 8px;
  overflow: hidden;
  padding: calc(var(--glup) * 0.5);
  position: relative;
  transition: all 0.3s;
}
#contact .ybsx .list a h4,
#contact .cpfw .list a h4 {
  font-size: 24px;
  position: relative;
  z-index: 2;
}
#contact .ybsx .list a p,
#contact .cpfw .list a p {
  color: #666666;
  margin-top: calc(var(--glup) * 0.4);
  position: relative;
  z-index: 2;
}
#contact .ybsx .list a:hover,
#contact .cpfw .list a:hover {
  background-color: var(--themeColor);
}
#contact .ybsx .list a:hover h4,
#contact .cpfw .list a:hover h4,
#contact .ybsx .list a:hover p,
#contact .cpfw .list a:hover p {
  color: #ffffff;
}
#contact .ybsx .list a:hover::before,
#contact .cpfw .list a:hover::before {
  background-color: #F1F1F1;
}
#contact .ybsx .list a:hover::after,
#contact .cpfw .list a:hover::after {
  background-color: var(--themeColor);
}
#contact .ybsx .list a::after,
#contact .cpfw .list a::after,
#contact .ybsx .list a::before,
#contact .cpfw .list a::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  transition: all 0.3s;
}
#contact .ybsx .list a::before,
#contact .cpfw .list a::before {
  width: calc(var(--glup) * 2.76);
  height: calc(var(--glup) * 2.76);
  right: calc(var(--glup) * -1.3);
  bottom: calc(var(--glup) * -1.3);
  opacity: 0.4;
  border: 1px solid #C4EEFF;
}
#contact .ybsx .list a::after,
#contact .cpfw .list a::after {
  width: calc(var(--glup) * 2.12);
  height: calc(var(--glup) * 2.12);
  right: calc(var(--glup) * -1);
  bottom: calc(var(--glup) * -1);
  border: 1px solid #C4EEFF55;
}
#contact .recruitment {
  background-image: url(../img/recruitment.jpg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: top left;
  background-color: #f2f2f2;
  padding: calc(var(--glup) * 0.75) 0 calc(var(--glup) * 1.3);
}
#contact .recruitment .titles .en {
  color: #C1C1C1;
  font-size: 36px;
  font-weight: 900;
}
#contact .recruitment .titles .cn {
  font-size: 36px;
  font-weight: 900;
}
#contact .recruitment .conts {
  display: flex;
  justify-content: space-between;
  margin-top: var(--glup);
}
#contact .recruitment .conts .left {
  margin-top: var(--glup);
  border-right: 1px dashed;
  border-image: linear-gradient(360deg, var(--themeColor), var(--themeColor)) 1 1;
  height: max-content;
  padding: calc(var(--glup) * 0.7) 0;
}
#contact .recruitment .conts .left .item {
  display: flex;
  align-items: center;
  font-size: 18px;
  padding-right: var(--glup);
  position: relative;
  cursor: pointer;
}
#contact .recruitment .conts .left .item .iconfont {
  color: #666666;
  font-size: 28px;
  position: absolute;
  right: calc(-0.5em - 1px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 50%;
  backdrop-filter: blur(30px);
}
#contact .recruitment .conts .left .item + .item {
  margin-top: var(--glup);
}
#contact .recruitment .conts .left .item.active {
  font-weight: 900;
  color: var(--themeColor);
}
#contact .recruitment .conts .left .item.active .iconfont {
  right: -37px;
  width: 74px;
  height: 74px;
  color: var(--themeColor);
  border-color: var(--themeColor);
}
#contact .recruitment .conts .right {
  width: 76%;
}
#contact .recruitment .conts .right .ul {
  width: 100%;
  display: none;
}
#contact .recruitment .conts .right .ul ul {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
#contact .recruitment .conts .right .ul ul li {
  padding: calc(var(--glup) * 0.45) calc(var(--glup) * 0.35);
  background-color: #ffffff;
  border: 1px solid var(--themeColor);
  display: flex;
  transition: all 0.4s;
}
#contact .recruitment .conts .right .ul ul li .img {
  backdrop-filter: blur(30px);
}
#contact .recruitment .conts .right .ul ul li .text {
  margin-top: calc(var(--glup) * 0.17);
  margin-left: calc(var(--glup) * 0.3);
}
#contact .recruitment .conts .right .ul ul li .text .t {
  margin-bottom: calc(var(--glup) * 0.22);
  font-size: 24px;
}
#contact .recruitment .conts .right .ul ul li .text p {
  line-height: 1.8;
}
#contact .recruitment .conts .right .ul ul li:hover {
  background-color: var(--themeColor);
  color: #ffffff;
}
#contact .recruitment .conts .right .ul.active {
  display: block;
}
#contact .recruitment .conts .right form {
  display: none;
  padding: 0 10%;
}
#contact .recruitment .conts .right form .row {
  display: flex;
}
#contact .recruitment .conts .right form .row .item {
  flex: 1;
}
#contact .recruitment .conts .right form .row .item .label {
  font-size: 18px;
  margin-bottom: calc(var(--glup) * 0.18);
  position: relative;
  width: max-content;
}
#contact .recruitment .conts .right form .row .item .label::after {
  color: red;
  position: absolute;
  right: -7px;
  top: -7px;
}
#contact .recruitment .conts .right form .row .item .input {
  width: 100%;
}
#contact .recruitment .conts .right form .row .item .input select,
#contact .recruitment .conts .right form .row .item .input textarea,
#contact .recruitment .conts .right form .row .item .input input {
  border-radius: 8px;
  border: 1px solid #E5E5E5;
  width: 100%;
  padding: 15px 20px;
  background-color: #ffffff;
}
#contact .recruitment .conts .right form .row .item .input img {
  width: calc(var(--glup) * 1.6);
}
#contact .recruitment .conts .right form .row .item .btn {
  width: max-content;
  border-color: var(--themeColor);
  cursor: pointer;
  margin-bottom: 0;
}
#contact .recruitment .conts .right form .row .item .btn span {
  position: relative;
  z-index: 2;
}
#contact .recruitment .conts .right form .row .item .btn::after {
  background-image: var(--themeLinearGradient);
}
#contact .recruitment .conts .right form .row .item.req .label::after {
  content: "*";
}
#contact .recruitment .conts .right form .row .item:first-child {
  margin-right: calc(var(--glup) * 0.25);
}
#contact .recruitment .conts .right form .row .item:last-child {
  margin-left: calc(var(--glup) * 0.25);
}
#contact .recruitment .conts .right form .row .item:first-child:last-child {
  margin: 0;
}
#contact .recruitment .conts .right form .row + .row {
  margin-top: calc(var(--glup) * 0.5);
}
#contact .recruitment .conts .right form.active {
  display: block;
}
#contact #xs {
  background-color: #F7F8FA;
  padding-bottom: var(--glup);
}
#contact #xs .titles {
  text-align: center;
  padding: calc(var(--glup) * 0.7) 0 var(--glup);
}
#contact #xs .titles .en {
  color: #C1C1C1;
  font-size: 36px;
  font-weight: 900;
}
#contact #xs .titles .cn {
  font-size: 36px;
  font-weight: 900;
}
#contact #xs .list {
  display: grid;
  grid-template-columns: repeat(3, calc(var(--glup) * 3));
  gap: var(--glup);
  justify-content: center;
}
#contact #xs .list a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: calc(var(--glup) * 3);
  overflow: hidden;
  padding: calc(var(--glup) * 0.3) 0;
  border: 1px solid var(--themeColor);
  border-radius: 4px;
  background-color: #ffffff;
}
#contact #xs .list a img {
  width: 48px;
}
#contact #xs .list a span {
  margin-left: 10px;
  font-size: 24px;
}
#contact #xs .list a p {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 24px;
  color: #fff;
  background-color: var(--themeColor);
  transition: top 0.4s;
}
#contact #xs .list a:hover p {
  top: 0;
}
/* 搜索结果 */
#search .conts {
  margin: var(--glup) auto;
}
#search .conts .tab a {
  font-size: 20px;
  color: #666666;
  margin-right: calc(var(--glup) * 0.4);
}
#search .conts .tab a.active {
  color: var(--themeColor);
  border-bottom: 1px solid var(--themeColor);
}
#search .conts h4 {
  margin: calc(var(--glup) * 0.8) 0 calc(var(--glup) * 0.4);
  font-size: 32px;
}
#search .conts #product .list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
#search .conts #product .list a {
  padding: calc(var(--glup) * 0.4);
  background-color: #F3F3F3;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid transparent;
  transition: all 0.3s;
}
#search .conts #product .list a .top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#search .conts #product .list a .top .names .cn {
  font-size: 24px;
}
#search .conts #product .list a .top .names .en {
  font-size: 14px;
  color: #666666;
}
#search .conts #product .list a .top .iconfont {
  width: 80px;
  line-height: 40px;
  border-radius: 23px;
  text-align: center;
  color: #8CCB61;
  border: 1px solid #8CCB61;
  display: block;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s;
}
#search .conts #product .list a .img {
  width: 70%;
  margin-top: 100px;
  position: relative;
}
#search .conts #product .list a .img img {
  width: 100%;
}
#search .conts #product .list a .img svg {
  position: absolute;
  top: -8%;
  left: -8%;
  z-index: -1;
}
#search .conts #product .list a:hover {
  background-color: transparent;
  border: 1px solid;
  border-image: var(--themeLinearGradient) 1;
}
#search .conts #product .list a:hover .top .iconfont {
  opacity: 1;
}
#search .conts #model .list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
  transition: all 0.3s;
}
#search .conts #model .list a .iconfont {
  width: 54px;
  line-height: 25px;
  border-radius: 23px;
  font-size: 12px;
  text-align: center;
  color: #666666;
  border: 1px solid #666666;
  display: block;
  cursor: pointer;
  transition: all 0.3s;
}
#search .conts #model .list a .iconfont::before {
  transform: scale(0.6);
}
#search .conts #model .list a::after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: 0;
  width: 0;
  height: 1px;
  opacity: 0.5;
  background-image: var(--themeLinearGradient);
  transition: width 0.5s;
}
#search .conts #model .list a:hover {
  color: var(--themeColor);
}
#search .conts #model .list a:hover .iconfont {
  color: var(--themeColor);
  border-color: var(--themeColor);
}
#search .conts #model .list a:hover::after {
  width: 100%;
  left: 0;
}
/* 图文详情 */
#rich_des #page .container {
  padding: var(--glup) 0;
}
#rich_des #page .container .titles {
  margin-bottom: calc(var(--glup) * 0.8);
}
#rich_des #page .container .titles .en {
  color: #C1C1C1;
  font-size: 36px;
  font-weight: 900;
}
#rich_des #page .container .titles .cn {
  font-size: 36px;
  font-weight: 900;
}
/* 恒拓生活 */
#life main {
  background-image: url(../img/life.jpg);
  background-repeat: no-repeat;
  background-position: bottom;
  background-repeat: 100% auto;
}
#life main .titles {
  padding: var(--glup) 0 0;
  text-align: center;
}
#life main .titles .en {
  color: #C1C1C1;
  font-size: 36px;
  font-weight: 900;
}
#life main .titles .cn {
  font-size: 36px;
  font-weight: 900;
}
#life main .su_title {
  padding: 0 20px;
  text-align: center;
  margin: calc(var(--glup) * 0.8) 0;
}
#life main .su_title > p {
  font-size: 32px;
  margin-bottom: calc(var(--glup) * 0.38);
}
#life main .su_title + img {
  display: block;
}
/* 投资者关系 */
#investor .titles {
  padding: var(--glup) 0 var(--glup);
  text-align: center;
}
#investor .titles .en {
  color: #C1C1C1;
  font-size: 36px;
  font-weight: 900;
}
#investor .titles .cn {
  font-size: 36px;
  font-weight: 900;
}
#investor .lx_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(var(--glup) * 0.66);
  margin-bottom: var(--glup);
}
#investor .lx_list a {
  display: block;
  background-image: linear-gradient(to bottom, #EFF7FF, #fff);
  padding: calc(var(--glup) * 0.5);
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #F0F4F9;
  position: relative;
}
#investor .lx_list a p {
  font-size: 18px;
  margin-bottom: 16px;
}
#investor .lx_list a h5 {
  font-size: 24px;
}
#investor .lx_list a img {
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}
#investor .ggao {
  background-image: url(../img/inve_2bg.jpg);
  background-position: bottom center;
  background-size: cover;
  padding-bottom: 1px;
}
#investor .ggao .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 calc(var(--glup) * 0.83);
}
#investor .ggao .container a {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  line-height: calc(var(--glup) * 1.1);
  padding: 0 calc(var(--glup) * 0.68) 0 calc(var(--glup) * 0.36);
  position: relative;
  z-index: 9;
  transition: all 0.4s;
}
#investor .ggao .container a div {
  display: flex;
  width: 85%;
}
#investor .ggao .container a div .iconfont {
  font-size: 22px;
}
#investor .ggao .container a div span {
  margin-left: 10px;
  color: #999999;
  width: 20vw;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#investor .ggao .container a .icon-xiazai {
  display: none;
  font-size: 22px;
}
#investor .ggao .container a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -11;
  transition: all 0.4s;
}
#investor .ggao .container a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
  transition: all 0.4s;
}
#investor .ggao .container a:hover {
  border-color: var(--themeColor);
  color: #fff;
}
#investor .ggao .container a:hover div span {
  color: #fff;
}
#investor .ggao .container a:hover > span {
  display: none;
}
#investor .ggao .container a:hover > .icon-xiazai {
  display: block;
}
#investor .ggao .container a:hover::after {
  background-color: var(--themeColor2);
  transform: translate(-10px, -10px);
}
#investor .ggao .container a:hover::before {
  background-color: var(--themeColor);
}
#investor .ggao .container + .btn {
  display: block;
  margin: var(--glup) auto;
}
#investor .bgao {
  margin-bottom: var(--glup);
}
#investor .bgao .filter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: calc(var(--glup) * 0.5);
  line-height: 50px;
}
#investor .bgao .filter .left {
  display: flex;
}
#investor .bgao .filter .left span {
  color: #999999;
  border: 1px solid #999999;
  border-radius: calc(var(--glup) * 0.28);
  padding: 0 calc(var(--glup) * 0.28);
  line-height: 42px;
  cursor: pointer;
  transition: all 0.3s;
}
#investor .bgao .filter .left span + span {
  margin-left: 20px;
}
#investor .bgao .filter .left span:hover,
#investor .bgao .filter .left span.active {
  background-color: var(--themeColor);
  border-color: var(--themeColor);
  color: #fff;
}
#investor .bgao .filter .right {
  line-height: 50px;
  border-radius: 58px;
  border: 1px solid var(--themeColor2);
  padding: 0 30px;
}
#investor .bgao .filter .right select {
  width: 150px;
  color: var(--themeColor);
}
/* 公司公告 */
#announcement .ggao {
  margin-bottom: var(--glup);
}
#announcement .ggao .titles {
  padding: var(--glup) 0 var(--glup);
  text-align: center;
}
#announcement .ggao .titles .en {
  color: #C1C1C1;
  font-size: 36px;
  font-weight: 900;
}
#announcement .ggao .titles .cn {
  font-size: 36px;
  font-weight: 900;
}
/* 公司治理 */
#process .titles {
  padding: var(--glup) 0 var(--glup);
  text-align: center;
}
#process .titles .en {
  color: #C1C1C1;
  font-size: 36px;
  font-weight: 900;
}
#process .titles .cn {
  font-size: 36px;
  font-weight: 900;
}
#process .pdf_list {
  margin-bottom: var(--glup);
}
/* pdf列表 */
.pdf_list a {
  display: flex;
  border: 1px solid rgba(0, 0, 0, 0.1);
  justify-content: space-between;
  line-height: var(--glup);
  padding: 0 calc(var(--glup) * 0.74) 0 calc(var(--glup) * 0.8);
  transition: all 0.3s;
}
.pdf_list a div {
  display: flex;
}
.pdf_list a div .iconfont {
  font-size: 40px;
}
.pdf_list a div span {
  font-size: 18px;
  margin-left: calc(var(--glup) * 0.5);
  padding-left: calc(var(--glup) * 0.5);
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 50vw;
}
.pdf_list a div span::after {
  content: "";
  width: 1px;
  height: 50%;
  position: absolute;
  left: 0;
  top: 25%;
  background-color: #e8e8e8;
}
.pdf_list a .icon-xiazai {
  font-size: 22px;
}
.pdf_list a + a {
  margin-top: 24px;
}
.pdf_list a:hover {
  color: #fff;
  background-color: var(--themeColor);
  border-color: var(--themeColor);
}
/* 图文跳转列表 */
.rich_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(var(--glup) * 0.35);
  padding: var(--glup) 0;
}
.rich_list a {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.rich_list a img {
  width: 100%;
  transition: all 0.4s;
}
.rich_list a h4 {
  position: absolute;
  border-radius: 8px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  background-color: rgba(0, 0, 0, 0.2);
}
.rich_list a:hover img {
  transform: scale(1.1);
}
/* 分析师名单 */
#anaslyst .titles {
  padding: var(--glup) 0 var(--glup);
  text-align: center;
}
#anaslyst .titles .en {
  color: #C1C1C1;
  font-size: 36px;
  font-weight: 900;
}
#anaslyst .titles .cn {
  font-size: 36px;
  font-weight: 900;
}
#anaslyst .tabel {
  margin-bottom: calc(var(--glup) * 0.5);
}
#anaslyst .tabel .tr {
  padding: 0 calc(var(--glup) * 0.74);
  line-height: var(--glup);
  display: flex;
}
#anaslyst .tabel .tr:first-child {
  background-color: var(--themeColor);
}
#anaslyst .tabel .tr:first-child .td {
  color: #fff;
  font-weight: 800;
}
#anaslyst .tabel .tr:not(:first-child) {
  border-top: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
#anaslyst .tabel .tr .td {
  font-size: 18px;
}
#anaslyst .tabel .tr .td:first-child {
  width: 30%;
}
#anaslyst .tabel .tr .td:last-child {
  flex: 1;
  text-align: right;
}
[v-cloak] {
  display: none;
}
@media (max-width: 1750px) {
  :root {
    --container: 1300px;
    --check_container: 1600px;
    --glup: 90px;
  }
  #home .sxl-page .sxl-page-slide .news ul li {
    padding: calc(var(--glup) * 0.22) calc(var(--glup) * 0.25);
  }
  #home .sxl-page .sxl-page-slide .news ul li:last-child {
    top: 0;
  }
  #about .sxl-page .sxl-page-slide .js .container .right {
    width: 45%;
  }
  #about .sxl-page .sxl-page-slide .history .year_swiper .swiper-slide {
    font-size: 120px;
    padding: 0;
  }
}
/* 123 */
@media (max-width: 1500px) {
  #home .sxl-page .sxl-page-slide .banner .text h1 {
    font-size: 44px;
  }
  .page_banner .text h1 {
    font-size: 44px;
  }
  .page_banner .text .en {
    font-size: 22px;
  }
  .page_banner .text span {
    font-size: 27px;
  }
  #home .sxl-page .sxl-page-slide .news ul {
    gap: 35px;
  }
  #home .sxl-page .sxl-page-slide .news ul a .btm .title,
  #home .sxl-page .sxl-page-slide .news ul li .btm .title {
    font-size: 20px;
  }
}
@media (max-width: 1450px) {
  :root {
    --container: 1100px;
    --check_container: 1350px;
    --glup: 75px;
    --top_height: 100px;
    --top_nav_height: 55px;
  }
  .ongs_warp .container .l {
    margin-right: var(--glup);
  }
  header .nav_container .logo {
    width: 160px;
  }
  header .nav_container .canter {
    width: 70%;
  }
  header .nav_container .canter li:not(:first-child)::after {
    opacity: 0;
  }
  header .nav_container .right a .iconfont span {
    display: none;
  }
  #home .sxl-page .sxl-page-slide .news ul li .date {
    font-size: 26px;
  }
  #home .sxl-page .sxl-page-slide .news ul li .title {
    font-size: 21px;
  }
  #home .sxl-page .sxl-page-slide .news ul li p {
    font-size: 14px;
  }
  #about .sxl-page .sxl-page-slide .history .year_swiper .swiper-slide {
    font-size: 100px;
    padding: 0;
  }
  #product_list .mains .right {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  #new .newList .item .container .r {
    width: 37%;
  }
  header .nav_container .canter li.menu .products .boxss .right .product_list.active,
  header > .nav li.menu .products .boxss .right .product_list {
    gap: calc(var(--glup) * 0.4) calc(var(--glup) * 1.1);
  }
  #search .conts #product .list {
    grid-template-columns: repeat(3, 1fr);
  }
  #home .sxl-page .sxl-page-slide .partner .par_wrap {
    width: 100%;
  }
}
@media (max-width: 1250px) {
  :root {
    --container: 900px;
    --check_container: 1100px;
    --glup: 70px;
  }
  #about .sxl-page .sxl-page-slide .js .container {
    flex-direction: column;
    justify-content: center;
  }
  #about .sxl-page .sxl-page-slide .js .container .left,
  #about .sxl-page .sxl-page-slide .js .container .right {
    width: 100%;
    flex: none;
    margin: 0 !important;
  }
  #about .sxl-page .sxl-page-slide .js .container .left ul {
    grid-template-columns: repeat(4, 1fr);
  }
  #about .sxl-page .sxl-page-slide .js .container .right {
    position: absolute;
    bottom: -120%;
    left: 0;
    width: 100vw;
    z-index: -1;
    opacity: 0.4;
  }
  footer .container .bottom .right li a,
  footer .container .bottom .left a {
    font-size: 14px;
  }
  footer .container .bottom .right li a:first-child {
    font-size: 16px;
  }
  #product .cates {
    display: block;
  }
  #product .cates a {
    margin-bottom: 20px;
  }
  #new_des .main {
    display: block;
  }
  #new_des .main .l {
    width: 100%;
  }
  #new_des .main .r {
    margin-left: 0;
    margin-top: 20px;
  }
  #contact .main {
    display: block;
  }
  #contact .main .left {
    width: 100%;
  }
  #contact .main .right {
    padding-top: 10px;
  }
  #contact .main .right #chinaChart {
    height: 115vw;
  }
  header .nav_container .canter li.menu .products .boxss .right .product_list.active,
  header > .nav li.menu .products .boxss .right .product_list {
    gap: calc(var(--glup) * 0.3) calc(var(--glup) * 1);
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1200px) {
  #product_des .mains .setHead .left_duibi_op {
    position: static;
    display: flex;
    margin-top: 10px;
  }
  #product_des .mains .setHead .left_duibi_op .item {
    line-height: 3.3;
  }
  #product_des .mains .setHead .left_duibi_op .item + .item {
    margin-top: 0;
    margin-left: 10px;
  }
  #contact .bfw ul {
    display: block;
  }
  #contact .bfw ul li .right {
    flex: none;
  }
  #contact .bfw ul li + li {
    margin-top: 20px;
  }
  #contact .ybsx .list,
  #contact .cpfw .list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 980px) {
  :root {
    --container: calc(100vw - 40px);
    --check_container: calc(100vw - 40px);
    --top_height: 60px;
    --glup: 60px;
  }
  .class .list {
    grid-template-columns: repeat(2, 1fr);
  }
  .ongs_warp .ongs .l .iconfont {
    display: none;
  }
  #new_des .main .l .title {
    margin-left: 0;
    text-align: center;
  }
  #new_des .main .l .date {
    margin-top: 10px;
    position: static;
    background-color: transparent;
    color: #333;
    padding: 0;
    text-align: left;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
  }
  #new_des .main .l .date .year {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    color: #000;
  }
  #new_des .main .l .date .year::after {
    content: "-";
  }
  .moblie {
    display: block;
  }
  header {
    display: none;
  }
  #product_list .mains .right a .top .iconfont {
    display: none;
  }
  #product_list .mains .right a .img {
    width: 100%;
  }
  .page_banner .tip {
    display: none;
  }
  #product_des .mains .top {
    padding: 0;
  }
  #product_des .mains .top .img svg {
    display: none;
  }
  #product_des .mains .top .right {
    margin-left: 20px;
  }
  .ongs_warp {
    height: auto;
  }
  .ongs_warp .ongs {
    height: auto;
    padding: 20px 0;
    flex-direction: column-reverse;
  }
  .ongs_warp .ongs .l {
    width: var(--container);
    margin-left: var(--container_margin);
  }
  .ongs_warp .ongs .l h2 {
    margin-top: 20px;
  }
  .ongs_warp .ongs .l p {
    margin: 10px 0;
  }
  .ongs_warp .ongs .r {
    position: static;
    width: var(--container);
    margin: auto;
    margin-left: var(--container_margin);
  }
  .xg_product {
    display: block;
  }
  .xg_product .l h2 {
    margin-bottom: 20px;
  }
  .xg_product .l > div {
    margin-bottom: 20px;
  }
  .xg_product .swiper {
    width: calc(100% - 20px);
  }
  .rich_list {
    grid-template-columns: repeat(2, 1fr);
  }
  #investor .lx_list {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 900px) {
  #home .sxl-page .sxl-page-slide .news ul {
    grid-template-columns: repeat(2, 1fr);
  }
  #home .sxl-page .sxl-page-slide .news ul li:last-child {
    display: none;
  }
  #home .sxl-page .sxl-page-slide .news ul li.active > * {
    color: #333 !important;
    border-color: #333;
  }
  #home .sxl-page .sxl-page-slide .news ul li.active > * .iconfont {
    color: #333;
  }
  #about .sxl-page .sxl-page-slide .culture {
    position: relative;
  }
  #about .sxl-page .sxl-page-slide .culture > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #about .sxl-page .sxl-page-slide .culture .titles {
    position: relative;
    margin: 20px 0;
  }
  #about .sxl-page .sxl-page-slide .culture ul {
    position: relative;
    display: block;
  }
  #about .sxl-page .sxl-page-slide .culture ul li {
    align-items: flex-start;
    padding-left: var(--container_margin);
    margin-bottom: 25px;
  }
  #about .sxl-page .sxl-page-slide .culture ul li span {
    opacity: 1;
    transform: none;
    text-align: left;
    padding: 0;
    margin-top: 10px;
  }
  #about .sxl-page .sxl-page-slide .culture ul li p {
    margin: 5px 0;
  }
  #about .sxl-page .sxl-page-slide .culture ul li h4,
  #about .sxl-page .sxl-page-slide .culture ul li p {
    transform: none;
  }
  #about .sxl-page .sxl-page-slide .culture ul li:hover {
    backdrop-filter: none;
  }
  #about .sxl-page .sxl-page-slide .culture ul li:hover h4,
  #about .sxl-page .sxl-page-slide .culture ul li:hover p,
  #about .sxl-page .sxl-page-slide .culture ul li:hover span {
    transform: none;
    opacity: 1;
  }
  #about .sxl-page .sxl-page-slide .culture ul:hover li:not(:hover) p {
    opacity: 1;
  }
  #search .conts #product .list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 850px) {
  #support .sxl-page .sxl-page-slide main .main {
    grid-template-columns: repeat(2, 1fr);
  }
  #product_des .mains .table_warp table tr th,
  #product_des .mains .table_warp table tr td,
  #product_des .mains .table_warp table tr th:first-child,
  #product_des .mains .table_warp table tr td:first-child {
    width: auto;
  }
}
@media (max-width: 800px) {
  :root {
    --glup: 50px;
  }
  .ongs_warp .container {
    display: block;
  }
  .ongs_warp .container .l {
    margin-right: 0;
  }
  .ongs_warp .container .r {
    width: 100%;
    transform: none;
  }
  #investor .ggao .container {
    grid-template-columns: repeat(1, 1fr);
  }
  #investor .ggao .container a div span {
    width: 70vw;
  }
  #home .sxl-page {
    overflow: auto;
  }
  #home .sxl-page .sxl-page-slide main {
    height: auto;
  }
  #home .sxl-page .sxl-page-slide .banner .text h1 {
    font-size: 50px;
  }
  #home .sxl-page .sxl-page-slide .about p {
    font-size: 18px;
  }
  footer .container .top .r .iconfont {
    width: 100px;
    height: auto;
    border-radius: 0;
    border: none;
  }
  footer .container .top .r .iconfont::before {
    display: none;
  }
  footer .container .top .r .iconfont .er_box {
    width: 100%;
    padding: 5px;
    position: static;
    display: block;
    transform: none;
  }
  footer .container .top .r .iconfont .er_box img {
    width: 100%;
  }
  footer .container .top .r .iconfont .er_box::before {
    display: none;
  }
  footer .container .bottom {
    flex-direction: column;
  }
  footer .container .bottom .right {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    position: relative;
    margin-top: 20px;
  }
  footer .container .bottom .right::after {
    content: "";
    width: 100%;
    height: 1px;
    opacity: 0.4;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--themeLinearGradient);
  }
  footer .container .bottom .right li {
    margin-top: 20px;
    margin-right: 15px;
  }
  #product_list .mains .right {
    grid-template-columns: repeat(1, 1fr);
  }
  #home .sxl-page .sxl-page-slide .product .top .r {
    display: none;
  }
  #about .sxl-page .sxl-page-slide .culture ul li span {
    height: auto;
  }
}
@media (max-width: 700px) {
  #about .sxl-page .sxl-page-slide .js .container .left ul {
    grid-template-columns: repeat(2, 1fr);
  }
  #about .sxl-page .sxl-page-slide .js .container .left ul li .t .num {
    font-size: 70px;
  }
  #new .titles .cn {
    font-size: 18px;
  }
  #new .newList .item .container {
    flex-direction: column-reverse;
  }
  #new .newList .item .container .r,
  #new .newList .item .container .l {
    width: 100%;
  }
  #new .newList .item .container .l .dh_text {
    margin: 10px 0;
  }
  #contact .recruitment {
    height: auto;
  }
  #contact .recruitment .conts .right .ul ul {
    grid-template-columns: repeat(1, 1fr);
  }
  #join_sxl .link {
    grid-template-columns: repeat(1, 1fr);
  }
  #join_sxl .link a div h4 {
    font-size: 25px;
    margin-bottom: 10px;
  }
}
@media (max-width: 650px) {
  #contact .recruitment .titles .en {
    font-size: 16px;
  }
  #contact .recruitment .conts {
    display: block;
    margin-top: 0;
  }
  #contact .recruitment .conts .left {
    border: none;
    display: flex;
    margin-top: 0;
  }
  #contact .recruitment .conts .left .item .iconfont {
    display: none;
  }
  #contact .recruitment .conts .left .item + .item {
    margin-top: 0;
  }
  #contact .recruitment .conts .right {
    width: 100%;
  }
  #contact .recruitment .conts .right form {
    padding: 0;
  }
  #contact .recruitment .conts .right ul.active {
    display: block;
  }
  #contact .recruitment .conts .right ul.active li + li {
    margin-top: 15px;
  }
}
@media (max-width: 600px) {
  #product_list .mains .left {
    display: none;
  }
  #product_list .mains .right {
    margin-left: 0;
  }
  #about .sxl-page .sxl-page-slide .honorary .honor_swiper {
    width: 62vw;
  }
  .page_banner {
    height: 90vw !important;
  }
  .page_banner .text * {
    white-space: nowrap;
  }
  #product_des .mains .top {
    display: block;
  }
  #product_des .mains .top .right {
    margin-top: 0;
    margin-left: 0;
  }
  #product_des .mains .top .img {
    width: 100%;
  }
  #new_des .main .l {
    padding: 30px 10px;
  }
  #new_des .main .l .title {
    font-size: 20px;
  }
  #new_des .main .l .rich {
    margin-top: 20px;
  }
  #new_des .main .l .bts {
    display: block;
  }
  #new_des .main .l .bts .ri {
    margin-top: 20px;
  }
  #join .list .item .head {
    flex-wrap: wrap;
  }
  #join .list .item .head div {
    white-space: nowrap;
    margin-top: 10px;
  }
  #join .list .item .head div + div {
    margin-left: 15px;
  }
  .pages .iconfont:last-child,
  .pages .iconfont:first-child {
    display: none;
  }
  #contact .ybsx .list,
  #contact .cpfw .list {
    grid-template-columns: repeat(1, 1fr);
  }
  #contact .main #chinaChart {
    height: 100vw;
  }
}
@media (max-width: 500px) {
  :root {
    --glup: 40px;
  }
  .class .list {
    grid-template-columns: repeat(1, 1fr);
  }
  #investor .ggao .container a div span {
    width: 50vw;
  }
  .rich_list {
    grid-template-columns: repeat(1, 1fr);
  }
  #home .sxl-page .sxl-page-slide .banner .swiper .swiper-slide img {
    height: 80vw;
  }
  #home .sxl-page .sxl-page-slide .banner .text h1 {
    font-size: 30px;
  }
  #home .sxl-page .sxl-page-slide .banner .text p {
    margin-right: var(--container_margin);
  }
  #home .sxl-page .sxl-page-slide .banner .tip {
    display: none;
  }
  #home .sxl-page .sxl-page-slide .product .bottom .left {
    flex-direction: column-reverse;
    padding-top: 0;
    padding-right: var(--container_margin);
  }
  #home .sxl-page .sxl-page-slide .product .bottom .left .l {
    margin-right: 0;
  }
  #home .sxl-page .sxl-page-slide .product .bottom .left .r {
    width: 100%;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    margin-bottom: 20px;
  }
  #home .sxl-page .sxl-page-slide .about .title .en,
  #home .sxl-page .sxl-page-slide .about .title .cn {
    font-size: 25px;
  }
  #home .sxl-page .sxl-page-slide .about p {
    font-size: 15px;
  }
  #home .sxl-page .sxl-page-slide .about .btn {
    margin-bottom: 20px;
  }
  #home .sxl-page .sxl-page-slide .about ul {
    position: static;
    transform: none;
    margin-bottom: 10px;
    flex-wrap: wrap;
  }
  #home .sxl-page .sxl-page-slide .about ul li {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #home .sxl-page .sxl-page-slide .news ul {
    grid-template-columns: repeat(1, 1fr);
    padding-bottom: 20px;
  }
  #home .sxl-page .sxl-page-slide .news ul li {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px;
  }
  #about .sxl-page .sxl-page-slide .history {
    padding-bottom: 20px;
  }
  #about .sxl-page .sxl-page-slide .history .his_swiper::after {
    display: none;
  }
  #about .sxl-page .sxl-page-slide .history .year_swiper .swiper-slide {
    font-size: 40px;
    opacity: 1;
  }
  #about .sxl-page .sxl-page-slide .history .his_swiper .swiper-slide .des_swiper .swiper-slide .item,
  #about .sxl-page .sxl-page-slide .history .his_swiper .swiper-slide .des_swiper .swiper-slide .item {
    margin-left: 0;
    padding-bottom: 0;
    padding-top: 0;
    position: static !important;
    transform: none !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  #about .sxl-page .sxl-page-slide .history .his_swiper .swiper-slide .des_swiper .swiper-slide .item .m,
  #about .sxl-page .sxl-page-slide .history .his_swiper .swiper-slide .des_swiper .swiper-slide .item .m,
  #about .sxl-page .sxl-page-slide .history .his_swiper .swiper-slide .des_swiper .swiper-slide .item p,
  #about .sxl-page .sxl-page-slide .history .his_swiper .swiper-slide .des_swiper .swiper-slide .item p {
    transform: none !important;
  }
  #about .sxl-page .sxl-page-slide .history .his_swiper .swiper-slide .des_swiper .swiper-slide .item .before,
  #about .sxl-page .sxl-page-slide .history .his_swiper .swiper-slide .des_swiper .swiper-slide .item .before,
  #about .sxl-page .sxl-page-slide .history .his_swiper .swiper-slide .des_swiper .swiper-slide .item::after,
  #about .sxl-page .sxl-page-slide .history .his_swiper .swiper-slide .des_swiper .swiper-slide .item::after {
    display: none;
  }
  #support .sxl-page .sxl-page-slide main .top .page_num {
    display: none;
  }
  footer .container .top {
    flex-direction: column;
    align-items: flex-start;
  }
  footer .container .top .logo {
    width: 150px;
  }
  footer .container .top .r {
    margin-top: 20px;
  }
  footer .su {
    padding: 15px 0;
    line-height: 1.7;
  }
  footer .su .toTop {
    display: none;
  }
  .page_banner .text span {
    display: none;
  }
  .page_banner .text h1 {
    font-size: 40px;
  }
  .page_banner .text .en {
    margin-bottom: 0;
    font-size: 20px;
  }
  #product .cates a {
    flex-direction: column-reverse;
  }
  #product .cates a .left {
    width: 100%;
  }
  #product .cates a .img {
    margin-left: 0;
  }
  #product .cates a .img svg {
    display: none;
  }
  #contact .recruitment .conts .right form .row {
    display: block;
  }
  #contact .recruitment .conts .right form .row .item .input img {
    width: 150px;
  }
  #contact .recruitment .conts .right form .row .item:first-child {
    margin-right: 0;
  }
  #contact .recruitment .conts .right form .row .item:last-child {
    margin-left: 0;
    margin-top: 15px;
  }
  #contact #xs .list a span {
    font-size: 20px;
  }
  #contact #xs .list {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 0 var(--container_margin);
  }
  #contact #xs .list a {
    width: 100%;
  }
  #search .conts #product .list {
    grid-template-columns: repeat(1, 1fr);
  }
  #contact .recruitment .conts .right .ul ul li {
    display: block;
  }
  #contact .recruitment .conts .right .ul ul li .text p {
    -webkit-line-clamp: 999;
  }
  #home .sxl-page .sxl-page-slide .home_title .cn,
  #home .sxl-page .sxl-page-slide .home_title .en {
    font-size: 25px;
  }
  .xg_product .l h2 {
    margin-top: 0;
  }
  #contact .main .right h3,
  #contact #xs .titles .cn,
  #contact #xs .titles .en,
  #new .titles .en,
  .xg_product .l h2,
  .xg_product .l .en,
  #support .sxl-page .sxl-page-slide main .top .ti h3,
  #support .sxl-page .sxl-page-slide main .top .ti .en,
  #about .sxl-page .sxl-page-slide .titles h4,
  #about .sxl-page .sxl-page-slide .titles h3,
  #contact .recruitment .titles .cn,
  #contact .recruitment .titles .en,
  #join .main .titles .en,
  #join .main .titles .cn {
    font-size: 25px !important;
  }
  #about .sxl-page .sxl-page-slide .culture ul li h4 {
    font-size: 20px;
  }
  #about .sxl-page .sxl-page-slide .culture ul li p {
    font-size: 18px;
  }
  #about .sxl-page .sxl-page-slide .culture ul li span {
    font-size: 15px;
  }
  #home .sxl-page .sxl-page-slide .product .top {
    border: none;
  }
  #home .sxl-page .sxl-page-slide .partner .par_wrap {
    width: 100%;
  }
  #home .sxl-page .sxl-page-slide .product .bottom .left {
    min-height: auto;
  }
  #home .sxl-page .sxl-page-slide .product .bottom .left .l h2 {
    font-size: 19px;
  }
  #home .sxl-page .sxl-page-slide .product .bottom .left .l p {
    font-size: 17px;
    margin-top: 5px;
  }
  #home .sxl-page .sxl-page-slide .product .bottom .left .l .x {
    display: none;
  }
  #new .newList .item .container .l .date,
  #home .sxl-page .sxl-page-slide .product .bottom .left .l span {
    font-size: 15px;
    margin-top: 10px;
  }
  #home .sxl-page .sxl-page-slide .news ul li .date {
    font-size: 16px;
  }
  #home .sxl-page .sxl-page-slide .news ul li .title {
    font-size: 18px;
    margin: 7px 0;
  }
  #new .newList .item .container .l .btns,
  #product .cates a .left .btn,
  #home .sxl-page .sxl-page-slide .news ul li .btn,
  #home .sxl-page .sxl-page-slide .about .btn {
    padding: 0;
    font-size: 18px;
    background: none;
    color: var(--themeColor);
    text-decoration: underline;
    border: none;
  }
  #new .newList .item .container .l .btns::after,
  #product .cates a .left .btn::after,
  #home .sxl-page .sxl-page-slide .news ul li .btn::after,
  #home .sxl-page .sxl-page-slide .about .btn::after {
    display: none;
  }
  #new .newList .item .container .l .btns .iconfont,
  #product .cates a .left .btn .iconfont,
  #home .sxl-page .sxl-page-slide .news ul li .btn .iconfont,
  #home .sxl-page .sxl-page-slide .about .btn .iconfont {
    display: none;
  }
  #product .cates a {
    padding-bottom: 10px;
  }
  #product .cates a .left h2 {
    font-size: 20px;
  }
  #product .cates a .left p {
    margin-top: 10px;
  }
  #product .cates a .img {
    width: 50%;
  }
  #product .cates a .left .xian {
    display: none;
  }
  .xg_product .swiper .swiper-slide .slider,
  #product_list .mains .right a {
    padding: 20px;
  }
  #support .sxl-page .sxl-page-slide main .main .item .bt .name {
    font-size: 18px;
  }
  #new .newList .item .container .l h5.dh_text {
    margin-bottom: 0;
    margin-top: 5px;
    font-size: 20px;
  }
  #new .newList .item .container .l p.dh_text {
    margin: 5px 0 10px;
  }
  #new .newList .item .container {
    padding-bottom: 10px;
  }
  #search .conts h4 {
    font-size: 24px;
  }
  #product_des .mains .table_warp {
    --h: 60px;
    height: 80vh;
  }
  svg {
    display: none;
  }
  .btn {
    margin-bottom: 0;
  }
  #join .main .list .item .head {
    padding: 0 10px 5px;
  }
  #join .main .list .item .head div {
    width: auto !important;
    font-size: 12px;
  }
  #join .main .list .item .head div:last-child {
    margin-left: 0;
    width: 20vw !important;
  }
  #contact .bfw ul li .left h4 {
    margin-bottom: 10px;
    font-size: 20px;
  }
  #contact .bfw ul li .right {
    display: none;
  }
  .l .en,
  .titles .en {
    font-size: 18px !important;
  }
  .l .en + h2,
  .titles .en + h2,
  .l .en + .cn,
  .titles .en + .cn {
    font-size: 22px !important;
  }
  #home .sxl-page .sxl-page-slide .product .top .l {
    display: block;
  }
  #home .sxl-page .sxl-page-slide .product .top .l ul {
    margin: 10px 0;
  }
  #home .sxl-page .sxl-page-slide .product .top .l ul li {
    width: max-content;
    margin-left: 0;
    margin-right: 10px;
    padding: 4px 10px;
  }
  #home .sxl-page .sxl-page-slide .news ul a .btm .title,
  #home .sxl-page .sxl-page-slide .news ul li .btm .title {
    font-size: 20px;
  }
  #home .sxl-page .sxl-page-slide .news ul a .btm p,
  #home .sxl-page .sxl-page-slide .news ul li .btm p {
    line-height: 1.7;
  }
  .pdf_list a div .iconfont {
    font-size: 30px;
  }
  #life main .su_title p {
    font-size: 24px;
  }
  #home .sxl-page .sxl-page-slide .banner .text h1 {
    font-size: 18px;
  }
}
/* 2023.10.18 */
@media (max-width: 1050px) {
  #support .sxl-page,
  #about .sxl-page,
  #home .sxl-page {
    overflow: auto;
  }
  #support .sxl-page .sxl-page-slide main,
  #about .sxl-page .sxl-page-slide main,
  #home .sxl-page .sxl-page-slide main {
    height: auto;
  }
  #support .sxl-page .sxl-page-slide .js,
  #about .sxl-page .sxl-page-slide .js,
  #home .sxl-page .sxl-page-slide .js {
    padding: 20px 0;
  }
  #support .sxl-page .sxl-page-slide .js .container .left h2,
  #about .sxl-page .sxl-page-slide .js .container .left h2,
  #home .sxl-page .sxl-page-slide .js .container .left h2 {
    font-size: 26px;
  }
  #support .sxl-page .sxl-page-slide .js .container .left .rich,
  #about .sxl-page .sxl-page-slide .js .container .left .rich,
  #home .sxl-page .sxl-page-slide .js .container .left .rich {
    font-size: 14px;
    line-height: 2.2;
  }
  #home .sxl-page .sxl-page-slide .banner .text h1 {
    font-size: 30px;
  }
  #home .sxl-page .sxl-page-slide .about .title {
    margin-top: 10px;
  }
  #home .sxl-page .sxl-page-slide .product .bottom .left {
    margin-bottom: 20px;
  }
  #home .sxl-page .sxl-page-slide .product .bottom .right.active,
  #home .sxl-page .sxl-page-slide .product .bottom .right {
    display: none;
  }
  #home .sxl-page .sxl-page-slide .product .bottom .btnss {
    display: flex;
    top: auto;
    bottom: 20px;
    right: 20px;
  }
  #home .sxl-page .sxl-page-slide .product .bottom .btnss .iconfont + .iconfont {
    margin-top: 0;
    margin-left: 10px;
  }
  #home .sxl-page .sxl-page-slide .about p {
    font-size: 15px;
  }
  #home .sxl-page .sxl-page-slide .about ul {
    bottom: 5%;
  }
  #home .sxl-page .sxl-page-slide .about ul li div .num {
    font-size: 50px;
  }
  #home .sxl-page .sxl-page-slide .about ul li + li::after {
    display: none;
  }
  #home .sxl-page .sxl-page-slide .partner .par_wrap {
    margin: 0 auto var(--glup);
  }
  #home .sxl-page .sxl-page-slide .partner .par_wrap .row .item .changeShow img {
    transform: none;
    filter: none;
  }
  #about .sxl-page .sxl-page-slide .or {
    padding-bottom: 20px;
  }
  #about .sxl-page .sxl-page-slide .history {
    padding-bottom: 100px;
  }
  #about .sxl-page .sxl-page-slide .history .year_swiper .swiper-slide {
    font-size: 80px;
  }
  #about .sxl-page .sxl-page-slide .history .his_swiper {
    width: calc(var(--container) - 100px);
  }
  #about .sxl-page .sxl-page-slide .history .his_swiper .swiper-slide .des_swiper .swiper-slide .b {
    margin-left: calc(var(--container) * 0.05);
  }
  #about .sxl-page .sxl-page-slide .honorary .honor_swiper .swiper-wrapper .swiper-slide img {
    padding: 10px;
  }
  #about .sxl-page .sxl-page-slide .honorary .honor_swiper .swiper-wrapper .swiper-slide.swiper-slide-active + .swiper-slide + .swiper-slide,
  #about .sxl-page .sxl-page-slide .honorary .honor_swiper .swiper-wrapper .swiper-slide.swiper-slide-active + .swiper-slide {
    margin-top: 0;
  }
  #about .sxl-page .sxl-page-slide .honorary .honor_swiper .swiper-wrapper .swiper-slide.swiper-slide-active + .swiper-slide + .swiper-slide img,
  #about .sxl-page .sxl-page-slide .honorary .honor_swiper .swiper-wrapper .swiper-slide.swiper-slide-active + .swiper-slide img {
    background-color: transparent;
  }
  #about .sxl-page .sxl-page-slide .honorary {
    padding-bottom: 20px;
  }
  #support .sxl-page .sxl-page-slide main .main .item:nth-child(even) {
    margin-top: 0;
  }
  #support .sxl-page .sxl-page-slide main .main .item .bt .name {
    white-space: nowrap;
  }
  #support .sxl-page .sxl-page-slide main .main {
    margin-bottom: 20px;
    gap: 20px;
  }
  #home .sxl-page .sxl-page-slide .product .top .r {
    display: none;
  }
  #home .sxl-page .sxl-page-slide .product .bottom .left {
    min-height: auto;
  }
  #home .sxl-page .sxl-page-slide .about {
    padding: 20px var(--container_margin);
    align-items: flex-start;
    text-align: left;
  }
  #home .product .btn {
    margin-bottom: 0;
  }
  #home .sxl-page .sxl-page-slide .news ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 10px;
  }
  #home .sxl-page .sxl-page-slide .news ul a .img,
  #home .sxl-page .sxl-page-slide .news ul li .img {
    transform: none;
  }
  #home .sxl-page .sxl-page-slide .news ul a .btm,
  #home .sxl-page .sxl-page-slide .news ul li .btm {
    transform: none;
    background-color: var(--themeColor2);
  }
  #home .sxl-page .sxl-page-slide .news ul a .btm .title,
  #home .sxl-page .sxl-page-slide .news ul li .btm .title {
    font-size: 20px;
    margin-bottom: 10px;
  }
  #home .sxl-page .sxl-page-slide .news ul a .btm p,
  #home .sxl-page .sxl-page-slide .news ul li .btm p {
    font-size: 14px;
  }
  #home .sxl-page .sxl-page-slide .news ul a .btm .bt,
  #home .sxl-page .sxl-page-slide .news ul li .btm .bt {
    display: none;
  }
  .page_banner .text h1 {
    font-size: 35px;
  }
  .page_banner .text .en {
    font-size: 20px;
  }
  .page_banner .text span {
    font-size: 22px;
  }
  #join_sxl .link a div h4 {
    margin-bottom: 0;
  }
  #about .sxl-page .sxl-page-slide .culture ul li {
    padding-right: var(--container_margin);
  }
  #new .titles .en {
    font-size: 26px;
  }
  #new .titles .cn {
    font-size: 22px;
  }
  #about .sxl-page .sxl-page-slide .js .container .left ul li .t .num {
    font-size: 50px;
  }
  #about .sxl-page .sxl-page-slide .js .container .left ul li p,
  #home .sxl-page .sxl-page-slide .about ul li div:last-child {
    width: calc(var(--container) / 4.5);
  }
  #about .sxl-page .sxl-page-slide .js .container .left ul li p {
    margin-left: 0;
    margin-right: 0;
  }
  .class .l h2,
  .xg_product .l h2 {
    margin-top: 0;
  }
}
@media (max-width: 1050px) {
  #home .sxl-page .sxl-page-slide .product .top .l ul li {
    width: auto;
    white-space: nowrap;
    padding: 0 10px;
  }
}
@media (max-width: 900px) {
  #about .sxl-page .sxl-page-slide .culture ul li span {
    height: auto;
  }
}
@media (max-width: 500px) {
  #home .sxl-page .sxl-page-slide .about {
    padding: 20px 0;
  }
  #home .sxl-page .sxl-page-slide .news ul a .img,
  #home .sxl-page .sxl-page-slide .news ul li .img,
  #home .sxl-page .sxl-page-slide .news ul a .btm,
  #home .sxl-page .sxl-page-slide .news ul li .btm {
    transform: none;
  }
  #home .sxl-page .sxl-page-slide .news ul {
    grid-template-columns: 1fr;
  }
  #home .sxl-page .sxl-page-slide .news ul a,
  #home .sxl-page .sxl-page-slide .news ul li {
    position: relative;
  }
  #home .sxl-page .sxl-page-slide .news ul a .btm,
  #home .sxl-page .sxl-page-slide .news ul li .btm {
    padding: 3px 10px;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    color: #ddd;
  }
  #home .sxl-page .sxl-page-slide .news ul a .btm .title,
  #home .sxl-page .sxl-page-slide .news ul li .btm .title {
    height: auto;
    -webkit-line-clamp: 1;
    margin-bottom: 0;
  }
  #home .sxl-page .sxl-page-slide .news ul a .btm p,
  #home .sxl-page .sxl-page-slide .news ul li .btm p {
    display: none;
  }
  #home .sxl-page .sxl-page-slide .news ul {
    margin-top: 20px;
  }
  #home .sxl-page .sxl-page-slide .news ul a .btm .bt,
  #home .sxl-page .sxl-page-slide .news ul li .btm .bt {
    display: none;
  }
  /* 2023.10.16 */
  #home .sxl-page .sxl-page-slide .banner .text .pagination::after {
    width: 100vw;
  }
  #home .sxl-page .sxl-page-slide .banner .text p {
    font-size: 12px;
  }
  #home .sxl-page .sxl-page-slide .product .top .l ul li {
    padding: 3px 17px;
    font-size: 14px;
    line-height: 26px;
    border-radius: 28px;
  }
  #home .sxl-page .sxl-page-slide .product .bottom .left .r {
    display: flex;
    justify-content: center;
    padding: 35px;
  }
  #home .sxl-page .sxl-page-slide .product .bottom .left .r img {
    width: 53%;
  }
  #home .sxl-page .sxl-page-slide .product .bottom .left .l h2 {
    font-size: 20px;
  }
  #home .sxl-page .sxl-page-slide .product .bottom .left .l p {
    font-size: 18px;
  }
  #home .sxl-page .sxl-page-slide .product .bottom .left .l .x {
    display: block;
  }
  #home .sxl-page .sxl-page-slide .product .bottom .left .l span {
    font-size: 12px;
    line-height: 30px;
  }
  #home .sxl-page .sxl-page-slide .banner .swiper .swiper-slide img {
    height: 97vw;
  }
  #home .sxl-page .sxl-page-slide .product .bottom .left .l span {
    margin-bottom: 27px;
  }
  #home .btn {
    font-size: 14px;
    padding: 10px 34px;
  }
  #home .sxl-page .sxl-page-slide .about .title .en,
  #home .sxl-page .sxl-page-slide .about .title .cn,
  #home .sxl-page .sxl-page-slide .home_title .cn,
  #home .sxl-page .sxl-page-slide .home_title .en,
  .l .en,
  .titles .en,
  .l .en + h2,
  .titles .en + h2,
  .l .en + .cn,
  .titles .en + .cn {
    font-size: 20px !important;
  }
  #home .sxl-page .sxl-page-slide .home_title::before {
    height: 40px;
  }
  #home .sxl-page .sxl-page-slide .about {
    padding: 20px var(--container_margin);
    align-items: flex-start;
  }
  #home .sxl-page .sxl-page-slide .about .title .en,
  #home .sxl-page .sxl-page-slide .about .title .cn {
    text-align: left;
  }
  #home .sxl-page .sxl-page-slide .about p {
    text-align: left;
    line-height: 1.87;
  }
  #home .sxl-page .sxl-page-slide .about .btn {
    display: none;
  }
  #home .sxl-page .sxl-page-slide .about ul li div .num {
    font-size: 32px;
  }
  #home .sxl-page .sxl-page-slide .about ul li div span:last-child {
    font-size: 14px;
    font-weight: 900;
  }
  #home .sxl-page .sxl-page-slide .about ul li div:last-child {
    font-size: 14px;
  }
  #home .sxl-page .sxl-page-slide .about ul li {
    align-items: flex-start;
  }
  #home .sxl-page .sxl-page-slide .about ul li div {
    background-image: linear-gradient(135deg, #009ED5 0%, #C4E3FF 50%);
  }
  #home .sxl-page .sxl-page-slide .about ul li:nth-child(3),
  #home .sxl-page .sxl-page-slide .about ul li:nth-child(4) {
    margin-top: 30px;
  }
  #home .sxl-page .sxl-page-slide .news {
    background: none;
  }
  #home .sxl-page .sxl-page-slide .news ul a,
  #home .sxl-page .sxl-page-slide .news ul li {
    border-radius: 20px;
    overflow: hidden;
  }
  #home .sxl-page .sxl-page-slide .news ul a .btm,
  #home .sxl-page .sxl-page-slide .news ul li .btm {
    line-height: 38px;
  }
  #home .sxl-page .sxl-page-slide .news ul a .btm .title,
  #home .sxl-page .sxl-page-slide .news ul li .btm .title {
    font-size: 16px;
  }
  #home .sxl-page .sxl-page-slide .partner .par_wrap .row {
    display: none;
  }
  #home .sxl-page .sxl-page-slide .partner .par_wrap .moblie_par {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 0;
  }
  #home .sxl-page .sxl-page-slide .partner .par_wrap .moblie_par .item {
    padding-top: 27%;
    position: relative;
  }
  #home .sxl-page .sxl-page-slide .partner .par_wrap .moblie_par .item img {
    position: absolute;
    top: 10%;
    left: 15%;
    width: 70%;
    height: 80%;
    object-fit: contain;
    object-position: center;
  }
  #about .sxl-page .sxl-page-slide .js .container .left ul li .t .num {
    font-size: 32px;
  }
  #about .sxl-page .sxl-page-slide .js .container .left ul li p {
    font-size: 14px;
  }
  #about .sxl-page .sxl-page-slide .history .year_swiper .swiper-slide {
    font-size: 40px;
  }
  #contact #xs .list a span,
  #contact .recruitment .conts .right .ul ul li .text .t,
  #contact .ybsx .list a h4,
  #contact .cpfw .list a h4,
  #contact .bfw ul li .left h4,
  #join .main .list .item .des h4,
  #join_sxl .link a div h4,
  #life main .su_title p {
    font-size: 17px;
  }
  #contact .recruitment .conts .right .ul ul li .text p,
  #investor .lx_list a h5,
  #contact .ybsx .list a p,
  #contact .cpfw .list a p,
  #contact .bfw ul li .left div,
  #contact .bfw ul li .left a,
  #join_sxl .link a div span,
  #life main .su_title div {
    font-size: 14px;
    line-height: 2;
  }
  #contact .main .right h3,
  #contact #xs .titles .cn,
  #contact #xs .titles .en,
  #new .titles .en,
  .xg_product .l h2,
  .xg_product .l .en,
  #support .sxl-page .sxl-page-slide main .top .ti h3,
  #support .sxl-page .sxl-page-slide main .top .ti .en,
  #about .sxl-page .sxl-page-slide .titles h4,
  #about .sxl-page .sxl-page-slide .titles h3,
  #contact .recruitment .titles .cn,
  #contact .recruitment .titles .en,
  #join .main .titles .en,
  #join .main .titles .cn {
    font-size: 20px !important;
  }
  .page_banner .text h1 {
    font-size: 25px;
  }
  #investor .ggao .container a {
    padding: 0;
  }
  #investor .ggao .container a div .iconfont {
    font-size: 25px;
  }
  .pdf_list a {
    padding-left: 10px;
    padding-right: 10px;
  }
  #home .sxl-page .sxl-page-slide .banner .text h1 {
    font-size: 18px;
  }
  #contact .recruitment .conts .right form .row .item .input:has(select) {
    border-radius: 8px;
    border: 1px solid #E5E5E5;
    width: 100%;
    padding: 15px 20px;
    background-color: #ffffff;
  }
  #contact .recruitment .conts .right form .row .item .input:has(select) select {
    background: none;
    border: none;
    padding: 0;
  }
  #about .sxl-page .sxl-page-slide .js .container .left ul li p,
  #home .sxl-page .sxl-page-slide .about ul li div:last-child {
    width: var(--container);
  }
  #about .sxl-page .sxl-page-slide .js .container .left h2 {
    font-size: 22px;
  }
  #about .sxl-page .sxl-page-slide .js .container .left ul li p {
    width: calc(var(--container) / 2.3);
  }
  .titles .cn,
  .titles .en {
    font-size: 20px !important;
  }
}
.moblie_nav .container .canter {
  overflow: auto;
}
@media (min-width: 1250px) {
  #about .sxl-page .sxl-page-slide .js .container .left .rich {
    max-height: 35vh;
    overflow: auto;
  }
}
