@charset "utf-8";
/* 公共响应变量 */
/* 初始化 */
* {
  padding: 0;
  margin: 0;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  font-size: calc(100vw / 19.2);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-width: thin;
  position: relative;
  overflow-x: hidden;
  /*滚动条-滑块*/
  /*滚动条-背景*/
}
@media (min-width: 1901px) {
  html {
    font-size: 100px;
  }
}
@media (max-width: 1580px) {
  html {
    font-size: 66px;
  }
}
@media (max-width:1024px) {
  html {
    font-size: 66px;
  }
}
@media (max-width: 767px) {
  html {
    font-size: calc(100vw / 7.5);
  }
}
html ::-webkit-scrollbar {
  width: 2px;
  /*滚动条整体样式*/
  height: 1px;
  /*高宽分别对应横竖滚动条的尺寸*/
}
html ::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background: var(--color);
}
html ::-webkit-scrollbar-track {
  border-radius: 3px;
  background: #E5E5E5;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Light.ttf');
  font-weight: 300;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.ttf');
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Medium.ttf');
  font-weight: 500;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-SemiBold.ttf');
  font-weight: bold;
}
body {
  min-height: 100%;
  font-family: 'Poppins', 'Microsoft YaHei', 'Microsoft YaHei UI', 'PingFang SC', 'SimSun', 'SimHei', 'Arial';
  font-size: 16px;
  line-height: 1.25;
  color: #000000;
}
:root {
  --vh: 100vh;
  --header-height: 76px;
  --rem: 16px;
  --vwMin: 1024;
  --vwMax: 1800;
  --color: #006CB8;
  --font200-min: calc(var(--font200-max) / var(--vwMax) * var(--vwMin));
  --font200-max: 200;
  --font200: calc((var(--font200-min) * var(--rem)) + ((var(--font200-max) - var(--font200-min)) * ((100vw - var(--vwMin) * var(--rem)) / (var(--vwMax) - var(--vwMin)))));
  --font180-min: calc(var(--font180-max) / var(--vwMax) * var(--vwMin));
  --font180-max: 180;
  --font180: calc((var(--font180-min) * var(--rem)) + ((var(--font180-max) - var(--font180-min)) * ((100vw - var(--vwMin) * var(--rem)) / (var(--vwMax) - var(--vwMin)))));
  --font160-min: calc(var(--font160-max) / var(--vwMax) * var(--vwMin));
  --font160-max: 160;
  --font160: calc((var(--font160-min) * var(--rem)) + ((var(--font160-max) - var(--font160-min)) * ((100vw - var(--vwMin) * var(--rem)) / (var(--vwMax) - var(--vwMin)))));
  --font150-min: calc(var(--font150-max) / var(--vwMax) * var(--vwMin));
  --font150-max: 150;
  --font150: calc((var(--font150-min) * var(--rem)) + ((var(--font150-max) - var(--font150-min)) * ((100vw - var(--vwMin) * var(--rem)) / (var(--vwMax) - var(--vwMin)))));
  --font140-min: calc(var(--font140-max) / var(--vwMax) * var(--vwMin));
  --font140-max: 140;
  --font140: calc((var(--font140-min) * var(--rem)) + ((var(--font140-max) - var(--font140-min)) * ((100vw - var(--vwMin) * var(--rem)) / (var(--vwMax) - var(--vwMin)))));
  --font130-min: calc(var(--font130-max) / var(--vwMax) * var(--vwMin));
  --font130-max: 130;
  --font130: calc((var(--font130-min) * var(--rem)) + ((var(--font130-max) - var(--font130-min)) * ((100vw - var(--vwMin) * var(--rem)) / (var(--vwMax) - var(--vwMin)))));
  --font120-min: calc(var(--font120-max) / var(--vwMax) * var(--vwMin));
  --font120-max: 120;
  --font120: calc((var(--font120-min) * var(--rem)) + ((var(--font120-max) - var(--font120-min)) * ((100vw - var(--vwMin) * var(--rem)) / (var(--vwMax) - var(--vwMin)))));
  --font100-min: calc(var(--font100-max) / var(--vwMax) * var(--vwMin));
  --font100-max: 100;
  --font100: calc((var(--font100-min) * var(--rem)) + ((var(--font100-max) - var(--font100-min)) * ((100vw - var(--vwMin) * var(--rem)) / (var(--vwMax) - var(--vwMin)))));
  --font98-min: calc(var(--font98-max) / var(--vwMax) * var(--vwMin));
  --font98-max: 98;
  --font98: calc((var(--font98-min) * var(--rem)) + ((var(--font98-max) - var(--font98-min)) * ((100vw - var(--vwMin) * var(--rem)) / (var(--vwMax) - var(--vwMin)))));
  --font96-min: calc(var(--font96-max) / var(--vwMax) * var(--vwMin));
  --font96-max: 96;
  --font96: calc((var(--font96-min) * var(--rem)) + ((var(--font96-max) - var(--font96-min)) * ((100vw - var(--vwMin) * var(--rem)) / (var(--vwMax) - var(--vwMin)))));
  --font94-min: calc(var(--font94-max) / var(--vwMax) * var(--vwMin));
  --font94-max: 94;
  --font94: calc((var(--font94-min) * var(--rem)) + ((var(--font94-max) - var(--font94-min)) * ((100vw - var(--vwMin) * var(--rem)) / (var(--vwMax) - var(--vwMin)))));
  --font92-min: calc(var(--font92-max) / var(--vwMax) * var(--vwMin));
  --font92-max: 92;
  --font92: calc((var(--font92-min) * var(--rem)) + ((var(--font92-max) - var(--font92-min)) * ((100vw - var(--vwMin) * var(--rem)) / (var(--vwMax) - var(--vwMin)))));
  --font90-min: calc(var(--font90-max) / var(--vwMax) * var(--vwMin));
  --font90-max: 90;
  --font90: calc((var(--font90-min) * var(--rem)) + ((var(--font90-max) - var(--font90-min)) * ((100vw - var(--vwMin) * var(--rem)) / (var(--vwMax) - var(--vwMin)))));
  --font88-min: calc(var(--font88-max) / var(--vwMax) * var(--vwMin));
  --font88-max: 88;
  --font88: calc((var(--font88-min) * var(--rem)) + ((var(--font88-max) - var(--font88-min)) * ((100vw - var(--vwMin) * var(--rem)) / (var(--vwMax) - var(--vwMin)))));
  --font86-min: calc(var(--font86-max) / var(--vwMax) * var(--vwMin));
  --font86-max: 86;
  --font86: calc((var(--font86-min) * var(--rem)) + ((var(--font86-max) - var(--font86-min)) * ((100vw - var(--vwMin) * var(--rem)) / (var(--vwMax) - var(--vwMin)))));
  --font84-min: calc(var(--font84-max) / var(--vwMax) * var(--vwMin));
  --font84-max: 84;
  --font84: calc((var(--font84-min) * var(--rem)) + ((var(--font84-max) - var(--font84-min)) * ((100vw - var(--vwMin) * var(--rem)) / (var(--vwMax) - var(--vwMin)))));
  --font82-min: calc(var(--font82-max) / var(--vwMax) * var(--vwMin));
  --font82-max: 82;
  --font82: calc((var(--font82-min) * var(--rem)) + ((var(--font82-max) - var(--font82-min)) * ((100vw - var(--vwMin) * var(--rem)) / (var(--vwMax) - var(--vwMin)))));
  --font80-min: calc(var(--font80-max) / var(--vwMax) * var(--vwMin));
  --font80-max: 80;
  --font80: calc((var(--font78-min) * var(--rem)) + ((var(--font78-max) - var(--font78-min)) * ((100vw - var(--vwMin) * var(--rem)) / (var(--vwMax) - var(--vwMin)))));
  --font78-min: calc(var(--font78-max) / var(--vwMax) * var(--vwMin));
  --font78-max: 78;
  --font78: calc((var(--font78-min) * var(--rem)) + ((var(--font78-max) - var(--font78-min)) * ((100vw - var(--vwMin) * var(--rem)) / (var(--vwMax) - var(--vwMin)))));
  --font76-min: calc(var(--font76-max) / var(--vwMax) * var(--vwMin));
  --font76-max: 76;
  --font76: calc((var(--font76-min) * var(--rem)) + ((var(--font76-max) - var(--font76-min)) * ((100vw - var(--vwMin) * var(--rem)) / (var(--vwMax) - var(--vwMin)))));
  --font74-min: calc(var(--font74-max) / var(--vwMax) * var(--vwMin));
  --font74-max: 74;
  --font74: calc((var(--font74-min) * var(--rem)) + ((var(--font74-max) - var(--font74-min)) * ((100vw - var(--vwMin) * var(--rem)) / (var(--vwMax) - var(--vwMin)))));
  --font72-min: calc(var(--font72-max) / var(--vwMax) * var(--vwMin));
  --font72-max: 72;
  --font72: calc((var(--font72-min) * var(--rem)) + ((var(--font72-max) - var(--font72-min)) * ((100vw - var(--vwMin) * var(--rem)) / (var(--vwMax) - var(--vwMin)))));
  --font70-min: calc(var(--font70-max) / var(--vwMax) * var(--vwMin));
  --font70-max: 70;
  --font70: calc((var(--font70-min) * var(--rem)) + ((var(--font70-max) - var(--font70-min)) * ((100vw - var(--vwMin) * var(--rem)) / (var(--vwMax) - var(--vwMin)))));
  --font68-min: calc(var(--font68-max) / var(--vwMax) * var(--vwMin));
  --font68-max: 68;
  --font68: calc((var(--font68-min) * var(--rem)) + ((var(--font68-max) - var(--font68-min)) * ((100vw - var(--vwMin) * var(--rem)) / (var(--vwMax) - var(--vwMin)))));
  --font66-min: calc(var(--font66-max) / var(--vwMax) * var(--vwMin));
  --font66-max: 66;
  --font66: calc((var(--font66-min) * var(--rem)) + ((var(--font66-max) - var(--font66-min)) * ((100vw - var(--vwMin) * var(--rem)) / (var(--vwMax) - var(--vwMin)))));
  --font64-min: calc(var(--font64-max) / var(--vwMax) * var(--vwMin));
  --font64-max: 64;
  --font64: calc((var(--font64-min) * var(--rem)) + ((var(--font64-max) - var(--font64-min)) * ((100vw - var(--vwMin) * var(--rem)) / (var(--vwMax) - var(--vwMin)))));
  --font62-min: calc(var(--font62-max) / var(--vwMax) * var(--vwMin));
  --font62-max: 62;
  --font62: calc((var(--font62-min) * var(--rem)) + ((var(--font62-max) - var(--font62-min)) * ((100vw - var(--vwMin) * var(--rem)) / (var(--vwMax) - var(--vwMin)))));
  --font60-min: calc(var(--font60-max) / var(--vwMax) * var(--vwMin));
  --font60-max: 60;
  --font60: calc((var(--font60-min) * var(--rem)) + ((var(--font60-max) - var(--font60-min)) * ((100vw - var(--vwMin) * var(--rem)) / (var(--vwMax) - var(--vwMin)))));
  --font58-min: calc(var(--font58-max) / var(--vwMax) * var(--vwMin));
  --font58-max: 58;
  --font58: calc((var(--font58-min) * var(--rem)) + ((var(--font58-max) - var(--font58-min)) * ((100vw - var(--vwMin) * var(--rem)) / (var(--vwMax) - var(--vwMin)))));
  --font56-min: calc(var(--font56-max) / var(--vwMax) * var(--vwMin));
  --font56-max: 56;
  --font56: calc((var(--font56-min) * var(--rem)) + ((var(--font56-max) - var(--font56-min)) * ((100vw - var(--vwMin) * var(--rem)) / (var(--vwMax) - var(--vwMin)))));
  --font54-min: calc(var(--font54-max) / var(--vwMax) * var(--vwMin));
  --font54-max: 54;
  --font54: calc((var(--font54-min) * var(--rem)) + ((var(--font54-max) - var(--font54-min)) * ((100vw - var(--vwMin) * var(--rem)) / (var(--vwMax) - var(--vwMin)))));
  --font52-min: calc(var(--font52-max) / var(--vwMax) * var(--vwMin));
  --font52-max: 52;
  --font52: calc((var(--font52-min) * var(--rem)) + ((var(--font52-max) - var(--font52-min)) * ((100vw - var(--vwMin) * var(--rem)) / (var(--vwMax) - var(--vwMin)))));
  --font50-min: calc(var(--font50-max) / var(--vwMax) * var(--vwMin));
  --font50-max: 50;
  --font50: calc((var(--font50-min) * var(--rem)) + ((var(--font50-max) - var(--font50-min)) * ((100vw - var(--vwMin) * var(--rem)) / (var(--vwMax) - var(--vwMin)))));
  --font48-min: calc(var(--font48-max) / var(--vwMax) * var(--vwMin));
  --font48-max: 48;
  --font48: calc((var(--font48-min) * var(--rem)) + ((var(--font48-max) - var(--font48-min)) * ((100vw - var(--vwMin) * var(--rem)) / (var(--vwMax) - var(--vwMin)))));
  --font46-min: calc(var(--font46-max) / var(--vwMax) * var(--vwMin));
  --font46-max: 46;
  --font46: calc((var(--font46-min) * var(--rem)) + ((var(--font46-max) - var(--font46-min)) * ((100vw - var(--vwMin) * var(--rem)) / (var(--vwMax) - var(--vwMin)))));
  --font44-min: calc(var(--font44-max) / var(--vwMax) * var(--vwMin));
  --font44-max: 44;
  --font44: calc((var(--font44-min) * var(--rem)) + ((var(--font44-max) - var(--font44-min)) * ((100vw - var(--vwMin) * var(--rem)) / (var(--vwMax) - var(--vwMin)))));
  --font42-min: calc(var(--font42-max) / var(--vwMax) * var(--vwMin));
  --font42-max: 42;
  --font42: calc((var(--font42-min) * var(--rem)) + ((var(--font42-max) - var(--font42-min)) * ((100vw - var(--vwMin) * var(--rem)) / (var(--vwMax) - var(--vwMin)))));
  --font40-min: calc(var(--font40-max) / var(--vwMax) * var(--vwMin));
  --font40-max: 40;
  --font40: calc((var(--font40-min) * var(--rem)) + ((var(--font40-max) - var(--font40-min)) * ((100vw - var(--vwMin) * var(--rem)) / (var(--vwMax) - var(--vwMin)))));
  --font38-min: calc(var(--font38-max) / var(--vwMax) * var(--vwMin));
  --font38-max: 38;
  --font38: calc((var(--font38-min) * var(--rem)) + ((var(--font38-max) - var(--font38-min)) * ((100vw - var(--vwMin) * var(--rem)) / (var(--vwMax) - var(--vwMin)))));
  --font36-min: calc(var(--font36-max) / var(--vwMax) * var(--vwMin));
  --font36-max: 36;
  --font36: calc((var(--font36-min) * var(--rem)) + ((var(--font36-max) - var(--font36-min)) * ((100vw - var(--vwMin) * var(--rem)) / (var(--vwMax) - var(--vwMin)))));
  --font34-min: calc(var(--font34-max) / var(--vwMax) * var(--vwMin));
  --font34-max: 34;
  --font34: calc((var(--font34-min) * var(--rem)) + ((var(--font34-max) - var(--font34-min)) * ((100vw - var(--vwMin) * var(--rem)) / (var(--vwMax) - var(--vwMin)))));
  --font32-min: calc(var(--font32-max) / var(--vwMax) * var(--vwMin));
  --font32-max: 32;
  --font32: calc((var(--font32-min) * var(--rem)) + ((var(--font32-max) - var(--font32-min)) * ((100vw - var(--vwMin) * var(--rem)) / (var(--vwMax) - var(--vwMin)))));
  --font30-min: calc(var(--font30-max) / var(--vwMax) * var(--vwMin));
  --font30-max: 30;
  --font30: calc((var(--font30-min) * var(--rem)) + ((var(--font30-max) - var(--font30-min)) * ((100vw - var(--vwMin) * var(--rem)) / (var(--vwMax) - var(--vwMin)))));
  --font28-min: 20;
  --font28-max: 28;
  --font28: calc((var(--font28-min) * 1px) + ((var(--font28-max) - var(--font28-min)) * ((100vw - var(--vwMin) * 1px) / (var(--vwMax) - var(--vwMin)))));
  --font26-min: 19;
  --font26-max: 26;
  --font26: calc((var(--font26-min) * 1px) + ((var(--font26-max) - var(--font26-min)) * ((100vw - var(--vwMin) * 1px) / (var(--vwMax) - var(--vwMin)))));
  --font24-min: 18;
  --font24-max: 24;
  --font24: calc((var(--font24-min) * 1px) + ((var(--font24-max) - var(--font24-min)) * ((100vw - var(--vwMin) * 1px) / (var(--vwMax) - var(--vwMin)))));
  --font22-min: 16;
  --font22-max: 22;
  --font22: calc((var(--font22-min) * 1px) + ((var(--font22-max) - var(--font22-min)) * ((100vw - var(--vwMin) * 1px) / (var(--vwMax) - var(--vwMin)))));
  --font20-min: 16;
  --font20-max: 20;
  --font20: calc((var(--font20-min) * 1px) + ((var(--font20-max) - var(--font20-min)) * ((100vw - var(--vwMin) * 1px) / (var(--vwMax) - var(--vwMin)))));
  --font18-min: 15;
  --font18-max: 18;
  --font18: calc((var(--font18-min) * 1px) + ((var(--font18-max) - var(--font18-min)) * ((100vw - var(--vwMin) * 1px) / (var(--vwMax) - var(--vwMin)))));
  --font16-min: 14;
  --font16-max: 16;
  --font16: calc((var(--font16-min) * 1px) + ((var(--font16-max) - var(--font16-min)) * ((100vw - var(--vwMin) * 1px) / (var(--vwMax) - var(--vwMin)))));
  --font15-min: 13;
  --font15-max: 15;
  --font15: calc((var(--font15-min) * 1px) + ((var(--font15-max) - var(--font15-min)) * ((100vw - var(--vwMin) * 1px) / (var(--vwMax) - var(--vwMin)))));
  --font14-min: 13;
  --font14-max: 14;
  --font14: calc((var(--font14-min) * 1px) + ((var(--font14-max) - var(--font14-min)) * ((100vw - var(--vwMin) * 1px) / (var(--vwMax) - var(--vwMin)))));
  /* 间距 */
  --spacing-220-min: 100;
  --spacing-220-max: 220;
  --spacing-220: calc((var(--spacing-220-min) * 1px) + ((var(--spacing-220-max) - var(--spacing-220-min)) * ((100vw - var(--vwMin) * 1px) / (var(--vwMax) - var(--vwMin)))));
  --spacing-200-min: 100;
  --spacing-200-max: 200;
  --spacing-200: calc((var(--spacing-200-min) * 1px) + ((var(--spacing-200-max) - var(--spacing-200-min)) * ((100vw - var(--vwMin) * 1px) / (var(--vwMax) - var(--vwMin)))));
  --spacing-180-min: 100;
  --spacing-180-max: 180;
  --spacing-180: calc((var(--spacing-180-min) * 1px) + ((var(--spacing-180-max) - var(--spacing-180-min)) * ((100vw - var(--vwMin) * 1px) / (var(--vwMax) - var(--vwMin)))));
  --spacing-170-min: 96;
  --spacing-170-max: 170;
  --spacing-170: calc((var(--spacing-170-min) * 1px) + ((var(--spacing-170-max) - var(--spacing-170-min)) * ((100vw - var(--vwMin) * 1px) / (var(--vwMax) - var(--vwMin)))));
  --spacing-160-min: 82;
  --spacing-160-max: 160;
  --spacing-160: calc((var(--spacing-160-min) * 1px) + ((var(--spacing-160-max) - var(--spacing-160-min)) * ((100vw - var(--vwMin) * 1px) / (var(--vwMax) - var(--vwMin)))));
  --spacing-150-min: 78;
  --spacing-150-max: 150;
  --spacing-150: calc((var(--spacing-150-min) * 1px) + ((var(--spacing-150-max) - var(--spacing-150-min)) * ((100vw - var(--vwMin) * 1px) / (var(--vwMax) - var(--vwMin)))));
  --spacing-140-min: 76;
  --spacing-140-max: 140;
  --spacing-140: calc((var(--spacing-140-min) * 1px) + ((var(--spacing-140-max) - var(--spacing-140-min)) * ((100vw - var(--vwMin) * 1px) / (var(--vwMax) - var(--vwMin)))));
  --spacing-130-min: 72;
  --spacing-130-max: 130;
  --spacing-130: calc((var(--spacing-130-min) * 1px) + ((var(--spacing-130-max) - var(--spacing-130-min)) * ((100vw - var(--vwMin) * 1px) / (var(--vwMax) - var(--vwMin)))));
  --spacing-120-min: 68;
  --spacing-120-max: 120;
  --spacing-120: calc((var(--spacing-120-min) * 1px) + ((var(--spacing-120-max) - var(--spacing-120-min)) * ((100vw - var(--vwMin) * 1px) / (var(--vwMax) - var(--vwMin)))));
  --spacing-110-min: 64;
  --spacing-110-max: 110;
  --spacing-110: calc((var(--spacing-110-min) * 1px) + ((var(--spacing-110-max) - var(--spacing-110-min)) * ((100vw - var(--vwMin) * 1px) / (var(--vwMax) - var(--vwMin)))));
  --spacing-100-min: 58;
  --spacing-100-max: 100;
  --spacing-100: calc((var(--spacing-100-min) * 1px) + ((var(--spacing-100-max) - var(--spacing-100-min)) * ((100vw - var(--vwMin) * 1px) / (var(--vwMax) - var(--vwMin)))));
  --spacing-90-min: 50;
  --spacing-90-max: 90;
  --spacing-90: calc((var(--spacing-90-min) * 1px) + ((var(--spacing-90-max) - var(--spacing-90-min)) * ((100vw - var(--vwMin) * 1px) / (var(--vwMax) - var(--vwMin)))));
  --spacing-80-min: 40;
  --spacing-80-max: 80;
  --spacing-80: calc((var(--spacing-80-min) * 1px) + ((var(--spacing-80-max) - var(--spacing-80-min)) * ((100vw - var(--vwMin) * 1px) / (var(--vwMax) - var(--vwMin)))));
  --spacing-70-min: 36;
  --spacing-70-max: 70;
  --spacing-70: calc((var(--spacing-70-min) * 1px) + ((var(--spacing-70-max) - var(--spacing-70-min)) * ((100vw - var(--vwMin) * 1px) / (var(--vwMax) - var(--vwMin)))));
  --spacing-60-min: 30;
  --spacing-60-max: 60;
  --spacing-60: calc((var(--spacing-60-min) * 1px) + ((var(--spacing-60-max) - var(--spacing-60-min)) * ((100vw - var(--vwMin) * 1px) / (var(--vwMax) - var(--vwMin)))));
  --spacing-50-min: 26;
  --spacing-50-max: 50;
  --spacing-50: calc((var(--spacing-50-min) * 1px) + ((var(--spacing-50-max) - var(--spacing-50-min)) * ((100vw - var(--vwMin) * 1px) / (var(--vwMax) - var(--vwMin)))));
  --spacing-44-min: 25;
  --spacing-44-max: 44;
  --spacing-44: calc((var(--spacing-44-min) * 1px) + ((var(--spacing-44-max) - var(--spacing-44-min)) * ((100vw - var(--vwMin) * 1px) / (var(--vwMax) - var(--vwMin)))));
  --spacing-40-min: 22;
  --spacing-40-max: 40;
  --spacing-40: calc((var(--spacing-40-min) * 1px) + ((var(--spacing-40-max) - var(--spacing-40-min)) * ((100vw - var(--vwMin) * 1px) / (var(--vwMax) - var(--vwMin)))));
  --spacing-35-min: 22;
  --spacing-35-max: 35;
  --spacing-35: calc((var(--spacing-35-min) * 1px) + ((var(--spacing-35-max) - var(--spacing-35-min)) * ((100vw - var(--vwMin) * 1px) / (var(--vwMax) - var(--vwMin)))));
  --spacing-30-min: 20;
  --spacing-30-max: 30;
  --spacing-30: calc((var(--spacing-30-min) * 1px) + ((var(--spacing-30-max) - var(--spacing-30-min)) * ((100vw - var(--vwMin) * 1px) / (var(--vwMax) - var(--vwMin)))));
  --spacing-25-min: 18;
  --spacing-25-max: 25;
  --spacing-25: calc((var(--spacing-25-min) * 1px) + ((var(--spacing-25-max) - var(--spacing-25-min)) * ((100vw - var(--vwMin) * 1px) / (var(--vwMax) - var(--vwMin)))));
  --spacing-20-min: 14;
  --spacing-20-max: 20;
  --spacing-20: calc((var(--spacing-20-min) * 1px) + ((var(--spacing-20-max) - var(--spacing-20-min)) * ((100vw - var(--vwMin) * 1px) / (var(--vwMax) - var(--vwMin)))));
  /* 圆角 */
  --radius: 30px;
  --border-radius20-min: 10;
  --border-radius20-max: 20;
  --border-radius20: calc((var(--border-radius20-min) * 1px) + ((var(--border-radius20-max) - var(--border-radius20-min)) * ((100vw - var(--vwMin) * 1px) / (var(--vwMax) - var(--vwMin)))));
  --border-radius18-min: 9;
  --border-radius18-max: 18;
  --border-radius18: calc((var(--border-radius18-min) * 1px) + ((var(--border-radius18-max) - var(--border-radius18-min)) * ((100vw - var(--vwMin) * 1px) / (var(--vwMax) - var(--vwMin)))));
  --border-radius16-min: 8;
  --border-radius16-max: 16;
  --border-radius16: calc((var(--border-radius16-min) * 1px) + ((var(--border-radius16-max) - var(--border-radius16-min)) * ((100vw - var(--vwMin) * 1px) / (var(--vwMax) - var(--vwMin)))));
  --border-radius14-min: 7;
  --border-radius14-max: 14;
  --border-radius14: calc((var(--border-radius14-min) * 1px) + ((var(--border-radius14-max) - var(--border-radius14-min)) * ((100vw - var(--vwMin) * 1px) / (var(--vwMax) - var(--vwMin)))));
  --border-radius12-min: 6;
  --border-radius12-max: 12;
  --border-radius12: calc((var(--border-radius12-min) * 1px) + ((var(--border-radius12-max) - var(--border-radius12-min)) * ((100vw - var(--vwMin) * 1px) / (var(--vwMax) - var(--vwMin)))));
  --border-radius10-min: 5;
  --border-radius10-max: 10;
  --border-radius10: calc((var(--border-radius10-min) * 1px) + ((var(--border-radius10-max) - var(--border-radius10-min)) * ((100vw - var(--vwMin) * 1px) / (var(--vwMax) - var(--vwMin)))));
}
@media (min-width: 1800px) {
  :root {
    --font200: calc(var(--font200-max) * 1px);
    --font180: calc(var(--font180-max) * 1px);
    --font160: calc(var(--font160-max) * 1px);
    --font150: calc(var(--font150-max) * 1px);
    --font140: calc(var(--font140-max) * 1px);
    --font130: calc(var(--font130-max) * 1px);
    --font120: calc(var(--font120-max) * 1px);
    --font100: calc(var(--font100-max) * 1px);
    --font98: calc(var(--font98-max) * 1px);
    --font96: calc(var(--font96-max) * 1px);
    --font94: calc(var(--font94-max) * 1px);
    --font92: calc(var(--font92-max) * 1px);
    --font90: calc(var(--font90-max) * 1px);
    --font88: calc(var(--font88-max) * 1px);
    --font86: calc(var(--font86-max) * 1px);
    --font84: calc(var(--font84-max) * 1px);
    --font82: calc(var(--font82-max) * 1px);
    --font80: calc(var(--font80-max) * 1px);
    --font78: calc(var(--font78-max) * 1px);
    --font76: calc(var(--font76-max) * 1px);
    --font74: calc(var(--font74-max) * 1px);
    --font72: calc(var(--font72-max) * 1px);
    --font70: calc(var(--font70-max) * 1px);
    --font68: calc(var(--font68-max) * 1px);
    --font66: calc(var(--font66-max) * 1px);
    --font64: calc(var(--font64-max) * 1px);
    --font62: calc(var(--font62-max) * 1px);
    --font60: calc(var(--font60-max) * 1px);
    --font58: calc(var(--font58-max) * 1px);
    --font56: calc(var(--font56-max) * 1px);
    --font54: calc(var(--font54-max) * 1px);
    --font52: calc(var(--font52-max) * 1px);
    --font50: calc(var(--font50-max) * 1px);
    --font48: calc(var(--font48-max) * 1px);
    --font46: calc(var(--font46-max) * 1px);
    --font44: calc(var(--font44-max) * 1px);
    --font42: calc(var(--font42-max) * 1px);
    --font40: calc(var(--font40-max) * 1px);
    --font38: calc(var(--font38-max) * 1px);
    --font36: calc(var(--font36-max) * 1px);
    --font34: calc(var(--font34-max) * 1px);
    --font32: calc(var(--font32-max) * 1px);
    --font30: calc(var(--font30-max) * 1px);
    --font28: calc(var(--font28-max) * 1px);
    --font26: calc(var(--font26-max) * 1px);
    --font24: calc(var(--font24-max) * 1px);
    --font22: calc(var(--font22-max) * 1px);
    --font20: calc(var(--font20-max) * 1px);
    --font18: calc(var(--font18-max) * 1px);
    --font16: calc(var(--font16-max) * 1px);
    --font15: calc(var(--font15-max) * 1px);
    --font14: calc(var(--font14-max) * 1px);
    --spacing-220: calc(var(--spacing-220-max) * 1px);
    --spacing-200: calc(var(--spacing-200-max) * 1px);
    --spacing-180: calc(var(--spacing-180-max) * 1px);
    --spacing-170: calc(var(--spacing-170-max) * 1px);
    --spacing-160: calc(var(--spacing-160-max) * 1px);
    --spacing-150: calc(var(--spacing-150-max) * 1px);
    --spacing-140: calc(var(--spacing-140-max) * 1px);
    --spacing-130: calc(var(--spacing-130-max) * 1px);
    --spacing-120: calc(var(--spacing-120-max) * 1px);
    --spacing-110: calc(var(--spacing-110-max) * 1px);
    --spacing-100: calc(var(--spacing-100-max) * 1px);
    --spacing-90: calc(var(--spacing-90-max) * 1px);
    --spacing-80: calc(var(--spacing-80-max) * 1px);
    --spacing-70: calc(var(--spacing-70-max) * 1px);
    --spacing-60: calc(var(--spacing-60-max) * 1px);
    --spacing-50: calc(var(--spacing-50-max) * 1px);
    --spacing-44: calc(var(--spacing-44-max) * 1px);
    --spacing-40: calc(var(--spacing-40-max) * 1px);
    --spacing-35: calc(var(--spacing-35-max) * 1px);
    --spacing-30: calc(var(--spacing-30-max) * 1px);
    --spacing-25: calc(var(--spacing-25-max) * 1px);
    --spacing-20: calc(var(--spacing-20-max) * 1px);
    --border-radius20: calc(var(--border-radius20-max) * 1px);
    --border-radius18: calc(var(--border-radius18-max) * 1px);
    --border-radius16: calc(var(--border-radius16-max) * 1px);
    --border-radius14: calc(var(--border-radius14-max) * 1px);
    --border-radius12: calc(var(--border-radius12-max) * 1px);
    --border-radius10: calc(var(--border-radius10-max) * 1px);
  }
}
@media (max-width:1280px) {
  :root {
    --header-height: 70px;
  }
}
@media (max-width:1024px) {
  :root {
    --font200: calc(var(--font200-min) * 1px);
    --font180: calc(var(--font180-min) * 1px);
    --font160: calc(var(--font160-min) * 1px);
    --font150: calc(var(--font150-min) * 1px);
    --font140: calc(var(--font140-min) * 1px);
    --font130: calc(var(--font130-min) * 1px);
    --font120: calc(var(--font120-min) * 1px);
    --font100: calc(var(--font100-min) * 1px);
    --font98: calc(var(--font98-min) * 1px);
    --font96: calc(var(--font96-min) * 1px);
    --font94: calc(var(--font94-min) * 1px);
    --font92: calc(var(--font92-min) * 1px);
    --font90: calc(var(--font90-min) * 1px);
    --font88: calc(var(--font88-min) * 1px);
    --font86: calc(var(--font86-min) * 1px);
    --font84: calc(var(--font84-min) * 1px);
    --font82: calc(var(--font82-min) * 1px);
    --font80: calc(var(--font80-min) * 1px);
    --font78: calc(var(--font78-min) * 1px);
    --font76: calc(var(--font76-min) * 1px);
    --font74: calc(var(--font74-min) * 1px);
    --font72: calc(var(--font72-min) * 1px);
    --font70: calc(var(--font70-min) * 1px);
    --font68: calc(var(--font68-min) * 1px);
    --font66: calc(var(--font66-min) * 1px);
    --font64: calc(var(--font64-min) * 1px);
    --font62: calc(var(--font62-min) * 1px);
    --font60: calc(var(--font60-min) * 1px);
    --font58: calc(var(--font58-min) * 1px);
    --font56: calc(var(--font56-min) * 1px);
    --font54: calc(var(--font54-min) * 1px);
    --font52: calc(var(--font52-min) * 1px);
    --font50: calc(var(--font50-min) * 1px);
    --font48: calc(var(--font48-min) * 1px);
    --font46: calc(var(--font46-min) * 1px);
    --font44: calc(var(--font44-min) * 1px);
    --font42: calc(var(--font42-min) * 1px);
    --font40: calc(var(--font40-min) * 1px);
    --font38: calc(var(--font38-min) * 1px);
    --font36: calc(var(--font36-min) * 1px);
    --font34: calc(var(--font34-min) * 1px);
    --font32: calc(var(--font32-min) * 1px);
    --font30: calc(var(--font30-min) * 1px);
    --font28: calc(var(--font28-min) * 1px);
    --font26: calc(var(--font26-min) * 1px);
    --font24: calc(var(--font24-min) * 1px);
    --font22: calc(var(--font22-min) * 1px);
    --font20: calc(var(--font20-min) * 1px);
    --font18: calc(var(--font18-min) * 1px);
    --font16: calc(var(--font16-min) * 1px);
    --font15: calc(var(--font15-min) * 1px);
    --font14: calc(var(--font14-min) * 1px);
    --spacing-220: calc(var(--spacing-220-min) * 1px);
    --spacing-200: calc(var(--spacing-200-min) * 1px);
    --spacing-180: calc(var(--spacing-180-min) * 1px);
    --spacing-170: calc(var(--spacing-170-min) * 1px);
    --spacing-160: calc(var(--spacing-160-min) * 1px);
    --spacing-150: calc(var(--spacing-150-min) * 1px);
    --spacing-140: calc(var(--spacing-140-min) * 1px);
    --spacing-130: calc(var(--spacing-130-min) * 1px);
    --spacing-120: calc(var(--spacing-120-min) * 1px);
    --spacing-110: calc(var(--spacing-110-min) * 1px);
    --spacing-100: calc(var(--spacing-100-min) * 1px);
    --spacing-90: calc(var(--spacing-90-min) * 1px);
    --spacing-80: calc(var(--spacing-80-min) * 1px);
    --spacing-70: calc(var(--spacing-70-min) * 1px);
    --spacing-60: calc(var(--spacing-60-min) * 1px);
    --spacing-50: calc(var(--spacing-50-min) * 1px);
    --spacing-44: calc(var(--spacing-44-min) * 1px);
    --spacing-40: calc(var(--spacing-40-min) * 1px);
    --spacing-35: calc(var(--spacing-35-min) * 1px);
    --spacing-30: calc(var(--spacing-30-min) * 1px);
    --spacing-25: calc(var(--spacing-25-min) * 1px);
    --spacing-20: calc(var(--spacing-20-min) * 1px);
    --border-radius20: calc(var(--border-radius20-min) * 1px);
    --border-radius18: calc(var(--border-radius18-min) * 1px);
    --border-radius16: calc(var(--border-radius16-min) * 1px);
    --border-radius14: calc(var(--border-radius14-min) * 1px);
    --border-radius12: calc(var(--border-radius12-min) * 1px);
    --border-radius10: calc(var(--border-radius10-min) * 1px);
  }
}
.font200 {
  font-size: var(--font200);
}
.font130 {
  font-size: var(--font130);
}
.font120 {
  font-size: var(--font120);
}
.font100 {
  font-size: var(--font100);
}
.font98 {
  font-size: var(--font98);
}
.font96 {
  font-size: var(--font96);
}
.font94 {
  font-size: var(--font94);
}
.font92 {
  font-size: var(--font92);
}
.font90 {
  font-size: var(--font90);
}
.font88 {
  font-size: var(--font88);
}
.font86 {
  font-size: var(--font86);
}
.font84 {
  font-size: var(--font84);
}
.font82 {
  font-size: var(--font82);
}
.font80 {
  font-size: var(--font80);
}
.font78 {
  font-size: var(--font78);
}
.font76 {
  font-size: var(--font76);
}
.font74 {
  font-size: var(--font74);
}
.font72 {
  font-size: var(--font72);
}
.font70 {
  font-size: var(--font70);
}
.font68 {
  font-size: var(--font68);
}
.font66 {
  font-size: var(--font66);
}
.font64 {
  font-size: var(--font64);
}
.font62 {
  font-size: var(--font62);
}
.font60 {
  font-size: var(--font60);
}
.font58 {
  font-size: var(--font58);
}
.font56 {
  font-size: var(--font56);
}
.font54 {
  font-size: var(--font54);
}
.font52 {
  font-size: var(--font52);
}
.font50 {
  font-size: var(--font50);
}
.font48 {
  font-size: var(--font48);
}
.font46 {
  font-size: var(--font46);
}
.font44 {
  font-size: var(--font44);
}
.font42 {
  font-size: var(--font42);
}
.font40 {
  font-size: var(--font40);
}
.font38 {
  font-size: var(--font38);
}
.font36 {
  font-size: var(--font36);
}
.font34 {
  font-size: var(--font34);
}
.font32 {
  font-size: var(--font32);
}
.font30 {
  font-size: var(--font30);
}
.font28 {
  font-size: var(--font28);
}
.font26 {
  font-size: var(--font26);
}
.font24 {
  font-size: var(--font24);
}
.font22 {
  font-size: var(--font22);
}
.font20 {
  font-size: var(--font20);
}
.font18 {
  font-size: var(--font18);
}
.font16 {
  font-size: var(--font16);
}
.font14 {
  font-size: var(--font14);
}
img {
  max-width: 100%;
  max-height: 100%;
  border: 0;
  vertical-align: top;
}
li {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  font-weight: normal;
}
a,
a:hover,
a:focus {
  color: #000000;
  text-decoration: none;
}
input,
button {
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
button {
  cursor: pointer;
}
input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  appearance: button;
  cursor: pointer;
}
textarea {
  resize: none;
  overflow: auto;
}
input,
button,
textarea,
select {
  border: 0;
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  font-weight: normal;
  color: inherit;
  background: transparent;
}
select {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  white-space: nowrap;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select::-ms-expand {
  display: none;
}
table {
  border-collapse: collapse;
}
/* 公共浮动、清浮动 */
.fl {
  float: left;
}
.fr {
  float: right;
}
.clear {
  zoom: 1;
}
.clear:after {
  content: '';
  display: block;
  clear: both;
}
/* Flex 布局 */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.f-column {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.f-column-right {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.f-row {
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
}
.f-row-right {
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.j-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.j-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.j-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.j-justify {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.j-around {
  -moz-justify-content: space-around;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}
.a-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.a-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.a-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.a-baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
}
.a-stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.a-s-stretch {
  -webkit-box-self: stretch;
  -ms-align-self: stretch;
  -webkit-align-self: stretch;
  align-self: stretch;
}
.a-s-center {
  -webkit-box-self: center;
  -ms-align-self: center;
  -webkit-align-self: center;
  align-self: center;
}
.a-s-end {
  -webkit-box-self: end;
  -ms-align-self: end;
  -webkit-align-self: end;
  align-self: end;
}
.flex-wrap {
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.flex-nowrap {
  flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
}
/* 文字超出隐藏 */
.text-overflow {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 动画 */
.dh {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.abimg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
/* 比例 */
.pb {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.ab {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  overflow: hidden;
}
/* 1屏高度 */
/* 百分比计算 */
@keyframes growAni {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes circleAni {
  0% {
    stroke-dasharray: 0, 43.96;
  }
  100% {
    stroke-dasharray: 43.96, 43.96;
  }
}
/* ----------------------- */
/* ----- 全局公共属性 ----- */
[active] svg {
  vertical-align: top;
}
[active] svg path {
  fill: currentColor;
}
.ani,
.wow {
  visibility: hidden;
}
/* 公共内容区 */
.container {
  width: 85%;
  margin: 0 auto;
  max-width: 1600px;
  position: relative;
  z-index: 5;
}
.container.active {
  width: 78%;
  max-width: 1440px;
}
@media (max-width:1280px) {
  .container.active {
    width: 85%;
  }
}
@media (max-width:1024px) {
  .container {
    width: 100%;
    padding: 0 20px;
  }
  .container.active {
    width: 100%;
  }
}
/* ie浏览器提示 */
#hi-upgrade {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: #fff;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
}
#hi-upgrade .hi-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -177px 0 0 -450px;
  width: 900px;
}
#hi-upgrade .hi-wrap .hi-title {
  font-size: 30px;
  line-height: 40px;
  color: #333;
}
#hi-upgrade .hi-wrap .hi-close {
  margin: 10px 0;
  display: inline-block;
  cursor: pointer;
  font-size: 18px;
  color: var(--color);
}
#hi-upgrade .hi-wrap .hi-close:hover {
  text-decoration: underline;
}
#hi-upgrade .hi-wrap .hi-text1 {
  color: #666;
}
#hi-upgrade .hi-wrap .hi-text1 span {
  color: var(--color);
}
#hi-upgrade .hi-wrap .hi-text2 {
  position: relative;
  margin: 60px 0;
  color: #333;
}
#hi-upgrade .hi-wrap .hi-text2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  width: 100%;
  border-top: 1px solid #ddd;
}
#hi-upgrade .hi-wrap .hi-text2 span {
  position: relative;
  z-index: 5;
  padding: 0 30px;
  background: #fff;
}
#hi-upgrade .hi-wrap .hi-list {
  overflow: hidden;
}
#hi-upgrade .hi-wrap .hi-list li {
  display: inline-block;
  width: 16%;
}
#hi-upgrade .hi-wrap .hi-list li div {
  margin: 0 auto 5px;
  width: 50px;
  height: 50px;
}
#hi-upgrade .hi-wrap .hi-list li a {
  color: #666;
}
#hi-upgrade .hi-wrap .hi-list li a:hover {
  color: var(--color);
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico1 {
  background: url(../images/hi-llq-1.jpg) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico2 {
  background: url(../images/hi-llq-2.jpg) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico3 {
  background: url(../images/hi-llq-3.jpg) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico4 {
  background: url(../images/hi-llq-4.jpg) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico5 {
  background: url(../images/hi-llq-5.jpg) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico6 {
  background: url(../images/hi-llq-6.jpg) no-repeat center / 100%;
}
/* 回到顶部 */
#c-go-top {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 999;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color);
  cursor: pointer;
}
@media (max-width:991px) {
  #c-go-top {
    display: none !important;
  }
}
#c-go-top svg {
  width: 50%;
  height: 50%;
}
#c-go-top svg use {
  fill: #FFFFFF;
}
/* 二维码弹窗 */
#c-code-pop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 910;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
#c-code-pop .c-img-box {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 20px;
  width: 200px;
  border-radius: 5px;
  background: #fff;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#c-code-pop .c-img-box .c-close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  bottom: -60px;
  left: 50%;
  margin-left: -20px;
  cursor: pointer;
  background-color: #fff;
  border-radius: 50%;
  transition: all 0.4s;
}
#c-code-pop .c-img-box .c-close img,
#c-code-pop .c-img-box .c-close svg {
  margin: 4px;
  width: 18px;
  height: 18px;
}
#c-code-pop .c-img-box .c-close img path,
#c-code-pop .c-img-box .c-close svg path {
  fill: #333;
  transition: all 0.4s;
}
#c-code-pop .c-img-box .c-close:hover {
  background-color: var(--color);
}
#c-code-pop .c-img-box .c-close:hover svg path {
  fill: #fff;
}
#c-code-pop .c-img-box > img {
  width: 100%;
}
#c-code-pop .c-img-box .c-text {
  padding-top: 10px;
  line-height: 1;
  text-align: center;
  color: #333;
}
.public-pc {
  display: block;
}
.public-mb {
  display: none;
}
/* 公共图片 */
.public-img {
  display: block;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.public-img::before {
  content: "";
  display: block;
  position: relative;
  z-index: 0;
  padding-top: 100%;
}
.public-img > img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s;
}
@media (max-width:991px) {
  .public-pc {
    display: none;
  }
  .public-mb {
    display: block;
  }
}
/* ------------------------------- */
/* ------------------------------- 头部 */
header {
  width: 100%;
  height: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
header:hover .header-box .logo a svg .logo-text,
header.active .header-box .logo a svg .logo-text,
header.details-active .header-box .logo a svg .logo-text,
header.details-initial .header-box .logo a svg .logo-text {
  filter: invert(0);
}
header:hover .header-box .logo a svg .cls-1,
header.active .header-box .logo a svg .cls-1,
header.details-active .header-box .logo a svg .cls-1,
header.details-initial .header-box .logo a svg .cls-1 {
  fill: #585857;
}
header:hover .header-box nav ul > li > a,
header.active .header-box nav ul > li > a,
header.details-active .header-box nav ul > li > a,
header.details-initial .header-box nav ul > li > a {
  color: #333333;
}
header:hover .header-box .column .search-box a .icon,
header.active .header-box .column .search-box a .icon,
header.details-active .header-box .column .search-box a .icon,
header.details-initial .header-box .column .search-box a .icon {
  color: #333333;
}
header:hover .header-box .column .lang-box .icon,
header.active .header-box .column .lang-box .icon,
header.details-active .header-box .column .lang-box .icon,
header.details-initial .header-box .column .lang-box .icon {
  color: #333333;
}
header:hover .header-box .column .mobile-switch,
header.active .header-box .column .mobile-switch,
header.details-active .header-box .column .mobile-switch,
header.details-initial .header-box .column .mobile-switch {
  color: #333333;
}
header:hover,
header.active,
header.details-active {
  background: #FFFFFF;
}
header:hover,
header.active {
  filter: drop-shadow(0 1px 24px rgba(0, 0, 0, 0.06));
}
header.is-show {
  transform: translateY(-100%);
  filter: initial;
}
header .header-box {
  width: 100%;
  height: var(--header-height);
  padding: 0 0.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
header .header-box .logo {
  width: 12.5%;
  max-width: 192px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
header .header-box .logo a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  color: currentColor;
}
header .header-box .logo a svg {
  width: 100%;
  height: 100%;
}
header .header-box .logo a svg .logo-text {
  filter: url(#invertFilter);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
header .header-box .logo a svg .cls-1 {
  fill: #fff;
  transition: all 0.4s;
}
header .header-box nav {
  width: auto;
  height: 100%;
}
header .header-box nav ul {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
header .header-box nav ul > li {
  width: auto;
  height: 100%;
}
header .header-box nav ul > li > a {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  padding: 0 0.3rem;
  display: block;
  font-weight: bold;
  font-size: 18px;
  color: #FFFFFF;
  white-space: nowrap;
  line-height: 1.8;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  /* span::after { content: ''; width: 0; height: 2px; position: absolute; left: 0; bottom: 0; z-index: 1; background: var(--color); pointer-events: none; .dh; } */
}
header .header-box nav ul > li > a span {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
header .header-box nav ul > li:hover > a span,
header .header-box nav ul > li.active > a span {
  color: var(--color);
}
header .header-box nav ul > li:hover > a span::after,
header .header-box nav ul > li.active > a span::after {
  width: 100%;
}
header .header-box nav ul > li:hover .subnav-text {
  transform: translate(-50%, 0);
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}
header .header-box nav ul > li:hover .subnav-product {
  transform: translate(-50%, 0);
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}
header .header-box nav ul > li:hover .subnav-product .subnav-box .subnav-main .swiper-box .swiper-slide.active {
  z-index: 5;
  pointer-events: auto;
}
header .header-box nav ul > li .subnav-product {
  width: 100vw;
  height: auto;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, -0.2rem);
  background: #FFFFFF;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  overflow: hidden;
}
header .header-box nav ul > li .subnav-product .subnav-box {
  width: 100%;
  height: auto;
  overflow: hidden;
}
header .header-box nav ul > li .subnav-product .subnav-box .subnav-main {
  width: 100%;
  height: auto;
  max-width: 940px;
  margin: 0 auto;
  padding: 0.4rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
header .header-box nav ul > li .subnav-product .subnav-box .subnav-main .sidebar-box {
  width: 30%;
  height: auto;
}
header .header-box nav ul > li .subnav-product .subnav-box .subnav-main .sidebar-box .headline {
  width: 100%;
  height: auto;
  font-size: 12px;
  color: #666666;
}
header .header-box nav ul > li .subnav-product .subnav-box .subnav-main .sidebar-box .sidebar {
  width: 100%;
  height: auto;
  margin-top: 0.3rem;
}
header .header-box nav ul > li .subnav-product .subnav-box .subnav-main .sidebar-box .sidebar .one {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
header .header-box nav ul > li .subnav-product .subnav-box .subnav-main .sidebar-box .sidebar .one a {
  width: 100%;
  height: auto;
  padding: 0.5em 0;
  padding-right: 0.2rem;
  border-radius: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  font-weight: 500;
  font-size: var(--font20);
  color: #000000;
  transition: box-shadow 0.5s ease, background 0.5s ease;
  box-shadow: -0.2rem 0 0 0 #FFFFFF;
}
header .header-box nav ul > li .subnav-product .subnav-box .subnav-main .sidebar-box .sidebar .one a span {
  transform-origin: left;
  transform: scale(0.8);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
header .header-box nav ul > li .subnav-product .subnav-box .subnav-main .sidebar-box .sidebar .one.active a {
  box-shadow: -0.2rem 0 0 0 var(--color);
  background: var(--color);
  color: #FFFFFF;
}
header .header-box nav ul > li .subnav-product .subnav-box .subnav-main .sidebar-box .sidebar .one.active a span {
  transform: scale(1);
}
header .header-box nav ul > li .subnav-product .subnav-box .subnav-main .swiper-box {
  width: 100%;
  height: auto;
  flex: 1;
  margin-left: 0.2rem;
  overflow: hidden;
}
header .header-box nav ul > li .subnav-product .subnav-box .subnav-main .swiper-box .swiper-slide {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.2rem;
  overflow: hidden;
}
header .header-box nav ul > li .subnav-product .subnav-box .subnav-main .swiper-box .swiper-slide .item {
  width: 100%;
  height: auto;
  overflow: hidden;
}
header .header-box nav ul > li .subnav-product .subnav-box .subnav-main .swiper-box .swiper-slide .item a {
  width: 100%;
  height: auto;
  padding: 30px 0;
  display: block;
  border-radius: 0.2rem;
  background: #F8F8F8;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
header .header-box nav ul > li .subnav-product .subnav-box .subnav-main .swiper-box .swiper-slide .item a .img {
  width: 75%;
  height: auto;
  margin: 0 auto;
  overflow: hidden;
}
header .header-box nav ul > li .subnav-product .subnav-box .subnav-main .swiper-box .swiper-slide .item a .img img {
  -webkit-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
header .header-box nav ul > li .subnav-product .subnav-box .subnav-main .swiper-box .swiper-slide .item a .title {
  width: 100%;
  height: auto;
  margin-top: 0.15rem;
  padding: 0 0.2rem;
  text-align: center;
  font-weight: bold;
  font-size: var(--font20);
  color: #333333;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
header .header-box nav ul > li .subnav-product .subnav-box .subnav-main .swiper-box .swiper-slide .item a .title span {
  display: inline-block;
  transform: translateY(-10%);
  padding: 2px 0.5em;
  background: var(--color);
  border-radius: 0.5em 0 0.5em 0;
  font-size: 0.12rem;
  color: #FFFFFF;
  vertical-align: middle;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
header .header-box nav ul > li .subnav-product .subnav-box .subnav-main .swiper-box .swiper-slide .item:hover a {
  background: var(--color);
}
header .header-box nav ul > li .subnav-product .subnav-box .subnav-main .swiper-box .swiper-slide .item:hover a .img img {
  transform: scale(1.05);
}
header .header-box nav ul > li .subnav-product .subnav-box .subnav-main .swiper-box .swiper-slide .item:hover a .title {
  color: #FFFFFF;
}
header .header-box nav ul > li .subnav-product .subnav-box .subnav-main .swiper-box .swiper-slide .item:hover a .title span {
  background: #FFFFFF;
  color: var(--color);
}
header .header-box nav ul > li .subnav-product .public-arrow {
  border-top: 1px solid #F0F0F0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0.3rem 0;
}
header .header-box nav ul > li .subnav-product .public-arrow .more .word {
  font-size: var(--font16);
}
header .header-box nav ul > li .subnav-product .public-arrow .more .icon {
  width: 6px;
  height: 11px;
  color: #333333;
}
header .header-box nav ul > li .subnav-product .public-arrow .more:hover .icon {
  color: var(--color);
}
header .header-box nav ul > li .flex-box {
  width: 100%;
  height: 0;
  position: relative;
  z-index: 1;
}
header .header-box nav ul > li .subnav-text {
  width: auto;
  min-width: 180px;
  height: auto;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -0.1rem);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
header .header-box nav ul > li .subnav-text .subnav-menu {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 0.1rem;
  overflow: hidden;
}
header .header-box nav ul > li .subnav-text .subnav-menu ul {
  width: 100%;
  height: auto;
  display: block;
  text-align: center;
  border-radius: 0.1rem;
  background: #FFFFFF;
  padding: 0.15rem 0;
  overflow: hidden;
}
header .header-box nav ul > li .subnav-text .subnav-menu ul li {
  width: 100%;
  height: auto;
  overflow: hidden;
}
header .header-box nav ul > li .subnav-text .subnav-menu ul li a {
  width: 100%;
  height: auto;
  padding: 0.5em 1em;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  color: #333333;
}
header .header-box nav ul > li .subnav-text .subnav-menu ul li a:hover {
  color: var(--color);
}
header .header-box .column {
  width: auto;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
header .header-box .column .contact-box {
  width: auto;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
}
header .header-box .column .contact-box a {
  width: 100%;
  min-width: 120px;
  height: 40px;
  padding: 0 0.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 50px;
  background: var(--color);
  color: #FFFFFF;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
header .header-box .column .contact-box a .icon {
  width: 20px;
  height: 20px;
  font-size: 0;
}
header .header-box .column .contact-box a .icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
header .header-box .column .contact-box a .word {
  margin-left: 0.5em;
  font-weight: bold;
  font-size: var(--font14);
}
header .header-box .column .contact-box a:hover {
  filter: brightness(1.2);
}
header .header-box .column .search-box {
  width: auto;
  height: 100%;
  padding: 0 0.15rem 0 0.3rem;
  overflow: hidden;
}
header .header-box .column .search-box a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
header .header-box .column .search-box a .icon {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: #FFFFFF;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
header .header-box .column .search-box a .icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
header .header-box .column .search-box .subnav-box {
  width: 100vw;
  height: auto;
  position: absolute;
  left: 50%;
  top: 100%;
  z-index: 10;
  transform: translate(-50%, -0.2rem);
  background: #FFFFFF;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  overflow: hidden;
}
header .header-box .column .search-box .subnav-box .subnav-main {
  width: 100%;
  max-width: 940px;
  height: auto;
  margin: 0 auto;
  padding: 0.5rem 0;
  overflow: hidden;
}
header .header-box .column .search-box .subnav-box .subnav-main .form-box {
  width: 100%;
  height: auto;
}
header .header-box .column .search-box .subnav-box .subnav-main .form-box form {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid #E5E5E5;
  overflow: hidden;
}
header .header-box .column .search-box .subnav-box .subnav-main .form-box form button {
  width: 60px;
  height: 60px;
  font-size: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
header .header-box .column .search-box .subnav-box .subnav-main .form-box form button svg {
  width: 33.33%;
  height: 33.33%;
  fill: currentColor;
}
header .header-box .column .search-box .subnav-box .subnav-main .form-box form input {
  width: 100%;
  height: 60px;
  flex: 1;
  font-size: var(--font16);
  color: #000000;
}
header .header-box .column .search-box .subnav-box .subnav-main .form-box form input::placeholder {
  color: #666666;
}
header .header-box .column .search-box .subnav-box .subnav-main .form-box form:focus-within button {
  color: var(--color);
}
header .header-box .column .search-box .subnav-box .subnav-main .menu-box {
  width: 100%;
  height: auto;
  margin-top: 20px;
  overflow: hidden;
}
header .header-box .column .search-box .subnav-box .subnav-main .menu-box .headline {
  width: 100%;
  height: auto;
  font-weight: 500;
  font-size: 12px;
  color: #666666;
}
header .header-box .column .search-box .subnav-box .subnav-main .menu-box .menu {
  width: 100%;
  height: auto;
  margin-top: 10px;
}
header .header-box .column .search-box .subnav-box .subnav-main .menu-box .menu .one {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
header .header-box .column .search-box .subnav-box .subnav-main .menu-box .menu .one a {
  width: auto;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  color: #333333;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
header .header-box .column .search-box .subnav-box .subnav-main .menu-box .menu .one a .arrow {
  width: 12px;
  height: 12px;
  font-size: 0;
  transform: rotate(180deg);
  overflow: hidden;
}
header .header-box .column .search-box .subnav-box .subnav-main .menu-box .menu .one a .arrow svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
header .header-box .column .search-box .subnav-box .subnav-main .menu-box .menu .one a .word {
  margin-left: 10px;
  font-weight: bold;
  font-size: 12px;
}
header .header-box .column .search-box .subnav-box .subnav-main .menu-box .menu .one a:hover {
  color: var(--color);
}
header .header-box .column .search-box .subnav-box .subnav-main .menu-box .menu .one + .one {
  margin-top: 10px;
}
header .header-box .column .search-box:hover > a .icon,
header .header-box .column .search-box:focus-within > a .icon {
  color: var(--color);
}
header .header-box .column .search-box:hover .subnav-box,
header .header-box .column .search-box:focus-within .subnav-box {
  transform: translateX(-50%);
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
header .header-box .column .lang-box {
  width: auto;
  height: 100%;
  position: relative;
  z-index: 1;
  padding: 0 0 0 0.15rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  cursor: pointer;
}
header .header-box .column .lang-box .icon {
  width: 22px;
  height: 22px;
  position: relative;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: #FFFFFF;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
header .header-box .column .lang-box .icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
header .header-box .column .lang-box .menu-box {
  width: 2.5rem;
  min-width: 180px;
  height: auto;
  padding-top: 0.1rem;
  position: absolute;
  right: 0;
  top: 100%;
  transform: translateY(-0.1rem);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  overflow: hidden;
}
header .header-box .column .lang-box .menu-box .menu {
  width: 100%;
  height: auto;
  padding: 0.2rem 0;
  border-radius: 0.1rem;
  background: #FFFFFF;
  overflow: hidden;
}
header .header-box .column .lang-box .menu-box .menu .one {
  width: 100%;
  height: auto;
}
header .header-box .column .lang-box .menu-box .menu .one a {
  width: 100%;
  height: auto;
  padding: 15px 0.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
header .header-box .column .lang-box .menu-box .menu .one a .icon-box {
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: 0;
}
header .header-box .column .lang-box .menu-box .menu .one a .info-box {
  width: 100%;
  height: auto;
  flex: 1;
  margin: 0 0.15rem;
}
header .header-box .column .lang-box .menu-box .menu .one a .info-box .title {
  width: 100%;
  height: auto;
  font-weight: 500;
  font-size: var(--font16);
  color: #000000;
  line-height: 20px;
}
header .header-box .column .lang-box .menu-box .menu .one a .info-box .details {
  width: 100%;
  height: auto;
  margin-top: 10px;
  font-size: var(--font14);
  color: #666666;
}
header .header-box .column .lang-box .menu-box .menu .one a .arrow-box {
  width: 10px;
  height: 10px;
  font-size: 0;
  color: #000000;
}
header .header-box .column .lang-box .menu-box .menu .one a .arrow-box svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
header .header-box .column .lang-box .menu-box .menu .one a:hover {
  background: #F7F7F7;
}
header .header-box .column .lang-box:hover .icon {
  color: var(--color);
}
header .header-box .column .lang-box:hover .menu-box {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
header .header-box .column .mobile-switch {
  width: auto;
  height: 100%;
  padding: 0 20px;
  background: var(--active-color);
  color: #FFFFFF;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
header .header-box .column .mobile-switch .icon {
  width: 24px;
  height: 15px;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
header .header-box .column .mobile-switch i {
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: all 0.4s;
}
header .header-box .column .mobile-switch i:first-child {
  position: absolute;
  top: 0;
}
header .header-box .column .mobile-switch i:last-child {
  position: absolute;
  bottom: 0;
}
header .header-box .column .mobile-switch.active i:nth-child(2) {
  opacity: 0;
}
header .header-box .column .mobile-switch.active i:first-child {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
header .header-box .column .mobile-switch.active i:last-child {
  bottom: 50%;
  -webkit-transform: translateY(50%) rotate(-45deg);
  transform: translateY(50%) rotate(-45deg);
}
header .header-box .column .mobile-switch:hover::after {
  opacity: 0;
}
header .header-box::after {
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  background: #FFFFFF;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media (max-width:1280px) {
  header .header-box {
    padding: 0 30px;
  }
  header .header-box nav ul li > a {
    font-size: 16px;
  }
  header .header-box .column .contact-box a {
    height: 36px;
  }
  header .header-box .column .contact-box a .icon {
    width: 18px;
    height: 18px;
  }
  header .header-box .column .contact-box a .word {
    font-size: 12px;
  }
  header .header-box .column .search-box a .icon {
    width: 18px;
    height: 18px;
  }
  header .header-box .column .lang-box .icon {
    width: 20px;
    height: 20px;
  }
}
@media (max-width:1200px) {
  header .header-box nav ul li > a {
    font-size: 14px;
  }
  header .header-box .column .contact-box a {
    min-width: auto;
    height: 36px;
  }
  header .header-box .column .contact-box a .icon {
    width: 14px;
    height: 14px;
  }
  header .header-box .column .contact-box a .word {
    margin-left: 10px;
    font-size: 0;
  }
  header .header-box .column .contact-box a .word::after {
    content: attr(data-title);
    font-size: 12px;
  }
  header .header-box .column .search-box a .icon {
    width: 16px;
    height: 16px;
  }
  header .header-box .column .lang-box .icon {
    width: 16px;
    height: 16px;
  }
}
@media (max-width:1024px) {
  header .header-box {
    padding: 0 20px;
  }
  header .header-box nav ul > li > a {
    padding: 0 0.2rem;
  }
  header .header-box .column .contact-box a {
    height: 32px;
  }
}
@media (max-width:991px) {
  header .header-box {
    padding: 0 0 0 20px;
  }
  header .header-box .logo {
    width: 40%;
  }
  header .header-box nav {
    display: none;
  }
  header .header-box .column .contact-box,
  header .header-box .column .search-box {
    display: none;
  }
  header .header-box .column .lang-box .icon {
    width: 20px;
    height: 20px;
  }
  header .header-box .column .lang-box .menu-box .menu {
    padding: 5px 0;
  }
  header .header-box .column .lang-box .menu-box .menu a {
    padding: 10px 0.3rem;
  }
  header .header-box .column .mobile-switch {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
}
@media (max-width:480px) {
  header .header-box .column .contact-box a {
    width: 32px;
    min-width: auto;
    padding: 0;
  }
  header .header-box .column .contact-box a .icon {
    width: 12px;
    height: 12px;
  }
  header .header-box .column .contact-box a .word {
    display: none;
  }
}
/* 移动端 */
.mobile-header {
  width: 100%;
  height: var(--vh);
  padding: var(--header-height) 0 20px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
  background: #FFFFFF;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}
.mobile-header .mobile-main {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}
.mobile-header .mobile-main .mobile-nav {
  width: 100%;
  height: 100%;
  flex: 1;
  overflow: hidden;
  overflow-y: auto;
}
.mobile-header .mobile-main .mobile-nav ul {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.mobile-header .mobile-main .mobile-nav ul li {
  width: 100%;
  height: auto;
}
.mobile-header .mobile-main .mobile-nav ul li .headline {
  width: 100%;
  height: auto;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.mobile-header .mobile-main .mobile-nav ul li .headline a {
  width: auto;
  max-width: 100%;
  flex: 1;
  height: auto;
  font-weight: bold;
  font-size: 16px;
  color: #000000;
}
.mobile-header .mobile-main .mobile-nav ul li .headline .icon {
  width: 5px;
  height: 8px;
  font-size: 0;
  color: #000000;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  box-sizing: content-box;
  padding: 5px 0 5px 20px;
}
.mobile-header .mobile-main .mobile-nav ul li .headline .icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.mobile-header .mobile-main .mobile-nav ul li ul {
  width: 100%;
  height: auto;
  padding: 14px 20px 14px 36px;
  display: none;
  background: #FAFAFA;
}
.mobile-header .mobile-main .mobile-nav ul li ul li {
  width: 100%;
  height: auto;
}
.mobile-header .mobile-main .mobile-nav ul li ul li > .headline {
  padding: 0;
  border: 0;
}
.mobile-header .mobile-main .mobile-nav ul li ul li > .headline .icon {
  width: 5px;
  height: 8px;
  font-size: 0;
  color: #333333;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.mobile-header .mobile-main .mobile-nav ul li ul li > .headline .icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.mobile-header .mobile-main .mobile-nav ul li ul li > .headline a,
.mobile-header .mobile-main .mobile-nav ul li ul li > a {
  width: auto;
  max-width: 100%;
  display: block;
  padding: 10px 0;
  font-weight: 500;
  font-size: 14px;
  color: #333333;
  overflow: hidden;
}
.mobile-header .mobile-main .mobile-nav ul li ul li.is-set > .headline::after {
  content: '+';
  width: auto;
  height: auto;
  padding: 10px 0 10px 20px;
  text-align: right;
  line-height: 1;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.mobile-header .mobile-main .mobile-nav ul li ul li.is-set.active > .headline::after {
  content: '-';
  color: var(--active-color);
}
.mobile-header .mobile-main .mobile-nav ul li ul li ul {
  padding: 0 0 10px 14px;
}
.mobile-header .mobile-main .mobile-nav ul li ul li ul li > .headline a,
.mobile-header .mobile-main .mobile-nav ul li ul li ul li a {
  padding: 6px 0;
  font-weight: normal;
  font-size: 12px;
  color: #999999;
}
.mobile-header .mobile-main .mobile-nav ul li ul li {
  border: 0;
}
.mobile-header .mobile-main .mobile-nav ul > li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.mobile-header .mobile-main .mobile-nav ul li.active > a,
.mobile-header .mobile-main .mobile-nav ul li.active > .headline a {
  color: var(--color);
}
.mobile-header .mobile-main .mobile-nav ul li.is-set.active > .headline .icon {
  color: var(--color);
}
.mobile-header .mobile-main .mobile-nav ul li.active > .headline .icon {
  color: var(--color);
}
.mobile-header .mobile-main .function-box {
  width: 100%;
  height: auto;
  margin-top: 40px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 15px 30px;
  overflow: hidden;
}
.mobile-header .mobile-main .function-box .item {
  width: 100%;
  height: auto;
}
.mobile-header .mobile-main .function-box .item a {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 5px;
  background: var(--active-color);
  overflow: hidden;
}
.mobile-header .mobile-main .function-box .item a .icon {
  width: 16px;
  height: 16px;
  font-size: 0;
  color: #333333;
  overflow: hidden;
}
.mobile-header .mobile-main .function-box .item a .icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.mobile-header .mobile-main .function-box .item a .word {
  width: auto;
  height: auto;
  margin-left: 10px;
  font-size: var(--font16);
  color: #333333;
  line-height: 1;
  white-space: nowrap;
}
/* ------------------------------- */
/* ------------------------------- */
/* ------------------------------- */
main {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 10;
  background: #FFFFFF;
  overflow: hidden;
}
main.active {
  overflow: visible;
}
/* ------------------------------- 首页 => 公共样式 */
.parallax-box {
  width: 100%;
  height: 120%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  overflow: hidden;
}
.parallax-box .parallax-main {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.public-logo {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.public-logo .logo {
  width: auto;
  height: 1em;
  font-size: var(--font46);
}
.public-logo .logo img {
  height: 100%;
  vertical-align: top;
}
.public-logo .word {
  width: auto;
  height: auto;
  font-weight: 200;
  font-size: var(--font48);
  line-height: 1;
  color: #000000;
}
.public-logo .logo + .word {
  margin-left: 0.25em;
  transform: translateY(0.05em);
}
.public-logo.white .logo {
  filter: brightness(0) invert(1);
}
.public-logo.white .word {
  color: #FFFFFF;
}
@media (max-width:768px) {
  .public-logo .logo {
    font-size: 0.64rem;
  }
  .public-logo .word {
    font-size: 0.72rem;
  }
}
.idx-title {
  width: 100%;
  height: auto;
  text-align: center;
}
.idx-title .title {
  width: 100%;
  height: auto;
  font-weight: bold;
  font-size: var(--font64);
  color: #333333;
  line-height: 1.25;
}
.idx-title .details {
  width: 100%;
  height: auto;
  margin: 0.25rem auto 0;
  font-weight: 300;
  font-size: var(--font18);
  color: #000000;
  line-height: 1.556;
}
.idx-title.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.idx-title.active .title {
  flex: 1;
}
.idx-title.active .public-more {
  width: auto;
  margin-left: 1rem;
}
@media (max-width:768px) {
  .idx-title .title {
    font-size: 32px;
  }
  .idx-title .details {
    font-size: 14px;
  }
  .idx-title.active {
    display: block;
  }
  .idx-title.active .public-more {
    display: none;
  }
}
.public-more {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.public-more .more {
  width: auto;
  height: 44px;
  position: relative;
  z-index: 1;
  padding: 0 20px;
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  grid-gap: 0.5em;
  font-size: var(--font16);
  color: #FFFFFF;
  line-height: 1;
  white-space: nowrap;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
  -webkit-clip-path: inset(0 -1px 0 0);
  clip-path: inset(0 -1px 0 0);
}
.public-more .more svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.public-more .more::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
  background: #000000;
  border-radius: 50px;
}
.public-more .more::after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  top: 100%;
  z-index: -1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--color);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.public-more .more:hover {
  color: #FFFFFF;
}
.public-more .more:hover::before {
  opacity: 0;
  transition-delay: 0.35s;
}
.public-more .more:hover::after {
  width: 200%;
  padding-bottom: 100%;
}
.public-more.active .more {
  height: 54px;
  padding: 0 35px;
  font-weight: 500;
}
.public-more.white .more {
  color: #000000;
}
.public-more.white .more::before {
  background: #FFFFFF;
}
.public-more.white .more:hover {
  background: var(--color);
  color: #FFFFFF;
}
.public-more.border .more {
  color: #000000;
}
.public-more.border .more::before {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
}
.public-more.border .more:hover {
  color: #FFFFFF;
}
.public-more.white.border .more {
  border-color: rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
}
.public-more.white.border .more:hover {
  background: var(--color);
  border-color: transparent;
}
@media (max-width:1600px) {
  .public-more .more {
    height: 42px;
  }
  .public-more.active .more {
    height: 52px;
  }
}
@media (max-width:1440px) {
  .public-more .more {
    height: 40px;
  }
  .public-more.active .more {
    height: 50px;
  }
}
@media (max-width:1280px) {
  .public-more.active .more {
    height: 48px;
  }
}
@media (max-width:1024px) {
  .public-more .more {
    height: 38px;
  }
  .public-more.active .more {
    height: 44px;
  }
}
@media (max-width:480px) {
  .public-more .more {
    height: 34px;
    padding: 0 15px;
    font-size: 13px;
  }
  .public-more.active .more {
    height: 40px;
    padding: 0 25px;
  }
}
.public-more-hover .public-more .more {
  color: #FFFFFF;
}
.public-more-hover .public-more .more::before {
  opacity: 0;
  transition-delay: 0.35s;
}
.public-more-hover .public-more .more::after {
  width: 200%;
  padding-bottom: 100%;
}
.public-more-hover .public-more.white .more {
  background: var(--color);
  color: #FFFFFF;
}
.public-more-hover .public-more.border .more {
  color: #FFFFFF;
}
.public-more-hover .public-more.white.border .more {
  background: var(--color);
  border-color: transparent;
}
.public-arrow {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.public-arrow .more {
  width: auto;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: 0;
}
.public-arrow .more .word {
  width: auto;
  height: auto;
  position: relative;
  z-index: 1;
  font-weight: 500;
  font-size: var(--font20);
  color: #000000;
  line-height: 0.9;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.public-arrow .more .word::after {
  content: '';
  width: 0;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  background: var(--color);
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.public-arrow .more .icon {
  width: 7px;
  height: 11px;
  margin-left: 10px;
  font-size: 0;
  color: var(--color);
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.public-arrow .more .icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.public-arrow.active .more {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.public-arrow.active .more .word {
  font-weight: normal;
  font-size: var(--font16);
  color: var(--color);
}
.public-arrow.active .more .icon {
  width: 5px;
  height: 8px;
  transform: translateY(-0.5px);
}
.public-arrow .more:hover .word {
  color: var(--color);
}
.public-arrow .more:hover .word::after {
  width: 100%;
}
.public-arrow .more:hover .icon {
  transform: translateX(5px);
}
@media (max-width:1024px) {
  .public-arrow .more .icon {
    width: 6px;
    height: 9px;
  }
}
.public-arrow-hover .public-arrow .more .word {
  color: var(--color);
}
.public-arrow-hover .public-arrow .more .word::after {
  width: 100%;
}
.public-arrow-hover .public-arrow .more .icon {
  transform: translateX(5px);
}
.public-pager {
  width: 100%;
  height: auto;
  font-size: 0;
  text-align: center;
}
.public-pager .pager {
  width: auto;
  height: auto;
  margin-top: 0.6rem;
}
.public-pager .pager span {
  width: 0.3rem;
  height: 4px;
  border-radius: 0;
  background: var(--color);
  opacity: 0.2;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.public-pager .pager span + span {
  margin-left: 0.1rem;
}
.public-pager .pager span.active {
  width: 0.6rem;
  opacity: 1;
}
@media (max-width:1280px) {
  .public-pager .pager span {
    height: 3px;
  }
}
/* ------------------------------- */
/* ------------------------------- */
/* ------------------------------- */
/* ------------------------------- Banner */
.idx-banner {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background: #333333;
  --offsetValue: 0;
  overflow: hidden;
}
.idx-banner::before {
  content: '';
  width: 100%;
  height: calc(2 * var(--header-height));
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  pointer-events: none;
  background: linear-gradient(#000000 -100%, transparent);
  opacity: 0.8;
}
.idx-banner .swiper-box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx-banner .swiper-box .swiper-slide {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx-banner .swiper-box .swiper-slide.active {
  z-index: 5;
  pointer-events: auto;
}
.idx-banner .swiper-box .swiper-slide .banner-info {
  width: 100%;
  height: 100%;
  padding: var(--header-height) 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  overflow: hidden;
}
.idx-banner .swiper-box .swiper-slide .banner-info .info-box {
  width: 100%;
  max-width: 680px;
  height: auto;
}
.idx-banner .swiper-box .swiper-slide .banner-info .info-box .classify {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.idx-banner .swiper-box .swiper-slide .banner-info .info-box .classify span {
  padding: 0.6em 1em;
  border-radius: 1em 0.25em 1em 0.25em;
  background: var(--color);
  font-weight: 500;
  font-size: var(--font16);
  color: #FFFFFF;
  line-height: 1;
}
.idx-banner .swiper-box .swiper-slide .banner-info .info-box .classify + .title {
  margin-top: 0.15rem;
}
.idx-banner .swiper-box .swiper-slide .banner-info .info-box .title {
  width: 100%;
  height: auto;
  font-weight: bold;
  font-size: 1.1rem;
  color: #FFFFFF;
  line-height: 1;
  letter-spacing: -0.05em;
}
.idx-banner .swiper-box .swiper-slide .banner-info .info-box .subtitle {
  width: 100%;
  height: auto;
  margin-top: 0.2rem;
  font-weight: bold;
  font-size: var(--font40);
  color: #FFFFFF;
  line-height: 1;
  letter-spacing: -0.05em;
}
.idx-banner .swiper-box .swiper-slide .banner-info .info-box .details {
  width: 100%;
  height: auto;
  margin-top: 0.1rem;
  font-weight: 500;
  font-size: var(--font24);
  color: #FFFFFF;
  line-height: 1.2;
}
.idx-banner .swiper-box .swiper-slide .banner-info .info-box .public-more {
  margin-top: 0.7rem;
}
.idx-banner .swiper-box .swiper-slide .images-box {
  width: 100%;
  height: auto;
  padding-bottom: 100vh;
  min-height: 580px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx-banner .swiper-box .swiper-slide .images-box .images {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  font-size: 0;
  transform: translateY(var(--offsetValue));
  overflow: hidden;
}
.idx-banner .swiper-box .swiper-slide .images-box .images picture {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
}
.idx-banner .swiper-box .swiper-slide .images-box .images img,
.idx-banner .swiper-box .swiper-slide .images-box .images video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.idx-banner .swiper-box .swiper-slide .images-box .images video ~ picture {
  display: none;
}
.idx-banner .pager-box {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  bottom: 0.6rem;
  z-index: 10;
}
.idx-banner .pager-box .pager-main {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  text-align: center;
}
.idx-banner .pager-box .pager-main .pager {
  width: auto;
  height: auto;
  font-size: 0;
  overflow: hidden;
}
.idx-banner .pager-box .pager-main .pager span {
  width: 1rem;
  height: 5px;
  position: relative;
  z-index: 1;
  border-radius: 0;
  background: #FFFFFF;
  opacity: 0.3;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.idx-banner .pager-box .pager-main .pager span + span {
  margin-left: 10px;
}
.idx-banner .pager-box .pager-main .pager span.active {
  opacity: 1;
}
@media (max-width:991px) {
  .idx-banner .pager-box .pager-main .pager span {
    width: 0.6rem;
    height: 2px;
  }
}
@media (max-width:768px) {
  .idx-banner .swiper-box .swiper-slide .banner-info {
    display: block;
  }
  .idx-banner .swiper-box .swiper-slide .banner-info .info-box {
    padding-top: var(--header-height);
    text-align: center;
  }
  .idx-banner .swiper-box .swiper-slide .banner-info .info-box .classify {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .idx-banner .swiper-box .swiper-slide .banner-info .info-box .classify span {
    font-size: 12px;
  }
  .idx-banner .swiper-box .swiper-slide .banner-info .info-box .title {
    font-size: 48px;
  }
  .idx-banner .swiper-box .swiper-slide .banner-info .info-box .details {
    font-size: 14px;
  }
  .idx-banner .swiper-box .swiper-slide .banner-info .info-box .public-more {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .idx-banner .swiper-box .swiper-slide .images-box {
    padding-bottom: 177.8667%;
  }
  .idx-banner .pager-box {
    bottom: 20px;
  }
}
/* ------------------------------- */
/* ------------------------------- */
/* ------------------------------- */
/* ------------------------------- Product */
.idx-products {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin: 0 0 1rem;
  padding: 0.3rem 0.3rem 0;
  overflow: hidden;
}
.idx-products .products-box {
  width: 100%;
  max-width: 1920px;
  height: auto;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0.3rem;
}
.idx-products .products-box .item {
  width: 100%;
  height: auto;
  background: #F5F5F5;
  border-radius: 0.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
}
.idx-products .products-box .item .info-box {
  width: 100%;
  height: auto;
  padding: 0.6rem 0.6rem 0;
}
.idx-products .products-box .item .info-box .info {
  width: 100%;
  height: auto;
  text-align: center;
}
.idx-products .products-box .item .info-box .info .title {
  width: 100%;
  height: auto;
  font-weight: bold;
  font-size: var(--font48);
  color: #333333;
}
.idx-products .products-box .item .info-box .info .details {
  width: 100%;
  height: auto;
  font-size: var(--font18);
  color: #666666;
}
.idx-products .products-box .item .info-box .button-box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 0.2rem;
}
.idx-products .products-box .item .info-box .button-box .public-more {
  width: auto;
}
.idx-products .products-box .item .info-box .button-box .public-more.border .more::before {
  border-color: rgba(0, 0, 0, 0.15);
}
.idx-products .products-box .item .info-box .button-box .public-more + .public-more {
  margin-left: 0.1rem;
}
.idx-products .products-box .item .img {
  width: 80%;
  max-width: 538px;
  height: auto;
  margin: 0 auto;
  overflow: hidden;
}
.idx-products .products-box .item .img .pb {
  padding-bottom: 82.19178082%;
}
.idx-products .products-box .item .img img {
  -webkit-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.idx-products .products-box .item:hover .img img {
  transform: scale(1.05);
}
.idx-products .public-arrow {
  margin-top: 0.6rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width:768px) {
  .idx-products .products-box {
    grid-template-columns: 1fr;
  }
}
/* ------------------------------- */
/* ------------------------------- */
/* ------------------------------- */
/* ------------------------------- Multiple Payment Methods */
.idx-payment {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin: 1rem 0 1.6rem;
  overflow: hidden;
}
.idx-payment .payment-box {
  width: 100%;
  height: auto;
}
.idx-payment .payment-box .menu-box {
  width: 100%;
  height: auto;
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.2rem;
}
.idx-payment .payment-box .menu-box .item {
  width: 100%;
  height: auto;
  background: #F6F6F6;
  border-radius: 0.3rem;
  overflow: hidden;
}
.idx-payment .payment-box .menu-box .item a {
  display: block;
  padding: 0.6rem;
}
.idx-payment .payment-box .menu-box .item .img {
  width: 50%;
  max-width: 120px;
  height: auto;
  margin: 0 auto;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.idx-payment .payment-box .menu-box .item .title {
  width: 100%;
  height: auto;
  margin-top: 10px;
  text-align: center;
  font-weight: bold;
  font-size: var(--font20);
  color: #000000;
  line-height: 1.25;
}
.idx-payment .payment-box .menu-box .item:hover .img {
  transform: translateY(-10px);
}
@media (max-width:768px) {
  .idx-payment .payment-box .menu-box {
    grid-template-columns: repeat(2, 1fr);
  }
  .idx-payment .payment-box .menu-box .item {
    border-radius: 0.2rem;
  }
}
@media (max-width:480px) {
  .idx-payment .payment-box .menu-box .item a {
    padding: 30px 15px;
  }
  .idx-payment .payment-box .menu-box .item .title {
    font-size: 14px;
  }
}
/* ------------------------------- */
/* ------------------------------- */
/* ------------------------------- */
/* ------------------------------- Certifications */
.idx-certificate {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 1.6rem 0 2.8rem;
  overflow: hidden;
}
.idx-certificate .idx-title {
  position: relative;
  z-index: 10;
}
.idx-certificate .idx-title .title {
  color: #FFFFFF;
}
.idx-certificate .certificate-box {
  width: 100%;
  height: auto;
  margin: 1.2rem auto 0;
}
.idx-certificate .certificate-box .swiper-box {
  width: 100%;
  height: auto;
  --gap: 20px;
  position: relative;
  z-index: 10;
}
.idx-certificate .certificate-box .swiper-box .swiper-wrapper {
  transition-timing-function: linear;
}
.idx-certificate .certificate-box .swiper-box .swiper-slide {
  width: 15%;
  min-width: 160px;
  max-width: 280px;
  height: auto;
  margin-right: var(--gap);
  position: relative;
  z-index: 1;
  background: rgba(29, 29, 31, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 0.3rem;
  overflow: hidden;
}
.idx-certificate .certificate-box .swiper-box .swiper-slide::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  border-radius: 0.3rem;
  border: 1px solid #FFFFFF;
  opacity: 0.15;
  -webkit-mask: linear-gradient(to right, black, transparent, black);
  mask: linear-gradient(to right, black, transparent, black);
}
.idx-certificate .certificate-box .swiper-box .swiper-slide .pb {
  padding-bottom: 65.34296029%;
}
.idx-certificate .certificate-box .swiper-box .swiper-slide img {
  max-width: 70%;
  max-height: 50%;
}
@media (max-width:1280px) {
  .idx-certificate .certificate-box .swiper-box {
    --gap: 15px;
  }
}
@media (max-width:768px) {
  .idx-certificate {
    padding: 1.5rem 0;
  }
  .idx-certificate .certificate-box .swiper-box {
    --gap: 10px;
  }
}
.idx-certificate .images-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  overflow: hidden;
}
.idx-certificate .images-bg img,
.idx-certificate .images-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
/* ------------------------------- */
/* ------------------------------- */
/* ------------------------------- */
/* ------------------------------- Cloud Services */
.idx-services {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin: 1.3rem 0 1.4rem;
}
.idx-services .services-box {
  width: 100%;
  height: auto;
}
.idx-services .services-box .menu-box {
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0.3rem;
}
.idx-services .services-box .menu-box .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  background: #F4F4F4;
  border-radius: 0.3rem;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.idx-services .services-box .menu-box .item .info-box {
  width: 100%;
  height: auto;
  padding: 0.55rem 0.55rem 0;
}
.idx-services .services-box .menu-box .item .info-box .info {
  width: 100%;
  max-width: 580px;
  height: auto;
  margin: 0 auto;
  text-align: center;
}
.idx-services .services-box .menu-box .item .info-box .info .title {
  width: 100%;
  height: auto;
  font-weight: bold;
  font-size: var(--font48);
  color: #000000;
  line-height: 1;
}
.idx-services .services-box .menu-box .item .info-box .info .details {
  width: 100%;
  height: auto;
  margin-top: 10px;
  font-size: var(--font18);
  color: #666666;
  line-height: 1.25;
  opacity: 0.6;
}
.idx-services .services-box .menu-box .item .info-box .public-more {
  margin-top: 0.2rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.idx-services .services-box .menu-box .item .img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx-services .services-box .menu-box .item .img .pb {
  padding-bottom: 68.30601093%;
}
.idx-services .services-box .menu-box .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.idx-services .services-box .menu-box .item:hover {
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.08), 0 0 0 2px #ffffff inset;
}
.idx-services .services-box .menu-box .item:hover .public-more .more {
  color: #FFFFFF;
}
.idx-services .services-box .menu-box .item:hover .public-more .more::before {
  opacity: 0;
  transition-delay: 0.35s;
}
.idx-services .services-box .menu-box .item:hover .public-more .more::after {
  width: 200%;
  padding-bottom: 100%;
}
.idx-services .services-box .menu-box .item:hover .public-more.white .more {
  background: var(--color);
  color: #FFFFFF;
}
.idx-services .services-box .menu-box .item:hover .public-more.border .more {
  color: #FFFFFF;
}
.idx-services .services-box .menu-box .item:hover .public-more.white.border .more {
  background: var(--color);
  border-color: transparent;
}
.idx-services .services-box .menu-box .item:hover .img img {
  transform: scale(1.05);
}
@media (max-width:1024px) {
  .idx-services .services-box .menu-box .item .info-box {
    padding: 30px 20px 0;
  }
}
@media (max-width:991px) {
  .idx-services .services-box .menu-box .item:hover {
    box-shadow: none;
  }
}
@media (max-width:768px) {
  .idx-services .services-box .menu-box {
    grid-template-columns: 1fr;
    grid-gap: 0.2rem;
  }
  .idx-services .services-box .menu-box .item {
    border-radius: 0.2rem;
  }
}
/* ------------------------------- */
/* ------------------------------- */
/* ------------------------------- */
/* ------------------------------- OEM & ODM */
.idx-oem {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin: 1.4rem 0 1.9rem;
  overflow: hidden;
}
.idx-oem .oem-box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.idx-oem .oem-box .oem-main {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin-top: 0.6rem;
  border-radius: 0.3rem;
  overflow: hidden;
}
.idx-oem .oem-box .oem-main .info-box {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.idx-oem .oem-box .oem-main .info-box .info {
  width: 100%;
  height: auto;
  padding: 0.5rem 0.4rem;
}
.idx-oem .oem-box .oem-main .info-box .info .title {
  width: 100%;
  height: auto;
  font-weight: bold;
  font-size: var(--font42);
  color: #FFFFFF;
}
.idx-oem .oem-box .oem-main .info-box .info .details {
  width: 100%;
  max-width: 768px;
  height: auto;
  margin: 0.2rem auto;
  font-size: var(--font18);
  color: #FFFFFF;
  line-height: 1.556;
}
.idx-oem .oem-box .oem-main .info-box .info .public-more {
  margin-top: 0.4rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.idx-oem .oem-box .oem-main .info-box .info .public-more .more:hover {
  filter: brightness(1.2);
}
.idx-oem .oem-box .oem-main .images {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx-oem .oem-box .oem-main .images .pb {
  padding-bottom: 37.5%;
  min-height: 300px;
}
.idx-oem .oem-box .oem-main .images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx-oem .oem-box .oem-main::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  pointer-events: none;
  background: #000000;
  opacity: 0.6;
}
@media (max-width:768px) {
  .idx-oem .oem-box .oem-main {
    border-radius: 0.2rem;
  }
}
/* ------------------------------- */
/* ------------------------------- */
/* ------------------------------- */
/* ------------------------------- Walk into Dspread */
.idx-about {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background: #F6F6F6;
  overflow: hidden;
}
.idx-about .about-box {
  width: 100%;
  height: auto;
  padding: 1.2rem 0 1.5rem;
}
.idx-about .about-box .idx-title .details {
  max-width: 1110px;
}
.idx-about .about-box .public-more {
  margin-top: 0.3rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.idx-about .about-box .menu-box {
  width: 100%;
  height: auto;
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}
.idx-about .about-box .menu-box .item {
  width: auto;
  height: auto;
  text-align: center;
}
.idx-about .about-box .menu-box .item .number {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-weight: 500;
  font-size: 0;
  color: var(--color);
}
.idx-about .about-box .menu-box .item .number .beat,
.idx-about .about-box .menu-box .item .number .unit {
  font-size: var(--font54);
  line-height: 1;
}
.idx-about .about-box .menu-box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.1rem;
  font-size: var(--font18);
  color: #000000;
  opacity: 0.5;
}
@media (max-width:480px) {
  .idx-about .about-box .menu-box {
    grid-gap: 20px;
  }
  .idx-about .about-box .menu-box .item .number .beat,
  .idx-about .about-box .menu-box .item .number .unit {
    font-size: 0.54rem;
  }
  .idx-about .about-box .menu-box .item .word {
    font-size: 13px;
  }
}
.idx-about::after {
  content: '';
  width: 200%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: url(../images/idx-about-bg.jpg) repeat-x left bottom / 50%;
  animation: rollBgAni 60s ease infinite;
}
@keyframes rollBgAni {
  0% {
    transform: translateX 0;
  }
  100% {
    transform: translateX(-50%);
  }
}
/* ------------------------------- */
/* ------------------------------- */
/* ------------------------------- */
/* ------------------------------- Recent Events */
.idx-news {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx-news .news-box {
  width: 100%;
  height: auto;
  padding: 1.2rem 0;
}
.idx-news .news-box .idx-title .title {
  font-size: var(--font56);
}
.idx-news .news-box .swiper-box {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
}
.idx-news .news-box .swiper-box .swiper-slide {
  width: 30%;
  height: auto;
  overflow: hidden;
}
.idx-news .news-box .swiper-box .swiper-slide a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.idx-news .news-box .swiper-box .swiper-slide a .img {
  width: 100%;
  height: auto;
  border-radius: 0.3rem;
  overflow: hidden;
}
.idx-news .news-box .swiper-box .swiper-slide a .img .pb {
  padding-bottom: 56.25%;
}
.idx-news .news-box .swiper-box .swiper-slide a .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.idx-news .news-box .swiper-box .swiper-slide a .info-box {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.idx-news .news-box .swiper-box .swiper-slide a .info-box .info {
  width: 100%;
  height: auto;
}
.idx-news .news-box .swiper-box .swiper-slide a .info-box .info .time {
  width: 100%;
  height: auto;
  display: block;
  line-height: 1;
  font-weight: 500;
  font-size: var(--font16);
  color: #666666;
}
.idx-news .news-box .swiper-box .swiper-slide a .info-box .info .title {
  width: 100%;
  height: calc(3em * 1.45);
  margin-top: 0.15rem;
  font-size: var(--font22);
  color: #333333;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.idx-news .news-box .swiper-box .swiper-slide a .info-box .public-more {
  margin-top: 0.3rem;
}
.idx-news .news-box .swiper-box .swiper-slide a:hover .img img {
  transform: scale(1.05);
}
.idx-news .news-box .swiper-box .swiper-slide a:hover .public-more .more {
  color: #FFFFFF;
}
.idx-news .news-box .swiper-box .swiper-slide a:hover .public-more .more::before {
  opacity: 0;
  transition-delay: 0.35s;
}
.idx-news .news-box .swiper-box .swiper-slide a:hover .public-more .more::after {
  width: 200%;
  padding-bottom: 100%;
}
.idx-news .news-box .swiper-box .swiper-slide a:hover .public-more.white .more {
  background: var(--color);
  color: #FFFFFF;
}
.idx-news .news-box .swiper-box .swiper-slide a:hover .public-more.border .more {
  color: #FFFFFF;
}
.idx-news .news-box .swiper-box .swiper-slide a:hover .public-more.white.border .more {
  background: var(--color);
  border-color: transparent;
}
.idx-news .news-box .pager-box {
  width: 100%;
  height: auto;
  text-align: center;
}
.idx-news .news-box .pager-box .pager {
  width: auto;
  height: auto;
  margin-top: 0.8rem;
  font-size: 0;
  overflow: hidden;
}
.idx-news .news-box .pager-box .pager span {
  width: 0.4rem;
  height: 2px;
  position: relative;
  z-index: 1;
  border-radius: 0;
  background: #000000;
  opacity: 0.15;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.idx-news .news-box .pager-box .pager span + span {
  margin-left: 0.1rem;
}
.idx-news .news-box .pager-box .pager span.active {
  opacity: 1;
}
.idx-news .news-box > .public-arrow {
  margin-top: 0.8rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width:768px) {
  .idx-news .news-box .idx-title .title {
    font-size: 28px;
  }
  .idx-news .news-box .swiper-box .swiper-slide a .img {
    border-radius: 0.2rem;
  }
}
/* ------------------------------- */
/* ------------------------------- */
/* ------------------------------- */
/* ------------------------------- Ready to Boost Your Business With DSPREAD? */
.idx-business {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 10;
  background: #F8F8F8;
  overflow: hidden;
}
.idx-business.active {
  margin: 0.8rem 0 0;
  background: transparent;
  overflow: visible;
}
.idx-business.active .business-box {
  padding-top: 0;
}
.idx-business .business-box {
  width: 100%;
  height: auto;
  padding: 0.8rem 0;
}
.idx-business .business-box .idx-title .title {
  font-size: var(--font48);
}
.idx-business .business-box .idx-title .title span {
  display: inline-block;
  transform: translateY(75%);
  opacity: 0;
}
.idx-business .business-box .idx-title.animated .title span {
  animation-name: publicAniTitleAni;
  animation-duration: 0.5s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}
.idx-business .business-box .public-more {
  margin-top: 0.3rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.idx-business .business-box .public-more .more {
  background: var(--color);
  padding: 0 0.35rem;
  font-size: var(--font14);
}
.idx-business .business-box .public-more .more:hover {
  filter: brightness(1.2);
}
@media (max-width:768px) {
  .idx-business .business-box .idx-title .title {
    font-size: 24px;
  }
}
@keyframes publicAniTitleAni {
  0% {
    transform: translateY(75%);
    opacity: 0;
  }
  100% {
    transform: translateZ(0);
    opacity: 1;
  }
}
/* ------------------------------- */
/* ------------------------------- */
/* ------------------------------- */
/* ------------------------------- 底部 */
footer {
  width: 100%;
  height: auto;
  position: sticky;
  bottom: 0;
  z-index: 1;
  background: #1D1D1F;
  overflow: hidden;
}
footer .footer-box {
  width: 100%;
  height: auto;
  padding-top: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
footer .footer-box .foot-contact {
  width: 30%;
  max-width: 300px;
  height: auto;
}
footer .footer-box .foot-contact .logo {
  width: 100%;
  max-width: 160px;
  height: auto;
  font-size: 0;
}
footer .footer-box .foot-contact .logo svg {
  width: 100%;
  height: auto;
}
footer .footer-box .foot-contact .logo svg .logo-text {
  filter: url(#invertFilter);
}
footer .footer-box .foot-contact .contact-box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
footer .footer-box .foot-contact .contact-box .headline {
  width: 100%;
  height: auto;
  padding-left: 0.15rem;
  font-size: var(--font16);
  color: #FFFFFF;
  opacity: 0.2;
}
footer .footer-box .foot-contact .contact-box .form-box {
  width: 100%;
  height: auto;
  margin-top: 0.15rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
footer .footer-box .foot-contact .contact-box .form-box form {
  width: 100%;
  height: 46px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding: 4px;
  padding-left: 0.25rem;
}
footer .footer-box .foot-contact .contact-box .form-box form input {
  width: 100%;
  height: 100%;
  flex: 1;
  margin-right: 1em;
  font-size: var(--font18);
  color: #FFFFFF;
  overflow: hidden;
}
footer .footer-box .foot-contact .contact-box .form-box form input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}
footer .footer-box .foot-contact .contact-box .form-box form button {
  width: 68px;
  height: 100%;
  padding: 0;
  border-radius: 50px;
  background: #FFFFFF;
  font-size: 0;
  color: #000000;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
footer .footer-box .foot-contact .contact-box .form-box form button svg {
  width: 100%;
  max-width: 100%;
  height: 100%;
  fill: currentColor;
}
footer .footer-box .foot-contact .contact-box .form-box form button:hover {
  background: var(--color);
  color: #FFFFFF;
}
footer .footer-box .foot-contact .share-box {
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
}
footer .footer-box .foot-contact .share-box .headline {
  width: 100%;
  height: auto;
  padding-left: 0.15rem;
  font-size: var(--font16);
  color: #FFFFFF;
  opacity: 0.2;
}
footer .footer-box .foot-contact .share-box .share {
  width: 100%;
  height: auto;
  margin-top: 0.15rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
footer .footer-box .foot-contact .share-box .share .item {
  width: auto;
  height: auto;
}
footer .footer-box .foot-contact .share-box .share .item a {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
footer .footer-box .foot-contact .share-box .share .item a .icon-box {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
footer .footer-box .foot-contact .share-box .share .item a .icon-box img {
  max-width: 40%;
  max-height: 40%;
  filter: brightness(0) invert(1);
  opacity: 0.6;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
footer .footer-box .foot-contact .share-box .share .item a .qrcode-box {
  width: 100px;
  height: auto;
  position: absolute;
  left: 50%;
  bottom: 100%;
  z-index: 10;
  transform: translate(-50%, -0.16rem);
  padding-top: 0.16rem;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
}
footer .footer-box .foot-contact .share-box .share .item a .qrcode-box::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  margin: 0 auto;
  border-style: solid;
  border-width: 4px 3.5px 0 3.5px;
  border-color: #FFFFFF transparent transparent transparent;
}
footer .footer-box .foot-contact .share-box .share .item a .qrcode-box .qrcode {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  overflow: hidden;
}
footer .footer-box .foot-contact .share-box .share .item a .qrcode-box .qrcode .img {
  width: 100%;
  height: auto;
  padding: 2px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
footer .footer-box .foot-contact .share-box .share .item a .qrcode-box .qrcode .word {
  width: 100%;
  height: auto;
  padding: 5px 5px 8px;
  text-align: center;
  font-size: 12px;
  color: #666666;
  line-height: 1;
}
footer .footer-box .foot-contact .share-box .share .item a:hover .icon-box {
  border-color: #FFFFFF;
}
footer .footer-box .foot-contact .share-box .share .item a:hover .icon-box img {
  opacity: 1;
}
footer .footer-box .foot-contact .share-box .share .item a:hover .qrcode-box {
  transform: translate(-50%, 0);
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}
footer .footer-box .foot-contact .share-box .share .item + .item {
  margin-left: 0.2rem;
}
footer .footer-box .foot-nav {
  width: 55%;
  max-width: 850px;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  grid-gap: 0.8rem;
}
footer .footer-box .foot-nav .item {
  width: 100%;
  height: auto;
  overflow: hidden;
}
footer .footer-box .foot-nav .item .headline {
  width: 100%;
  height: auto;
  font-weight: 500;
  font-size: var(--fon18);
  color: #FFFFFF;
}
footer .footer-box .foot-nav .item .headline a {
  width: auto;
  height: auto;
  position: relative;
  z-index: 1;
  color: #FFFFFF;
}
footer .footer-box .foot-nav .item .headline .icon {
  width: 7px;
  height: 11px;
  margin-right: -10px;
  padding: 15px 20px;
  box-sizing: content-box;
  font-size: 0;
  color: #FFFFFF;
  display: none;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
footer .footer-box .foot-nav .item .headline .icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
footer .footer-box .foot-nav .item .menu {
  width: 100%;
  height: auto;
  margin-top: 0.3rem;
  overflow: hidden;
}
footer .footer-box .foot-nav .item .menu .one {
  width: 100%;
  height: auto;
}
footer .footer-box .foot-nav .item .menu .one a {
  width: auto;
  height: auto;
  position: relative;
  z-index: 1;
  font-weight: 500;
  font-size: var(--font14);
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
footer .footer-box .foot-nav .item .menu .one a:hover {
  color: #FFFFFF;
}
footer .footer-box .foot-nav .item .menu .one + .one {
  margin-top: 0.15rem;
}
footer .footer-box .foot-nav .item.active .headline .icon {
  transform: rotate(90deg);
}
footer .footer-box .copy-box {
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
  padding: 0.3rem 0 0.45rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
}
footer .footer-box .copy-box .copy {
  width: auto;
  max-width: 60%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  grid-gap: 0.5em 1em;
  text-align: center;
  font-size: var(--font14);
  color: rgba(255, 255, 255, 0.2);
}
footer .footer-box .copy-box .copy a {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.5);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
footer .footer-box .copy-box .copy a:hover {
  color: #FFFFFF;
}
footer .footer-box .copy-box .links {
  width: auto;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  grid-gap: 5px 1.5em;
  font-size: var(--font14);
  color: rgba(255, 255, 255, 0.2);
}
footer .footer-box .copy-box .links a {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.2);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
footer .footer-box .copy-box .links a:hover {
  color: #FFFFFF;
}
@media (max-width:1280px) {
  footer .footer-box .foot-contact {
    width: 25%;
  }
  footer .footer-box .foot-contact .share-box .share .item a .icon-box {
    width: 36px;
    height: 36px;
  }
  footer .footer-box .foot-nav {
    width: 65%;
    grid-gap: 1rem 0.5rem;
  }
}
@media (max-width:1024px) {
  footer .footer-box .foot-contact .share-box .share .item:first-child a .qrcode-box {
    left: 0;
    transform: translate(0, -0.16rem);
  }
  footer .footer-box .foot-contact .share-box .share .item:first-child a .qrcode-box::after {
    margin: 0 0 0 18px;
    transform: translateX(-50%);
  }
  footer .footer-box .foot-contact .share-box .share .item:first-child a:hover .qrcode-box {
    transform: translateZ(0);
  }
}
@media (max-width:991px) {
  footer .footer-box {
    display: block;
  }
  footer .footer-box .foot-contact {
    width: 100%;
    max-width: 100%;
  }
  footer .footer-box .foot-contact .contact-box {
    margin-top: 30px;
  }
  footer .footer-box .foot-nav {
    width: 100%;
    max-width: 100%;
    margin-top: 60px;
  }
}
@media (max-width:768px) {
  footer .footer-box {
    display: block;
  }
  footer .footer-box .foot-contact {
    width: 100%;
    max-width: 100%;
  }
  footer .footer-box .foot-nav {
    width: 100%;
    display: block;
    margin-top: 0.6rem;
  }
  footer .footer-box .foot-nav .item {
    padding: 0.3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }
  footer .footer-box .foot-nav .item .headline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
  footer .footer-box .foot-nav .item .headline a {
    flex: 1;
    margin-right: 0.5rem;
  }
  footer .footer-box .foot-nav .item .headline .icon {
    display: block;
  }
  footer .footer-box .foot-nav .item .menu {
    display: none;
  }
  footer .footer-box .foot-nav .item .menu .one a {
    font-size: 0.24rem;
  }
  footer .footer-box .copy-box {
    display: block;
    margin-top: 0.6rem;
  }
  footer .footer-box .copy-box .copy {
    width: 100%;
    max-width: 100%;
  }
  footer .footer-box .copy-box .links {
    width: 100%;
    max-width: 100%;
    margin-top: 0.15rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width:991px) {
  footer {
    position: static;
  }
}
.fixed-pendant {
  width: var(--value);
  height: auto;
  position: fixed;
  right: 0.12rem;
  bottom: 15%;
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  --value: 50px;
}
.fixed-pendant .feedback-btn {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.fixed-pendant .feedback-btn::after {
  content: '';
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  display: block;
}
.fixed-pendant .feedback-btn a {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 50%;
  background: #111111;
  font-size: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.fixed-pendant .feedback-btn a img,
.fixed-pendant .feedback-btn a svg {
  filter: brightness(0) invert(1);
}
.fixed-pendant .feedback-btn a:hover {
  background: var(--color);
}
.fixed-pendant .menu-box {
  width: 80%;
  height: auto;
  margin: 14px auto 0;
  background: #FFFFFF;
  filter: drop-shadow(0 0 17px rgba(0, 0, 0, 0.1));
  border-radius: 5px;
}
.fixed-pendant .menu-box .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.fixed-pendant .menu-box .item > a {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 5;
  padding: 15px 2px;
  border-radius: var(--value);
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.fixed-pendant .menu-box .item > a .icon-box {
  width: 100%;
  height: auto;
  grid-area: 1 / 1 / 1 / 1;
  position: relative;
  z-index: 5;
  font-size: 0;
}
.fixed-pendant .menu-box .item > a .icon-box .icon {
  width: 20px;
  height: 20px;
  margin: 0 auto;
  font-size: 0;
  color: #333333;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.fixed-pendant .menu-box .item > a .icon-box .icon svg {
  width: 100%;
  height: 100%;
}
.fixed-pendant .menu-box .item > a .icon-box .icon svg path {
  fill: currentColor;
}
.fixed-pendant .menu-box .item > a .icon-box.active {
  z-index: 4;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.fixed-pendant .menu-box .item > a .word {
  width: 100%;
  height: auto;
  grid-area: 1 / 1 / 1 / 1;
  font-weight: bold;
  font-size: 12px;
  color: #333333;
  line-height: 1.25;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.fixed-pendant .menu-box .item .text-box {
  width: auto;
  height: auto;
  position: absolute;
  right: 100%;
  top: 0;
  transform: translateX(10px);
  padding-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.fixed-pendant .menu-box .item .text-box .info-box {
  width: auto;
  height: auto;
  padding: 0.2rem;
  background: #FFFFFF;
  border-radius: 5px;
  overflow: hidden;
}
.fixed-pendant .menu-box .item .text-box .info-box .info {
  width: 100%;
  height: auto;
}
.fixed-pendant .menu-box .item .text-box .info-box .info .word {
  width: 100%;
  height: auto;
  font-size: 12px;
  color: #666666;
  line-height: 1.2;
}
.fixed-pendant .menu-box .item .text-box .info-box .info .tel {
  margin-top: 8px;
  font-weight: bold;
  font-size: var(--font16);
  color: #000000;
  white-space: nowrap;
}
.fixed-pendant .menu-box .item .text-box .info-box .more {
  width: 100%;
  height: auto;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #F0F0F0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  overflow: hidden;
}
.fixed-pendant .menu-box .item .text-box .info-box .more a {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  font-size: 12px;
  color: #666666;
  white-space: nowrap;
  line-height: 1.2;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.fixed-pendant .menu-box .item .text-box .info-box .more a svg {
  width: 5px;
  height: 9px;
  margin-left: 10px;
  font-size: 0;
  fill: currentColor;
}
.fixed-pendant .menu-box .item .text-box .info-box .more a:hover {
  color: var(--color);
}
.fixed-pendant .menu-box .item .qrcode-box {
  width: auto;
  height: auto;
  position: absolute;
  right: 100%;
  top: 0;
  transform: translateX(10px);
  padding-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.fixed-pendant .menu-box .item .qrcode-box .qrcode-main {
  width: 180px;
  height: auto;
  border-radius: 5px;
  overflow: hidden;
}
.fixed-pendant .menu-box .item .qrcode-box .qrcode-main .qrcode {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 0.2rem;
  background: #FFFFFF;
}
.fixed-pendant .menu-box .item .qrcode-box .qrcode-main .qrcode .word {
  width: 100%;
  height: auto;
  font-weight: bold;
  font-size: var(--font14);
  color: #333333;
}
.fixed-pendant .menu-box .item .qrcode-box .qrcode-main .qrcode .details {
  width: 100%;
  height: auto;
  font-size: 12px;
  color: #999999;
  line-height: 1.5;
  overflow: hidden;
}
.fixed-pendant .menu-box .item .qrcode-box .qrcode-main .qrcode .img {
  width: 100%;
  height: auto;
  margin-top: 10px;
  position: relative;
  z-index: 1;
  padding: 10px;
  overflow: hidden;
}
.fixed-pendant .menu-box .item .qrcode-box .qrcode-main .qrcode .img::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  border: 1px solid #DDDDDD;
}
.fixed-pendant .menu-box .item .qrcode-box .qrcode-main .qrcode .img .back {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.fixed-pendant .menu-box .item .qrcode-box .qrcode-main .qrcode .img .back::before {
  content: '';
  width: 75%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  background: #FFFFFF;
}
.fixed-pendant .menu-box .item .qrcode-box .qrcode-main .qrcode .img .back::after {
  content: '';
  width: 100%;
  height: 75%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #FFFFFF;
}
.fixed-pendant .menu-box .item .qrcode-box .qrcode-main .qrcode .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fixed-pendant .menu-box .item:first-child > a {
  padding-top: 25px;
}
.fixed-pendant .menu-box .item:hover > a .icon-box .icon {
  color: var(--color);
}
.fixed-pendant .menu-box .item:hover .text-box {
  transform: translateZ(0);
  opacity: 1;
  visibility: visible;
}
.fixed-pendant .menu-box .item:hover .qrcode-box {
  transform: translateZ(0);
  opacity: 1;
  visibility: visible;
}
.fixed-pendant .menu-box .item::after {
  content: '';
  width: 50%;
  height: 1px;
  margin: 0 auto;
  display: block;
  background: #EBEBEB;
}
.fixed-pendant .menu-box .return-top {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 10px;
  font-size: 0;
  color: #111111;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.fixed-pendant .menu-box .return-top::after {
  content: '';
  width: 100%;
  height: 0;
  display: block;
  padding-bottom: 100%;
}
.fixed-pendant .menu-box .return-top svg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  fill: currentColor;
}
.fixed-pendant .menu-box .return-top:hover {
  color: var(--color);
}
@media (max-width:1600px) {
  .fixed-pendant {
    --value: 56px;
  }
}
@media (max-width:1440px) {
  .fixed-pendant {
    --value: 44px;
  }
}
@media (max-width:1280px) {
  .fixed-pendant {
    --value: 52px;
  }
  .fixed-pendant .menu-box {
    border-width: 1px;
    padding: 3px 0;
  }
  .fixed-pendant .menu-box .item {
    padding: 0 3px;
  }
  .fixed-pendant .menu-box .item a {
    padding: 15px 0;
  }
  .fixed-pendant .return-top {
    margin-top: 10px;
    border-width: 1px;
  }
}
@media (max-width:1024px) {
  .fixed-pendant {
    --value: 50px;
    right: 5px;
  }
}
@media (max-width:991px) {
  .fixed-pendant {
    display: none !important;
  }
}
@media screen and (max-height: 760px) {
  .fixed-pendant .menu-box .item .qrcode-box .qrcode-main {
    width: 140px !important;
  }
  .fixed-pendant .menu-box .item .qrcode-box .qrcode-main .qrcode .word {
    font-size: 14px !important;
  }
  .fixed-pendant .menu-box .item .qrcode-box .qrcode-main .details {
    padding: 0.7em 5px !important;
    font-size: 12px !important;
  }
}
/* ------------------------------- */
/* ------------------------------- */
/* ------------------------------- */
/* ------------------------------- 公共 */
.public-hidden-box {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.inner-title {
  width: 100%;
  height: auto;
}
.inner-title.active {
  text-align: center;
}
.inner-title .headline,
.inner-title .title {
  width: 100%;
  height: auto;
  font-weight: bold;
  font-size: var(--font42);
  color: #333333;
}
.inner-title .headline.active {
  font-size: var(--font54);
}
.inner-title .headline.active[active] {
  font-size: var(--font80);
}
.inner-title .title {
  font-size: var(--font48);
}
.inner-title .subtitle {
  width: 100%;
  height: auto;
  margin-top: 10px;
  font-size: var(--font24);
  color: #333333;
}
.inner-title .details {
  width: 100%;
  max-width: 1168px;
  height: auto;
  margin: 10px auto 0;
  font-weight: 500;
  font-size: var(--font18);
  color: #333333;
  line-height: 1.667;
}
.inner-title .details.active {
  font-size: var(--font16);
  color: #666666;
}
@media (max-width:768px) {
  .inner-title .headline.active {
    font-size: var(--font48);
  }
  .inner-title .headline.active[active] {
    font-size: var(--font48);
  }
}
/* 搜索框 */
.public-search {
  width: 100%;
  min-width: 280px;
  max-width: 350px;
  height: auto;
  padding: 4px 0;
  border-radius: 50px;
  border: 1px solid #E3E3E3;
  --value-size: 50px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.public-search form {
  width: auto;
  height: var(--value-size);
  padding-right: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.public-search form input {
  width: 100%;
  height: 100%;
  flex: 1;
  padding: 0 20px;
  font-size: var(--font18);
  color: #000000;
  overflow: hidden;
}
.public-search form input::placeholder {
  color: #999999;
}
.public-search form button {
  width: var(--value-size);
  height: var(--value-size);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 50%;
  background: #000000;
  font-size: 0;
  color: #FFFFFF;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.public-search form button svg {
  width: 40%;
  height: 40%;
  fill: currentColor;
}
.public-search form button:hover {
  background: var(--color);
}
.public-search:focus-within {
  border-color: #000000;
}
@media (max-width:1280px) {
  .public-search {
    padding: 3px 0;
    --value-size: 44px;
  }
  .public-search form {
    padding-right: 3px;
  }
}
@media (max-width:1280px) {
  .public-search {
    padding: 2px 0;
    --value-size: 40px;
  }
  .public-search form {
    padding-right: 2px;
  }
}
/* 分页器 */
.public-pager {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  --value: 30px;
}
.public-pager a,
.public-pager span {
  width: auto;
  min-width: var(--value);
  height: var(--value);
  padding: 0 0.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-weight: bold;
  font-size: var(--font16);
  color: #000000;
  line-height: 1;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.public-pager a svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.public-pager .prev,
.public-pager .next {
  width: var(--value);
  padding: 0;
  color: #333333;
}
.public-pager .prev:hover,
.public-pager .next:hover {
  background: transparent;
  color: var(--color);
  opacity: 1;
}
.public-pager a:hover,
.public-pager .active {
  color: var(--color);
}
.public-pager * + * {
  margin-left: 0.2rem;
}
@media (max-width:480px) {
  .public-pager {
    --value: 24px;
  }
  .public-pager * + * {
    margin-left: 0.1rem;
  }
}
/* 公共内容 */
.public-content {
  font-size: var(--font16);
  color: #111111;
  line-height: 1.875;
}
.public-content a {
  color: #111111;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.public-content a:hover {
  color: var(--color);
}
.public-content table {
  max-width: 100%;
}
.public-content table td,
.public-content table th {
  padding: 10px 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.public-content li {
  margin: 0.5em 0 0.5em 1.2em;
  list-style: disc;
}
.public-content ol {
  margin: 0.5em 0 0.5em 1.2em;
  list-style: decimal;
}
.public-content img,
.public-content video {
  max-width: 100%;
  height: auto !important;
}
/* 面包屑导航 */
.breadcrumb-nav {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 21;
  overflow: hidden;
}
.breadcrumb-nav .nav-box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.breadcrumb-nav .nav-box * {
  font-size: var(--font16);
  color: #7C7C7C;
  line-height: 1.25;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.breadcrumb-nav .nav-box i {
  width: 7px;
  height: 12px;
  margin: 0 10px;
  font-size: 0;
}
.breadcrumb-nav .nav-box i svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #7C7C7C;
}
.breadcrumb-nav .nav-box a:hover {
  color: var(--color);
}
@media (max-width:768px) {
  .breadcrumb-nav .nav-box * {
    font-size: 12px;
  }
  .breadcrumb-nav .nav-box i {
    width: 5px;
    height: 8px;
  }
}
/* 公共 圆形圆环 头部 */
.public-header {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: var(--header-height);
  overflow: hidden;
}
.public-header .header-box {
  width: 100%;
  height: auto;
}
.public-header .header-box .header-main {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.public-header .header-box .header-main .info-box {
  width: 100%;
  height: 100%;
  flex: 1;
  padding: 1.2rem 0;
}
.public-header .header-box .header-main .info-box .title {
  width: 100%;
  height: auto;
  font-weight: bold;
  font-size: var(--font64);
  color: #333333;
  line-height: 1.21875;
}
.public-header .header-box .header-main .info-box .details {
  width: 100%;
  height: auto;
  margin-top: 0.3rem;
  font-weight: 500;
  font-size: var(--font18);
  color: #333333;
  line-height: 1.667;
}
.public-header .header-box .header-main .info-box .public-more {
  margin-top: 0.6rem;
}
.public-header .header-box .header-main .info-box .public-more .more {
  min-width: 140px;
}
.public-header .header-box .header-main .images-box {
  width: 52%;
  max-width: 888px;
  height: auto;
  position: relative;
  z-index: 1;
}
.public-header .header-box .header-main .images-box .images {
  width: 120%;
  max-width: 888px;
  height: auto;
  position: relative;
  z-index: 1;
  padding-bottom: 12.5%;
}
.public-header .header-box .header-main .images-box .images .img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: 0 100% 50% 50% / 0 0 100% 100%;
  overflow: hidden;
}
.public-header .header-box .header-main .images-box .images .img .pb {
  padding-bottom: 50%;
}
.public-header .header-box .header-main .images-box .images .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.public-header .header-box .header-main .images-box .images::after {
  content: '';
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  transform-origin: bottom;
  transform: translateY(-50%) translateY(0.8075rem) scale(0.95);
  border-radius: 50%;
  box-shadow: 0 0 0 0.35rem var(--color) inset;
  opacity: 0.9;
}
@media (max-width:768px) {
  .public-header .header-box .header-main {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .public-header .header-box .header-main .images-box {
    width: 120%;
    transform: translateZ(0);
  }
  .public-header .header-box .header-main .images-box .images::after {
    box-shadow: 0 0 0 20px var(--color) inset;
  }
  .public-header .header-box .header-main .info-box {
    order: 2;
  }
}
@media (max-width:480px) {
  .public-header .header-box .header-main .images-box .images::after {
    box-shadow: 0 0 0 15px var(--color) inset;
  }
}
@media (max-width:360px) {
  .public-header .header-box .header-main .images-box .images::after {
    box-shadow: 0 0 0 10px var(--color) inset;
  }
}
/* 公共 列表板块 */
.public-block-list {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.public-block-list .block-box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.public-block-list .block-box .sidebar-box {
  width: 25%;
  min-width: 280px;
  max-width: 350px;
  height: 100%;
  padding-top: 20px;
  position: -webkit-sticky;
  position: sticky;
  top: var(--header-height);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.public-block-list .block-box .sidebar-box .swiper-sidebar {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  position: relative;
  z-index: 1;
  border-left: 1px solid #E5E5E5;
}
.public-block-list .block-box .sidebar-box .swiper-sidebar .swiper-wrapper {
  display: block;
}
.public-block-list .block-box .sidebar-box .swiper-sidebar .swiper-slide {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-left: 0.2rem;
}
.public-block-list .block-box .sidebar-box .swiper-sidebar .swiper-slide a {
  width: 100%;
  height: auto;
  padding: 15px;
  border-radius: 5px;
  display: block;
  font-size: var(--font18);
  color: #000000;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.public-block-list .block-box .sidebar-box .swiper-sidebar .swiper-slide::before {
  content: '';
  width: 2px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: var(--color);
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.public-block-list .block-box .sidebar-box .swiper-sidebar .swiper-slide.active a,
.public-block-list .block-box .sidebar-box .swiper-sidebar .swiper-slide:hover a {
  background: #F4F4F4;
}
.public-block-list .block-box .sidebar-box .swiper-sidebar .swiper-slide.active::before,
.public-block-list .block-box .sidebar-box .swiper-sidebar .swiper-slide:hover::before {
  opacity: 1;
}
.public-block-list .block-box .sidebar-box .swiper-sidebar .swiper-slide.active a {
  font-weight: bold;
}
.public-block-list .block-box .block-main {
  width: 100%;
  min-width: 0;
  height: auto;
  flex: 1;
  margin-left: 0.6rem;
}
@media (max-width:991px) {
  .public-block-list .block-box {
    display: block;
    overflow: hidden;
  }
  .public-block-list .block-box .sidebar-box {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: auto;
    position: relative;
    top: 0;
    overflow: hidden;
  }
  .public-block-list .block-box .sidebar-box .swiper-sidebar {
    border: 0;
    border-bottom: 1px solid #E5E5E5;
  }
  .public-block-list .block-box .sidebar-box .swiper-sidebar .swiper-wrapper {
    display: flex;
  }
  .public-block-list .block-box .sidebar-box .swiper-sidebar .swiper-slide {
    width: auto;
    max-width: 50vw;
    height: auto;
    padding: 0;
    text-align: center;
  }
  .public-block-list .block-box .sidebar-box .swiper-sidebar .swiper-slide a {
    height: 100%;
    padding: 0 0 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
  .public-block-list .block-box .sidebar-box .swiper-sidebar .swiper-slide::before {
    width: 100%;
    height: 2px;
    top: auto;
    bottom: 0;
  }
  .public-block-list .block-box .sidebar-box .swiper-sidebar .swiper-slide.active a,
  .public-block-list .block-box .sidebar-box .swiper-sidebar .swiper-slide:hover a {
    background: transparent;
  }
  .public-block-list .block-box .sidebar-box .swiper-sidebar .swiper-slide:hover::before {
    opacity: 0;
  }
  .public-block-list .block-box .block-main {
    margin: 30px 0 0;
  }
}
@media (max-width:768px) {
  .public-block-list .block-box .sidebar-box .public-search {
    max-width: 100%;
  }
  .public-block-list .block-box .sidebar-box .sidebar {
    grid-template-columns: repeat(2, 1fr);
  }
  .public-block-list .block-box .sidebar-box .sidebar .item {
    padding-left: 8px;
  }
  .public-block-list .block-box .sidebar-box .sidebar .item a {
    padding: 12px;
    font-size: 14px;
  }
}
@media (max-width:480px) {
  .public-block-list .block-box .sidebar-box .sidebar {
    border-left: 1px solid #E5E5E5;
    display: block;
  }
}
header.is-show ~ main .public-block-list .block-box .sidebar-box {
  top: 0;
}
/* 公共 列表头部 */
.public-block-box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: var(--header-height);
  background: #F4F4F4;
  overflow: hidden;
}
.public-block-box .block-box {
  width: 100%;
  height: auto;
  padding: 1.2rem 0 0.8rem;
}
.public-block-box .block-box .block-head {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.public-block-box .block-box .block-head .inner-title {
  flex: 1;
}
.public-block-box .block-box .block-head .info-box {
  width: auto;
  height: auto;
  margin-left: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.public-block-box .block-box .block-head .info-box .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.public-block-box .block-box .block-head .info-box .icon::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  border-radius: 50%;
  border: 1px solid #E3E3E3;
}
.public-block-box .block-box .block-head .info-box .icon svg {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 5;
}
.public-block-box .block-box .block-head .info-box .info {
  width: 100%;
  height: auto;
  margin-left: 12px;
  -webkit-box-self: center;
  -ms-align-self: center;
  -webkit-align-self: center;
  align-self: center;
  flex: 1;
}
.public-block-box .block-box .block-head .info-box .info .word {
  font-weight: bold;
  font-size: var(--font18);
  color: #333333;
}
.public-block-box .block-box .block-head .info-box .info .alert-btn {
  width: 100%;
  height: auto;
  margin-top: 5px;
}
.public-block-box .block-box .block-head .info-box .info .alert-btn a {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-weight: bold;
  font-size: var(--font16);
  color: var(--color);
}
.public-block-box .block-box .block-head .info-box .info .alert-btn a svg {
  width: 7px;
  height: 11px;
  margin-left: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2px;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.public-block-box .block-box .block-head .info-box .info .alert-btn a:hover svg {
  transform: translateX(50%);
}
@media (max-width:768px) {
  .public-block-box .block-box .block-head {
    display: block;
  }
  .public-block-box .block-box .block-head .info-box {
    margin: 20px 0 0;
  }
}
@media (max-width:480px) {
  .public-block-box .block-box .block-head .info-box .icon {
    width: 44px;
    height: 44px;
  }
}
/* ------------------------------- */
/* ------------------------------- */
/* ------------------------------- */
/* ------------------------------- Products => Product List */
.public-block-box .products-box .swiper-subnav {
  width: 100%;
  height: auto;
  margin-top: 1.2rem;
}
.public-block-box .products-box .swiper-subnav .swiper-slide {
  width: 12.5%;
  height: auto;
}
.public-block-box .products-box .swiper-subnav .swiper-slide .img {
  width: 1rem;
  height: auto;
  margin: 0 auto;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.public-block-box .products-box .swiper-subnav .swiper-slide .title {
  width: 100%;
  height: auto;
  margin-top: 10px;
  text-align: center;
  font-weight: bold;
  font-size: var(--font16);
  color: #333333;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.public-block-box .products-box .swiper-subnav .swiper-slide.active .title {
  color: var(--color);
}
.public-block-box .products-box .swiper-subnav .swiper-slide:hover .img {
  transform: translateY(-10px);
}
.public-block-box .products-box .swiper-subnav .swiper-slide:hover .title {
  color: var(--color);
}
.public-block-box .products-box .images-box {
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
  border-radius: 0.3rem;
  font-size: 0;
  overflow: hidden;
}
.public-block-box .products-box .images-box img {
  min-height: 200px;
  object-fit: cover;
}
.public-block-box .products-box .block-title {
  width: 100%;
  height: auto;
  margin-top: 20px;
  font-weight: bold;
  font-size: var(--font36);
  color: #333333;
}
.public-block-box .products-box .menu-box {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.4rem;
}
.public-block-box .products-box .menu-box .item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  border-radius: 0.3rem;
  background: #FFFFFF;
  overflow: hidden;
}
.public-block-box .products-box .menu-box .item .img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 0.4rem 0.675rem;
  overflow: hidden;
}
.public-block-box .products-box .menu-box .item .img img {
  -webkit-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.public-block-box .products-box .menu-box .item .info-box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 5;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 0 20px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.public-block-box .products-box .menu-box .item .info-box .title-box {
  width: 100%;
  height: auto;
  text-align: center;
}
.public-block-box .products-box .menu-box .item .info-box .title-box .title {
  width: 100%;
  height: auto;
  font-weight: bold;
  font-size: var(--font40);
  color: #333333;
}
.public-block-box .products-box .menu-box .item .info-box .title-box .title span {
  display: inline-block;
  transform: translateY(-10%);
  padding: 2px 0.5em;
  background: var(--color);
  border-radius: 0.5em 0 0.5em 0;
  font-size: 0.12rem;
  color: #FFFFFF;
  vertical-align: middle;
}
.public-block-box .products-box .menu-box .item .info-box .title-box .details {
  width: 100%;
  height: auto;
  margin-top: 10px;
  font-size: var(--font16);
  color: #666666;
}
.public-block-box .products-box .menu-box .item .info-box .info {
  width: 100%;
  height: auto;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.public-block-box .products-box .menu-box .item .info-box .info .public-more {
  width: auto;
}
.public-block-box .products-box .menu-box .item .info-box .info .public-more .more {
  min-width: 140px;
}
.public-block-box .products-box .menu-box .item .info-box .info .public-more + .public-more {
  margin-left: 0.1rem;
}
.public-block-box .products-box .menu-box .item:hover .img img {
  transform: scale(1.05);
}
.public-block-box .products-box .menu-box .item:hover .info-box {
  transform: translateY(-0.3rem);
}
.public-block-box .products-box .menu-box .item:hover .info-box .info {
  opacity: 1;
  visibility: visible;
}
@media (max-width:1024px) {
  .public-block-box .products-box .menu-box {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
  }
}
@media (max-width:991px) {
  .public-block-box .products-box .menu-box .item .info-box {
    padding: 0 20px 30px;
  }
  .public-block-box .products-box .menu-box .item .info-box .title-box .title span {
    font-weight: normal;
  }
  .public-block-box .products-box .menu-box .item .info-box .info {
    opacity: 1;
    visibility: visible;
  }
  .public-block-box .products-box .menu-box .item .info-box .info .public-more .more {
    min-width: 100px;
  }
}
@media (max-width:768px) {
  .public-block-box .products-box .images-box {
    border-radius: 0.2rem;
  }
  .public-block-box .products-box .block-title {
    margin-top: 30px;
  }
  .public-block-box .products-box .menu-box .item {
    border-radius: 0.2rem;
  }
  .public-block-box .products-box .menu-box .item .info-box .info .public-more .more {
    min-width: 80px;
    height: 36px;
    padding: 0 15px;
    font-size: 12px;
  }
  .public-block-box .products-box .menu-box .item .info-box .info .public-more + .public-more {
    margin-left: 5px;
  }
}
@media (max-width:480px) {
  .public-block-box .products-box .menu-box {
    grid-template-columns: 1fr;
  }
  .public-block-box .products-box .menu-box .item .img {
    max-width: 240px;
    margin: 20px auto;
  }
}
/* ------------------------------- */
/* ------------------------------- */
/* ------------------------------- */
/* ------------------------------- Products => Product Details => D60 */
/* Product Banner */
.inner-product-banner {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background: #333333;
  --offsetValue: 0;
  overflow: hidden;
}
.inner-product-banner .banner-info {
  width: 100%;
  height: 100%;
  padding: var(--header-height) 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  overflow: hidden;
}
.inner-product-banner .banner-info .info-box {
  width: 100%;
  max-width: 680px;
  height: auto;
}
.inner-product-banner .banner-info .info-box .classify {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.inner-product-banner .banner-info .info-box .classify span {
  padding: 0.6em 1em;
  border-radius: 1em 0.25em 1em 0.25em;
  background: var(--color);
  font-weight: 500;
  font-size: var(--font16);
  color: #FFFFFF;
  line-height: 1;
}
.inner-product-banner .banner-info .info-box .classify + .title {
  margin-top: 0.15rem;
}
.inner-product-banner .banner-info .info-box .title {
  width: 100%;
  height: auto;
  font-weight: bold;
  font-size: 1.1rem;
  color: #333333;
  line-height: 1;
  letter-spacing: -0.05em;
}
.inner-product-banner .banner-info .info-box .subtitle {
  width: 100%;
  height: auto;
  margin-top: 0.2rem;
  font-weight: bold;
  font-size: var(--font40);
  color: #333333;
  line-height: 1;
  letter-spacing: -0.05em;
}
.inner-product-banner .banner-info .info-box .details {
  width: 100%;
  height: auto;
  margin-top: 0.1rem;
  font-weight: 500;
  font-size: var(--font24);
  color: #666666;
  line-height: 1.2;
}
.inner-product-banner .banner-info .info-box .public-more {
  margin-top: 0.7rem;
}
.inner-product-banner .images-box {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  min-height: 580px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.inner-product-banner .images-box .images {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  font-size: 0;
  transform: translateY(var(--offsetValue));
  overflow: hidden;
}
.inner-product-banner .images-box .images picture {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
}
.inner-product-banner .images-box .images img,
.inner-product-banner .images-box .images video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.inner-product-banner .images-box .images video ~ picture {
  display: none;
}
@media (max-width:768px) {
  .inner-product-banner .banner-info {
    display: block;
  }
  .inner-product-banner .banner-info .info-box {
    padding-top: 40px;
  }
  .inner-product-banner .banner-info .info-box .classify span {
    padding: 6px 0.8em;
    font-size: 12px;
  }
  .inner-product-banner .images-box {
    min-height: 100vh;
    padding-bottom: 177.8667%;
  }
}
/* Product Classify */
.inner-product-classify {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin: 1.2rem 0;
  overflow: hidden;
}
.inner-product-classify .classify-box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.3rem;
}
.inner-product-classify .classify-box .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: 0.3rem;
  background: #F9F9F9;
  overflow: hidden;
}
.inner-product-classify .classify-box .item a {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.inner-product-classify .classify-box .item .headline {
  width: 100%;
  height: auto;
  padding: 0.3rem 0.3rem 0;
}
.inner-product-classify .classify-box .item .headline .title {
  width: 100%;
  height: auto;
  font-weight: bold;
  font-size: var(--font30);
  color: #333333;
}
.inner-product-classify .classify-box .item .headline .details {
  width: 100%;
  height: auto;
  margin-top: 10px;
  font-weight: 500;
  font-size: var(--font18);
  color: #666666;
}
.inner-product-classify .classify-box .item .scroll-arrow {
  width: 0.54rem;
  height: 0.54rem;
  position: absolute;
  right: 0.3rem;
  bottom: 0.4rem;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 50%;
  background: #FFFFFF;
  color: #000000;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.inner-product-classify .classify-box .item .scroll-arrow svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.inner-product-classify .classify-box .item .scroll-arrow:hover {
  background: var(--color);
  color: #FFFFFF;
}
.inner-product-classify .classify-box .item .images {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.inner-product-classify .classify-box .item:hover .scroll-arrow {
  background: var(--color);
  color: #FFFFFF;
}
.inner-product-classify .classify-box .item:first-child {
  grid-area: 1 / 1 / 1 / 3;
}
.inner-product-classify .classify-box .item:first-child a {
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.inner-product-classify .classify-box .item:first-child .headline {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}
.inner-product-classify .classify-box .item:first-child .images .pb {
  min-height: 100%;
  padding-bottom: 35%;
}
.inner-product-classify .classify-box .item:first-child .images .pb .ab {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.inner-product-classify .classify-box .item:nth-child(2) {
  grid-area: 1 / 3 / 3 / -1;
}
.inner-product-classify .classify-box .item:nth-child(2) .images .pb {
  padding-bottom: 120%;
}
.inner-product-classify .classify-box .item:nth-child(2) .images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  bottom: 0;
}
.inner-product-classify .classify-box .item:nth-child(3) {
  grid-area: 3 / 3 / 4 / -1;
}
.inner-product-classify .classify-box .item:nth-child(3) .images {
  margin-top: 20px;
}
.inner-product-classify .classify-box .item:nth-child(3) .images .pb {
  padding-bottom: 50%;
}
.inner-product-classify .classify-box .item:nth-child(4) {
  grid-area: 2 / 2 / 3 / 3;
}
.inner-product-classify .classify-box .item:nth-child(4) .images {
  width: 80%;
  max-width: 180px;
  padding: 0.4rem 0.3rem;
}
.inner-product-classify .classify-box .item:nth-child(4) .images .pb {
  padding-bottom: 50%;
}
.inner-product-classify .classify-box .item:nth-child(4) .images .ab {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.inner-product-classify .classify-box .item:nth-child(5) {
  grid-area: 3 / 2 / 4 / 3;
}
.inner-product-classify .classify-box .item:nth-child(5) .images .pb {
  padding-bottom: 50%;
}
.inner-product-classify .classify-box .item:nth-child(5) .images .ab {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.inner-product-classify .classify-box .item:nth-child(5) .images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner-product-classify .classify-box .item:nth-child(6) {
  grid-area: 2 / 1 / 4 / 2;
}
.inner-product-classify .classify-box .item:nth-child(6) .images .pb {
  padding-bottom: 120%;
}
.inner-product-classify .classify-box .item:nth-child(6) .images .ab {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
@media (max-width:991px) {
  .inner-product-classify .classify-box {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    grid-auto-flow: dense;
  }
  .inner-product-classify .classify-box .item .scroll-arrow {
    visibility: hidden;
  }
  .inner-product-classify .classify-box .item:first-child {
    grid-area: 1 / 1 / 2 / 2;
  }
  .inner-product-classify .classify-box .item:first-child a {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .inner-product-classify .classify-box .item:first-child .headline {
    position: relative;
  }
  .inner-product-classify .classify-box .item:first-child .images .pb {
    padding-bottom: 48%;
  }
  .inner-product-classify .classify-box .item:first-child .images .pb img {
    width: 100%;
  }
  .inner-product-classify .classify-box .item:nth-child(2) {
    grid-area: 1 / 2 / 3 / -1;
  }
  .inner-product-classify .classify-box .item:nth-child(3) {
    grid-area: 2 / 1 / 3 / 2;
  }
  .inner-product-classify .classify-box .item:nth-child(4) {
    grid-area: 3 / 2 / 4 / -1;
  }
  .inner-product-classify .classify-box .item:nth-child(5) {
    grid-area: 4 / 2 / 5 / -1;
  }
  .inner-product-classify .classify-box .item:nth-child(6) {
    grid-area: 3 / 1 / 5 / 2;
  }
  .inner-product-classify .classify-box .item:nth-child(6) .images img {
    width: 100%;
  }
}
@media (max-width:768px) {
  .inner-product-classify .classify-box .item {
    border-radius: 10px;
  }
  .inner-product-classify .classify-box .item .headline .title {
    font-size: 16px;
  }
  .inner-product-classify .classify-box .item .headline .details {
    font-size: 12px;
  }
}
@media (max-width:480px) {
  .inner-product-classify .classify-box {
    grid-gap: 2px;
  }
  .inner-product-classify .classify-box .item .headline {
    padding: 15px 10px;
  }
  .inner-product-classify .classify-box .item .headline .title {
    font-size: 14px;
  }
  .inner-product-classify .classify-box .item .headline .details {
    font-size: 10px;
  }
}
/* Expanded Highlights */
.inner-black-title {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin: 1.6rem 0;
}
.inner-black-title .headline {
  width: 100%;
  height: auto;
  text-align: center;
  font-weight: bold;
  font-size: 1rem;
  color: #000000;
}
.inner-black-title .headline span {
  background: linear-gradient(#EB4138, #ED4E37);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (max-width:768px) {
  .inner-black-title .headline {
    font-size: var(--font64);
  }
}
/* Expanded Touch-Screen Display */
.inner-product-display {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.inner-product-display .product-box {
  width: 100%;
  height: auto;
  display: grid;
}
.inner-product-display .product-box .inner-title {
  width: 45%;
  position: relative;
  z-index: 5;
  grid-area: 1 / 1 / 1 / 1;
  padding-top: 0.6rem;
}
.inner-product-display .product-box .inner-title .headline {
  font-weight: bold;
  color: #000000;
}
.inner-product-display .product-box .inner-title .details {
  color: #666666;
}
.inner-product-display .product-box .images-box {
  width: 100%;
  position: relative;
  z-index: 1;
  grid-area: 1 / 1 / 1 / 1;
  padding-left: 35%;
}
.inner-product-display .product-box .images-box .images {
  width: auto;
  height: auto;
  text-align: right;
  font-size: 0;
}
@media (max-width:768px) {
  .inner-product-display .product-box {
    display: block;
  }
  .inner-product-display .product-box .inner-title {
    width: 100%;
    padding: 0;
  }
  .inner-product-display .product-box .images-box {
    padding: 0;
  }
}
/* Speedy Thermal Printer */
.inner-printer {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin-top: 1.2rem;
  overflow: hidden;
}
.inner-printer .preload-img {
  display: none;
}
.inner-printer .printer-sticky {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 1;
}
.inner-printer .printer-sticky .printer-box {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  overflow: hidden;
}
.inner-printer .printer-sticky .printer-box .container {
  height: 100%;
}
.inner-printer .printer-sticky .printer-box .printer-main {
  width: 100%;
  height: 100%;
  padding: 1.2rem 0;
}
.inner-printer .printer-sticky .printer-size {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-25%);
  text-align: center;
  white-space: nowrap;
  font-weight: bold;
  font-size: 3rem;
  color: var(--color);
  line-height: 1;
  opacity: 0.14;
  -webkit-mask: linear-gradient(black, transparent 70%);
  mask: linear-gradient(black, transparent 70%);
}
@media (max-width:1024px) {
  .inner-printer .printer-sticky .printer-size {
    font-size: 2rem;
  }
}
@media (max-width:768px) {
  .inner-printer .printer-sticky .printer-size {
    font-size: 1.5rem;
  }
}
.inner-printer .printer-sticky .images-box {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 0;
}
.inner-printer .printer-sticky .images-box video {
  max-height: 100%;
  opacity: 0;
}
.inner-printer .printer-sticky .images-box canvas {
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 10;
  transform: translate(-50%, -50%);
}
@media (max-width:768px) {
  .inner-printer .printer-sticky .images-box canvas {
    width: 100%;
  }
}
/* Robust Battery */
.inner-robust-battery {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.inner-robust-battery .preload-img {
  display: none;
}
.inner-robust-battery .inner-title {
  position: relative;
  z-index: 10;
  padding-top: 1.2rem;
}
.inner-robust-battery .inner-title .details {
  margin: 0.2rem auto 0;
  font-size: var(--font18);
  color: #666666;
}
.inner-robust-battery .battery-sticky {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.inner-robust-battery .battery-sticky .battery-box {
  width: 100%;
  height: auto;
}
.inner-robust-battery .battery-sticky .battery-size {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  text-align: center;
  white-space: nowrap;
  font-weight: bold;
  font-size: 3rem;
  color: var(--color);
  line-height: 1;
  opacity: 0.14;
  -webkit-mask: linear-gradient(black, transparent 70%);
  mask: linear-gradient(black, transparent 70%);
}
@media (max-width:1024px) {
  .inner-robust-battery .battery-sticky .battery-size {
    font-size: 2rem;
  }
}
@media (max-width:768px) {
  .inner-robust-battery .battery-sticky .battery-size {
    font-size: 1.5rem;
  }
}
.inner-robust-battery .battery-sticky .images-box {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  overflow: hidden;
}
.inner-robust-battery .battery-sticky .images-box .images {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  overflow: hidden;
}
.inner-robust-battery .battery-sticky .images-box .images canvas,
.inner-robust-battery .battery-sticky .images-box .images img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner-robust-battery .battery-sticky .images-box .first {
  z-index: 2;
}
.inner-robust-battery .battery-sticky .images-box .last {
  z-index: 5;
}
/* Amplified Memory Options */
.inner-memory {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.inner-memory .memory-box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.inner-memory .memory-box .memory-main {
  width: 55%;
  height: auto;
  padding: 2rem 0 1.2rem;
}
.inner-memory .memory-box .memory-main .info-box {
  width: 100%;
  height: auto;
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0.1rem;
}
.inner-memory .memory-box .memory-main .info-box .item {
  width: 100%;
  height: auto;
  padding: 0.4rem 0.2rem;
  border-radius: 0.2rem;
  background: #F7F7F7;
  overflow: hidden;
}
.inner-memory .memory-box .memory-main .info-box .item .title {
  width: 100%;
  height: auto;
  font-weight: bold;
  font-size: var(--font28);
  color: var(--color);
}
.inner-memory .memory-box .memory-main .info-box .item .title span {
  font-size: var(--font16);
}
.inner-memory .memory-box .memory-main .info-box .item .details {
  width: 100%;
  height: auto;
  font-size: var(--font16);
  color: #666666;
}
.inner-memory .memory-box .memory-main .info-box .item:nth-child(3) {
  grid-column: 1 / -1;
}
.inner-memory .memory-box .images-box {
  width: auto;
  max-width: 50%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: 0;
  overflow: hidden;
}
@media (max-width:991px) {
  .inner-memory .memory-box {
    display: block;
  }
  .inner-memory .memory-box .memory-main {
    width: 100%;
    padding: 2rem 0 0;
  }
  .inner-memory .memory-box .memory-main .info-box {
    margin-top: 40px;
  }
  .inner-memory .memory-box .images-box {
    width: 100%;
    max-width: 768px;
    margin: 0 auto;
  }
}
/* Smooth & high energy / Powerful Performance */
.inner-high-energy {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background: #1D1D1F;
  overflow: hidden;
}
.inner-high-energy .high-box {
  width: 100%;
  height: auto;
  padding: 3rem 0;
}
.inner-high-energy .high-box .inner-title * {
  color: #FFFFFF;
}
.inner-high-energy .high-box .inner-title .title {
  font-size: var(--font40);
}
.inner-high-energy .high-box .inner-title .headline {
  margin-top: 0.2rem;
}
/* Powerful Performance */
.inner-performance {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background: #000000;
  /* 占位高度 */
}
.inner-performance .performance-box {
  width: 100%;
  height: 100vh;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 10;
  overflow: hidden;
}
.inner-performance .performance-box .performance-first {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  background: #1D1D1F;
  overflow: hidden;
}
.inner-performance .performance-box .performance-first .block-box {
  width: 100%;
  height: auto;
}
.inner-performance .performance-box .performance-first .block-box .inner-title * {
  color: #FFFFFF;
}
.inner-performance .performance-box .performance-first .images-box {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  overflow: hidden;
}
.inner-performance .performance-box .performance-first .images-box .first-img {
  width: auto;
  max-width: 40%;
  height: auto;
  position: absolute;
  left: 0;
  bottom: 50%;
  z-index: 1;
}
.inner-performance .performance-box .performance-first .images-box .last-img {
  width: auto;
  max-width: 40%;
  height: auto;
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 1;
}
.inner-performance .performance-box .performance-last {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.inner-performance .performance-box .performance-last .block-box {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.inner-performance .performance-box .performance-last .block-box .info-box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.inner-performance .performance-box .performance-last .block-box .info-box .inner-title {
  max-width: 40%;
}
.inner-performance .performance-box .performance-last .block-box .info-box .inner-title * {
  color: #FFFFFF;
}
@media (max-width:768px) {
  .inner-performance .performance-box .performance-last .block-box {
    padding-top: 2rem;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .inner-performance .performance-box .performance-last .block-box .info-box .inner-title {
    max-width: 100%;
    text-align: center;
  }
}
.inner-performance .performance-box .performance-last .images {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  font-size: 0;
  overflow: hidden;
}
.inner-performance .performance-box .performance-last .images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}
@media (max-width:991px) {
  .inner-performance .performance-box .performance-first .images-box .first-img {
    bottom: 65%;
  }
  .inner-performance .performance-box .performance-first .images-box .last-img {
    top: 65%;
  }
}
.inner-performance::after {
  content: '';
  width: 100%;
  height: 100vh;
  display: block;
}
/* Integrated Camera */
.inner-integrated-camera {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background: #1D1D1D;
  overflow: hidden;
}
.inner-integrated-camera .camera-box {
  width: 100%;
  height: auto;
  padding: 1.2rem 0;
}
.inner-integrated-camera .camera-box .inner-title {
  position: absolute;
  top: 1.2rem;
  z-index: 10;
}
.inner-integrated-camera .camera-box .inner-title * {
  color: #FFFFFF;
}
.inner-integrated-camera .camera-box .inner-title .details {
  margin-top: 0.3rem;
}
.inner-integrated-camera .camera-box .images-box {
  width: 100vw;
  height: auto;
  position: relative;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
}
.inner-integrated-camera .camera-box .images-box .number {
  width: 100%;
  height: auto;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  font-weight: 500;
  font-size: 4.4rem;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  white-space: nowrap;
  -webkit-mask: linear-gradient(black, transparent);
  mask: linear-gradient(black, transparent);
}
@media (max-width:1024px) {
  .inner-integrated-camera .camera-box .images-box .number {
    font-size: 4rem;
  }
}
@media (max-width:640px) {
  .inner-integrated-camera .camera-box .images-box .number {
    font-size: 3.2rem;
  }
}
@media (max-width:480px) {
  .inner-integrated-camera .camera-box .images-box .number {
    font-size: 2.8rem;
  }
}
.inner-integrated-camera .camera-box .images-box .images {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
  font-size: 0;
  /*  mix-blend-mode: screen;  */
}
.inner-integrated-camera .camera-box .images-box .images img,
.inner-integrated-camera .camera-box .images-box .images video {
  width: 100%;
}
.inner-integrated-camera .camera-box .images-box::before {
  content: '';
  width: 100%;
  height: 0;
  display: block;
  padding-bottom: calc(970/1920*100%);
  max-height: 970px;
}
@media (max-width:991px) {
  .inner-integrated-camera .camera-box {
    padding-top: 1.2rem;
  }
  .inner-integrated-camera .camera-box .inner-title {
    position: relative;
    top: 0;
  }
  .inner-integrated-camera .camera-box .images-box .images {
    position: relative;
  }
  .inner-integrated-camera .camera-box .images-box::before {
    display: none;
  }
}
/* Enhanced Anti-Drop Protection */
.inner-protect {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.inner-protect .protect-box {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.inner-protect .protect-box .protect-main {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.inner-protect .protect-box .protect-main .inner-title {
  max-width: 55%;
  text-align: left;
}
.inner-protect .protect-box .protect-main .inner-title .details {
  margin: 0.2rem 0 0;
  color: #666666;
}
.inner-protect .protect-box .protect-main .images-box {
  width: 52.5625%;
  height: auto;
  position: absolute;
  left: 100%;
  bottom: 50%;
  z-index: 1;
  transform: translate(-75%, 25%);
}
.inner-protect .protect-box .protect-main .images-box .images {
  width: 100%;
  height: auto;
  font-size: 0;
}
.inner-protect .protect-box .protect-main .images-box .images img {
  width: 100%;
}
.inner-protect .protect-box .protect-main .images-box .info-box {
  width: auto;
  height: auto;
  position: absolute;
  left: 23.5%;
  top: 102%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  visibility: hidden;
}
.inner-protect .protect-box .protect-main .images-box .info-box .line-box {
  width: 0.3rem;
  height: 60px;
  position: relative;
  z-index: 1;
  color: var(--color);
}
.inner-protect .protect-box .protect-main .images-box .info-box .line-box::before,
.inner-protect .protect-box .protect-main .images-box .info-box .line-box::after {
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  z-index: 1;
  background: currentColor;
}
.inner-protect .protect-box .protect-main .images-box .info-box .line-box::before {
  top: 0;
}
.inner-protect .protect-box .protect-main .images-box .info-box .line-box::after {
  bottom: 0;
}
.inner-protect .protect-box .protect-main .images-box .info-box .line-box .line {
  width: 0;
  height: 100%;
  margin: 0 auto;
  border: 1px dashed var(--color);
}
.inner-protect .protect-box .protect-main .images-box .info-box .word {
  font-weight: 500;
  font-size: var(--font20);
  color: var(--color);
}
@media (max-width:768px) {
  .inner-protect .protect-box {
    position: relative;
    display: block;
  }
  .inner-protect .protect-box .protect-main {
    padding: 1.8rem 0 2rem;
  }
  .inner-protect .protect-box .protect-main .inner-title {
    max-width: 100%;
    text-align: center;
  }
  .inner-protect .protect-box .protect-main .images-box {
    width: 100%;
    margin: 40px auto 0;
    position: relative;
    left: 20%;
    bottom: 0;
    transform: translateZ(0);
  }
}
.inner-protect .images-bg {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  font-size: 0;
  overflow: hidden;
}
.inner-protect .images-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width:768px) {
  .inner-protect .images-bg {
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
  }
}
/* Payment Methods */
.inner-payment-methods {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin: 1rem 0 1.6rem;
  overflow: hidden;
}
.inner-payment-methods .payment-box {
  width: 100%;
  height: auto;
}
.inner-payment-methods .payment-box .menu-box {
  width: 100%;
  height: auto;
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.2rem;
}
.inner-payment-methods .payment-box .menu-box .item {
  width: 100%;
  height: auto;
  padding: 0.6rem;
  background: #F6F6F6;
  border-radius: 0.3rem;
  overflow: hidden;
}
.inner-payment-methods .payment-box .menu-box .item .img {
  width: 50%;
  max-width: 120px;
  height: auto;
  margin: 0 auto;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.inner-payment-methods .payment-box .menu-box .item .title {
  width: 100%;
  height: auto;
  margin-top: 10px;
  text-align: center;
  font-weight: bold;
  font-size: var(--font20);
  color: #000000;
  line-height: 1.25;
}
.inner-payment-methods .payment-box .menu-box .item:hover .img {
  transform: translateY(-10px);
}
@media (max-width:768px) {
  .inner-payment-methods .payment-box .menu-box {
    grid-template-columns: repeat(2, 1fr);
  }
  .inner-payment-methods .payment-box .menu-box .item {
    border-radius: 0.2rem;
  }
}
@media (max-width:480px) {
  .inner-payment-methods .payment-box .menu-box .item {
    padding: 30px 15px;
  }
  .inner-payment-methods .payment-box .menu-box .item .title {
    font-size: 14px;
  }
}
/* Technical Specifications */
.inner-specs {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background: #141414;
  overflow: hidden;
}
.inner-specs .specs-box {
  width: 100%;
  height: auto;
  padding: 1.2rem 0;
}
.inner-specs .specs-box .inner-title * {
  color: #FFFFFF;
}
.inner-specs .specs-box .menu-box {
  width: 100%;
  height: auto;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 0.2rem;
}
.inner-specs .specs-box .menu-box .item {
  width: 100%;
  height: auto;
  padding: 30px 15px 40px;
  border-radius: 0.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  background: #222222;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.inner-specs .specs-box .menu-box .item .icon-box {
  width: 0.6rem;
  height: 0.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: 0;
  filter: brightness(0) invert(1);
  overflow: hidden;
}
.inner-specs .specs-box .menu-box .item .info-box {
  width: 100%;
  height: auto;
  flex: 1;
  margin-left: 5px;
}
.inner-specs .specs-box .menu-box .item .info-box .title {
  width: 100%;
  height: auto;
  font-weight: bold;
  font-size: var(--font20);
  color: #FFFFFF;
}
.inner-specs .specs-box .menu-box .item .info-box .details {
  width: 100%;
  height: auto;
  min-height: calc(4em * 1.5);
  margin-top: 15px;
  font-size: var(--font16);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}
.inner-specs .specs-box .menu-box .item:hover {
  background: var(--color);
}
.inner-specs .specs-box .download-btn {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.inner-specs .specs-box .download-btn .more {
  width: auto;
  height: auto;
  padding: 14px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 100px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.inner-specs .specs-box .download-btn .more .word {
  width: 100%;
  height: auto;
  flex: 1;
  padding: 0 0.5rem 0 1em;
  font-weight: 500;
  font-size: var(--font16);
  color: #FFFFFF;
}
.inner-specs .specs-box .download-btn .more .icon {
  width: 0.5rem;
  min-width: 34px;
  height: 0.5rem;
  min-height: 34px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: #222222;
  color: #FFFFFF;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.inner-specs .specs-box .download-btn .more .icon svg {
  width: 100%;
  height: 100%;
  max-width: 32%;
  max-height: 32%;
  fill: currentColor;
}
.inner-specs .specs-box .download-btn .more:hover {
  border-color: transparent;
  background: var(--color);
}
.inner-specs .specs-box .download-btn .more:hover .icon {
  background: #FFFFFF;
  color: var(--color);
}
@media (max-width:1024px) {
  .inner-specs .specs-box .menu-box .item {
    display: block;
  }
  .inner-specs .specs-box .menu-box .item .info-box {
    margin: 10px 0 0;
  }
}
@media (max-width:991px) {
  .inner-specs .specs-box .download-btn .more {
    padding: 10px;
    border-color: transparent;
    background: var(--color);
  }
  .inner-specs .specs-box .download-btn .more .icon {
    background: #FFFFFF;
    color: var(--color);
  }
}
@media (max-width:768px) {
  .inner-specs .specs-box .menu-box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width:480px) {
  .inner-specs .specs-box .menu-box {
    grid-template-columns: 1fr;
  }
  .inner-specs .specs-box .menu-box .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  .inner-specs .specs-box .menu-box .item .icon-box {
    width: 24px;
    height: 24px;
  }
  .inner-specs .specs-box .menu-box .item .info-box {
    margin: 0 0 0 16px;
  }
  .inner-specs .specs-box .menu-box .item .info-box .details {
    min-height: 1.5em;
  }
}
/* Cloud Services */
.public-cloud-services {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin: 1.4rem 0;
}
.public-cloud-services .services-box {
  width: 100%;
  height: auto;
}
.public-cloud-services .services-box .services-main {
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
  border-radius: 0.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  background: #F5F5F5;
  overflow: hidden;
}
.public-cloud-services .services-box .services-main .info-box {
  width: 100%;
  height: auto;
  flex: 1;
  padding: 1.2rem 0.8rem;
}
.public-cloud-services .services-box .services-main .info-box .title {
  width: 100%;
  height: auto;
  font-weight: bold;
  font-size: var(--font60);
  color: #000000;
}
.public-cloud-services .services-box .services-main .info-box .details {
  width: 100%;
  height: auto;
  margin-top: 10px;
  font-weight: 500;
  font-size: var(--font18);
  color: #666666;
  line-height: 1.556;
}
.public-cloud-services .services-box .services-main .img {
  width: 57.1875%;
  height: auto;
  font-size: 0;
}
.public-cloud-services .services-box .services-main .img img {
  width: 100%;
}
@media (max-width:1024px) {
  .public-cloud-services .services-box .services-main .info-box {
    padding: 1.2rem 30px;
  }
}
@media (max-width:768px) {
  .public-cloud-services .services-box .services-main {
    display: block;
  }
  .public-cloud-services .services-box .services-main .info-box {
    padding: 40px 20px;
  }
  .public-cloud-services .services-box .services-main .img {
    width: 100%;
  }
}
/* Related Solutions */
.public-related-solutions {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin: 1.4rem 0;
}
.public-related-solutions .solutions-box {
  width: 100%;
  height: auto;
}
.public-related-solutions .solutions-box .swiper-box {
  width: 69.875%;
  height: auto;
  margin: 0.5rem auto 0;
}
.public-related-solutions .solutions-box .swiper-box .swiper-slide {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: 0.3rem;
  overflow: hidden;
}
.public-related-solutions .solutions-box .swiper-box .swiper-slide .img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.public-related-solutions .solutions-box .swiper-box .swiper-slide .img .pb {
  padding-bottom: 56.35062612%;
}
.public-related-solutions .solutions-box .swiper-box .swiper-slide .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.public-related-solutions .solutions-box .swiper-box .swiper-slide .info-box {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  padding: 0.4rem 0.5rem;
  overflow: hidden;
}
.public-related-solutions .solutions-box .swiper-box .swiper-slide .info-box .info {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 5;
}
.public-related-solutions .solutions-box .swiper-box .swiper-slide .info-box .info .title {
  width: 100%;
  height: auto;
  font-weight: bold;
  font-size: var(--font34);
  color: #FFFFFF;
}
.public-related-solutions .solutions-box .swiper-box .swiper-slide .info-box .info .details {
  width: 100%;
  height: auto;
  margin-top: 10px;
  font-weight: 500;
  font-size: var(--font18);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.556;
}
.public-related-solutions .solutions-box .swiper-box .swiper-slide::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(transparent 50%, black);
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.public-related-solutions .solutions-box .swiper-box .swiper-slide.active::after {
  opacity: 0.7;
}
.public-related-solutions .solutions-box .swiper-box .swiper-slide:hover .img img {
  transform: scale(1.05);
}
.public-related-solutions .solutions-box .swiper-pager {
  width: 69.875%;
  height: auto;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.public-related-solutions .solutions-box .swiper-pager .swiper-btn {
  width: 60px;
  height: 60px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.public-related-solutions .solutions-box .swiper-pager .swiper-btn::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  border-radius: 50%;
  border: 2px solid #D9D9D9;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.public-related-solutions .solutions-box .swiper-pager .swiper-btn svg {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 10;
  fill: none;
  stroke: currentColor;
  stroke-width: 2px;
}
.public-related-solutions .solutions-box .swiper-pager .swiper-btn:hover {
  color: var(--color);
}
.public-related-solutions .solutions-box .swiper-pager .swiper-btn:hover::after {
  border-color: var(--color);
}
.public-related-solutions .solutions-box .swiper-pager .swiper-btn.next {
  margin-left: 0.2rem;
}
@media (max-width:1600px) {
  .public-related-solutions .solutions-box .swiper-pager .swiper-btn {
    width: 54px;
    height: 54px;
  }
}
@media (max-width:1440px) {
  .public-related-solutions .solutions-box .swiper-pager .swiper-btn {
    width: 50px;
    height: 50px;
  }
}
@media (max-width:1280px) {
  .public-related-solutions .solutions-box .swiper-pager .swiper-btn {
    width: 46px;
    height: 46px;
  }
}
@media (max-width:1024px) {
  .public-related-solutions .solutions-box .swiper-box {
    margin-top: 40px;
  }
  .public-related-solutions .solutions-box .swiper-pager .swiper-btn {
    margin-top: 30px;
  }
  .public-related-solutions .solutions-box .swiper-pager .swiper-btn::after {
    border-width: 1px;
  }
}
@media (max-width:768px) {
  .public-related-solutions .solutions-box .swiper-box {
    width: 100%;
  }
  .public-related-solutions .solutions-box .swiper-box .swiper-slide {
    border-radius: 0.2rem;
  }
  .public-related-solutions .solutions-box .swiper-box .swiper-slide .img .pb {
    padding-bottom: 75%;
  }
  .public-related-solutions .solutions-box .swiper-box .swiper-slide .info-box {
    text-align: center;
    padding: 15px;
  }
  .public-related-solutions .solutions-box .swiper-box .swiper-slide .info-box .info .details {
    font-size: 14px;
    line-height: 1.5;
  }
  .public-related-solutions .solutions-box .swiper-pager {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .public-related-solutions .solutions-box .swiper-pager .swiper-btn {
    width: 40px;
    height: 40px;
  }
}
/* Accessories */
.inner-accessories {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin: 1.4rem 0;
}
.inner-accessories .accessories-box {
  width: 100%;
  height: auto;
}
.inner-accessories .accessories-box .tabs-box {
  width: 100%;
  height: auto;
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.inner-accessories .accessories-box .tabs-box .one {
  width: auto;
  height: auto;
  margin: 0 0.3rem;
  position: relative;
  z-index: 1;
  padding-bottom: 1em;
  font-weight: bold;
  font-size: var(--font20);
  color: #999999;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.inner-accessories .accessories-box .tabs-box .one::after {
  content: '';
  width: 0;
  height: 4px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  background: var(--color);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.inner-accessories .accessories-box .tabs-box .one.active,
.inner-accessories .accessories-box .tabs-box .one:hover {
  color: #000000;
}
.inner-accessories .accessories-box .tabs-box .one.active::after {
  width: 100%;
}
.inner-accessories .accessories-box .swiper-box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin-top: 30px;
}
.inner-accessories .accessories-box .swiper-box div.swiper-slide {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  opacity: 0;
  visibility: hidden;
}
.inner-accessories .accessories-box .swiper-box div.swiper-slide.active {
  opacity: 1;
  visibility: visible;
}
.inner-accessories .accessories-box .swiper-box div.swiper-slide .swiper-subnav {
  width: 90%;
  height: auto;
  margin: 0 auto;
  overflow: hidden;
}
.inner-accessories .accessories-box .swiper-box div.swiper-slide .swiper-subnav .swiper-slide {
  width: 25%;
  height: auto;
  padding: 0.8rem 0.5rem 40px;
  border-radius: 0.3rem;
  background: #F5F5F7;
  overflow: hidden;
}
.inner-accessories .accessories-box .swiper-box div.swiper-slide .swiper-subnav .swiper-slide .img {
  width: 100%;
  max-width: 220px;
  height: auto;
  margin: 0 auto;
  overflow: hidden;
}
.inner-accessories .accessories-box .swiper-box div.swiper-slide .swiper-subnav .swiper-slide .img img {
  -webkit-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.inner-accessories .accessories-box .swiper-box div.swiper-slide .swiper-subnav .swiper-slide .info-box {
  width: 100%;
  height: auto;
  margin-top: 40px;
}
.inner-accessories .accessories-box .swiper-box div.swiper-slide .swiper-subnav .swiper-slide .info-box .title {
  width: 100%;
  height: auto;
  text-align: center;
  font-weight: bold;
  font-size: var(--font20);
  color: #000000;
}
.inner-accessories .accessories-box .swiper-box div.swiper-slide .swiper-subnav .swiper-slide .info-box .public-more {
  margin-top: 20px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.inner-accessories .accessories-box .swiper-box div.swiper-slide .swiper-subnav .swiper-slide:hover .img img {
  transform: scale(1.05);
}
.inner-accessories .accessories-box .swiper-box div.swiper-slide .swiper-subnav .swiper-slide:hover .info-box .title {
  color: var(--color);
}
.inner-accessories .accessories-box .swiper-box div.swiper-slide .swiper-subnav .swiper-slide:hover .info-box .public-more {
  transform: translateZ(0);
  opacity: 1;
}
.inner-accessories .accessories-box .swiper-box div.swiper-slide .swiper-btn {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  z-index: 1;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.inner-accessories .accessories-box .swiper-box div.swiper-slide .swiper-btn::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  border-radius: 50%;
  border: 2px solid #D9D9D9;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.inner-accessories .accessories-box .swiper-box div.swiper-slide .swiper-btn svg {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 10;
  fill: none;
  stroke: currentColor;
  stroke-width: 2px;
}
.inner-accessories .accessories-box .swiper-box div.swiper-slide .swiper-btn:hover {
  color: var(--color);
}
.inner-accessories .accessories-box .swiper-box div.swiper-slide .swiper-btn:hover::after {
  border-color: var(--color);
}
.inner-accessories .accessories-box .swiper-box div.swiper-slide .swiper-btn.swiper-button-disabled {
  opacity: 0.25;
  pointer-events: none;
}
.inner-accessories .accessories-box .swiper-box div.swiper-slide .swiper-btn.prev {
  left: 0;
  transform: translate(-50%, -50%);
}
.inner-accessories .accessories-box .swiper-box div.swiper-slide .swiper-btn.next {
  right: 0;
  transform: translate(50%, -50%);
}
@media (max-width:1600px) {
  .inner-accessories .accessories-box .swiper-box div.swiper-slide .swiper-btn {
    width: 54px;
    height: 54px;
  }
}
@media (max-width:1440px) {
  .inner-accessories .accessories-box .swiper-box div.swiper-slide .swiper-btn {
    width: 50px;
    height: 50px;
  }
}
@media (max-width:1280px) {
  .inner-accessories .accessories-box .swiper-box div.swiper-slide .swiper-btn {
    width: 46px;
    height: 46px;
  }
}
@media (max-width:1024px) {
  .inner-accessories .accessories-box .swiper-box div.swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .inner-accessories .accessories-box .swiper-box div.swiper-slide .swiper-subnav {
    width: 100%;
  }
  .inner-accessories .accessories-box .swiper-box div.swiper-slide .swiper-btn {
    position: relative;
    top: 0;
    margin-top: 30px;
    transform: translateZ(0) !important;
  }
  .inner-accessories .accessories-box .swiper-box div.swiper-slide .swiper-btn::after {
    border-width: 1px;
  }
  .inner-accessories .accessories-box .swiper-box div.swiper-slide .swiper-btn.next {
    margin-left: 10px;
  }
}
@media (max-width:768px) {
  .inner-accessories .accessories-box .swiper-box div.swiper-slide .swiper-subnav .swiper-slide {
    border-radius: 0.2rem;
  }
  .inner-accessories .accessories-box .swiper-box div.swiper-slide .swiper-btn {
    width: 40px;
    height: 40px;
  }
}
.public-two-box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background: #000000;
  overflow: hidden;
}
.public-two-box .images-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  overflow: hidden;
}
.public-two-box .images-bg .parallax-box .parallax-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.public-two-box .images-bg img,
.public-two-box .images-bg video {
  width: 100%;
  height: 100%;
  max-height: 1066px;
  object-fit: cover;
  object-position: top;
  -webkit-mask: linear-gradient(transparent, black 10%, black 90%, transparent);
  mask: linear-gradient(transparent, black 10%, black 90%, transparent);
}
.public-two-box .images-bg video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}
/* Certifications */
.inner-certificate {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 10;
  margin: 1.6rem 0;
}
.inner-certificate .inner-title {
  position: relative;
  z-index: 10;
}
.inner-certificate .inner-title .headline {
  color: #FFFFFF;
}
.inner-certificate .certificate-box {
  width: 100%;
  height: auto;
  margin: 1.2rem auto 0;
}
.inner-certificate .certificate-box .swiper-box {
  width: 100%;
  height: auto;
  --gap: 20px;
  position: relative;
  z-index: 10;
}
.inner-certificate .certificate-box .swiper-box .swiper-wrapper {
  transition-timing-function: linear;
}
.inner-certificate .certificate-box .swiper-box .swiper-slide {
  width: 15%;
  min-width: 160px;
  max-width: 280px;
  height: auto;
  margin-right: var(--gap);
  position: relative;
  z-index: 1;
  background: rgba(29, 29, 31, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 0.3rem;
  overflow: hidden;
}
.inner-certificate .certificate-box .swiper-box .swiper-slide::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  border-radius: 0.3rem;
  border: 1px solid #FFFFFF;
  opacity: 0.15;
  -webkit-mask: linear-gradient(to right, black, transparent, black);
  mask: linear-gradient(to right, black, transparent, black);
}
.inner-certificate .certificate-box .swiper-box .swiper-slide .pb {
  padding-bottom: 65.34296029%;
}
.inner-certificate .certificate-box .swiper-box .swiper-slide img {
  max-width: 70%;
  max-height: 50%;
}
@media (max-width:1280px) {
  .inner-certificate .certificate-box .swiper-box {
    --gap: 15px;
  }
}
@media (max-width:768px) {
  .inner-certificate {
    padding: 1.5rem 0;
  }
  .inner-certificate .certificate-box .swiper-box {
    --gap: 10px;
  }
}
@media (max-width:768px) {
  .inner-certificate {
    margin: 80px 0;
  }
  .inner-certificate .certificate-box .swiper-box {
    width: 30%;
    margin: 30px auto 0;
  }
}
@media (max-width:768px) {
  .inner-certificate .certificate-box .swiper-box {
    width: 40%;
  }
}
/* Supports and Downloads */
.inner-download {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 10;
  margin: 1.6rem 0;
}
.inner-download .inner-title * {
  color: #FFFFFF;
}
.inner-download .menu-box {
  width: 100%;
  max-width: 1920px;
  height: auto;
  margin: 0.5rem auto 0;
  padding: 0 0.2rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 0.2rem;
}
.inner-download .menu-box .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: 0.3rem;
  background: rgba(29, 29, 31, 0.3);
  backdrop-filter: blur(10px);
  overflow: hidden;
}
.inner-download .menu-box .item::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  border-radius: 0.3rem;
  border: 1px solid #FFFFFF;
  opacity: 0.15;
  -webkit-mask: linear-gradient(to right, black, transparent, black);
  mask: linear-gradient(to right, black, transparent, black);
}
.inner-download .menu-box .item::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: url(../images/item-download-bg.png) no-repeat right / cover;
  border-radius: 0.3rem;
  overflow: hidden;
}
.inner-download .menu-box .item a {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 10;
  padding: 0.4rem;
  overflow: hidden;
}
.inner-download .menu-box .item a .title {
  width: 100%;
  height: auto;
  min-height: calc(2em * 1.5);
  font-weight: bold;
  font-size: var(--font20);
  color: #FFFFFF;
  line-height: 1.5;
}
.inner-download .menu-box .item a .icon {
  width: 0.5rem;
  min-width: 34px;
  height: 0.5rem;
  min-height: 34px;
  margin-top: 20px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.inner-download .menu-box .item a .icon svg {
  width: 100%;
  height: 100%;
  max-width: 32%;
  fill: currentColor;
}
.inner-download .menu-box .item a:hover .icon {
  background: var(--color);
}
@media (max-width:1024px) {
  .inner-download .menu-box {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width:768px) {
  .inner-download {
    margin: 80px 0;
  }
  .inner-download .menu-box {
    grid-template-columns: repeat(2, 1fr);
  }
  .inner-download .menu-box .item {
    border-radius: 0.2rem;
  }
  .inner-download .menu-box .item::before,
  .inner-download .menu-box .item::after {
    border-radius: 0.2rem;
  }
  .inner-download .menu-box .item a {
    padding: 25px 15px;
  }
}
/* FAQ */
.inner-faq {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background: #F8F8F8;
  overflow: hidden;
}
.inner-faq .faq-box {
  width: 100%;
  height: auto;
  padding: 1rem 0 1.2rem;
}
.inner-faq .faq-box .menu-box {
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
}
.inner-faq .faq-box .menu-box .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  cursor: pointer;
  padding: 25px 0;
  border-bottom: 1px solid #F1F1F1;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.inner-faq .faq-box .menu-box .item .headline {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.inner-faq .faq-box .menu-box .item .headline .title {
  width: 100%;
  height: auto;
  flex: 1;
  margin-right: 0.4rem;
  font-weight: 500;
  font-size: var(--font20);
  color: #000000;
}
.inner-faq .faq-box .menu-box .item .headline .arrow {
  width: 11px;
  height: 11px;
  position: relative;
  z-index: 1;
  font-size: 0;
  color: #000000;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.inner-faq .faq-box .menu-box .item .headline .arrow svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.inner-faq .faq-box .menu-box .item .details-box {
  width: 100%;
  height: auto;
  margin-top: 10px;
  display: none;
  overflow: hidden;
}
.inner-faq .faq-box .menu-box .item .details-box .details {
  width: 100%;
  height: auto;
  max-height: calc(5em * 1.5);
  padding-right: 10px;
  font-size: var(--font16);
  color: #666666;
  line-height: 1.5;
  overflow: hidden;
  overflow-y: auto;
}
.inner-faq .faq-box .menu-box .item:first-child {
  border-top: 1px solid #F1F1F1;
}
.inner-faq .faq-box .menu-box .item.active .headline .arrow {
  transform: rotate(180deg);
}
/* ------------------------------- */
/* Related Products */
.public-related-products {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin: 1rem 0 1.5rem;
}
.public-related-products .product-box {
  width: 100%;
  height: auto;
}
.public-related-products .product-box .product-main {
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
  position: relative;
  z-index: 1;
}
.public-related-products .product-box .product-main .swiper-box {
  width: 90%;
  height: auto;
  margin: 0 auto;
}
.public-related-products .product-box .product-main .swiper-box .swiper-slide {
  width: 33.33%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  padding: 0.4rem 0;
  border-radius: 0.3rem;
  background: #F5F5F7;
  overflow: hidden;
}
.public-related-products .product-box .product-main .swiper-box .swiper-slide .img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 0 0.6rem;
  overflow: hidden;
}
.public-related-products .product-box .product-main .swiper-box .swiper-slide .img img {
  -webkit-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.public-related-products .product-box .product-main .swiper-box .swiper-slide .info-box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 5;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 0 20px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.public-related-products .product-box .product-main .swiper-box .swiper-slide .info-box .title-box {
  width: 100%;
  height: auto;
  text-align: center;
}
.public-related-products .product-box .product-main .swiper-box .swiper-slide .info-box .title-box .title {
  width: 100%;
  height: auto;
  font-weight: bold;
  font-size: var(--font40);
  color: #333333;
}
.public-related-products .product-box .product-main .swiper-box .swiper-slide .info-box .title-box .details {
  width: 100%;
  height: auto;
  font-size: var(--font16);
  color: #666666;
}
.public-related-products .product-box .product-main .swiper-box .swiper-slide .info-box .info {
  width: 100%;
  height: auto;
  margin-top: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.public-related-products .product-box .product-main .swiper-box .swiper-slide .info-box .info .public-more {
  width: auto;
}
.public-related-products .product-box .product-main .swiper-box .swiper-slide .info-box .info .public-more .more {
  min-width: 140px;
}
.public-related-products .product-box .product-main .swiper-box .swiper-slide .info-box .info .public-more + .public-more {
  margin-left: 0.1rem;
}
.public-related-products .product-box .product-main .swiper-box .swiper-slide:hover .img img {
  transform: scale(1.05);
}
.public-related-products .product-box .product-main .swiper-btn {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  z-index: 1;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.public-related-products .product-box .product-main .swiper-btn::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  border-radius: 50%;
  border: 2px solid #D9D9D9;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.public-related-products .product-box .product-main .swiper-btn svg {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 10;
  fill: none;
  stroke: currentColor;
  stroke-width: 2px;
}
.public-related-products .product-box .product-main .swiper-btn:hover {
  color: var(--color);
}
.public-related-products .product-box .product-main .swiper-btn:hover::after {
  border-color: var(--color);
}
.public-related-products .product-box .product-main .swiper-btn.prev {
  left: 0;
  transform: translate(-50%, -50%);
}
.public-related-products .product-box .product-main .swiper-btn.next {
  right: 0;
  transform: translate(50%, -50%);
}
@media (max-width:1600px) {
  .public-related-products .product-box .product-main .swiper-btn {
    width: 54px;
    height: 54px;
  }
}
@media (max-width:1440px) {
  .public-related-products .product-box .product-main .swiper-btn {
    width: 50px;
    height: 50px;
  }
}
@media (max-width:1280px) {
  .public-related-products .product-box .product-main .swiper-btn {
    width: 46px;
    height: 46px;
  }
}
@media (max-width:1024px) {
  .public-related-products .product-box .product-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .public-related-products .product-box .product-main .swiper-box {
    width: 100%;
  }
  .public-related-products .product-box .product-main .swiper-btn {
    position: relative;
    top: 0;
    margin-top: 30px;
    transform: translateZ(0) !important;
  }
  .public-related-products .product-box .product-main .swiper-btn::after {
    border-width: 1px;
  }
  .public-related-products .product-box .product-main .swiper-btn.next {
    margin-left: 10px;
  }
}
@media (max-width:768px) {
  .public-related-products .product-box .product-main .swiper-btn {
    width: 40px;
    height: 40px;
  }
}
/* ------------------------------- */
/* ------------------------------- */
/* ------------------------------- Cloud Services */
/* Cloud Service Banner */
.cloud-service-banner {
  width: 100%;
  height: auto;
  padding-top: var(--header-height);
  display: grid;
  overflow: hidden;
}
.cloud-service-banner .banner-box {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 10;
  grid-area: 1 / 1 / -1 / -1;
  padding: 1.2rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
}
.cloud-service-banner .banner-box .info-box {
  width: 60%;
  max-width: 768px;
  height: auto;
}
.cloud-service-banner .banner-box .info-box .info-text {
  width: 100%;
  height: auto;
}
.cloud-service-banner .banner-box .info-box .info-text .headline {
  width: 100%;
  height: auto;
  font-weight: bold;
  font-size: var(--font64);
  color: #FFFFFF;
}
.cloud-service-banner .banner-box .info-box .info-text .headline span {
  font-size: var(--font24);
  vertical-align: middle;
}
.cloud-service-banner .banner-box .info-box .info-text .details {
  width: 100%;
  height: auto;
  margin-top: 20px;
  font-size: var(--font18);
  color: #FFFFFF;
  line-height: 1.67;
  opacity: 0.6;
}
.cloud-service-banner .banner-box .info-box .info {
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.cloud-service-banner .banner-box .info-box .info .public-more {
  width: auto;
}
.cloud-service-banner .banner-box .info-box .info .public-more + .public-more {
  margin-left: 0.1rem;
}
.cloud-service-banner .images {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  grid-area: 1 / 1 / -1 / -1;
  font-size: 0;
  overflow: hidden;
}
.cloud-service-banner .images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width:768px) {
  .cloud-service-banner .banner-box .info-box {
    width: 100%;
  }
  .cloud-service-banner .images::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
    pointer-events: none;
    background: #000000;
    opacity: 0.4;
  }
}
/* Cloud Service About */
.cloud-service-about {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin: 1.4rem 0 1rem;
  overflow: hidden;
}
.cloud-service-about .about-box {
  width: 100%;
  height: auto;
}
.cloud-service-about .about-box .inner-title {
  text-align: center;
}
.cloud-service-about .about-box .images {
  width: 100%;
  height: auto;
  margin-top: 1.2rem;
  font-size: 0;
}
/* Key Features */
.cloud-service-features {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin: 1.4rem 0;
}
.cloud-service-features .features-box {
  width: 100%;
  height: auto;
}
.cloud-service-features .features-box .inner-title {
  text-align: center;
}
.cloud-service-features .features-box .swiper-box {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
}
.cloud-service-features .features-box .swiper-box .swiper-wrapper {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.3rem;
}
.cloud-service-features .features-box .swiper-box .swiper-slide {
  width: 100%;
  height: auto;
  padding: 0.4rem 0.3rem;
  padding-right: 15px;
  border-radius: 0.3rem;
  background: #F9F9F9;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.cloud-service-features .features-box .swiper-box .swiper-slide .icon-box {
  width: 100%;
  height: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: 0;
  filter: brightness(0);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.cloud-service-features .features-box .swiper-box .swiper-slide .title {
  width: 100%;
  height: auto;
  margin-top: 0.2rem;
  font-weight: bold;
  font-size: var(--font22);
  color: #333333;
  line-height: 1.63;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.cloud-service-features .features-box .swiper-box .swiper-slide .details {
  width: 100%;
  height: auto;
  margin-top: 0.2rem;
  font-size: var(--font16);
  color: #333333;
  line-height: 1.625;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.cloud-service-features .features-box .swiper-box .swiper-slide .details p + p {
  margin-top: 1em;
}
.cloud-service-features .features-box .swiper-box .swiper-slide:hover {
  background: var(--color);
}
.cloud-service-features .features-box .swiper-box .swiper-slide:hover .icon-box {
  filter: brightness(0) invert(1);
}
.cloud-service-features .features-box .swiper-box .swiper-slide:hover .title,
.cloud-service-features .features-box .swiper-box .swiper-slide:hover .details {
  color: #FFFFFF;
}
.cloud-service-features .features-box .swiper-pager {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  display: none;
}
.cloud-service-features .features-box .swiper-pager .swiper-btn {
  width: 60px;
  height: 60px;
  position: relative;
  z-index: 1;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.cloud-service-features .features-box .swiper-pager .swiper-btn::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  border-radius: 50%;
  border: 2px solid #EEEEEE;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.cloud-service-features .features-box .swiper-pager .swiper-btn svg {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 10;
  fill: none;
  stroke: currentColor;
  stroke-width: 2px;
}
.cloud-service-features .features-box .swiper-pager .swiper-btn:hover {
  color: var(--color);
}
.cloud-service-features .features-box .swiper-pager .swiper-btn:hover::after {
  border-color: var(--color);
}
.cloud-service-features .features-box .swiper-pager .swiper-btn.swiper-button-disabled {
  pointer-events: none;
  opacity: 0.5;
}
.cloud-service-features .features-box .swiper-pager .swiper-btn.next {
  margin-left: 0.2rem;
}
@media (max-width:1600px) {
  .cloud-service-features .features-box .swiper-pager .swiper-btn {
    width: 54px;
    height: 54px;
  }
}
@media (max-width:1440px) {
  .cloud-service-features .features-box .swiper-pager .swiper-btn {
    width: 50px;
    height: 50px;
  }
}
@media (max-width:1280px) {
  .cloud-service-features .features-box .swiper-pager .swiper-btn {
    width: 46px;
    height: 46px;
  }
}
@media (max-width:1024px) {
  .cloud-service-features .features-box .swiper-box .swiper-wrapper {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0.2rem;
  }
  .cloud-service-features .features-box .swiper-box .swiper-wrapper .swiper-slide {
    padding: 0.8rem 20px 0.5rem;
  }
  .cloud-service-features .features-box .swiper-pager .swiper-btn::after {
    border-width: 1px;
  }
}
@media (max-width:768px) {
  .cloud-service-features .features-box .swiper-box .swiper-wrapper {
    grid-template-columns: 1fr;
  }
  .cloud-service-features .features-box .swiper-box .swiper-wrapper .swiper-slide {
    padding: 20px 15px;
    border-radius: 0.2rem;
  }
  .cloud-service-features .features-box .swiper-box .swiper-wrapper .swiper-slide .icon-box {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cloud-service-features .features-box .swiper-box .swiper-wrapper .swiper-slide .info-box {
    text-align: center;
  }
  .cloud-service-features .features-box .swiper-box .swiper-wrapper .swiper-slide .title,
  .cloud-service-features .features-box .swiper-box .swiper-wrapper .swiper-slide .details {
    text-align: center;
  }
  .cloud-service-features .features-box .swiper-pager {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cloud-service-features .features-box .swiper-pager .swiper-btn {
    width: 40px;
    height: 40px;
  }
}
/* Dive Deeper */
.inner-dive-deeper {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background: #F4F4F4;
  overflow: hidden;
}
.inner-dive-deeper .deeper-box {
  width: 100%;
  height: auto;
  padding: 1.4rem 0;
}
.inner-dive-deeper .deeper-box .inner-title {
  text-align: center;
}
.inner-dive-deeper .deeper-box .menu-box {
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
}
.inner-dive-deeper .deeper-box .menu-box .item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  border-radius: 0.3rem;
  background: #FFFFFF;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.inner-dive-deeper .deeper-box .menu-box .item .img {
  width: 45%;
  height: auto;
  margin-right: 20px;
  order: 2;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.inner-dive-deeper .deeper-box .menu-box .item .img .pb {
  padding-bottom: 80%;
}
.inner-dive-deeper .deeper-box .menu-box .item .info-box {
  width: 100%;
  height: auto;
  flex: 1;
  padding: 0.6rem 0.4rem 0.6rem 0.6rem;
  -webkit-box-self: center;
  -ms-align-self: center;
  -webkit-align-self: center;
  align-self: center;
  overflow: hidden;
}
.inner-dive-deeper .deeper-box .menu-box .item .info-box .info {
  width: 100%;
  height: auto;
}
.inner-dive-deeper .deeper-box .menu-box .item .info-box .info .title {
  width: 100%;
  height: auto;
  font-weight: bold;
  font-size: var(--font36);
  color: #000000;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.inner-dive-deeper .deeper-box .menu-box .item .info-box .info .subtitle {
  width: 100%;
  height: auto;
  margin-top: 10px;
  font-weight: bold;
  font-size: var(--font16);
  color: #000000;
}
.inner-dive-deeper .deeper-box .menu-box .item .info-box .details {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  font-weight: 500;
  font-size: var(--font16);
  color: #666666;
  line-height: 1.5;
}
.inner-dive-deeper .deeper-box .menu-box .item .info-box .details p {
  position: relative;
  z-index: 1;
  padding-left: 1.2em;
}
.inner-dive-deeper .deeper-box .menu-box .item .info-box .details p::before {
  content: '';
  width: 4px;
  height: 4px;
  position: absolute;
  left: 0;
  top: 0.75em;
  transform: translateY(-50%);
  border-radius: 50%;
  background: currentColor;
}
.inner-dive-deeper .deeper-box .menu-box .item .info-box .details p + p {
  margin-top: 0.2rem;
}
.inner-dive-deeper .deeper-box .menu-box .item + .item {
  margin-top: 0.4rem;
}
.inner-dive-deeper .deeper-box .menu-box .item:hover {
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.02);
}
.inner-dive-deeper .deeper-box .menu-box .item:hover .img {
  transform: translateX(10px);
}
.inner-dive-deeper .deeper-box .menu-box .item:hover .info-box .info .title {
  color: var(--color);
}
@media (max-width:1024px) {
  .inner-dive-deeper .deeper-box .menu-box .item .info-box {
    padding: 30px 30px 30px 20px;
  }
}
@media (max-width:768px) {
  .inner-dive-deeper .deeper-box .menu-box .item {
    display: block;
    border-radius: 0.2rem;
    padding: 30px;
  }
  .inner-dive-deeper .deeper-box .menu-box .item .img {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }
  .inner-dive-deeper .deeper-box .menu-box .item .info-box {
    margin-top: 20px;
    padding: 0;
  }
  .inner-dive-deeper .deeper-box .menu-box .item:hover .img {
    transform: translateZ(0);
  }
}
/* Get Started with LARK TMS in Five Steps */
.cloud-service-step {
  width: 100%;
  height: auto;
  margin: 1.4rem 0;
}
.cloud-service-step .step-box {
  width: 100%;
  height: auto;
}
.cloud-service-step .step-box .inner-title {
  text-align: center;
}
.cloud-service-step .step-box .step-main {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
}
.cloud-service-step .step-box .step-main .menu-box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 0.65rem;
}
.cloud-service-step .step-box .step-main .menu-box .item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  padding-top: 10px;
}
.cloud-service-step .step-box .step-main .menu-box .item .icon-box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.cloud-service-step .step-box .step-main .menu-box .item .icon-box .icon {
  width: 75%;
  max-width: 120px;
  height: auto;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  border-radius: 50%;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.cloud-service-step .step-box .step-main .menu-box .item .icon-box .icon::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  border-radius: 50%;
  border: 2px solid #E6E6E6;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.cloud-service-step .step-box .step-main .menu-box .item .icon-box img {
  max-width: 50%;
  max-height: 50%;
  filter: brightness(0);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.cloud-service-step .step-box .step-main .menu-box .item .icon-box .line {
  width: 50%;
  height: 2px;
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateX(0.325rem) translate(-50%, -50%);
  background: #E6E6E6;
  pointer-events: none;
}
.cloud-service-step .step-box .step-main .menu-box .item .icon-box .line::before,
.cloud-service-step .step-box .step-main .menu-box .item .icon-box .line::after {
  content: '';
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 2px solid #E6E6E6E6;
}
.cloud-service-step .step-box .step-main .menu-box .item .icon-box .line::before {
  right: 100%;
}
.cloud-service-step .step-box .step-main .menu-box .item .icon-box .line::after {
  left: 100%;
}
.cloud-service-step .step-box .step-main .menu-box .item .info-box {
  width: 100%;
  height: auto;
  flex: 1;
  margin-top: 0.2rem;
  text-align: center;
}
.cloud-service-step .step-box .step-main .menu-box .item .info-box .title {
  width: 100%;
  height: auto;
  font-weight: bold;
  font-size: var(--font20);
  color: #000000;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.cloud-service-step .step-box .step-main .menu-box .item .info-box .details {
  width: 100%;
  height: auto;
  margin-top: 10px;
  font-size: var(--font16);
  color: #666666;
}
.cloud-service-step .step-box .step-main .menu-box .item .number {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  text-align: center;
  font-size: var(--font14);
  color: #000000;
}
.cloud-service-step .step-box .step-main .menu-box .item:last-child .icon-box .line {
  display: none !important;
}
.cloud-service-step .step-box .step-main .menu-box .item:hover .icon-box .icon {
  transform: translateY(-10px);
}
.cloud-service-step .step-box .step-main .menu-box .item:hover .icon-box .icon::before {
  border-color: transparent;
  background: var(--color);
}
.cloud-service-step .step-box .step-main .menu-box .item:hover .icon-box .icon img {
  filter: brightness(0) invert(1);
}
.cloud-service-step .step-box .step-main .menu-box .item:hover .info-box .title {
  color: var(--color);
}
.cloud-service-step .step-box .step-main .menu-box .line {
  width: 1rem;
  height: auto;
  background: red;
}
@media (max-width:1024px) {
  .cloud-service-step .step-box .step-main {
    margin-top: 40px;
  }
  .cloud-service-step .step-box .step-main .menu-box {
    grid-template-columns: repeat(3, 1fr);
  }
  .cloud-service-step .step-box .step-main .menu-box .item .icon-box .icon {
    width: 50%;
  }
  .cloud-service-step .step-box .step-main .menu-box .item:nth-child(3n) .icon-box .line {
    display: none;
  }
}
@media (max-width:768px) {
  .cloud-service-step .step-box .step-main .menu-box {
    grid-template-columns: repeat(2, 1fr);
  }
  .cloud-service-step .step-box .step-main .menu-box .item .icon-box .icon::before {
    border-width: 1px;
  }
  .cloud-service-step .step-box .step-main .menu-box .item:nth-child(3n) .icon-box .line {
    display: block;
  }
  .cloud-service-step .step-box .step-main .menu-box .item:nth-child(2n) .icon-box .line {
    display: none;
  }
}
@media (max-width:420px) {
  .cloud-service-step .step-box .step-main .menu-box {
    grid-template-columns: 1fr;
  }
  .cloud-service-step .step-box .step-main .menu-box .item .icon-box .icon {
    max-width: 80px;
  }
  .cloud-service-step .step-box .step-main .menu-box .item .icon-box .line {
    display: none !important;
  }
  .cloud-service-step .step-box .step-main .menu-box .item .info-box {
    margin-top: 15px;
  }
}
/* ------------------------------- */
/* ------------------------------- */
/* ------------------------------- */
/* ------------------------------- Solutions */
.public-block-box .solutions-box .solutions-word {
  width: 100%;
  height: auto;
  margin-top: 1.4rem;
  font-weight: bold;
  font-size: var(--font36);
  color: #333333;
}
.public-block-box .solutions-box .menu-box {
  width: 100%;
  height: auto;
  margin-top: 0.3rem;
}
.public-block-box .solutions-box .menu-box .item {
  width: 100%;
  height: auto;
  border-radius: 0.3rem;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.public-block-box .solutions-box .menu-box .item a {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  background: #FFFFFF;
  overflow: hidden;
}
.public-block-box .solutions-box .menu-box .item a .info-box {
  width: 100%;
  height: auto;
  flex: 1;
  padding: 0.7rem;
}
.public-block-box .solutions-box .menu-box .item a .info-box .title {
  width: 100%;
  height: auto;
  font-weight: bold;
  font-size: var(--font48);
  color: #333333;
}
.public-block-box .solutions-box .menu-box .item a .info-box .details {
  width: 100%;
  height: auto;
  margin-top: 0.2rem;
  font-weight: 500;
  font-size: var(--font18);
  color: #333333;
  line-height: 1.667;
}
.public-block-box .solutions-box .menu-box .item a .info-box .public-more {
  margin-top: 0.6rem;
}
.public-block-box .solutions-box .menu-box .item a .img {
  width: 59.0278%;
  height: auto;
  overflow: hidden;
}
.public-block-box .solutions-box .menu-box .item a .img .pb {
  padding-bottom: 63.88235294%;
}
.public-block-box .solutions-box .menu-box .item a .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.public-block-box .solutions-box .menu-box .item:hover {
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.02);
}
.public-block-box .solutions-box .menu-box .item:hover a .public-more .more {
  color: #FFFFFF;
}
.public-block-box .solutions-box .menu-box .item:hover a .public-more .more::before {
  opacity: 0;
  transition-delay: 0.35s;
}
.public-block-box .solutions-box .menu-box .item:hover a .public-more .more::after {
  width: 200%;
  padding-bottom: 100%;
}
.public-block-box .solutions-box .menu-box .item:hover a .public-more.white .more {
  background: var(--color);
  color: #FFFFFF;
}
.public-block-box .solutions-box .menu-box .item:hover a .public-more.border .more {
  color: #FFFFFF;
}
.public-block-box .solutions-box .menu-box .item:hover a .public-more.white.border .more {
  background: var(--color);
  border-color: transparent;
}
.public-block-box .solutions-box .menu-box .item:hover a .img img {
  transform: scale(1.05);
}
.public-block-box .solutions-box .menu-box .item + .item {
  margin-top: 0.4rem;
}
.public-block-box .solutions-box .result-item {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
}
.public-block-box .solutions-box .result-item .search-tips {
  width: 100%;
  height: auto;
  text-align: center;
}
.public-block-box .solutions-box .result-item .search-tips .iconimg {
  width: 45%;
  max-width: 210px;
  margin: 0 auto;
  font-size: 0;
  text-align: center;
}
.public-block-box .solutions-box .result-item .search-tips .details {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  font-weight: 500;
  font-size: var(--font16);
  color: #444444;
}
@media (max-width:480px) {
  .public-block-box .solutions-box .result-item .search-tips .details {
    margin-top: 30px;
    font-size: 14px;
  }
}
@media (max-width:1024px) {
  .public-block-box .solutions-box .menu-box .item .info-box {
    padding: 30px;
  }
}
@media (max-width:991px) {
  .public-block-box .solutions-box .menu-box .item a {
    display: block;
  }
  .public-block-box .solutions-box .menu-box .item a .img {
    width: 100%;
  }
}
@media (max-width:768px) {
  .public-block-box .solutions-box .menu-box .item a .info-box {
    padding: 30px 20px;
  }
}
.alert-solutions {
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.alert-solutions.active {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}
.alert-solutions .alert-main {
  width: 90%;
  height: auto;
  max-width: 1200px;
  max-height: 90%;
  margin: 0 auto;
  border-radius: 0.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  overflow: hidden;
}
.alert-solutions .alert-main .img {
  width: 50.4167%;
  height: auto;
  overflow: hidden;
}
.alert-solutions .alert-main .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.alert-solutions .alert-main .info-box {
  width: 100%;
  height: auto;
  flex: 1;
  position: relative;
  z-index: 1;
  padding: 0.6rem;
  padding-right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  background: #FFFFFF;
  overflow: hidden;
}
.alert-solutions .alert-main .info-box .close-btn {
  width: 0.44rem;
  height: 0.44rem;
  min-width: 36px;
  min-height: 36px;
  position: absolute;
  right: 0.3rem;
  top: 0.3rem;
  z-index: 10;
  border-radius: 50%;
  background: #F5F5F5;
  color: #000000;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.alert-solutions .alert-main .info-box .close-btn::before,
.alert-solutions .alert-main .info-box .close-btn::after {
  content: '';
  width: 45%;
  height: 45%;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  transform: translate(-50%, -50%) rotate(45deg);
  border-radius: 2px;
  background: currentColor;
}
.alert-solutions .alert-main .info-box .close-btn::before {
  width: 2px;
}
.alert-solutions .alert-main .info-box .close-btn::after {
  height: 2px;
}
.alert-solutions .alert-main .info-box .close-btn:hover {
  background: #000000;
  color: #FFFFFF;
}
.alert-solutions .alert-main .info-box .info {
  width: 100%;
  height: auto;
  max-height: 100%;
  padding-right: 0.6rem;
  overflow: hidden;
  overflow-y: auto;
}
.alert-solutions .alert-main .info-box .info .headline {
  width: 100%;
  height: auto;
  font-weight: bold;
  font-size: var(--font48);
  color: #333333;
}
.alert-solutions .alert-main .info-box .info .details-box {
  width: 100%;
  height: auto;
  margin-top: 0.3rem;
}
.alert-solutions .alert-main .info-box .info .details-box .one {
  width: 100%;
  height: auto;
}
.alert-solutions .alert-main .info-box .info .details-box .one .title {
  width: 100%;
  height: auto;
  font-weight: bold;
  font-size: var(--font20);
  color: #333333;
}
.alert-solutions .alert-main .info-box .info .details-box .one .details {
  width: 100%;
  height: auto;
  margin-top: 10px;
  font-weight: 500;
  font-size: var(--font16);
  color: #333333;
  line-height: 1.875;
}
.alert-solutions .alert-main .info-box .info .details-box .one .details a {
  color: #333333;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.alert-solutions .alert-main .info-box .info .details-box .one .details a:hover {
  color: var(--color);
  text-decoration: underline;
}
.alert-solutions .alert-main .info-box .info .details-box .one + .one {
  margin-top: 0.4rem;
}
@media (max-width:768px) {
  .alert-solutions .alert-main {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .alert-solutions .alert-main .img {
    width: 100%;
    height: 0;
    position: relative;
    z-index: 1;
    padding-bottom: calc(400/705*100%);
  }
  .alert-solutions .alert-main .img img {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
  }
  .alert-solutions .alert-main .info-box {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .alert-solutions .alert-main .info-box .info {
    flex: 1;
  }
}
/* ------------------------------- */
/* ------------------------------- */
/* ------------------------------- */
/* ------------------------------- Support => Cooperate */
/* Why choose Dspread ? */
.inner-why-choose {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.inner-why-choose .choose-box {
  width: 100%;
  height: auto;
  padding: 1.2rem 0 1.5rem;
}
.inner-why-choose .choose-box .inner-title {
  text-align: center;
}
.inner-why-choose .choose-box .swiper-box {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
}
.inner-why-choose .choose-box .swiper-box .swiper-wrapper {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 0.2rem;
}
.inner-why-choose .choose-box .swiper-box .swiper-slide {
  width: 100%;
  height: auto;
  padding: 0.8rem 0.3rem 0.5rem;
  border-radius: 0.3rem;
  background: #F9F9F9;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.inner-why-choose .choose-box .swiper-box .swiper-slide .icon-box {
  width: 30%;
  max-width: 70px;
  height: auto;
  margin: 0 auto;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.inner-why-choose .choose-box .swiper-box .swiper-slide .info-box {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
  text-align: center;
}
.inner-why-choose .choose-box .swiper-box .swiper-slide .info-box .title {
  width: 100%;
  height: auto;
  font-weight: bold;
  font-size: var(--font24);
  color: #333333;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.inner-why-choose .choose-box .swiper-box .swiper-slide .info-box .details {
  width: 100%;
  height: auto;
  margin-top: 0.2rem;
  font-weight: 500;
  font-size: var(--font16);
  color: #333333;
  line-height: 1.5;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.inner-why-choose .choose-box .swiper-box .swiper-slide:hover {
  background: var(--color);
}
.inner-why-choose .choose-box .swiper-box .swiper-slide:hover .icon-box {
  filter: brightness(0) invert(1);
}
.inner-why-choose .choose-box .swiper-box .swiper-slide:hover .info-box .title,
.inner-why-choose .choose-box .swiper-box .swiper-slide:hover .info-box .details {
  color: #FFFFFF;
}
.inner-why-choose .choose-box .swiper-pager {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  display: none;
}
.inner-why-choose .choose-box .swiper-pager .swiper-btn {
  width: 60px;
  height: 60px;
  margin-top: 0.4rem;
  position: relative;
  z-index: 1;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.inner-why-choose .choose-box .swiper-pager .swiper-btn::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  border-radius: 50%;
  border: 2px solid #D9D9D9;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.inner-why-choose .choose-box .swiper-pager .swiper-btn svg {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 10;
  fill: none;
  stroke: currentColor;
  stroke-width: 2px;
}
.inner-why-choose .choose-box .swiper-pager .swiper-btn:hover {
  color: var(--color);
}
.inner-why-choose .choose-box .swiper-pager .swiper-btn:hover::after {
  border-color: var(--color);
}
.inner-why-choose .choose-box .swiper-pager .swiper-btn.next {
  margin-left: 0.2rem;
}
@media (max-width:1600px) {
  .inner-why-choose .choose-box .swiper-pager .swiper-btn {
    width: 54px;
    height: 54px;
  }
}
@media (max-width:1440px) {
  .inner-why-choose .choose-box .swiper-pager .swiper-btn {
    width: 50px;
    height: 50px;
  }
}
@media (max-width:1280px) {
  .inner-why-choose .choose-box .swiper-pager .swiper-btn {
    width: 46px;
    height: 46px;
  }
}
@media (max-width:1024px) {
  .inner-why-choose .choose-box .swiper-box .swiper-wrapper {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0.2rem;
  }
  .inner-why-choose .choose-box .swiper-box .swiper-wrapper .swiper-slide {
    padding: 0.8rem 20px 0.5rem;
  }
  .inner-why-choose .choose-box .swiper-pager .swiper-btn::after {
    border-width: 1px;
  }
}
@media (max-width:768px) {
  .inner-why-choose .choose-box .swiper-box .swiper-wrapper {
    grid-template-columns: 1fr;
  }
  .inner-why-choose .choose-box .swiper-box .swiper-wrapper .swiper-slide .icon-box {
    max-width: 0.8rem;
  }
  .inner-why-choose .choose-box .swiper-pager {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .inner-why-choose .choose-box .swiper-pager .swiper-btn {
    width: 40px;
    height: 40px;
  }
}
/* Dspread Cooperation SOP */
.inner-sop {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background: #F9F9F9;
  overflow: hidden;
}
.inner-sop .sop-box {
  width: 100%;
  height: auto;
  padding: 1.35rem 0 1.7rem;
}
.inner-sop .sop-box .inner-title {
  text-align: center;
}
.inner-sop .sop-box .menu-box .menu,
.inner-sop .sop-box .sop-main {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 0.14rem;
}
.inner-sop .sop-box .menu-box .menu .item,
.inner-sop .sop-box .sop-main .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: 0.2rem;
  background: #FFFFFF;
  cursor: pointer;
}
.inner-sop .sop-box .menu-box .menu .item .info-main,
.inner-sop .sop-box .sop-main .item .info-main {
  width: 100%;
  height: 100%;
  padding: 0.8rem 0.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.inner-sop .sop-box .menu-box .menu .item .info-main .icon-box,
.inner-sop .sop-box .sop-main .item .info-main .icon-box {
  width: 50%;
  max-width: 100px;
  height: auto;
  margin: 0 auto;
  border-radius: 50%;
  border: 1px dashed #E3E3E3;
}
.inner-sop .sop-box .menu-box .menu .item .info-main .icon-box img,
.inner-sop .sop-box .sop-main .item .info-main .icon-box img {
  max-width: 50%;
}
.inner-sop .sop-box .menu-box .menu .item .info-main .headline,
.inner-sop .sop-box .sop-main .item .info-main .headline {
  width: 100%;
  height: auto;
  flex: 1;
  margin-top: 20px;
  text-align: center;
  font-weight: bold;
  font-size: var(--font18);
  color: #000000;
  line-height: 1.25;
}
.inner-sop .sop-box .menu-box .menu .item .info-main .number,
.inner-sop .sop-box .sop-main .item .info-main .number {
  width: 100%;
  height: auto;
  margin-top: 10px;
  text-align: center;
  font-weight: bold;
  font-size: var(--font14);
  color: #999999;
  line-height: 1;
}
.inner-sop .sop-box .menu-box .menu .item .info-box,
.inner-sop .sop-box .sop-main .item .info-box {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  border-radius: 0.2rem;
  padding: 0.4rem 0.3rem 0.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  background: var(--color);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.inner-sop .sop-box .menu-box .menu .item .info-box .info,
.inner-sop .sop-box .sop-main .item .info-box .info {
  width: 100%;
  height: auto;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}
.inner-sop .sop-box .menu-box .menu .item .info-box .info .headline,
.inner-sop .sop-box .sop-main .item .info-box .info .headline {
  width: 100%;
  height: auto;
  font-weight: bold;
  font-size: var(--font18);
  color: #FFFFFF;
  line-height: 1.25;
}
.inner-sop .sop-box .menu-box .menu .item .info-box .info .details,
.inner-sop .sop-box .sop-main .item .info-box .info .details {
  width: 100%;
  height: auto;
  flex: 1;
  margin-top: 10px;
  padding-right: 10px;
  font-weight: 500;
  font-size: var(--font14);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.428;
  overflow-y: auto;
  /*滚动条-滑块*/
  /*滚动条-背景*/
}
.inner-sop .sop-box .menu-box .menu .item .info-box .info .details::-webkit-scrollbar,
.inner-sop .sop-box .sop-main .item .info-box .info .details::-webkit-scrollbar {
  width: 2px;
}
.inner-sop .sop-box .menu-box .menu .item .info-box .info .details::-webkit-scrollbar-thumb,
.inner-sop .sop-box .sop-main .item .info-box .info .details::-webkit-scrollbar-thumb {
  background: #FFFFFF;
}
.inner-sop .sop-box .menu-box .menu .item .info-box .info .details::-webkit-scrollbar-track,
.inner-sop .sop-box .sop-main .item .info-box .info .details::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.2);
}
@supports (-moz-appearance: none) {
  .inner-sop .sop-box .menu-box .menu .item .info-box .info .details,
  .inner-sop .sop-box .sop-main .item .info-box .info .details {
    scrollbar-width: thin;
    scrollbar-color: #FFFFFF rgba(255, 255, 255, 0.2);
  }
}
.inner-sop .sop-box .menu-box .menu .item .info-box .close,
.inner-sop .sop-box .sop-main .item .info-box .close {
  width: 34px;
  height: 34px;
  margin: 30px auto 0;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.8);
  font-size: 0;
  color: #000000;
  display: none;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.inner-sop .sop-box .menu-box .menu .item .info-box .close svg,
.inner-sop .sop-box .sop-main .item .info-box .close svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.inner-sop .sop-box .menu-box .menu .item .info-box .close:hover,
.inner-sop .sop-box .sop-main .item .info-box .close:hover {
  border-color: var(--color);
  color: var(--color);
}
.inner-sop .sop-box .menu-box .menu .item .arrow,
.inner-sop .sop-box .sop-main .item .arrow {
  width: 0.32rem;
  height: 0.32rem;
  position: absolute;
  left: 100%;
  top: 50%;
  z-index: 1;
  transform: translateX(0.07rem) translate(-50%, -50%);
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0 0 0 0.05rem #F9F9F9;
  pointer-events: none;
  overflow: hidden;
}
.inner-sop .sop-box .menu-box .menu .item .arrow svg,
.inner-sop .sop-box .sop-main .item .arrow svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #333333;
  stroke-width: 2px;
}
.inner-sop .sop-box .menu-box .menu .item.active .info-box,
.inner-sop .sop-box .sop-main .item.active .info-box {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}
.inner-sop .sop-box .menu-box .menu .item:hover,
.inner-sop .sop-box .sop-main .item:hover {
  z-index: 100 !important;
}
.inner-sop .sop-box .menu-box .menu .item:hover .info-box,
.inner-sop .sop-box .sop-main .item:hover .info-box {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}
.inner-sop .sop-box .menu-box {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
}
.inner-sop .sop-box .menu-box .menu {
  position: relative;
  z-index: 10;
}
.inner-sop .sop-box .menu-box .menu .item:last-child .arrow {
  left: 50% !important;
  top: 100% !important;
  transform: translate(-50%, -50%) translateY(0.07rem) rotate(90deg) !important;
}
.inner-sop .sop-box .menu-box .menu:last-child .item:last-child .arrow {
  visibility: hidden;
}
.inner-sop .sop-box .menu-box .menu:hover {
  z-index: 100 !important;
}
.inner-sop .sop-box .menu-box .menu:nth-child(2) {
  z-index: 9;
}
.inner-sop .sop-box .menu-box .menu:nth-child(3) {
  z-index: 8;
}
.inner-sop .sop-box .menu-box .menu:nth-child(4) {
  z-index: 7;
}
.inner-sop .sop-box .menu-box .menu:nth-child(5) {
  z-index: 6;
}
.inner-sop .sop-box .menu-box .menu:nth-child(odd) .item:first-child {
  z-index: 5;
}
.inner-sop .sop-box .menu-box .menu:nth-child(odd) .item:nth-child(2) {
  z-index: 4;
}
.inner-sop .sop-box .menu-box .menu:nth-child(odd) .item:nth-child(3) {
  z-index: 3;
}
.inner-sop .sop-box .menu-box .menu:nth-child(odd) .item:nth-child(4) {
  z-index: 2;
}
.inner-sop .sop-box .menu-box .menu:nth-child(2n) {
  direction: rtl;
}
.inner-sop .sop-box .menu-box .menu:nth-child(2n) .item:first-child {
  z-index: 5;
}
.inner-sop .sop-box .menu-box .menu:nth-child(2n) .item:nth-child(2) {
  z-index: 4;
}
.inner-sop .sop-box .menu-box .menu:nth-child(2n) .item:nth-child(3) {
  z-index: 3;
}
.inner-sop .sop-box .menu-box .menu:nth-child(2n) .item:nth-child(4) {
  z-index: 2;
}
.inner-sop .sop-box .menu-box .menu:nth-child(2n) .item {
  z-index: 1;
  direction: ltr;
}
.inner-sop .sop-box .menu-box .menu:nth-child(2n) .item .arrow {
  left: 0;
  transform: translateX(-0.07rem) translate(-50%, -50%) rotate(180deg);
}
.inner-sop .sop-box .menu-box .menu + .menu {
  margin-top: 0.14rem;
}
.inner-sop .sop-box .sop-main {
  display: none;
}
@media (max-width:1280px) {
  .inner-sop .sop-box .menu-box .menu .item .info-main {
    padding: 60px 15px;
  }
  .inner-sop .sop-box .menu-box .menu .item .info-box {
    padding: 20px 15px 15px;
  }
}
@media (max-width:991px) {
  .inner-sop .sop-box .menu-box {
    display: none;
  }
  .inner-sop .sop-box .sop-main {
    margin-top: 0.6rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .inner-sop .sop-box .sop-main .item {
    padding: 30px 15px;
  }
  .inner-sop .sop-box .sop-main .item .info-main {
    height: auto;
    padding: 0;
  }
  .inner-sop .sop-box .sop-main .item .info-main .icon-box {
    max-width: 72px;
  }
  .inner-sop .sop-box .sop-main .item .info-box {
    height: auto;
    margin-top: 10px;
    padding: 0;
    position: relative;
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    background: transparent;
  }
  .inner-sop .sop-box .sop-main .item .info-box .info .headline {
    display: none;
  }
  .inner-sop .sop-box .sop-main .item .info-box .info .details {
    margin: 0;
    text-align: center;
    color: #666666;
  }
  .inner-sop .sop-box .sop-main .item .info-box .close {
    display: none;
  }
  .inner-sop .sop-box .sop-main .item .arrow {
    display: none;
  }
}
@media (max-width:480px) {
  .inner-sop .sop-box .sop-main {
    grid-template-columns: 1fr;
  }
}
/* Discover More */
.inner-discover {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin: 1.4rem 0;
}
.inner-discover .discover-box {
  width: 100%;
  height: auto;
}
.inner-discover .discover-box .inner-title {
  text-align: center;
}
.inner-discover .discover-box .menu-box {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 0.2rem;
}
.inner-discover .discover-box .menu-box .item {
  width: 100%;
  height: auto;
  background: #F9F9F9;
  border-radius: 0.3rem;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.inner-discover .discover-box .menu-box .item a {
  width: 100%;
  height: 100%;
  padding: 0.8rem 0.3rem 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}
.inner-discover .discover-box .menu-box .item .icon-box {
  width: 25%;
  max-width: 70px;
  height: auto;
  margin: 0 auto;
  overflow: hidden;
}
.inner-discover .discover-box .menu-box .item .info-box {
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
  text-align: center;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.inner-discover .discover-box .menu-box .item .info-box .info {
  width: 100%;
  height: auto;
}
.inner-discover .discover-box .menu-box .item .info-box .info .title {
  width: 100%;
  height: auto;
  font-weight: bold;
  font-size: var(--font24);
  color: #000000;
}
.inner-discover .discover-box .menu-box .item .info-box .info .details {
  width: 100%;
  height: auto;
  margin-top: 0.5em;
  font-size: var(--font16);
  color: #666666;
  line-height: 1.5;
}
.inner-discover .discover-box .menu-box .item .info-box .public-more {
  margin-top: 0.2rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  transform: translateY(25%);
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  pointer-events: none;
}
.inner-discover .discover-box .menu-box .item:hover {
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.05), 0 0 0 2px #FFFFFF inset;
}
.inner-discover .discover-box .menu-box .item:hover .info-box .public-more {
  transform: translateZ(0);
  opacity: 1;
}
@media (max-width:991px) {
  .inner-discover .discover-box .menu-box {
    grid-template-columns: repeat(2, 1fr);
  }
  .inner-discover .discover-box .menu-box .item:hover {
    box-shadow: none;
  }
}
@media (max-width:768px) {
  .inner-discover .discover-box .menu-box .item {
    border-radius: 0.2rem;
  }
  .inner-discover .discover-box .menu-box .item a {
    padding: 30px 10px 20px;
  }
}
@media (max-width:480px) {
  .inner-discover .discover-box .menu-box {
    grid-gap: 5px;
  }
  .inner-discover .discover-box .menu-box .item .info-box .info .details {
    font-size: 13px;
  }
  .inner-discover .discover-box .menu-box .item .info-box .more a {
    font-weight: 500;
    font-size: 13px;
  }
}
/* ------------------------------- */
/* ------------------------------- Support => OEM & ODM */
/* OEM Header */
.inner-oem-banner {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: var(--header-height);
  overflow: hidden;
}
.inner-oem-banner .banner-box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.inner-oem-banner .banner-box .info-box {
  width: 100%;
  height: 100%;
  flex: 1;
  padding: 1.6rem 0 1.2rem;
}
.inner-oem-banner .banner-box .info-box .title {
  width: 100%;
  height: auto;
  font-weight: bold;
  font-size: var(--font64);
  color: #333333;
  line-height: 1.21875;
}
.inner-oem-banner .banner-box .info-box .details {
  width: 100%;
  height: auto;
  margin-top: 0.3rem;
  font-weight: 500;
  font-size: var(--font18);
  color: #333333;
  line-height: 1.667;
}
.inner-oem-banner .banner-box .info-box .public-more {
  margin-top: 0.6rem;
}
.inner-oem-banner .banner-box .info-box .public-more .more {
  min-width: 140px;
}
.inner-oem-banner .banner-box .images-box {
  width: 68.541667%;
  max-width: 987px;
  height: auto;
  margin-left: -10%;
  position: relative;
  z-index: 1;
  transform: translateX(15%);
}
.inner-oem-banner .banner-box .images-box .images {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.inner-oem-banner .banner-box .images-box .images .back-img {
  width: 91.59067882%;
  height: auto;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  font-size: 0;
  text-align: center;
}
.inner-oem-banner .banner-box .images-box .images .img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 10;
  padding: 1.6rem 0 0;
  font-size: 0;
  text-align: center;
}
@media (max-width:1024px) {
  .inner-oem-banner .banner-box {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
  }
  .inner-oem-banner .banner-box .images-box {
    width: 90%;
    transform: translateZ(0);
  }
  .inner-oem-banner .banner-box .images-box .back-img {
    transform: translateX(15%);
  }
  .inner-oem-banner .banner-box .info-box {
    order: 2;
    padding: 60px 0;
  }
}
/* ---------------- */
/* OEM&ODM Introduction */
.inner-oem-introduction {
  width: 100%;
  height: auto;
  margin: 1rem 0 1.8rem;
}
.inner-oem-introduction .introduction-box {
  width: 100%;
  height: auto;
}
.inner-oem-introduction .introduction-box .inner-title .details {
  max-width: 980px;
  margin: 0 auto;
}
.inner-oem-introduction .introduction-box .menu-box {
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.45rem;
}
.inner-oem-introduction .introduction-box .menu-box .item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  padding: 0.4rem 0.4rem 0.2rem;
  border-radius: 0.3rem;
  background: #F8F8F8;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.inner-oem-introduction .introduction-box .menu-box .item .icon-box {
  width: 100%;
  height: 0.56rem;
  min-height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  filter: brightness(0);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.inner-oem-introduction .introduction-box .menu-box .item .info-box {
  width: 100%;
  height: auto;
  flex: 1;
  margin-top: 0.45rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.inner-oem-introduction .introduction-box .menu-box .item .info-box .title {
  width: 100%;
  height: auto;
  min-height: calc(4em * 1.5);
  font-weight: 500;
  font-size: var(--font18);
  color: #333333;
  line-height: 1.5;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.inner-oem-introduction .introduction-box .menu-box .item .info-box .number {
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
  font-size: var(--font80);
  color: rgba(0, 0, 0, 0.03);
  line-height: 1;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.inner-oem-introduction .introduction-box .menu-box .item:hover {
  background: var(--color);
}
.inner-oem-introduction .introduction-box .menu-box .item:hover .icon-box {
  filter: brightness(0) invert(1);
}
.inner-oem-introduction .introduction-box .menu-box .item:hover .info-box .title {
  color: #FFFFFF;
}
.inner-oem-introduction .introduction-box .menu-box .item:hover .info-box .number {
  color: rgba(255, 255, 255, 0.1);
}
@media (max-width:1024px) {
  .inner-oem-introduction .introduction-box .menu-box {
    grid-gap: 0.2rem;
  }
}
@media (max-width:768px) {
  .inner-oem-introduction .introduction-box .menu-box {
    grid-template-columns: 1fr;
  }
  .inner-oem-introduction .introduction-box .menu-box .item {
    border-radius: 0.2rem;
  }
  .inner-oem-introduction .introduction-box .menu-box .item .icon-box {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .inner-oem-introduction .introduction-box .menu-box .item .info-box {
    margin-top: 20px;
    text-align: center;
  }
  .inner-oem-introduction .introduction-box .menu-box .item .info-box .title {
    min-height: 1.5em;
  }
}
/* ---------------- */
/* Why Partner with DSPREAD for ODM & OEM? */
.inner-oem-why {
  width: 100%;
  height: auto;
  margin: 1.8rem 0 1.5rem;
}
.inner-oem-why .why-box {
  width: 100%;
  height: auto;
}
.inner-oem-why .why-box .menu-box {
  width: 100%;
  height: auto;
  margin-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.inner-oem-why .why-box .menu-box .item {
  width: 100%;
  height: auto;
  flex: 1;
  position: relative;
  z-index: 1;
  border-radius: 0.3rem;
  background: #F4F4F4;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.inner-oem-why .why-box .menu-box .item .info-box {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  padding: 0.7rem 0.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.inner-oem-why .why-box .menu-box .item .info-box .icon-box {
  width: 100%;
  height: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.inner-oem-why .why-box .menu-box .item .info-box .icon-box .icon {
  width: 100%;
  height: 0.56rem;
  min-height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: 0;
}
.inner-oem-why .why-box .menu-box .item .info-box .headline {
  width: 100%;
  height: auto;
  flex: 1;
  margin-top: 0.5rem;
  text-align: center;
  font-weight: 500;
  font-size: var(--font18);
  color: #000000;
  line-height: 1.44;
}
.inner-oem-why .why-box .menu-box .item .info-body {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9;
  padding: 0 0.6rem 0.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.inner-oem-why .why-box .menu-box .item .info-body .title {
  width: 100%;
  height: auto;
  font-weight: 500;
  font-size: var(--font22);
  color: #FFFFFF;
  line-height: 1.36;
}
.inner-oem-why .why-box .menu-box .item .info-body .details {
  width: 100%;
  height: auto;
  margin-top: 0.15rem;
  font-size: var(--font18);
  color: rgba(255, 255, 255, 0.6);
}
.inner-oem-why .why-box .menu-box .item .trigger-btn {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  bottom: 0.67rem;
  z-index: 10;
  padding: 0 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  display: none;
  overflow: hidden;
}
.inner-oem-why .why-box .menu-box .item .trigger-btn .icon-box {
  width: auto;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.inner-oem-why .why-box .menu-box .item .trigger-btn .icon-box .icon {
  width: 0.5rem;
  height: 0.5rem;
  min-width: 34px;
  position: relative;
  z-index: 1;
  border-radius: 50%;
  border: 1.5px solid #000000;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.inner-oem-why .why-box .menu-box .item .trigger-btn .icon-box .icon::before,
.inner-oem-why .why-box .menu-box .item .trigger-btn .icon-box .icon::after {
  content: '';
  width: 12px;
  height: 12px;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  background: #000000;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.inner-oem-why .why-box .menu-box .item .trigger-btn .icon-box .icon::before {
  width: 1px;
}
.inner-oem-why .why-box .menu-box .item .trigger-btn .icon-box .icon::after {
  height: 1px;
}
.inner-oem-why .why-box .menu-box .item .images {
  width: 100%;
  height: 650px;
  position: relative;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.inner-oem-why .why-box .menu-box .item .images .pb {
  height: 100%;
  padding-bottom: 0;
}
.inner-oem-why .why-box .menu-box .item .images img {
  height: 100%;
  object-fit: cover;
}
.inner-oem-why .why-box .menu-box .item::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(transparent 38%, black);
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.inner-oem-why .why-box .menu-box .item + .item {
  margin-left: 0.08rem;
}
.inner-oem-why .why-box .menu-box .item.active {
  flex: 0 0 52.0833%;
}
.inner-oem-why .why-box .menu-box .item.active .info-box {
  opacity: 0;
  visibility: hidden;
}
.inner-oem-why .why-box .menu-box .item.active .info-body {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.35s;
}
.inner-oem-why .why-box .menu-box .item.active .trigger-btn .icon-box {
  flex: 1;
}
.inner-oem-why .why-box .menu-box .item.active .trigger-btn .icon-box .icon {
  border-color: #FFFFFF;
}
.inner-oem-why .why-box .menu-box .item.active .trigger-btn .icon-box .icon::before {
  opacity: 0;
}
.inner-oem-why .why-box .menu-box .item.active .trigger-btn .icon-box .icon::after {
  background: #FFFFFF;
}
.inner-oem-why .why-box .menu-box .item.active .images {
  opacity: 1;
  visibility: visible;
}
.inner-oem-why .why-box .menu-box .item.active::after {
  opacity: 1;
}
@media (max-width:1440px) {
  .inner-oem-why .why-box .menu-box .item .images {
    height: 600px;
  }
}
@media (max-width:1280px) {
  .inner-oem-why .why-box .menu-box .item .images {
    height: 540px;
  }
}
@media (max-width:991px) {
  .inner-oem-why .why-box .menu-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }
  .inner-oem-why .why-box .menu-box .item .info-box {
    opacity: 0;
    visibility: hidden;
  }
  .inner-oem-why .why-box .menu-box .item .info-body {
    opacity: 1;
    visibility: visible;
    padding: 20px;
  }
  .inner-oem-why .why-box .menu-box .item .trigger-btn {
    display: none;
  }
  .inner-oem-why .why-box .menu-box .item .images {
    height: auto;
    opacity: 1;
    visibility: visible;
  }
  .inner-oem-why .why-box .menu-box .item .images .pb {
    height: 0;
    padding-bottom: 86.7823765%;
  }
  .inner-oem-why .why-box .menu-box .item .images img {
    width: 100%;
  }
  .inner-oem-why .why-box .menu-box .item::after {
    opacity: 1;
  }
  .inner-oem-why .why-box .menu-box .item + .item {
    margin: 0;
  }
}
@media (max-width:768px) {
  .inner-oem-why .why-box .menu-box .item {
    border-radius: 0.2rem;
  }
}
@media (max-width:640px) {
  .inner-oem-why .why-box .menu-box {
    grid-template-columns: 1fr;
  }
}
/* ---------------- */
/* Tailored to Your Business Needs */
.inner-customized {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background: #F4F4F4;
  overflow: hidden;
}
.inner-customized .customized-box {
  width: 100%;
  height: auto;
  padding: 1rem 0 1.4rem;
}
.inner-customized .customized-box .inner-title .details {
  font-size: var(--font16);
  color: #666666;
}
.inner-customized .customized-box .inner-title .details span {
  font-size: var(--font18);
  color: #333333;
}
.inner-customized .customized-box .menu-box {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-gap: 0.05rem;
}
.inner-customized .customized-box .menu-box .item {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  padding: 0.4rem 0.2rem 0.2rem;
  border-radius: 0.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.inner-customized .customized-box .menu-box .item .icon-box {
  width: 100%;
  height: 0.4rem;
  min-height: 32px;
  font-size: 0;
  filter: brightness(0);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.inner-customized .customized-box .menu-box .item .info-box {
  width: 100%;
  height: auto;
  flex: 1;
  margin-top: 20px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.inner-customized .customized-box .menu-box .item .info-box .title {
  width: 100%;
  height: auto;
  font-weight: 500;
  font-size: var(--font16);
  color: #000000;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.inner-customized .customized-box .menu-box .item .info-box .details {
  width: 100%;
  height: auto;
  margin-top: 20px;
  font-size: var(--font14);
  color: #666666;
  line-height: 1.428;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.inner-customized .customized-box .menu-box .item .trigger-btn {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: none;
}
.inner-customized .customized-box .menu-box .item .trigger-btn .icon {
  width: 34px;
  height: 34px;
  position: relative;
  z-index: 1;
  border-radius: 50%;
  border: 1.5px solid #000000;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.inner-customized .customized-box .menu-box .item .trigger-btn .icon::before,
.inner-customized .customized-box .menu-box .item .trigger-btn .icon::after {
  content: '';
  width: 12px;
  height: 12px;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  background: #000000;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.inner-customized .customized-box .menu-box .item .trigger-btn .icon::before {
  width: 1px;
}
.inner-customized .customized-box .menu-box .item .trigger-btn .icon::after {
  height: 1px;
}
.inner-customized .customized-box .menu-box .item:hover {
  background: var(--color);
}
.inner-customized .customized-box .menu-box .item:hover .icon-box {
  filter: brightness(0) invert(1);
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
}
.inner-customized .customized-box .menu-box .item:hover .info-box {
  transform: translateY(-40px) translateY(-20px);
}
.inner-customized .customized-box .menu-box .item:hover .info-box .title {
  color: #FFFFFF;
}
.inner-customized .customized-box .menu-box .item:hover .info-box .details {
  opacity: 1;
  visibility: visible;
  color: #FFFFFF;
}
.inner-customized .customized-box .menu-box .item:hover .trigger-btn .icon {
  border-color: transparent;
  background: #000000;
}
.inner-customized .customized-box .menu-box .item:hover .trigger-btn .icon::before,
.inner-customized .customized-box .menu-box .item:hover .trigger-btn .icon::after {
  background: #FFFFFF;
}
.inner-customized .customized-box .menu-box .item:hover .trigger-btn .icon::before {
  opacity: 0;
  visibility: hidden;
}
.inner-customized .customized-box .details-text {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  text-align: center;
  font-weight: 500;
  font-size: var(--font16);
  color: #666666;
}
@media (max-width:1280px) {
  .inner-customized .customized-box .menu-box {
    grid-template-columns: repeat(4, 1fr);
  }
  .inner-customized .customized-box .menu-box .item .trigger-btn .icon {
    width: 28px;
    height: 28px;
  }
  .inner-customized .customized-box .menu-box .item .trigger-btn .icon::before {
    height: 10px;
  }
  .inner-customized .customized-box .menu-box .item .trigger-btn .icon::after {
    width: 10px;
  }
}
@media (max-width:991px) {
  .inner-customized .customized-box .menu-box .item,
  .inner-customized .customized-box .menu-box .item:hover {
    padding: 30px 15px 20px;
    background: #FFFFFF;
  }
  .inner-customized .customized-box .menu-box .item .icon-box,
  .inner-customized .customized-box .menu-box .item:hover .icon-box {
    filter: brightness(0);
    transform: translateZ(0);
    opacity: 1;
    visibility: visible;
  }
  .inner-customized .customized-box .menu-box .item .info-box,
  .inner-customized .customized-box .menu-box .item:hover .info-box {
    transform: translateZ(0);
  }
  .inner-customized .customized-box .menu-box .item .info-box .title,
  .inner-customized .customized-box .menu-box .item:hover .info-box .title {
    color: #000000;
  }
  .inner-customized .customized-box .menu-box .item .info-box .details,
  .inner-customized .customized-box .menu-box .item:hover .info-box .details {
    margin-top: 10px;
    color: #666666;
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width:768px) {
  .inner-customized .customized-box .menu-box {
    grid-template-columns: repeat(2, 1fr);
  }
  .inner-customized .customized-box .menu-box .item {
    border-radius: 0.2rem;
  }
  .inner-customized .customized-box .menu-box .item .icon-box,
  .inner-customized .customized-box .menu-box .item .info-box {
    text-align: center;
  }
}
@media (max-width:480px) {
  .inner-customized .customized-box .menu-box {
    grid-template-columns: 1fr;
  }
}
/* ---------------- */
/* Driving Innovation in Payment Technology */
/* Uncompromising Quality & Certified Reliability */
.public-block-one {
  width: 100%;
  height: auto;
  margin: 1rem 0 1.5rem;
}
.public-block-one .block-item {
  width: 100%;
  height: auto;
}
.public-block-one .block-item .block-box {
  width: 100%;
  height: auto;
}
.public-block-one .block-item .block-box .block-main {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.public-block-one .block-item .block-box .block-main .images {
  width: 46.5278%;
  height: 100%;
  border-radius: 0.3rem;
  overflow: hidden;
}
.public-block-one .block-item .block-box .block-main .images .pb {
  padding-bottom: 97.1641791%;
}
.public-block-one .block-item .block-box .block-main .images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.public-block-one .block-item .block-box .block-main .block-info {
  width: 48.61%;
  height: auto;
  display: grid;
  grid-gap: 0.3rem;
}
.public-block-one .block-item .block-box .block-main .block-info .details-text {
  width: 100%;
  height: auto;
  font-weight: 500;
  font-size: var(--font16);
  color: #666666;
  line-height: 1.5;
}
.public-block-one .block-item .block-box .block-main .block-info .menu-box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0.1rem;
}
.public-block-one .block-item .block-box .block-main .block-info .menu-box .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  border-radius: 0.2rem;
  background: #F8F8F8;
  padding: 0.35rem 0.2rem 0.2rem 0.35rem;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.public-block-one .block-item .block-box .block-main .block-info .menu-box .item .info-box {
  width: 100%;
  height: auto;
}
.public-block-one .block-item .block-box .block-main .block-info .menu-box .item .info-box .title {
  width: 100%;
  height: auto;
  font-weight: 500;
  font-size: var(--font16);
  color: #000000;
  line-height: 1.5;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.public-block-one .block-item .block-box .block-main .block-info .menu-box .item .info-box .details {
  width: 100%;
  height: auto;
  margin-top: 10px;
  transform: translateY(20px);
  font-size: var(--font14);
  color: #FFFFFF;
  line-height: 1.428;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.public-block-one .block-item .block-box .block-main .block-info .menu-box .item .tips-box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  display: none;
}
.public-block-one .block-item .block-box .block-main .block-info .menu-box .item .tips-box .num {
  width: auto;
  height: auto;
  font-weight: 500;
  font-size: var(--font16);
  color: var(--color);
  line-height: 1;
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.public-block-one .block-item .block-box .block-main .block-info .menu-box .item .tips-box .icon {
  width: 34px;
  height: 34px;
  position: relative;
  z-index: 1;
  border-radius: 50%;
  border: 1.5px solid #000000;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: none;
}
.public-block-one .block-item .block-box .block-main .block-info .menu-box .item .tips-box .icon::before,
.public-block-one .block-item .block-box .block-main .block-info .menu-box .item .tips-box .icon::after {
  content: '';
  width: 12px;
  height: 12px;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  background: #000000;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.public-block-one .block-item .block-box .block-main .block-info .menu-box .item .tips-box .icon::before {
  width: 1px;
}
.public-block-one .block-item .block-box .block-main .block-info .menu-box .item .tips-box .icon::after {
  height: 1px;
}
.public-block-one .block-item .block-box .block-main .block-info .menu-box .item:hover {
  z-index: 10;
  background: var(--color);
}
.public-block-one .block-item .block-box .block-main .block-info .menu-box .item:hover .info-box .title {
  color: #FFFFFF;
}
.public-block-one .block-item .block-box .block-main .block-info .menu-box .item:hover .info-box .details {
  transform: translateZ(0);
  opacity: 1;
  visibility: visible;
}
.public-block-one .block-item .block-box .block-main .block-info .menu-box .item:hover .tips-box .num {
  opacity: 0;
  visibility: hidden;
}
.public-block-one .block-item .block-box .block-main .block-info .menu-box .item:hover .tips-box .icon {
  border-color: transparent;
  background: #000000;
}
.public-block-one .block-item .block-box .block-main .block-info .menu-box .item:hover .tips-box .icon::before,
.public-block-one .block-item .block-box .block-main .block-info .menu-box .item:hover .tips-box .icon::after {
  background: #FFFFFF;
}
.public-block-one .block-item .block-box .block-main .block-info .menu-box .item:hover .tips-box .icon::before {
  opacity: 0;
  visibility: hidden;
}
.public-block-one .block-item + .block-item {
  margin-top: 2rem;
}
.public-block-one .block-item:nth-child(2n) .block-box .block-main .images {
  order: 2;
}
@media (max-width:1024px) {
  .public-block-one .block-item .block-box .block-main .block-info .menu-box .item .tips-box .icon {
    width: 28px;
    height: 28px;
  }
  .public-block-one .block-item .block-box .block-main .block-info .menu-box .item .tips-box .icon::before {
    height: 10px;
  }
  .public-block-one .block-item .block-box .block-main .block-info .menu-box .item .tips-box .icon::after {
    width: 10px;
  }
}
@media (max-width:991px) {
  .public-block-one .block-item .block-box .block-main .block-info .menu-box .item {
    padding: 15px;
  }
  .public-block-one .block-item .block-box .block-main .block-info .menu-box .item .info-box .details {
    opacity: 1;
    visibility: visible;
  }
  .public-block-one .block-item .block-box .block-main .block-info .menu-box .item .tips-box .num {
    display: none;
    opacity: 0;
    visibility: hidden;
  }
  .public-block-one .block-item .block-box .block-main .block-info .menu-box .item .tips-box .icon {
    border-color: transparent;
    background: #000000;
  }
  .public-block-one .block-item .block-box .block-main .block-info .menu-box .item .tips-box .icon::before,
  .public-block-one .block-item .block-box .block-main .block-info .menu-box .item .tips-box .icon::after {
    background: #FFFFFF;
  }
  .public-block-one .block-item .block-box .block-main .block-info .menu-box .item .tips-box .icon::before {
    opacity: 0;
    visibility: hidden;
  }
}
@media (max-width:768px) {
  .public-block-one .block-item .block-box .block-main {
    display: block;
  }
  .public-block-one .block-item .block-box .block-main .images {
    width: 100%;
    height: auto;
    border-radius: 0.2rem;
  }
  .public-block-one .block-item .block-box .block-main .block-info {
    width: 100%;
    margin-top: 30px;
  }
}
@media (max-width:480px) {
  .public-block-one .block-item .block-box .block-main .block-info .menu-box {
    grid-template-columns: 1fr;
  }
}
/* ---------------- */
.public-block-two {
  width: 100%;
  height: auto;
  background: #F4F4F4;
  overflow: hidden;
}
/* Precision Manufacturing for Global Markets */
.inner-oem-markets {
  width: 100%;
  height: auto;
  margin: 1.2rem 0;
}
.inner-oem-markets .markets-box {
  width: 100%;
  height: auto;
}
.inner-oem-markets .markets-box .menu-box {
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.1rem;
}
.inner-oem-markets .markets-box .menu-box .item {
  width: 100%;
  height: auto;
  border-radius: 0.3rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.inner-oem-markets .markets-box .menu-box .item .info-box {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding: 0.4rem 0.3rem 0.3rem 0.4rem;
  overflow: hidden;
}
.inner-oem-markets .markets-box .menu-box .item .info-box .info-head {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  transform: translateY(100%);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.inner-oem-markets .markets-box .menu-box .item .info-box .info-head .info {
  width: 100%;
  height: auto;
  transform: translateY(-100%);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.inner-oem-markets .markets-box .menu-box .item .info-box .info-head .info .icon-box {
  width: 100%;
  height: 0.4rem;
  min-height: 32px;
  filter: brightness(0) invert(1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.inner-oem-markets .markets-box .menu-box .item .info-box .info-head .info .title {
  width: 100%;
  height: auto;
  margin-top: 0.34rem;
  font-weight: 500;
  font-size: var(--font16);
  color: #FFFFFF;
  line-height: 1.5;
}
.inner-oem-markets .markets-box .menu-box .item .info-box .info-head .details {
  width: 100%;
  height: auto;
  margin-top: 10px;
  transform: translateY(-100%);
  font-size: var(--font14);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.428;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.inner-oem-markets .markets-box .menu-box .item .info-box .trigger-btn {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  display: none;
}
.inner-oem-markets .markets-box .menu-box .item .info-box .trigger-btn .icon {
  width: 0.5rem;
  min-width: 34px;
  height: 0.5rem;
  min-height: 34px;
  position: relative;
  z-index: 1;
  border-radius: 50%;
  border: 1.5px solid #FFFFFF;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.inner-oem-markets .markets-box .menu-box .item .info-box .trigger-btn .icon::before,
.inner-oem-markets .markets-box .menu-box .item .info-box .trigger-btn .icon::after {
  content: '';
  width: 12px;
  height: 12px;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  background: #FFFFFF;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.inner-oem-markets .markets-box .menu-box .item .info-box .trigger-btn .icon::before {
  width: 1px;
}
.inner-oem-markets .markets-box .menu-box .item .info-box .trigger-btn .icon::after {
  height: 1px;
}
.inner-oem-markets .markets-box .menu-box .item .img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.inner-oem-markets .markets-box .menu-box .item .img .pb {
  padding-bottom: 98.94291755%;
}
.inner-oem-markets .markets-box .menu-box .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.inner-oem-markets .markets-box .menu-box .item::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  background: linear-gradient(transparent, black);
  opacity: 0.8;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.inner-oem-markets .markets-box .menu-box .item:hover .info-box .info-head {
  transform: translateZ(0);
}
.inner-oem-markets .markets-box .menu-box .item:hover .info-box .info-head .info {
  transform: translateZ(0);
}
.inner-oem-markets .markets-box .menu-box .item:hover .info-box .info-head .info .icon-box {
  opacity: 0;
  visibility: visible;
}
.inner-oem-markets .markets-box .menu-box .item:hover .info-box .info-head .details {
  transform: translateZ(0);
  opacity: 1;
  visibility: visible;
}
.inner-oem-markets .markets-box .menu-box .item:hover .info-box .trigger-btn .icon::before {
  opacity: 0;
  visibility: hidden;
}
.inner-oem-markets .markets-box .menu-box .item:hover .img img {
  transform: scale(1.05);
}
.inner-oem-markets .markets-box .menu-box .item:hover::after {
  opacity: 1;
}
.inner-oem-markets .markets-box .details-text {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  text-align: center;
  font-weight: 500;
  font-size: var(--font16);
  color: #666666;
}
@media (max-width:768px) {
  .inner-oem-markets .markets-box .menu-box {
    grid-template-columns: 1fr;
  }
  .inner-oem-markets .markets-box .menu-box .item {
    border-radius: 0.2rem;
  }
}
/* 24/7 Global Technical Support */
.inner-oem-support {
  width: 100%;
  height: auto;
  margin: 1.2rem 0;
}
.inner-oem-support .support-box {
  width: 100%;
  height: auto;
}
.inner-oem-support .support-box .menu-box {
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 0.1rem;
}
.inner-oem-support .support-box .menu-box .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 0.5rem 0.35rem 0.6rem;
  border-radius: 0.3rem;
  background: #FFFFFF;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.inner-oem-support .support-box .menu-box .item .icon-box {
  width: 100%;
  height: 0.5rem;
  min-height: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.inner-oem-support .support-box .menu-box .item .title {
  width: 100%;
  height: auto;
  margin-top: 0.3rem;
  font-weight: 500;
  font-size: var(--font16);
  color: #000000;
  line-height: 1.5;
}
.inner-oem-support .support-box .menu-box .item .details {
  width: 100%;
  height: auto;
  margin-top: 10px;
  font-size: var(--font14);
  color: #666666;
  line-height: 1.5;
}
.inner-oem-support .support-box .menu-box .item.active {
  grid-column: 1 / -1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.inner-oem-support .support-box .menu-box .item.active .info-box {
  width: 50%;
}
.inner-oem-support .support-box .menu-box .item.active .info-box .title {
  font-size: var(--font20);
}
.inner-oem-support .support-box .menu-box .item.active .images {
  width: 44%;
  max-width: 620px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
.inner-oem-support .support-box .menu-box .item.active .images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.inner-oem-support .support-box .menu-box .item:hover {
  box-shadow: 0 15px 40px 0 rgba(0, 0, 0, 0.12);
}
.inner-oem-support .support-box .menu-box .item:hover .icon-box {
  transform: translateY(-10px);
}
@media (max-width:768px) {
  .inner-oem-support .support-box .menu-box {
    grid-template-columns: repeat(2, 1fr);
  }
  .inner-oem-support .support-box .menu-box .item {
    border-radius: 0.2rem;
  }
}
@media (max-width:640px) {
  .inner-oem-support .support-box .menu-box .item.active {
    display: block;
    padding: 0;
  }
  .inner-oem-support .support-box .menu-box .item.active .info-box {
    width: 100%;
    padding: 30px;
  }
  .inner-oem-support .support-box .menu-box .item.active .images {
    width: 100%;
    max-width: 100%;
    height: auto;
    position: relative;
  }
}
@media (max-width:480px) {
  .inner-oem-support .support-box .menu-box {
    grid-template-columns: 1fr;
  }
}
/* ---------------- */
/* Highlights */
.inner-highlights {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin: 1.2rem 0;
}
.inner-highlights .highlights-box {
  width: 100%;
  height: auto;
}
.inner-highlights .highlights-box .inner-title {
  text-align: center;
}
.inner-highlights .highlights-box .swiper-box {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
}
.inner-highlights .highlights-box .swiper-box .swiper-slide {
  width: 25%;
  height: auto;
  padding: 0.8rem 0.4rem;
  border-radius: 0.3rem;
  background: #F9F9F9;
  overflow: hidden;
}
.inner-highlights .highlights-box .swiper-box .swiper-slide .icon-box {
  width: 30%;
  max-width: 72px;
  height: auto;
  margin: 0 auto;
  overflow: hidden;
}
.inner-highlights .highlights-box .swiper-box .swiper-slide .icon-box .pb {
  padding-bottom: 78.57142857%;
}
.inner-highlights .highlights-box .swiper-box .swiper-slide .title {
  width: 100%;
  height: auto;
  margin-top: 40px;
  text-align: center;
  font-weight: bold;
  font-size: var(--font18);
  color: #000000;
}
.inner-highlights .highlights-box .swiper-pager {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.inner-highlights .highlights-box .swiper-pager .swiper-btn {
  width: 60px;
  height: 60px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.inner-highlights .highlights-box .swiper-pager .swiper-btn::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  border-radius: 50%;
  border: 2px solid #D9D9D9;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.inner-highlights .highlights-box .swiper-pager .swiper-btn svg {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 10;
  fill: none;
  stroke: currentColor;
  stroke-width: 2px;
}
.inner-highlights .highlights-box .swiper-pager .swiper-btn:hover {
  color: var(--color);
}
.inner-highlights .highlights-box .swiper-pager .swiper-btn:hover::after {
  border-color: var(--color);
}
.inner-highlights .highlights-box .swiper-pager .swiper-btn.next {
  margin-left: 0.2rem;
}
@media (max-width:1600px) {
  .inner-highlights .highlights-box .swiper-pager .swiper-btn {
    width: 54px;
    height: 54px;
  }
}
@media (max-width:1440px) {
  .inner-highlights .highlights-box .swiper-pager .swiper-btn {
    width: 50px;
    height: 50px;
  }
}
@media (max-width:1280px) {
  .inner-highlights .highlights-box .swiper-pager .swiper-btn {
    width: 46px;
    height: 46px;
  }
}
@media (max-width:1024px) {
  .inner-highlights .highlights-box .swiper-box {
    margin-top: 40px;
  }
  .inner-highlights .highlights-box .swiper-box .swiper-slide {
    padding: 60px 20px 40px;
  }
  .inner-highlights .highlights-box .swiper-pager .swiper-btn {
    margin-top: 30px;
  }
  .inner-highlights .highlights-box .swiper-pager .swiper-btn::after {
    border-width: 1px;
  }
}
@media (max-width:768px) {
  .inner-highlights .highlights-box .swiper-box .swiper-slide .info-box {
    text-align: center;
  }
  .inner-highlights .highlights-box .swiper-pager {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .inner-highlights .highlights-box .swiper-pager .swiper-btn {
    width: 40px;
    height: 40px;
  }
}
/* ---------------- */
/* Customization Service */
.inner-customization-service {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin: 1.3rem 0;
}
.inner-customization-service .service-box {
  width: 100%;
  height: auto;
}
.inner-customization-service .service-box .inner-title {
  text-align: center;
}
.inner-customization-service .service-box .menu-box {
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0.5rem 0.3rem;
}
.inner-customization-service .service-box .menu-box .item {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.inner-customization-service .service-box .menu-box .item .img {
  width: 100%;
  height: auto;
  border-radius: 0.3rem;
  overflow: hidden;
}
.inner-customization-service .service-box .menu-box .item .img .pb {
  padding-bottom: 56.59574468%;
}
.inner-customization-service .service-box .menu-box .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner-customization-service .service-box .menu-box .item .info {
  width: 100%;
  height: auto;
  margin-top: 20px;
}
.inner-customization-service .service-box .menu-box .item .info .title {
  width: 100%;
  height: auto;
  font-weight: bold;
  font-size: var(--font22);
  color: #000000;
}
.inner-customization-service .service-box .menu-box .item .info .details {
  width: 100%;
  height: auto;
  margin-top: 10px;
  font-weight: 500;
  font-size: var(--font16);
  color: #666666;
  line-height: 1.5;
}
@media (max-width:768px) {
  .inner-customization-service .service-box .menu-box .item .img {
    border-radius: 0.2rem;
  }
}
@media (max-width:640px) {
  .inner-customization-service .service-box .menu-box {
    grid-template-columns: 1fr;
    grid-gap: 40px;
  }
}
/* ---------------- */
/* Ready for yours. */
.inner-ready {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.inner-ready .ready-box {
  width: 100%;
  height: auto;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.inner-ready .ready-box .ready-main {
  width: 100%;
  height: 100vh;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.inner-ready .ready-box .ready-main .info-box {
  width: 100%;
  height: auto;
}
.inner-ready .ready-box .ready-main .info-box .center-box {
  width: 100%;
  height: auto;
}
.inner-ready .ready-box .ready-main .info-box .center-box .inner-title .headline {
  text-align: center;
  color: #FFFFFF;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.inner-ready .ready-box .ready-main .info-box .center-box .info {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.inner-ready .ready-box .ready-main .info-box .center-box .info .public-more {
  width: auto;
}
.inner-ready .ready-box .ready-main .info-box .center-box .info .public-more:first-child .more {
  min-width: 140px;
  background: var(--color);
}
.inner-ready .ready-box .ready-main .info-box .center-box .info .public-more:first-child .more:hover {
  filter: brightness(1.2);
}
.inner-ready .ready-box .ready-main .info-box .center-box .info .public-more:last-child .more {
  border-width: 2px;
  border-color: #FFFFFF;
}
.inner-ready .ready-box .ready-main .info-box .center-box .info .public-more:last-child .more:hover {
  background: #FFFFFF;
  color: var(--value);
}
.inner-ready .ready-box .ready-main .info-box .center-box .info .public-more + .public-more {
  margin-left: 0.2rem;
}
.inner-ready .ready-box .ready-main .info-box.active .center-box .inner-title .headline {
  color: #000000;
}
.inner-ready .ready-box .ready-main .info-box.active .center-box .info .public-more:last-child .more {
  border-color: #000000;
  color: #000000;
}
.inner-ready .ready-box .ready-main .info-box.active .center-box .info .public-more:last-child .more:hover {
  background: #000000;
  color: #FFFFFF;
}
.inner-ready .ready-box .images {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 1;
  padding: 0.4rem;
  --value-l: 0;
  --value-r: 0;
  overflow: hidden;
}
.inner-ready .ready-box .images::before,
.inner-ready .ready-box .images::after {
  content: '';
  width: 50%;
  height: 100%;
  position: absolute;
  z-index: 10;
  background: #FFFFFF;
}
.inner-ready .ready-box .images::before {
  left: 0;
  top: 0;
  transform: translateY(var(--value-l));
}
.inner-ready .ready-box .images::after {
  right: 0;
  bottom: 0;
  transform: translateY(var(--value-r));
}
.inner-ready .ready-box .images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.3rem;
}
.inner-ready .menu-box {
  width: 100%;
  height: auto;
  margin-top: 1.4rem;
  display: grid;
  grid-gap: 0.88rem;
}
.inner-ready .menu-box .item {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0.6rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.inner-ready .menu-box .item .img {
  width: 100%;
  height: auto;
  border-radius: 0.3rem;
  overflow: hidden;
}
.inner-ready .menu-box .item .img .pb {
  padding-bottom: 75.36231884%;
}
.inner-ready .menu-box .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner-ready .menu-box .item .info-box {
  width: 100%;
  height: auto;
}
.inner-ready .menu-box .item .info-box .info {
  width: 100%;
  height: auto;
}
.inner-ready .menu-box .item .info-box .info .title {
  width: 100%;
  height: auto;
  font-weight: bold;
  font-size: var(--font48);
  color: #000000;
}
.inner-ready .menu-box .item .info-box .info .details {
  width: 100%;
  height: auto;
  margin-top: 20px;
  font-weight: 500;
  font-size: var(--font16);
  color: #666666;
  line-height: 1.5;
}
.inner-ready .menu-box .item .info-box .logo-list {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-gap: 0.2rem;
}
.inner-ready .menu-box .item .info-box .logo-list .one {
  width: 100%;
  height: auto;
  border-radius: 0.15rem;
  border: 1px solid #E3E3E3;
  overflow: hidden;
}
.inner-ready .menu-box .item:nth-child(odd) .img {
  order: 2;
}
.inner-ready .menu-box .item.active {
  display: block;
  padding-top: 0.75rem;
}
.inner-ready .menu-box .item.active .info-box {
  width: calc(50% + 0.3rem);
}
.inner-ready .menu-box .item.active .accordion-box {
  width: 100%;
  height: 0;
  margin-top: 0.75rem;
  padding-bottom: 36.11%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.inner-ready .menu-box .item.active .accordion-box .accordion-menu {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  overflow: hidden;
}
.inner-ready .menu-box .item.active .accordion-box .accordion-menu .one {
  width: 100%;
  height: 100%;
  flex: 1;
  border-radius: 0.3rem;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.inner-ready .menu-box .item.active .accordion-box .accordion-menu .one .pb {
  height: 100%;
  padding-bottom: 0;
}
.inner-ready .menu-box .item.active .accordion-box .accordion-menu .one img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner-ready .menu-box .item.active .accordion-box .accordion-menu .one + .one {
  margin-left: 0.28rem;
}
.inner-ready .menu-box .item.active .accordion-box .accordion-menu .one:hover {
  flex: 0 0 53.0556%;
}
@media (max-width:991px) {
  .inner-ready .menu-box .item.active .info-box {
    width: 100%;
  }
  .inner-ready .menu-box .item.active .accordion-box {
    margin-top: 30px;
  }
}
@media (max-width:768px) {
  .inner-ready .menu-box {
    margin-top: 60px;
  }
  .inner-ready .menu-box .item {
    display: block;
  }
  .inner-ready .menu-box .item .img {
    border-radius: 0.2rem;
  }
  .inner-ready .menu-box .item .info-box {
    margin-top: 20px;
  }
  .inner-ready .menu-box .item.active .accordion-box {
    height: auto;
    padding: 0;
  }
  .inner-ready .menu-box .item.active .accordion-box .accordion-menu {
    height: auto;
    position: relative;
    display: block;
  }
  .inner-ready .menu-box .item.active .accordion-box .accordion-menu .one {
    height: auto;
    border-radius: 0.2rem;
  }
  .inner-ready .menu-box .item.active .accordion-box .accordion-menu .one .pb {
    height: 0;
    padding-bottom: 67.93193717%;
  }
  .inner-ready .menu-box .item.active .accordion-box .accordion-menu .one + .one {
    margin: 5px 0 0;
  }
}
/* ---------------- */
/* See why businesses of all sizes succeed with Dspread */
.public-subscribe {
  width: 100%;
  height: auto;
  margin: 0.9rem 0;
}
.public-subscribe .subscribe-box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 0.6rem;
  border-radius: 0.3rem;
  background: #000000;
  overflow: hidden;
}
.public-subscribe .subscribe-box .subscribe-main {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  overflow: hidden;
}
.public-subscribe .subscribe-box .subscribe-main .inner-title {
  flex: 1;
  margin-right: 1.2rem;
  position: relative;
  z-index: 10;
  overflow: hidden;
}
.public-subscribe .subscribe-box .subscribe-main .inner-title .title {
  font-size: var(--font44);
  color: #FFFFFF;
  line-height: 1.25;
}
.public-subscribe .subscribe-box .subscribe-main .form-box {
  width: 44%;
  max-width: 570px;
  height: auto;
  position: relative;
  z-index: 10;
}
.public-subscribe .subscribe-box .subscribe-main .form-box form {
  width: 100%;
  height: auto;
}
.public-subscribe .subscribe-box .subscribe-main .form-box form .form-item {
  width: 100%;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.public-subscribe .subscribe-box .subscribe-main .form-box form .form-item input {
  width: 100%;
  height: 100%;
  flex: 1;
  margin-right: 10px;
  padding: 0 0.2rem;
  border-radius: 0.1rem;
  background: #FFFFFF;
  font-weight: 500;
  font-size: var(--font16);
  color: #000000;
}
.public-subscribe .subscribe-box .subscribe-main .form-box form .form-item input::placeholder {
  color: #999999;
}
.public-subscribe .subscribe-box .subscribe-main .form-box form .form-item button {
  width: auto;
  height: 100%;
  padding: 0 15px;
  border-radius: 0.1rem;
  background: var(--color);
  font-weight: 500;
  font-size: var(--font16);
  color: #FFFFFF;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.public-subscribe .subscribe-box .subscribe-main .form-box form .form-item button:hover {
  filter: brightness(1.05);
}
.public-subscribe .subscribe-box .subscribe-main .form-box form .tips-text {
  width: 100%;
  height: auto;
  margin-top: 20px;
  font-weight: 500;
  font-size: var(--font14);
  color: rgba(255, 255, 255, 0.2);
  line-height: 1.5;
}
.public-subscribe .subscribe-box .images-bg {
  width: 30%;
  max-width: 400px;
  height: auto;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  font-size: 0;
  transform: translate(10%, -12%);
  opacity: 0.3;
}
@media (max-width:1280px) {
  .public-subscribe .subscribe-box .subscribe-main .form-box form .form-item {
    height: 54px;
  }
}
@media (max-width:768px) {
  .public-subscribe .subscribe-box {
    padding: 40px 20px;
    border-radius: 0.2rem;
  }
  .public-subscribe .subscribe-box .subscribe-main {
    display: block;
  }
  .public-subscribe .subscribe-box .subscribe-main .inner-title {
    margin: 0;
  }
  .public-subscribe .subscribe-box .subscribe-main .form-box {
    width: 100%;
    max-width: 100%;
    margin: 30px 0 0;
  }
  .public-subscribe .subscribe-box .subscribe-main .form-box form .form-item {
    height: 50px;
  }
}
/* ------------------------------- */
/* ------------------------------- Support => Download */
.public-block-list .download-box {
  padding: 1rem 0 0;
}
.public-block-list .download-box .block-main .menu-box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.2rem;
}
.public-block-list .download-box .block-main .menu-box .item {
  width: 100%;
  height: auto;
  border-radius: 0.2rem;
  background: #F9F9F9;
  overflow: hidden;
}
.public-block-list .download-box .block-main .menu-box .item a {
  width: 100%;
  height: 100%;
  display: block;
  padding: 0.4rem 0.2rem 0.35rem;
  overflow: hidden;
}
.public-block-list .download-box .block-main .menu-box .item a .img {
  width: 80%;
  max-width: 400px;
  height: auto;
  margin: 0 auto;
}
.public-block-list .download-box .block-main .menu-box .item a .img .pb {
  padding-bottom: 75%;
}
.public-block-list .download-box .block-main .menu-box .item a .img img {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.public-block-list .download-box .block-main .menu-box .item a .info {
  width: 100%;
  height: auto;
  margin-top: 30px;
  text-align: center;
}
.public-block-list .download-box .block-main .menu-box .item a .info .title {
  width: 100%;
  height: auto;
  font-weight: bold;
  font-size: var(--font22);
  color: #000000;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.public-block-list .download-box .block-main .menu-box .item a .info .details {
  width: 100%;
  height: auto;
  margin-top: 10px;
  font-size: var(--font14);
  color: #999999;
}
.public-block-list .download-box .block-main .menu-box .item:hover a .img img {
  transform: scale(1.05);
}
.public-block-list .download-box .block-main .menu-box .item:hover a .info .title {
  color: var(--color);
}
@media (max-width:768px) {
  .public-block-list .download-box .block-main .menu-box {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }
}
@media (max-width:480px) {
  .public-block-list .download-box .block-main .menu-box .item a {
    padding: 20px 10px;
  }
}
.public-block-list .download-box .block-main .result-item {
  width: 100%;
  height: auto;
  grid-column: 1 / -1;
  margin-top: 0.6rem;
}
.public-block-list .download-box .block-main .result-item .search-tips {
  width: 100%;
  height: auto;
  text-align: center;
}
.public-block-list .download-box .block-main .result-item .search-tips .iconimg {
  width: 45%;
  max-width: 210px;
  margin: 0 auto;
  font-size: 0;
  text-align: center;
}
.public-block-list .download-box .block-main .result-item .search-tips .details {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  font-weight: 500;
  font-size: var(--font16);
  color: #444444;
}
@media (max-width:480px) {
  .public-block-list .download-box .block-main .result-item .search-tips .details {
    margin-top: 30px;
    font-size: 14px;
  }
}
@media (max-width:768px) {
  .public-block-list .download-box {
    padding: 0;
  }
}
/* ------------------------------- */
/* ------------------------------- Support => FAQ */
.public-block-list .faq-box {
  padding: 1rem 0 0;
}
.public-block-list .faq-box .block-main .subnav-box {
  width: 100%;
  height: auto;
  position: -webkit-sticky;
  position: sticky;
  top: var(--header-height);
  z-index: 10;
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  background: #FFFFFF;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.public-block-list .faq-box .block-main .subnav-box a {
  width: auto;
  height: 40px;
  margin: 0 10px 10px 0;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 50px;
  background: #F5F5F5;
  font-weight: 500;
  font-size: var(--font16);
  color: #000000;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.public-block-list .faq-box .block-main .subnav-box a:hover {
  color: var(--color);
}
.public-block-list .faq-box .block-main .subnav-box a.active,
.public-block-list .faq-box .block-main .subnav-box a.active:hover {
  background: #000000;
  color: #FFFFFF;
}
.public-block-list .faq-box .block-main .headline {
  width: 100%;
  height: auto;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid #E5E5E5;
}
.public-block-list .faq-box .block-main .headline .title {
  width: 100%;
  height: auto;
  flex: 1;
  margin-right: 0.5rem;
  font-weight: bold;
  font-size: var(--font24);
  color: #000000;
  line-height: 1;
}
.public-block-list .faq-box .block-main .headline .tips {
  width: auto;
  height: auto;
  font-size: var(--font14);
  color: #333333;
}
.public-block-list .faq-box .block-main .menu-box {
  width: 100%;
  height: auto;
}
.public-block-list .faq-box .block-main .menu-box .item {
  width: 100%;
  height: auto;
  padding: 0.3rem 0;
  border-bottom: 1px solid #E5E5E5;
  overflow: hidden;
}
.public-block-list .faq-box .block-main .menu-box .item .info-head {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  cursor: pointer;
}
.public-block-list .faq-box .block-main .menu-box .item .info-head .title {
  width: 100%;
  height: auto;
  flex: 1;
  font-weight: 500;
  font-size: var(--font22);
  color: #000000;
  line-height: 1.25;
}
.public-block-list .faq-box .block-main .menu-box .item .info-head .show-btn {
  width: auto;
  height: auto;
  margin-left: 1em;
  position: relative;
  z-index: 1;
  top: 0.65em;
  transform: translateY(-50%);
  font-size: var(--font22);
  cursor: pointer;
  overflow: hidden;
}
.public-block-list .faq-box .block-main .menu-box .item .info-head .show-btn .icon {
  width: 11px;
  height: 11px;
  position: relative;
  z-index: 1;
  font-size: 0;
  color: #000000;
  transform-origin: center;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.public-block-list .faq-box .block-main .menu-box .item .info-head .show-btn .icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.public-block-list .faq-box .block-main .menu-box .item .info-body {
  width: 100%;
  height: auto;
  margin-top: 20px;
  display: none;
  font-weight: 300;
  font-size: var(--font18);
  color: #000000;
  line-height: 1.33;
  overflow: hidden;
}
.public-block-list .faq-box .block-main .menu-box .item.active .info-head .show-btn .icon {
  transform: rotate(180deg);
}
.public-block-list .faq-box .block-main .menu-box .result-item {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
}
.public-block-list .faq-box .block-main .menu-box .result-item .search-tips {
  width: 100%;
  height: auto;
  text-align: center;
}
.public-block-list .faq-box .block-main .menu-box .result-item .search-tips .iconimg {
  width: 45%;
  max-width: 210px;
  margin: 0 auto;
  font-size: 0;
  text-align: center;
}
.public-block-list .faq-box .block-main .menu-box .result-item .search-tips .details {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  font-weight: 500;
  font-size: var(--font16);
  color: #444444;
}
@media (max-width:480px) {
  .public-block-list .faq-box .block-main .menu-box .result-item .search-tips .details {
    margin-top: 30px;
    font-size: 14px;
  }
}
@media (max-width:768px) {
  .public-block-list .faq-box {
    padding: 0;
  }
  .public-block-list .faq-box .block-main .headline {
    display: block;
  }
  .public-block-list .faq-box .block-main .headline .title {
    margin: 0;
  }
  .public-block-list .faq-box .block-main .headline .tips {
    width: 100%;
    margin-top: 10px;
  }
  .public-block-list .faq-box .block-main .menu-box .item {
    padding: 20px 0;
  }
}
/* ------------------------------- */
/* ------------------------------- Support => Development Center */
@media (max-width:991px) {
  .public-block-list .development-box {
    overflow: visible;
  }
}
.public-block-list .development-box .block-main .subnav-box {
  width: 100%;
  height: auto;
  position: -webkit-sticky;
  position: sticky;
  top: var(--header-height);
  z-index: 10;
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  background: #FFFFFF;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.public-block-list .development-box .block-main .subnav-box a {
  width: auto;
  height: 40px;
  margin: 0 10px 10px 0;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 50px;
  background: #F5F5F5;
  font-weight: 500;
  font-size: var(--font16);
  color: #000000;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.public-block-list .development-box .block-main .subnav-box a:hover {
  color: var(--color);
}
.public-block-list .development-box .block-main .subnav-box a.active,
.public-block-list .development-box .block-main .subnav-box a.active:hover {
  background: #000000;
  color: #FFFFFF;
}
.public-block-list .development-box .block-main .public-content {
  width: 100%;
  min-width: 0;
  margin-top: 0.2rem;
  font-size: var(--font18);
  line-height: 1.667;
  overflow: hidden;
}
.public-block-list .development-box .block-main .public-content h3 {
  width: 100%;
  height: auto;
  padding-top: 30px;
  border-top: 1px solid #E5E5E5;
  font-weight: bold;
  font-size: var(--font26);
  color: #000000;
  line-height: 1;
}
.public-block-list .development-box .block-main .download-box {
  width: 100%;
  height: auto;
  padding-top: 40px;
}
.public-block-list .development-box .block-main .download-box .headline {
  width: 100%;
  height: auto;
  padding-top: 30px;
  border-top: 1px solid #E5E5E5;
  font-weight: bold;
  font-size: var(--font26);
  color: #000000;
  line-height: 1;
}
.public-block-list .development-box .block-main .download-box .menu-box {
  width: 100%;
  height: auto;
  margin-top: 20px;
  display: grid;
  grid-gap: 10px;
}
.public-block-list .development-box .block-main .download-box .menu-box .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: 5px;
  border: 1px solid transparent;
  display: grid;
  background: #F6F6F6;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.public-block-list .development-box .block-main .download-box .menu-box .item .info-main {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 5;
  grid-area: 1 / 1 / 1 / -1;
  padding: 0.2rem 0.35rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.public-block-list .development-box .block-main .download-box .menu-box .item .info-main .info {
  width: 100%;
  height: auto;
  flex: 1;
}
.public-block-list .development-box .block-main .download-box .menu-box .item .info-main .info .title {
  width: 100%;
  height: auto;
  font-weight: bold;
  font-size: var(--font22);
  color: #000000;
}
.public-block-list .development-box .block-main .download-box .menu-box .item .info-main .info .title span {
  font-weight: 500;
  font-size: var(--font16);
}
.public-block-list .development-box .block-main .download-box .menu-box .item .info-main .info .tips {
  width: 100%;
  height: auto;
  margin-top: 10px;
  font-size: var(--font14);
  color: #999999;
  line-height: 1;
}
.public-block-list .development-box .block-main .download-box .menu-box .item .info-main .arrow-box {
  width: auto;
  height: auto;
  margin-left: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.public-block-list .development-box .block-main .download-box .menu-box .item .info-main .arrow-box .icon {
  width: 12px;
  height: 16px;
  font-size: 0;
  color: #000000;
}
.public-block-list .development-box .block-main .download-box .menu-box .item .info-main .arrow-box .icon svg {
  width: 100%;
  height: 100%;
}
.public-block-list .development-box .block-main .download-box .menu-box .item .info-main .arrow-box .word {
  margin-left: 10px;
  font-weight: 500;
  font-size: var(--font16);
  color: #000000;
}
.public-block-list .development-box .block-main .download-box .menu-box .item .info-box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 5;
  grid-area: 1 / 1 / 1 / -1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 0.2rem 0.35rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.public-block-list .development-box .block-main .download-box .menu-box .item .info-box .info {
  width: 100%;
  height: auto;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.public-block-list .development-box .block-main .download-box .menu-box .item .info-box .info .img {
  width: 25%;
  max-width: 100px;
}
.public-block-list .development-box .block-main .download-box .menu-box .item .info-box .info .content {
  width: 100%;
  height: auto;
  flex: 1;
  margin-left: 20px;
}
.public-block-list .development-box .block-main .download-box .menu-box .item .info-box .info .content .title {
  width: 100%;
  height: auto;
  font-weight: bold;
  font-size: var(--font22);
  color: #000000;
}
.public-block-list .development-box .block-main .download-box .menu-box .item .info-box .info .content .details {
  width: 100%;
  height: auto;
  font-weight: 500;
  font-size: var(--font16);
  color: #000000;
}
.public-block-list .development-box .block-main .download-box .menu-box .item .info-box .info .content .details span {
  text-decoration: underline;
}
.public-block-list .development-box .block-main .download-box .menu-box .item .info-box .public-more {
  width: auto;
  margin-left: 1rem;
}
.public-block-list .development-box .block-main .download-box .menu-box .item::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: url(../images/download-bg.jpg) no-repeat bottom / 100%;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.public-block-list .development-box .block-main .download-box .menu-box .item:hover {
  border-color: #E3E3E3;
  background: transparent;
}
.public-block-list .development-box .block-main .download-box .menu-box .item:hover .info-main {
  opacity: 0;
  visibility: hidden;
}
.public-block-list .development-box .block-main .download-box .menu-box .item:hover .info-box {
  opacity: 1;
  visibility: visible;
}
.public-block-list .development-box .block-main .download-box .menu-box .item:hover::after {
  opacity: 1;
}
.public-block-list .development-box .block-main .video-box {
  width: 100%;
  height: auto;
  padding-top: 40px;
}
.public-block-list .development-box .block-main .video-box .headline {
  width: 100%;
  height: auto;
  padding-top: 30px;
  border-top: 1px solid #E5E5E5;
  font-weight: bold;
  font-size: var(--font26);
  color: #000000;
  line-height: 1;
}
.public-block-list .development-box .block-main .video-box .video-main {
  width: 100%;
  height: 0;
  margin-top: 30px;
  padding-bottom: 56.25%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.public-block-list .development-box .block-main .video-box .video-main .video {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  font-size: 0;
}
.public-block-list .development-box .block-main .video-box .video-main .video iframe {
  width: 100%;
  height: 100%;
  display: block;
  outline: none;
}
@media (max-width:768px) {
  .public-block-list .development-box .block-main .subnav-box {
    padding: 10px 0;
  }
  .public-block-list .development-box .block-main .subnav-box a {
    height: 36px;
    margin: 0 6px 6px 0;
    padding: 0 10px;
    font-size: 12px;
  }
  .public-block-list .development-box .block-main .public-content {
    font-size: 14px;
  }
  .public-block-list .development-box .block-main .download-box .menu-box .item {
    padding: 20px;
    display: block;
  }
  .public-block-list .development-box .block-main .download-box .menu-box .item .info-main {
    padding: 0;
  }
  .public-block-list .development-box .block-main .download-box .menu-box .item .info-main .arrow-box {
    display: none;
  }
  .public-block-list .development-box .block-main .download-box .menu-box .item .info-box {
    margin-top: 25px;
    padding: 0;
    opacity: 1;
    visibility: visible;
    display: block;
  }
  .public-block-list .development-box .block-main .download-box .menu-box .item .info-box .info .img {
    width: 80px;
  }
  .public-block-list .development-box .block-main .download-box .menu-box .item .info-box .public-more {
    margin: 20px 0 0 100px;
  }
  .public-block-list .development-box .block-main .download-box .menu-box .item .info-box .public-more .more {
    height: 34px;
    padding: 0 15px;
    font-size: 12px;
  }
  .public-block-list .development-box .block-main .download-box .menu-box .item:hover .info-main {
    opacity: 1;
    visibility: visible;
  }
}
header.is-show ~ main .public-block-list .block-box.development-box .block-main .subnav-box {
  top: 0;
}
/* ------------------------------- */
/* ------------------------------- Support => Public */
/* Expand More */
.public-expand-more {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
}
.public-expand-more .icon {
  width: 22px;
  height: 22px;
  margin: 0 auto;
}
.public-expand-more .icon svg {
  width: 100%;
  height: 100%;
}
.public-expand-more .icon svg circle {
  transform-origin: center;
}
.public-expand-more .icon svg circle:first-child {
  animation: firstRotateAni 2s linear infinite;
}
.public-expand-more .icon svg circle:last-child {
  animation: lastRotateAni 2s linear infinite;
}
.public-expand-more .word {
  width: 100%;
  height: auto;
  margin-top: 10px;
  text-align: center;
  font-weight: 500;
  font-size: var(--font18);
  color: #000000;
}
@keyframes firstRotateAni {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes lastRotateAni {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
/* ------------------------------- */
/* ------------------------------- */
/* ------------------------------- */
/* ------------------------------- About */
/* Banner */
.inner-banner {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: var(--header-height);
  overflow: hidden;
}
.inner-banner .images {
  width: 100%;
  height: auto;
  font-size: 0;
  overflow: hidden;
}
.inner-banner .images img {
  width: 100%;
  min-height: 300px;
  object-fit: cover;
}
/* About DSPREAD */
.inner-about {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin: 1.2rem 0;
}
.inner-about .about-box {
  width: 100%;
  height: auto;
}
.inner-about .about-box .inner-title {
  text-align: center;
}
/* DSPREAD by the Numbers */
.inner-numbers {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin: 1.2rem 0;
}
.inner-numbers .numbers-box {
  width: 100%;
  height: auto;
}
.inner-numbers .numbers-box .inner-title {
  text-align: center;
}
.inner-numbers .numbers-box .menu-box {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 0.2rem;
}
.inner-numbers .numbers-box .menu-box .item {
  width: 100%;
  height: auto;
  grid-column: span 2;
  padding: 0.8rem 0.4rem;
  border-radius: 0.3rem;
  background: #F9F9F9;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.inner-numbers .numbers-box .menu-box .item .icon-box {
  width: 0.9rem;
  height: 0.9rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.inner-numbers .numbers-box .menu-box .item .info-box {
  width: 100%;
  height: auto;
  flex: 1;
  margin: 30px 0 0;
  text-align: center;
  overflow: hidden;
}
.inner-numbers .numbers-box .menu-box .item .info-box .number {
  width: 100%;
  height: auto;
  font-weight: bold;
  color: #000000;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.inner-numbers .numbers-box .menu-box .item .info-box .number .num,
.inner-numbers .numbers-box .menu-box .item .info-box .number .unit {
  font-size: var(--font50);
}
.inner-numbers .numbers-box .menu-box .item .info-box .number .word {
  font-size: var(--font30);
}
.inner-numbers .numbers-box .menu-box .item .info-box .details {
  width: 100%;
  height: auto;
  font-weight: 500;
  font-size: var(--font20);
  color: rgba(0, 0, 0, 0.6);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.inner-numbers .numbers-box .menu-box .item:hover {
  background: var(--color);
}
.inner-numbers .numbers-box .menu-box .item:hover .icon-box {
  filter: brightness(0) invert(1);
}
.inner-numbers .numbers-box .menu-box .item:hover .info-box .number {
  color: #FFFFFF;
}
.inner-numbers .numbers-box .menu-box .item:hover .info-box .details {
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width:1024px) {
  .inner-numbers .numbers-box .menu-box .item {
    padding: 40px;
    border-radius: 0.2rem;
  }
}
@media (max-width:768px) {
  .inner-numbers .numbers-box .menu-box .item {
    padding: 40px 20px;
  }
  .inner-numbers .numbers-box .menu-box .item .icon-box {
    width: 48px;
    height: 48px;
  }
}
@media (max-width:640px) {
  .inner-numbers .numbers-box .menu-box {
    grid-template-columns: repeat(2, 1fr);
  }
  .inner-numbers .numbers-box .menu-box .item {
    grid-column: span 1;
    display: block;
  }
  .inner-numbers .numbers-box .menu-box .item .icon-box {
    margin: 0 auto;
  }
  .inner-numbers .numbers-box .menu-box .item .info-box {
    margin: 30px 0 0;
    text-align: center;
  }
}
@media (max-width:480px) {
  .inner-numbers .numbers-box .menu-box .item .icon-box {
    width: 40px;
    height: 40px;
  }
  .inner-numbers .numbers-box .menu-box .item .info-box .details {
    font-size: 14px;
  }
}
/* Our Global Presence */
.inner-business {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background: var(--color);
  overflow: hidden;
}
.inner-business .business-box {
  width: 100%;
  height: auto;
  padding: 1.5rem 0;
}
.inner-business .business-box .inner-title {
  text-align: center;
}
.inner-business .business-box .inner-title * {
  color: #FFFFFF;
}
.inner-business .business-box .tabs-box {
  width: 100%;
  height: auto;
  margin: 0.6rem 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.inner-business .business-box .tabs-box .tabs {
  width: auto;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 5px;
}
.inner-business .business-box .tabs-box .tabs .one {
  width: auto;
  height: 50px;
  padding: 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 50px;
  font-weight: 500;
  font-size: var(--font18);
  color: #7A7A7A;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
  --this-color: var(--color);
}
.inner-business .business-box .tabs-box .tabs .one::before {
  content: '';
  width: 10px;
  height: 10px;
  margin-right: 15px;
  border-radius: 50%;
  background: var(--this-color);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.inner-business .business-box .tabs-box .tabs .one:hover {
  color: #FFFFFF;
}
.inner-business .business-box .tabs-box .tabs .one.active {
  background: #FFFFFF;
  color: #333333;
}
.inner-business .business-box .tabs-box .tabs .one.active::before {
  background: transparent;
  box-shadow: 0 0 0 3px var(--this-color);
}
.inner-business .business-box .tabs-box .tabs .one:nth-child(2) {
  --this-color: #E06115;
}
.inner-business .business-box .tabs-box .tabs .one:nth-child(3) {
  --this-color: #FFB400;
}
.inner-business .business-box .map-box {
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.inner-business .business-box .map-box .images-box {
  width: auto;
  height: auto;
  position: relative;
  z-index: 1;
}
.inner-business .business-box .map-box .images-box .images {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  font-size: 0;
}
.inner-business .business-box .map-box .images-box .swiper-box {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}
.inner-business .business-box .map-box .images-box .swiper-box .swiper-slide {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  --this-color: var(--color);
}
.inner-business .business-box .map-box .images-box .swiper-box .swiper-slide.active {
  z-index: 5;
  pointer-events: auto;
}
.inner-business .business-box .map-box .images-box .swiper-box .swiper-slide .item {
  width: 0;
  height: 0;
  position: absolute;
  cursor: pointer;
}
.inner-business .business-box .map-box .images-box .swiper-box .swiper-slide .item .icon {
  width: 8px;
  height: 8px;
  position: absolute;
  z-index: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #fff;
}
.inner-business .business-box .map-box .images-box .swiper-box .swiper-slide .item .icon::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #fff;
  animation: iconAni 2s linear infinite;
}
.inner-business .business-box .map-box .images-box .swiper-box .swiper-slide .item .icon::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #fff;
  animation: iconAni 2s linear 1s infinite;
}
.inner-business .business-box .map-box .images-box .swiper-box .swiper-slide .item .headline {
  width: auto;
  height: auto;
  position: absolute;
  left: 15px;
  top: -0.625em;
  z-index: 10;
  font-size: 0.16rem;
  font-weight: 500;
  color: #FFFFFF;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  white-space: nowrap;
}
.inner-business .business-box .map-box .images-box .swiper-box .swiper-slide .item .list {
  width: 160px;
  height: auto;
  position: absolute;
  left: 5px;
  top: -0.625em;
  z-index: 10;
  border-radius: 10px;
  padding: 0.15rem;
  transform: translateY(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  font-size: var(--font16);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.inner-business .business-box .map-box .images-box .swiper-box .swiper-slide .item .list .word {
  width: 100%;
  height: auto;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.25;
}
.inner-business .business-box .map-box .images-box .swiper-box .swiper-slide .item .list .word + .word {
  margin-top: 0.1rem;
}
.inner-business .business-box .map-box .images-box .swiper-box .swiper-slide .item .list:empty {
  display: none;
}
.inner-business .business-box .map-box .images-box .swiper-box .swiper-slide .item:hover {
  z-index: 100;
}
.inner-business .business-box .map-box .images-box .swiper-box .swiper-slide .item:hover .headline {
  opacity: 0;
}
.inner-business .business-box .map-box .images-box .swiper-box .swiper-slide .item:hover .list {
  transform: translateZ(0);
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}
.inner-business .business-box .map-box .images-box .swiper-box .swiper-slide .item.on:hover .headline {
  opacity: 1;
}
.inner-business .business-box .map-box .images-box .swiper-box .swiper-slide .item-r .list {
  left: auto;
  right: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  text-align: right;
}
.inner-business .business-box .map-box .images-box .swiper-box .swiper-slide .active .list .word {
  color: var(--this-color);
}
.inner-business .business-box .map-box .images-box .swiper-box .swiper-slide:nth-child(2) {
  --this-color: #E06115;
}
.inner-business .business-box .map-box .images-box .swiper-box .swiper-slide:nth-child(3) {
  --this-color: #FFB400;
}
@media (max-width:1280px) {
  .inner-business .business-box .tabs-box .tabs {
    padding: 4px;
  }
  .inner-business .business-box .tabs-box .tabs .one {
    height: 44px;
    padding: 0 20px;
  }
  .inner-business .business-box .tabs-box .tabs .one::before {
    width: 8px;
    height: 8px;
    margin-right: 12px;
  }
  .inner-business .business-box .tabs-box .tabs .one.active::before {
    box-shadow: 0 0 0 2px var(--color);
  }
  .inner-business .business-box .map-box .images-box .swiper-box .swiper-slide .item .icon {
    width: 6px;
    height: 6px;
  }
}
@media (max-width:768px) {
  .inner-business .business-box .tabs-box .tabs {
    padding: 3px;
  }
  .inner-business .business-box .tabs-box .tabs .one {
    height: 40px;
    padding: 0 15px;
  }
  .inner-business .business-box .tabs-box .tabs .one::before {
    width: 6px;
    height: 6px;
    margin-right: 10px;
  }
  .inner-business .business-box .map-box .images-box {
    width: 80%;
  }
  .inner-business .business-box .map-box .images-box .swiper-box .swiper-slide .item .icon {
    width: 6px;
    height: 6px;
  }
  .inner-business .business-box .map-box .images-box .swiper-box .swiper-slide .item .headline {
    font-weight: normal;
    display: none;
  }
  .inner-business .business-box .map-box .images-box .swiper-box .swiper-slide .item .list {
    left: 10px;
    font-size: 12px;
  }
  .inner-business .business-box .map-box .images-box .swiper-box .swiper-slide .item.item-r .list {
    right: 10px;
  }
  .inner-business .business-box .map-box .images-box .swiper-box .swiper-slide .item:hover .list {
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width:640px) {
  .inner-business .business-box .map-box .images-box .swiper-box .swiper-slide .item .list {
    font-size: 10px;
  }
}
@media (max-width:480px) {
  .inner-business .business-box .tabs-box .tabs {
    padding: 1px;
  }
  .inner-business .business-box .tabs-box .tabs .one {
    height: 36px;
    padding: 0 10px;
    font-size: 12px;
  }
  .inner-business .business-box .tabs-box .tabs .one::before {
    display: none;
  }
  .inner-business .business-box .map-box {
    margin-top: 35px;
  }
  .inner-business .business-box .map-box .images-box .swiper-box .swiper-slide .item .icon {
    width: 3px;
    height: 3px;
  }
  .inner-business .business-box .map-box .images-box .swiper-box .swiper-slide .item .list {
    left: 6px;
    font-size: 6px;
  }
  .inner-business .business-box .map-box .images-box .swiper-box .swiper-slide .item.item-r .list {
    right: 6px;
  }
}
@keyframes iconAni {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  100% {
    transform: translate(-50%, -50%) scale(8);
    opacity: 0;
  }
}
/* Products & Services */
.inner-product-service {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin: 1.4rem 0;
}
.inner-product-service .service-box {
  width: 100%;
  height: auto;
}
.inner-product-service .service-box .inner-title {
  text-align: center;
}
.inner-product-service .service-box .service-main {
  width: 100%;
  height: auto;
  margin-top: 0.7rem;
  padding: 0.8rem;
  background: #F5F5F5;
  border-radius: 0.3rem;
  text-align: center;
  overflow: hidden;
}
.inner-product-service .service-box .service-main .title {
  width: 100%;
  height: auto;
  font-weight: bold;
  font-size: var(--font48);
  color: #333333;
}
.inner-product-service .service-box .service-main .details {
  width: 100%;
  height: auto;
  margin-top: 0.2rem;
  font-weight: 500;
  font-size: var(--font18);
  color: #333333;
  line-height: 1.667;
}
.inner-product-service .service-box .service-main .public-more {
  margin-top: 0.4rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.inner-product-service .service-box .service-main .images {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  text-align: center;
  font-size: 0;
  overflow: hidden;
}
.inner-product-service .service-box .service-main .images img {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.inner-product-service .service-box .service-main:hover .public-more .more {
  color: #FFFFFF;
}
.inner-product-service .service-box .service-main:hover .public-more .more::before {
  opacity: 0;
  transition-delay: 0.35s;
}
.inner-product-service .service-box .service-main:hover .public-more .more::after {
  width: 200%;
  padding-bottom: 100%;
}
.inner-product-service .service-box .service-main:hover .public-more.white .more {
  background: var(--color);
  color: #FFFFFF;
}
.inner-product-service .service-box .service-main:hover .public-more.border .more {
  color: #FFFFFF;
}
.inner-product-service .service-box .service-main:hover .public-more.white.border .more {
  background: var(--color);
  border-color: transparent;
}
.inner-product-service .service-box .service-main:hover .images img {
  transform: scale(1.05);
}
@media (max-width:768px) {
  .inner-product-service .service-box .service-main {
    margin-top: 40px;
    padding: 40px 20px;
    border-radius: 0.2rem;
  }
}
/* OEM & ODM */
.inner-about-oem {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.inner-about-oem .oem-box {
  width: 100%;
  height: auto;
  min-height: 100vh;
  max-height: 960px;
  position: relative;
  left: 0;
  top: 0;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
}
.inner-about-oem .oem-box .oem-main {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.inner-about-oem .oem-box .oem-main .inner-title {
  text-align: center;
}
.inner-about-oem .oem-box .oem-main .inner-title * {
  color: #FFFFFF;
}
.inner-about-oem .oem-box .oem-main .inner-title .details {
  max-width: 990px;
  font-weight: normal;
}
.inner-about-oem .oem-box .oem-main .public-more {
  margin-top: 0.5rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.inner-about-oem .oem-box .oem-main .public-more .more {
  background: var(--color);
}
.inner-about-oem .oem-box .oem-main .public-more .more:hover {
  filter: brightness(1.2);
}
.inner-about-oem .images {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  font-size: 0;
  overflow: hidden;
}
.inner-about-oem .images::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  pointer-events: none;
  background: #000000;
  opacity: 0.8;
}
.inner-about-oem .images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Milestones */
.inner-about-history {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.inner-about-history .sticky-box {
  width: 100%;
  height: 100vh;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 10;
  overflow: hidden;
}
.inner-about-history .sticky-box .history-box {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 5;
  padding: 1.4rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  overflow: hidden;
}
.inner-about-history .sticky-box .history-box .history-main {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.inner-about-history .sticky-box .history-box .history-main .inner-title {
  width: 50%;
}
.inner-about-history .sticky-box .history-box .history-main .inner-title * {
  color: #FFFFFF;
}
.inner-about-history .sticky-box .history-box .history-main .inner-title .details {
  margin: 20px 0 0;
  font-size: var(--font16);
  line-height: 1.5;
}
.inner-about-history .sticky-box .history-box .history-main .swiper-box {
  width: 100%;
  height: 60%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
.inner-about-history .sticky-box .history-box .history-main .swiper-box .swiper-wrapper {
  height: 100%;
}
.inner-about-history .sticky-box .history-box .history-main .swiper-box .swiper-slide {
  width: 20%;
  height: 100%;
  position: relative;
  z-index: 1;
  --yValue: 25%;
}
.inner-about-history .sticky-box .history-box .history-main .swiper-box .swiper-slide .info-box {
  width: 100%;
  height: auto;
  min-height: var(--yValue);
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 1;
  transform: translateY(-100%);
}
.inner-about-history .sticky-box .history-box .history-main .swiper-box .swiper-slide .info-box .info {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 0 0 0 20px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.inner-about-history .sticky-box .history-box .history-main .swiper-box .swiper-slide .info-box .info::before {
  content: '';
  width: 2px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: linear-gradient(#FFFFFF, transparent);
}
.inner-about-history .sticky-box .history-box .history-main .swiper-box .swiper-slide .info-box .info .year {
  width: 100%;
  height: auto;
  font-weight: 500;
  font-size: var(--font60);
  color: #FFFFFF;
  line-height: 1;
}
.inner-about-history .sticky-box .history-box .history-main .swiper-box .swiper-slide .info-box .info .details {
  width: 100%;
  height: auto;
  margin-top: 0.2rem;
  font-size: 500px;
  font-size: var(--font16);
  color: #FFFFFF;
}
.inner-about-history .sticky-box .history-box .history-main .pager-box {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: -0.6rem;
  font-size: 0;
  text-align: center;
}
.inner-about-history .sticky-box .history-box .history-main .pager-box .pager {
  width: 1.38rem;
  height: 4px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  background: rgba(240, 242, 249, 0.4);
  --vWidth: 0;
}
.inner-about-history .sticky-box .history-box .history-main .pager-box .pager::after {
  content: '';
  width: var(--vWidth);
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #FFFFFF;
}
@media (max-width:1280px) {
  .inner-about-history .sticky-box .history-box .history-main .pager-box .pager {
    height: 3px;
  }
}
@media (max-width:1024px) {
  .inner-about-history .sticky-box .history-box .history-main .inner-title {
    width: 50%;
  }
}
@media (max-width:991px) {
  .inner-about-history .sticky-box .history-box {
    padding: 60px 0;
  }
  .inner-about-history .sticky-box .history-box .history-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    /* padding-bottom: 20vh; */
  }
  .inner-about-history .sticky-box .history-box .history-main .inner-title {
    width: 100%;
  }
  .inner-about-history .sticky-box .history-box .history-main .swiper-box {
    height: auto;
    flex: 1;
    margin-top: 20px;
    position: relative;
  }
  .inner-about-history .sticky-box .history-box .history-main .swiper-box .swiper-slide .info-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    /* height: 100%; position: relative; top: 0; transform: translateZ(0); */
  }
  .inner-about-history .sticky-box .history-box .history-main .swiper-box .swiper-slide .info-box .info {
    /* height: 100%; */
  }
  .inner-about-history .sticky-box .history-box .history-main .pager-box {
    bottom: -20px;
  }
}
@media (max-width:768px) {
  .inner-about-history .sticky-box .history-box .history-main .pager-box .pager {
    height: 2px;
  }
}
.inner-about-history .sticky-box .images {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  font-size: 0;
  overflow: hidden;
}
.inner-about-history .sticky-box .images::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  pointer-events: none;
  background: linear-gradient(black, transparent);
  opacity: 0.4;
}
.inner-about-history .sticky-box .images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width:991px) {
  .inner-about-history .sticky-box .images::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
    pointer-events: none;
    background: #000000;
    opacity: 0.4;
  }
}
.inner-about-history::after {
  content: '';
  width: 100%;
  height: 300vh;
  display: block;
}
/* What We’re All About */
.inner-all-about {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin: 1.4rem 0;
}
.inner-all-about .about-box {
  width: 100%;
  height: auto;
}
.inner-all-about .about-box .inner-title {
  text-align: center;
}
.inner-all-about .about-box .menu-box {
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.4rem;
}
.inner-all-about .about-box .menu-box .item {
  width: 100%;
  height: auto;
  padding: 1.2rem 0.4rem 0.9rem;
  border-radius: 0.3rem;
  border: 1px solid #EEEEEE;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.inner-all-about .about-box .menu-box .item .icon-box {
  width: 50%;
  max-width: 1.3rem;
  height: auto;
  margin: 0 auto;
  filter: brightness(0);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.inner-all-about .about-box .menu-box .item .title {
  width: 100%;
  height: auto;
  margin-top: 0.3rem;
  text-align: center;
  font-weight: bold;
  font-size: var(--font22);
  color: #000000;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.inner-all-about .about-box .menu-box .item:hover {
  border-color: transparent;
  background: var(--color);
}
.inner-all-about .about-box .menu-box .item:hover .icon-box {
  filter: brightness(0) invert(1);
}
.inner-all-about .about-box .menu-box .item:hover .title {
  color: #FFFFFF;
}
@media (max-width:1024px) {
  .inner-all-about .about-box .menu-box {
    grid-gap: 20px;
  }
}
@media (max-width:768px) {
  .inner-all-about .about-box .menu-box {
    grid-gap: 10px;
  }
  .inner-all-about .about-box .menu-box .item {
    padding: 60px 20px;
    border-radius: 0.2rem;
  }
  .inner-all-about .about-box .menu-box .item .icon-box {
    max-width: 60px;
  }
}
@media (max-width:640px) {
  .inner-all-about .about-box .menu-box {
    grid-template-columns: 1fr;
  }
  .inner-all-about .about-box .menu-box .item {
    padding: 40px 20px;
  }
}
/* ------------------------------- */
/* ------------------------------- */
/* ------------------------------- */
/* ------------------------------- About => News => List */
/* Recent Events */
.inner-news-box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: var(--header-height);
  overflow: hidden;
}
.inner-news-box.active {
  background: #F4F4F4;
}
.inner-news-box .news-box {
  width: 100%;
  height: auto;
  padding: 1.2rem 0 0.8rem;
}
.inner-news-box .news-box .news-main {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin-top: 0.6rem;
  overflow: hidden;
}
.inner-news-box .news-box .news-main a {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  border-radius: 0.3rem;
  overflow: hidden;
}
.inner-news-box .news-box .news-main a .img {
  width: 59.72%;
  height: auto;
  position: relative;
  z-index: 5;
  border-radius: 0 0.3rem 0.3rem 0;
  overflow: hidden;
}
.inner-news-box .news-box .news-main a .img .pb {
  padding-bottom: 55.81395349%;
}
.inner-news-box .news-box .news-main a .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.inner-news-box .news-box .news-main a .info-box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 5;
  flex: 1;
  padding: 0.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.inner-news-box .news-box .news-main a .info-box .info {
  width: 100%;
  height: auto;
}
.inner-news-box .news-box .news-main a .info-box .info .time {
  width: 100%;
  height: auto;
  display: block;
  font-weight: 500;
  font-size: var(--font16);
  color: #666666;
}
.inner-news-box .news-box .news-main a .info-box .info .title {
  width: 100%;
  height: auto;
  margin-top: 0.2rem;
  font-weight: 500;
  font-size: var(--font24);
  color: #000000;
  line-height: 1.5;
}
.inner-news-box .news-box .news-main a .info-box .public-more {
  margin-top: 30px;
}
.inner-news-box .news-box .news-main::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  border: 1px solid #EEEEEE;
  border-radius: 0.3rem;
}
.inner-news-box .news-box .news-main a:hover .img img {
  transform: scale(1.05);
}
.inner-news-box .news-box .news-main a:hover .public-more .more {
  color: #FFFFFF;
}
.inner-news-box .news-box .news-main a:hover .public-more .more::before {
  opacity: 0;
  transition-delay: 0.35s;
}
.inner-news-box .news-box .news-main a:hover .public-more .more::after {
  width: 200%;
  padding-bottom: 100%;
}
.inner-news-box .news-box .news-main a:hover .public-more.white .more {
  background: var(--color);
  color: #FFFFFF;
}
.inner-news-box .news-box .news-main a:hover .public-more.border .more {
  color: #FFFFFF;
}
.inner-news-box .news-box .news-main a:hover .public-more.white.border .more {
  background: var(--color);
  border-color: transparent;
}
@media (max-width:991px) {
  .inner-news-box .news-box .news-main a {
    display: block;
  }
  .inner-news-box .news-box .news-main a .img {
    width: 100%;
    border-radius: 0 0 0.3rem 0.3rem;
  }
  .inner-news-box .news-box .news-main a .info-box {
    padding: 0.5rem 0.3rem;
  }
}
@media (max-width:768px) {
  .inner-news-box .news-box .news-main a {
    border-radius: 0.2rem;
  }
  .inner-news-box .news-box .news-main a .img {
    border-radius: 0 0 0.2rem 0.2rem;
  }
  .inner-news-box .news-box .news-main::after {
    border-radius: 0.2rem;
  }
}
.inner-news-box .news-box .subnav-box {
  width: 100%;
  height: auto;
  margin-top: 0.9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.inner-news-box .news-box .subnav-box .subnav {
  width: 100%;
  height: auto;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
}
.inner-news-box .news-box .subnav-box .subnav a {
  width: auto;
  height: auto;
  margin-right: 0.6rem;
  padding: 1em 0;
  position: relative;
  z-index: 1;
  font-size: var(--font18);
  color: #000000;
  line-height: 1;
  white-space: nowrap;
}
.inner-news-box .news-box .subnav-box .subnav a::after {
  content: '';
  width: 0;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  background: var(--color);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.inner-news-box .news-box .subnav-box .subnav a.active {
  font-weight: bold;
}
.inner-news-box .news-box .subnav-box .subnav a.active::after {
  width: 100%;
}
@media (max-width:1280px) {
  .inner-news-box .news-box .subnav-box .subnav a::after {
    height: 2px;
  }
}
.inner-news-box .news-box .subnav-box .public-search {
  width: 25%;
}
@media (max-width:768px) {
  .inner-news-box .news-box .subnav-box {
    display: block;
  }
  .inner-news-box .news-box .subnav-box .public-search {
    width: 100%;
  }
  .inner-news-box .news-box .subnav-box .subnav {
    margin-top: 10px;
  }
}
@media (max-width:480px) {
  .inner-news-box .news-box .subnav-box .subnav a {
    margin-right: 0.4rem;
  }
}
.inner-news-box .news-box .inner-title + .news-menu {
  margin-top: 0.7rem;
}
.inner-news-box .news-box .news-menu {
  width: 100%;
  height: auto;
  margin-top: 0.45rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.8rem 0.45rem;
}
.inner-news-box .news-box .news-menu .item {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.inner-news-box .news-box .news-menu .item a {
  width: 100%;
  height: 100%;
}
.inner-news-box .news-box .news-menu .item a .img {
  width: 100%;
  height: auto;
  border-radius: 0.3rem;
  overflow: hidden;
}
.inner-news-box .news-box .news-menu .item a .img .pb {
  padding-bottom: 56.25%;
}
.inner-news-box .news-box .news-menu .item a .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.inner-news-box .news-box .news-menu .item a .info {
  width: 100%;
  height: auto;
  margin-top: 0.25rem;
}
.inner-news-box .news-box .news-menu .item a .info .time {
  width: 100%;
  height: auto;
  display: block;
  line-height: 1;
  font-size: var(--font14);
  color: #999999;
}
.inner-news-box .news-box .news-menu .item a .info .title {
  width: 100%;
  height: calc(2em * 1.45);
  margin-top: 0.15rem;
  font-weight: 500;
  font-size: var(--font18);
  color: #333333;
  line-height: 1.45;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.inner-news-box .news-box .news-menu .item a .info .details {
  width: 100%;
  max-height: calc(3em * 1.45);
  margin-top: 0.15rem;
  font-weight: 500;
  font-size: var(--font14);
  color: #666666;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.inner-news-box .news-box .news-menu .item a:hover .img img {
  transform: scale(1.05);
}
.inner-news-box .news-box .news-menu .item a:hover .info .title {
  color: var(--color);
}
@media (max-width:768px) {
  .inner-news-box .news-box .news-menu {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0.6rem 0.2rem;
  }
  .inner-news-box .news-box .news-menu .item a .img {
    border-radius: 0.2rem;
  }
}
@media (max-width:480px) {
  .inner-news-box .news-box .news-menu {
    grid-template-columns: 1fr;
  }
  .inner-news-box .news-box .news-menu .item a .info .title {
    height: auto;
  }
}
.inner-news-box .news-box .result-item {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
}
.inner-news-box .news-box .result-item .search-tips {
  width: 100%;
  height: auto;
  text-align: center;
}
.inner-news-box .news-box .result-item .search-tips .iconimg {
  width: 45%;
  max-width: 210px;
  margin: 0 auto;
  font-size: 0;
  text-align: center;
}
.inner-news-box .news-box .result-item .search-tips .details {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  font-weight: 500;
  font-size: var(--font16);
  color: #444444;
}
@media (max-width:480px) {
  .inner-news-box .news-box .result-item .search-tips .details {
    margin-top: 30px;
    font-size: 14px;
  }
}
/* More popular tags */
.inner-news-tags {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.inner-news-tags .news-box {
  width: 100%;
  height: auto;
  padding: 0.8rem 0 1.1rem;
}
.inner-news-tags .news-box .headline {
  width: 100%;
  height: auto;
  font-weight: bold;
  font-size: var(--font22);
  color: #000000;
  line-height: 1;
}
.inner-news-tags .news-box .menu-box {
  width: 100%;
  height: auto;
  margin-top: 30px;
}
.inner-news-tags .news-box .menu-box .menu {
  width: calc(100% + 0.1rem);
  height: auto;
  transform: translateX(-0.05rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.inner-news-tags .news-box .menu-box .menu a {
  width: auto;
  height: auto;
  margin: 0 0.05rem 0.1rem;
  padding: 0.25em 1em;
  border-radius: 50px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  font-size: var(--font16);
  color: #000000;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.inner-news-tags .news-box .menu-box .menu a:hover {
  border-color: transparent;
  background: var(--color);
  color: #FFFFFF;
}
@media (max-width:1280px) {
  .inner-news-tags .news-box {
    padding: 40px 0;
  }
  .inner-news-tags .news-box .menu-box {
    margin-top: 25px;
  }
}
@media (max-width:768px) {
  .inner-news-tags .news-box .menu-box .menu a {
    font-size: 12px;
  }
}
/* ------------------------------- About => News => Details */
/* News Details */
.inner-news-details {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: var(--header-height);
  overflow: hidden;
}
.inner-news-details .news-box {
  width: 100%;
  height: auto;
  max-width: 960px;
  margin: 0 auto;
  padding: 0.4rem 0 1.2rem;
}
.inner-news-details .news-box .details-title {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
  border-bottom: 1px solid #E8E8E8;
}
.inner-news-details .news-box .details-title .headline {
  width: 100%;
  height: auto;
  font-weight: 500;
  font-size: var(--font48);
  color: #111111;
  line-height: 1.25;
}
.inner-news-details .news-box .details-title .info {
  width: 100%;
  height: auto;
  padding: 0.25rem 0;
  font-size: var(--font16);
  color: #666666;
}
.inner-news-details .news-box .details-title .info .classify {
  color: var(--color);
}
.inner-news-details .news-box .details-title .info i {
  margin: 0 1em;
  font-size: 10px;
}
.inner-news-details .news-box .public-content {
  margin-top: 30px;
}
.inner-news-details .news-box .tags-box {
  width: 100%;
  height: auto;
  margin-top: 30px;
}
.inner-news-details .news-box .tags-box .tags {
  width: calc(100% + 0.1rem);
  height: auto;
  transform: translateX(-0.05rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.inner-news-details .news-box .tags-box .tags a {
  width: auto;
  height: auto;
  margin: 0 0.05rem;
  padding: 0.25em 1em;
  border-radius: 50px;
  background: #F4F4F4;
  font-size: var(--font16);
  color: #333333;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.inner-news-details .news-box .tags-box .tags a:hover {
  border-color: transparent;
  background: var(--color);
  color: #FFFFFF;
}
.inner-news-details .news-box .info-box {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.inner-news-details .news-box .info-box .share {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  grid-gap: 0.1rem 0.2rem;
  --value-size: 42px;
}
.inner-news-details .news-box .info-box .share .item {
  width: var(--value-size);
  height: var(--value-size);
}
.inner-news-details .news-box .info-box .share .item a {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.inner-news-details .news-box .info-box .share .item a .icon-box {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 5;
  border-radius: 50%;
  background: #F4F4F4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.inner-news-details .news-box .info-box .share .item a .icon-box svg {
  width: 30%;
  height: 30%;
}
.inner-news-details .news-box .info-box .share .item a .icon-box svg path {
  fill: currentColor;
}
.inner-news-details .news-box .info-box .share .item a .qrcode {
  width: 110px;
  height: auto;
  position: absolute;
  left: 50%;
  bottom: 100%;
  z-index: 10;
  transform: translate(-50%, -10px);
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.1));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.inner-news-details .news-box .info-box .share .item a .qrcode::after {
  content: '';
  width: 0;
  height: 0;
  display: block;
  margin: 0 auto;
  border-width: 8px 7px 0 7px;
  border-style: solid;
  border-color: #333333 transparent transparent transparent;
}
.inner-news-details .news-box .info-box .share .item a .qrcode .img {
  width: 100%;
  height: auto;
  padding: 5px;
  background: #333333;
  border-radius: 3px;
  overflow: hidden;
}
.inner-news-details .news-box .info-box .share .item a .qrcode .img img {
  width: 100%;
}
.inner-news-details .news-box .info-box .share .item:first-child a .qrcode {
  left: 0;
  transform: translateY(-10px);
}
.inner-news-details .news-box .info-box .share .item:first-child a .qrcode::after {
  margin: 0;
  position: relative;
  left: 20px;
  transform: translateX(-50%);
}
.inner-news-details .news-box .info-box .share .item a:hover {
  color: #000000;
}
.inner-news-details .news-box .info-box .share .item a:hover .qrcode {
  opacity: 1;
  visibility: visible;
}
.inner-news-details .news-box .info-box .return-list {
  width: auto;
  height: auto;
  -webkit-box-self: center;
  -ms-align-self: center;
  -webkit-align-self: center;
  align-self: center;
}
.inner-news-details .news-box .info-box .return-list a {
  width: auto;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  color: #010101;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.inner-news-details .news-box .info-box .return-list a .icon {
  width: 16px;
  height: 16px;
  font-size: 0;
}
.inner-news-details .news-box .info-box .return-list a .icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.inner-news-details .news-box .info-box .return-list a .word {
  width: auto;
  height: auto;
  margin-left: 1em;
  font-weight: 500;
  font-size: var(--font18);
  color: currentColor;
  white-space: nowrap;
}
.inner-news-details .news-box .info-box .return-list a:hover {
  color: var(--color);
}
.inner-news-details .news-box .paginator-box {
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
  padding-top: 0.4rem;
  border-top: 1px solid #E5E5E5;
}
.inner-news-details .news-box .paginator-box .item {
  width: 100%;
  height: auto;
}
.inner-news-details .news-box .paginator-box .item a {
  width: auto;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.inner-news-details .news-box .paginator-box .item a .label {
  font-weight: 500;
  font-size: var(--font14);
  color: #7C7C7C;
}
.inner-news-details .news-box .paginator-box .item a .word {
  width: 100%;
  height: auto;
  margin-left: 0.5rem;
  flex: 1;
  font-weight: 500;
  font-size: var(--font16);
  color: #111111;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.inner-news-details .news-box .paginator-box .item a:hover .word {
  color: var(--color);
}
.inner-news-details .news-box .paginator-box .item + .item {
  margin-top: 0.2rem;
}
@media (max-width:1280px) {
  .inner-news-details .news-box .info-box .share {
    --value-size: 40px;
  }
}
@media (max-width:1024px) {
  .inner-news-details .news-box .info-box .share {
    --value-size: 38px;
  }
}
@media (max-width:768px) {
  .inner-news-details .news-box .tags-box .tags a {
    font-size: 12px;
  }
  .inner-news-details .news-box .info-box .share {
    --value-size: 36px;
  }
}
@media (max-width:480px) {
  .inner-news-details .news-box .info-box {
    display: block;
  }
  .inner-news-details .news-box .info-box .return-list {
    width: 100%;
    margin: 20px 0 0;
  }
  .inner-news-details .news-box .paginator-box .item a {
    display: block;
  }
  .inner-news-details .news-box .paginator-box .item a .word {
    margin: 5px 0 0;
  }
  .inner-news-details .news-box .paginator-box .item + .item {
    margin-top: 0.4rem;
  }
}
.public-more-news {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background: #F4F4F4;
  overflow: hidden;
}
.public-more-news .news-box {
  width: 100%;
  height: auto;
  padding: 1.2rem 0;
}
.public-more-news .news-box .inner-title {
  text-align: center;
}
.public-more-news .news-box .inner-title .title {
  font-size: var(--font30);
}
.public-more-news .news-box .swiper-box {
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
}
.public-more-news .news-box .swiper-box .swiper-slide {
  width: 30%;
  height: auto;
  overflow: hidden;
}
.public-more-news .news-box .swiper-box .swiper-slide a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.public-more-news .news-box .swiper-box .swiper-slide a .img {
  width: 100%;
  height: auto;
  border-radius: 0.3rem;
  overflow: hidden;
}
.public-more-news .news-box .swiper-box .swiper-slide a .img .pb {
  padding-bottom: 56.25%;
}
.public-more-news .news-box .swiper-box .swiper-slide a .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.public-more-news .news-box .swiper-box .swiper-slide a .info-box {
  width: 100%;
  height: auto;
  margin-top: 0.25rem;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.public-more-news .news-box .swiper-box .swiper-slide a .info-box .info {
  width: 100%;
  height: auto;
}
.public-more-news .news-box .swiper-box .swiper-slide a .info-box .info .time {
  width: 100%;
  height: auto;
  display: block;
  line-height: 1;
  font-weight: 500;
  font-size: var(--font16);
  color: #666666;
}
.public-more-news .news-box .swiper-box .swiper-slide a .info-box .info .title {
  width: 100%;
  height: calc(3em * 1.45);
  margin-top: 0.15rem;
  font-weight: 500;
  font-size: var(--font18);
  color: #333333;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.public-more-news .news-box .swiper-box .swiper-slide a .info-box .public-arrow {
  margin-top: 0.3rem;
}
.public-more-news .news-box .swiper-box .swiper-slide a:hover .img img {
  transform: scale(1.05);
}
.public-more-news .news-box .pager-box {
  width: 100%;
  height: auto;
  text-align: center;
}
.public-more-news .news-box .pager-box .pager {
  width: auto;
  height: auto;
  margin-top: 0.8rem;
  font-size: 0;
  overflow: hidden;
}
.public-more-news .news-box .pager-box .pager span {
  width: 0.4rem;
  height: 2px;
  position: relative;
  z-index: 1;
  border-radius: 0;
  background: #000000;
  opacity: 0.15;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.public-more-news .news-box .pager-box .pager span + span {
  margin-left: 0.1rem;
}
.public-more-news .news-box .pager-box .pager span.active {
  opacity: 1;
}
.public-more-news .news-box > .public-arrow {
  margin-top: 0.8rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width:768px) {
  .public-more-news .news-box .swiper-box .swiper-slide a .img {
    border-radius: 0.2rem;
  }
}
/* ------------------------------- */
/* ------------------------------- */
/* ------------------------------- */
/* ------------------------------- About => Contact */
.public-header .header-box .contact-box {
  width: 100%;
  height: auto;
  padding: 1.66rem 0 0.8rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0.3rem;
}
.public-header .header-box .contact-box .item {
  width: 100%;
  height: auto;
}
.public-header .header-box .contact-box .item a {
  width: auto;
  height: auto;
  display: block;
  border-radius: 0.3rem;
  border: 1px solid #E3E3E3;
  padding: 0.55rem 0.3rem;
}
.public-header .header-box .contact-box .item a .icon-box {
  width: 12.5%;
  max-width: 72px;
  height: auto;
  margin: 0 auto;
  overflow: hidden;
}
.public-header .header-box .contact-box .item a .info {
  width: 100%;
  height: auto;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.public-header .header-box .contact-box .item a .info .word {
  font-weight: bold;
  font-size: var(--font26);
  color: #333333;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.public-header .header-box .contact-box .item a .info .arrow {
  width: 8px;
  height: 13px;
  margin-left: 0.15rem;
  font-size: 0;
  color: var(--color);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.public-header .header-box .contact-box .item a .info .arrow svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.public-header .header-box .contact-box .item a:hover .info .word {
  color: var(--color);
}
.public-header .header-box .contact-box .item a:hover .info .arrow {
  transform: translateX(100%);
}
@media (max-width:1024px) {
  .public-header .header-box .contact-box .item a .info .word {
    font-size: 18px;
  }
  .public-header .header-box .contact-box .item a .info .arrow {
    width: 6px;
    height: 10px;
  }
}
@media (max-width:768px) {
  .public-header .header-box .contact-box {
    padding: 0 0 40px;
    grid-template-columns: 1fr;
    grid-gap: 10px;
  }
  .public-header .header-box .contact-box .item a {
    border-radius: 0.2rem;
  }
}
@media (max-width:480px) {
  .public-header .header-box .contact-box .item a .info .word {
    font-size: 16px;
  }
  .public-header .header-box .contact-box .item a .info .arrow {
    width: 5px;
    height: 8px;
  }
}
/* Offices */
.inner-offices {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background: #F4F4F4;
  overflow: hidden;
}
.inner-offices .offices-box {
  width: 100%;
  height: auto;
  padding: 1rem 0 1.2rem;
}
.inner-offices .offices-box .offices-active {
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
  padding: 0.3rem 0.3rem 0.4rem;
  border-radius: 0.3rem;
  background: #FFFFFF;
  overflow: hidden;
}
.inner-offices .offices-box .offices-active .img {
  width: 100%;
  height: auto;
  border-radius: 0.3rem;
  overflow: hidden;
}
.inner-offices .offices-box .offices-active .img .pb {
  padding-bottom: 28.98550725%;
  min-height: 200px;
}
.inner-offices .offices-box .offices-active .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner-offices .offices-box .offices-active .info-box {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
}
.inner-offices .offices-box .offices-active .info-box .title {
  width: 100%;
  height: auto;
  font-weight: bold;
  font-size: var(--font28);
  color: #333333;
}
.inner-offices .offices-box .offices-active .info-box .menu {
  width: 100%;
  height: auto;
  margin-top: 0.25rem;
  display: grid;
  grid-template-columns: 2fr repeat(2, 1fr);
  grid-gap: 1.2rem;
}
.inner-offices .offices-box .offices-active .info-box .menu .item {
  width: 100%;
  height: auto;
}
.inner-offices .offices-box .offices-active .info-box .menu .item .label {
  width: 100%;
  height: auto;
  font-weight: 500;
  font-size: var(--font18);
  color: #999999;
}
.inner-offices .offices-box .offices-active .info-box .menu .item .details {
  width: 100%;
  height: auto;
  margin-top: 10px;
  font-weight: bold;
  font-size: var(--font18);
  color: #000000;
}
.inner-offices .offices-box .offices-active .info-box .menu .item .details.active {
  text-decoration: underline;
}
.inner-offices .offices-box .subnav-box {
  width: 100%;
  height: auto;
  margin-top: 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
}
.inner-offices .offices-box .subnav-box a {
  width: auto;
  height: auto;
  margin-right: 0.6rem;
  padding-bottom: 1em;
  position: relative;
  z-index: 1;
  font-size: var(--font18);
  color: #000000;
  line-height: 1;
  white-space: nowrap;
}
.inner-offices .offices-box .subnav-box a::after {
  content: '';
  width: 0;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  background: var(--color);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.inner-offices .offices-box .subnav-box a.active {
  font-weight: bold;
}
.inner-offices .offices-box .subnav-box a.active::after {
  width: 100%;
}
@media (max-width:1280px) {
  .inner-offices .offices-box .subnav-box a::after {
    height: 2px;
  }
}
.inner-offices .offices-box .swiper-box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin-top: 0.5rem;
}
.inner-offices .offices-box .swiper-box .swiper-slide {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0.4rem;
}
.inner-offices .offices-box .swiper-box .swiper-slide.active {
  z-index: 5;
  pointer-events: auto;
}
.inner-offices .offices-box .swiper-box .swiper-slide .item {
  width: 100%;
  height: auto;
  border-radius: 0.3rem;
  background: #FFFFFF;
  overflow: hidden;
}
.inner-offices .offices-box .swiper-box .swiper-slide .item .img {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.inner-offices .offices-box .swiper-box .swiper-slide .item .img .pb {
  padding-bottom: 54.94505495%;
}
.inner-offices .offices-box .swiper-box .swiper-slide .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.inner-offices .offices-box .swiper-box .swiper-slide .item .info-box {
  width: 100%;
  height: auto;
  padding: 0.4rem 0.3rem;
}
.inner-offices .offices-box .swiper-box .swiper-slide .item .info-box .title {
  width: 100%;
  height: auto;
  font-weight: bold;
  font-size: var(--font22);
  color: #000000;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.inner-offices .offices-box .swiper-box .swiper-slide .item .info-box .menu {
  width: 100%;
  height: auto;
  margin-top: 0.25rem;
}
.inner-offices .offices-box .swiper-box .swiper-slide .item .info-box .menu .one {
  width: 100%;
  height: auto;
}
.inner-offices .offices-box .swiper-box .swiper-slide .item .info-box .menu .one .label {
  width: 100%;
  height: auto;
  font-weight: 500;
  font-size: var(--font16);
  color: #999999;
}
.inner-offices .offices-box .swiper-box .swiper-slide .item .info-box .menu .one .details {
  width: 100%;
  height: auto;
  margin-top: 10px;
  font-weight: bold;
  font-size: var(--font16);
  color: #000000;
  word-wrap: break-word;
}
.inner-offices .offices-box .swiper-box .swiper-slide .item .info-box .menu .one .details.active {
  text-decoration: underline;
}
.inner-offices .offices-box .swiper-box .swiper-slide .item .info-box .menu .one + .one {
  margin-top: 0.25rem;
}
.inner-offices .offices-box .swiper-box .swiper-slide .item:hover .img img {
  transform: scale(1.05);
}
.inner-offices .offices-box .swiper-box .swiper-slide .item:hover .info-box .title {
  color: var(--color);
}
@media (max-width:1024px) {
  .inner-offices .offices-box .offices-active .info-box .menu {
    margin-top: 25px;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 25px;
  }
  .inner-offices .offices-box .offices-active .info-box .menu .item:first-child {
    grid-column: 1 / -1;
  }
  .inner-offices .offices-box .swiper-box .swiper-slide {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }
}
@media (max-width:768px) {
  .inner-offices .offices-box .offices-active {
    border-radius: 0.2rem;
  }
  .inner-offices .offices-box .offices-active .img {
    border-radius: 0.2rem;
  }
  .inner-offices .offices-box .offices-active .info-box .menu {
    grid-template-columns: 1fr;
  }
  .inner-offices .offices-box .swiper-box .swiper-slide {
    grid-template-columns: 1fr;
  }
  .inner-offices .offices-box .swiper-box .swiper-slide .item {
    border-radius: 0.2rem;
  }
}
/* Send Us a Message */
.inner-feedback {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.inner-feedback .feedback-box {
  width: 100%;
  height: auto;
  padding: 1.3rem 0;
}
.inner-feedback .feedback-box .feedback-main {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
}
.inner-feedback .feedback-box .feedback-main .form-box {
  width: 56.944%;
  width: 100%;
  height: auto;
}
.inner-feedback .feedback-box .feedback-main .form-box .layui-form {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px 0.2rem;
  --value: 46px;
}
.inner-feedback .feedback-box .feedback-main .form-box .layui-form .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: 1fr auto;
  grid-gap: 15px;
}
.inner-feedback .feedback-box .feedback-main .form-box .layui-form .item.select-item {
  z-index: 5;
}
.inner-feedback .feedback-box .feedback-main .form-box .layui-form .item label {
  width: 100%;
  height: auto;
  display: block;
  font-weight: 500;
  font-size: var(--font16);
  color: #000000;
  line-height: 1.25;
}
.inner-feedback .feedback-box .feedback-main .form-box .layui-form .item label span {
  color: var(--color);
}
.inner-feedback .feedback-box .feedback-main .form-box .layui-form .item input,
.inner-feedback .feedback-box .feedback-main .form-box .layui-form .item textarea {
  width: 100%;
  height: var(--value);
  padding: 0 20px;
  border-radius: 4px;
  border: 1px solid #C7C7C7;
  background: #FFFFFF;
  font-size: var(--font16);
  color: #000000;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.inner-feedback .feedback-box .feedback-main .form-box .layui-form .item input::placeholder,
.inner-feedback .feedback-box .feedback-main .form-box .layui-form .item textarea::placeholder {
  color: #999999;
}
.inner-feedback .feedback-box .feedback-main .form-box .layui-form .item input:focus,
.inner-feedback .feedback-box .feedback-main .form-box .layui-form .item textarea:focus {
  box-shadow: none;
  border-color: var(--color);
}
.inner-feedback .feedback-box .feedback-main .form-box .layui-form .item textarea {
  height: calc(var(--value) * 3);
  padding: 1em 20px;
  overflow-y: auto;
}
.inner-feedback .feedback-box .feedback-main .form-box .layui-form .item .label {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.inner-feedback .feedback-box .feedback-main .form-box .layui-form .item .label label {
  width: auto;
  height: auto;
  margin-right: 0.8rem;
}
.inner-feedback .feedback-box .feedback-main .form-box .layui-form .item .label input[type='radio'] {
  margin: 0;
}
.inner-feedback .feedback-box .feedback-main .form-box .layui-form .item .label .layui-form-radio {
  margin: 0;
}
.inner-feedback .feedback-box .feedback-main .form-box .layui-form .item .label .layui-form-radio * {
  font-size: 20px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.inner-feedback .feedback-box .feedback-main .form-box .layui-form .item .label .layui-form-radio > div {
  font-weight: 500;
  font-size: var(--font16);
  color: #000000;
}
.inner-feedback .feedback-box .feedback-main .form-box .layui-form .item .label .layui-form-radio ~ .layui-form-radio {
  padding-left: 0.4rem;
}
.inner-feedback .feedback-box .feedback-main .form-box .layui-form .item .label .layui-form-radio:hover > *,
.inner-feedback .feedback-box .feedback-main .form-box .layui-form .item .label .layui-form-radioed,
.inner-feedback .feedback-box .feedback-main .form-box .layui-form .item .label .layui-form-radioed > i {
  color: var(--color);
}
.inner-feedback .feedback-box .feedback-main .form-box .layui-form .item .layui-form-select .layui-select-title {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.inner-feedback .feedback-box .feedback-main .form-box .layui-form .item .layui-form-select .layui-select-title .layui-input {
  width: 100%;
  height: var(--value);
  padding: 0 20px;
  border-radius: 4px;
  border: 1px solid #C7C7C7;
  background: #FFFFFF;
  font-size: var(--font16);
  color: #000000;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.inner-feedback .feedback-box .feedback-main .form-box .layui-form .item .layui-form-select .layui-select-title .layui-input:focus {
  box-shadow: none;
}
.inner-feedback .feedback-box .feedback-main .form-box .layui-form .item .layui-form-select .layui-select-title .layui-input:hover {
  border-color: #F8F8F8 !important;
}
.inner-feedback .feedback-box .feedback-main .form-box .layui-form .item .layui-form-select dl {
  top: 100%;
  border: 0;
  padding: 10px 0;
  background: #FFFFFF;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.inner-feedback .feedback-box .feedback-main .form-box .layui-form .item .layui-form-select dl dd {
  padding: 0.8em 1.5em 0.8em 2.2em !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: var(--font14);
  color: #999999;
  line-height: 1;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.inner-feedback .feedback-box .feedback-main .form-box .layui-form .item .layui-form-select dl dd:first-child {
  display: none;
}
.inner-feedback .feedback-box .feedback-main .form-box .layui-form .item .layui-form-select dl dd.layui-this,
.inner-feedback .feedback-box .feedback-main .form-box .layui-form .item .layui-form-select dl dd:hover {
  background: transparent;
  color: var(--color);
}
.inner-feedback .feedback-box .feedback-main .form-box .layui-form .item .layui-form-select:hover .layui-select-title .layui-input {
  border-color: var(--color) !important;
}
.inner-feedback .feedback-box .feedback-main .form-box .layui-form .item .layui-form-select.layui-form-selected .layui-select-title .layui-input {
  border-color: var(--color) !important;
  background: transparent;
}
.inner-feedback .feedback-box .feedback-main .form-box .layui-form .item .layui-form-select.layui-form-selected .layui-select-title .layui-edge {
  margin: 0;
  transform: translateY(-50%) rotate(180deg);
  filter: invert(0);
}
.inner-feedback .feedback-box .feedback-main .form-box .layui-form .item .layui-form-select.layui-form-selectup dl {
  top: auto;
  bottom: 100%;
}
.inner-feedback .feedback-box .feedback-main .form-box .layui-form .item:focus-within {
  z-index: 100 !important;
}
.inner-feedback .feedback-box .feedback-main .form-box .layui-form .tips-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  grid-gap: 10px 1rem;
}
.inner-feedback .feedback-box .feedback-main .form-box .layui-form .tips-box .checkbox-item {
  width: auto;
  height: auto;
}
.inner-feedback .feedback-box .feedback-main .form-box .layui-form .tips-box .checkbox-item .layui-form-checkbox[lay-skin=primary] {
  min-height: calc(var(--value) * 0.4);
}
.inner-feedback .feedback-box .feedback-main .form-box .layui-form .tips-box .checkbox-item .layui-form-checkbox[lay-skin=primary] > div {
  padding-left: 10px;
  font-size: var(--font16);
  color: #666666;
  line-height: calc(var(--value) * 0.4);
  white-space: normal;
}
.inner-feedback .feedback-box .feedback-main .form-box .layui-form .tips-box .checkbox-item .layui-form-checkbox[lay-skin=primary] > div a {
  color: #666666;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.inner-feedback .feedback-box .feedback-main .form-box .layui-form .tips-box .checkbox-item .layui-form-checkbox[lay-skin=primary] > div a:hover {
  color: var(--color);
}
.inner-feedback .feedback-box .feedback-main .form-box .layui-form .tips-box .checkbox-item .layui-form-checkbox[lay-skin=primary] i {
  width: calc(var(--value) * 0.4);
  height: calc(var(--value) * 0.4);
  line-height: calc(var(--value) * 0.4 - 2px);
  border-radius: 2px;
  font-size: 0;
  border-color: #000000;
}
.inner-feedback .feedback-box .feedback-main .form-box .layui-form .tips-box .checkbox-item .layui-form-checkbox[lay-skin=primary] i::before {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  background: url(../images/checked.png) no-repeat center / cover;
}
.inner-feedback .feedback-box .feedback-main .form-box .layui-form .tips-box .checkbox-item .layui-form-checkbox[lay-skin=primary]:hover > i {
  border-color: var(--color);
}
.inner-feedback .feedback-box .feedback-main .form-box .layui-form .tips-box .layui-form-checked[lay-skin=primary] > i {
  border-color: var(--color) !important;
  background: var(--color);
}
.inner-feedback .feedback-box .feedback-main .form-box .layui-form .column-1-1 {
  grid-column: 1 / -1;
}
.inner-feedback .feedback-box .feedback-main .form-box .layui-form .public-more {
  margin-top: 10px;
}
.inner-feedback .feedback-box .feedback-main .form-box .layui-form .public-more .more {
  min-width: 2.4rem;
  height: 60px;
  padding: 0 0.6rem;
  background: var(--color);
  font-weight: 500;
  font-size: var(--font18);
}
.inner-feedback .feedback-box .feedback-main .form-box .layui-form .public-more .more:hover {
  filter: brightness(1.2);
}
.inner-feedback .feedback-box .feedback-main .info-box {
  width: auto;
  max-width: 30%;
  height: auto;
  display: none;
  overflow: hidden;
}
.inner-feedback .feedback-box .feedback-main .info-box .info {
  width: 100%;
  height: auto;
}
.inner-feedback .feedback-box .feedback-main .info-box .info .title {
  width: 100%;
  height: auto;
  font-weight: 500;
  font-size: var(--font20);
  color: var(--color);
}
.inner-feedback .feedback-box .feedback-main .info-box .info .word {
  width: 100%;
  height: auto;
  margin-top: 10px;
  font-weight: bold;
  font-size: var(--font24);
  color: #000000;
}
.inner-feedback .feedback-box .feedback-main .info-box .share-box {
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
}
.inner-feedback .feedback-box .feedback-main .info-box .share-box .headline {
  width: 100%;
  height: auto;
  font-size: var(--font14);
  color: #999999;
}
.inner-feedback .feedback-box .feedback-main .info-box .share-box .share {
  width: 100%;
  height: auto;
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.inner-feedback .feedback-box .feedback-main .info-box .share-box .share .item {
  width: auto;
  height: auto;
}
.inner-feedback .feedback-box .feedback-main .info-box .share-box .share .item a {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.inner-feedback .feedback-box .feedback-main .info-box .share-box .share .item a .icon-box {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #F4F4F4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.inner-feedback .feedback-box .feedback-main .info-box .share-box .share .item a .icon-box img {
  max-width: 40%;
  max-height: 35%;
  filter: brightness(0);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.inner-feedback .feedback-box .feedback-main .info-box .share-box .share .item a .qrcode-box {
  width: 100px;
  height: auto;
  position: absolute;
  left: 50%;
  top: 100%;
  z-index: 10;
  transform: translate(-50%, -0.16rem);
  padding-top: 0.16rem;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
}
.inner-feedback .feedback-box .feedback-main .info-box .share-box .share .item a .qrcode-box::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  margin: 0 auto;
  border-style: solid;
  border-width: 0 3.5px 4px 3.5px;
  border-color: transparent transparent #FFFFFF transparent;
}
.inner-feedback .feedback-box .feedback-main .info-box .share-box .share .item a .qrcode-box .qrcode {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  overflow: hidden;
}
.inner-feedback .feedback-box .feedback-main .info-box .share-box .share .item a .qrcode-box .qrcode .img {
  width: 100%;
  height: auto;
  padding: 2px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.inner-feedback .feedback-box .feedback-main .info-box .share-box .share .item a .qrcode-box .qrcode .word {
  width: 100%;
  height: auto;
  padding: 5px 5px 8px;
  text-align: center;
  font-size: 12px;
  color: #666666;
  line-height: 1;
}
.inner-feedback .feedback-box .feedback-main .info-box .share-box .share .item a:hover .icon-box {
  background: var(--color);
}
.inner-feedback .feedback-box .feedback-main .info-box .share-box .share .item a:hover .icon-box img {
  filter: brightness(0) invert(1);
}
.inner-feedback .feedback-box .feedback-main .info-box .share-box .share .item a:hover .qrcode-box {
  transform: translate(-50%, 0);
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}
.inner-feedback .feedback-box .feedback-main .info-box .share-box .share .item + .item {
  margin-left: 0.2rem;
}
@media (max-width:1440px) {
  .inner-feedback .feedback-box .feedback-main .form-box .layui-form {
    --value: 54px;
  }
}
@media (max-width:1280px) {
  .inner-feedback .feedback-box .feedback-main .form-box .layui-form {
    --value: 48px;
  }
}
@media (max-width:1024px) {
  .inner-feedback .feedback-box .feedback-main {
    display: block;
  }
  .inner-feedback .feedback-box .feedback-main .form-box {
    width: 100%;
  }
  .inner-feedback .feedback-box .feedback-main .info-box {
    width: 100%;
    max-width: 100%;
    margin-top: 50px;
  }
}
@media (max-width:768px) {
  .inner-feedback .feedback-box .feedback-main .info-box .share-box .share .item a .icon-box {
    width: 36px;
    height: 36px;
  }
  .inner-feedback .feedback-box .feedback-main .form-box .layui-form {
    grid-template-columns: 1fr;
  }
  .inner-feedback .feedback-box .feedback-main .form-box .layui-form .item .label {
    display: block;
  }
  .inner-feedback .feedback-box .feedback-main .form-box .layui-form .item .label label {
    margin: 0 0 10px;
  }
  .inner-feedback .feedback-box .feedback-main .form-box .layui-form .item input {
    padding: 0 15px;
    font-size: 13px;
  }
  .inner-feedback .feedback-box .feedback-main .form-box .layui-form .item textarea {
    padding: 1em 15px;
    font-size: 13px;
  }
  .inner-feedback .feedback-box .feedback-main .form-box .layui-form .tips-box .layui-form-checkbox[lay-skin=primary] {
    min-height: 16px;
  }
  .inner-feedback .feedback-box .feedback-main .form-box .layui-form .tips-box .layui-form-checkbox[lay-skin=primary] > div {
    line-height: 16px;
    padding: 0;
  }
  .inner-feedback .feedback-box .feedback-main .form-box .layui-form .tips-box .layui-form-checkbox[lay-skin=primary] i {
    width: 16px;
    height: 16px;
    line-height: 14px;
  }
  .inner-feedback .feedback-box .feedback-main .form-box .layui-form .public-more .more {
    min-width: 160px;
    height: 44px;
    font-size: 14px;
  }
}
.inner-feedback.active {
  padding-top: var(--header-height);
}
.inner-feedback.active .feedback-box {
  max-width: 1130px;
  margin: 0 auto;
  padding: 40px 0 0.6rem;
}
.inner-feedback.active .feedback-box .feedback-main .form-box .layui-form {
  grid-gap: 20px 0.3rem;
}
/* ------------------------------- */
/* ------------------------------- */
/* ------------------------------- */
/* ------------------------------- 其他页面 */
.public-active-box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin-top: var(--header-height);
  overflow: hidden;
  /* &::before { content: ''; width: 100%; height: 100%; max-height: 354px; position: absolute; left: 0; top: 0; z-index: 1; background: linear-gradient(#F5F5F7, transparent); } */
}
.public-active-box.active {
  overflow: visible;
}
.public-active-box .title-details {
  width: 100%;
  height: auto;
  text-align: center;
}
.public-active-box .title-details .title {
  width: 100%;
  height: auto;
  font-weight: bold;
  font-size: var(--font40);
  color: #111111;
}
/* 404 */
.public-404 {
  width: 100%;
  height: auto;
  min-height: calc(100vh - var(--header-height));
  padding: 1.5rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  overflow: hidden;
}
.public-404 .big-number {
  width: 75%;
  height: auto;
  margin: 0 auto;
  text-align: center;
  line-height: 1;
  font-size: 0;
}
.public-404 .info {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
}
.public-404 .info .details {
  width: 100%;
  height: auto;
  margin-top: 0.1rem;
  font-weight: 500;
  text-align: center;
  font-size: var(--font20);
  color: #231815;
  line-height: 1.5;
}
.public-404 .info .details span {
  color: var(--color);
}
.public-404 .info .public-more {
  margin-top: 0.4rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.public-404 .info .public-more .more {
  background: var(--color);
}
.public-404 .info .public-more .more:hover {
  filter: brightness(1.2);
}
@media (max-width:1024px) {
  .public-404 .big-number {
    width: 100%;
    margin: 0 0 -0.2rem;
  }
}
@media (max-width:768px) {
  .public-404 .big-number {
    width: 180%;
    position: relative;
    left: 50%;
    margin-left: -90%;
  }
}
/* 隐私政策 & 免责声明 & Cookies */
.public-privacy {
  width: 100%;
  height: auto;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 0 1.5rem;
}
.public-privacy .privacy-box {
  width: 100%;
  height: auto;
  margin-top: 0.9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.public-privacy .privacy-box .sidebar-box {
  width: 25%;
  min-width: 200px;
  max-width: 240px;
  height: 100%;
  position: -webkit-sticky;
  position: sticky;
  top: calc(var(--header-height) + 0.2rem);
}
.public-privacy .privacy-box .sidebar-box .sidebar-menu {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.public-privacy .privacy-box .sidebar-box .sidebar-menu .one {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 5;
  font-weight: 500;
  font-size: var(--font18);
  color: #111111;
  line-height: 1.5;
}
.public-privacy .privacy-box .sidebar-box .sidebar-menu .one + .one {
  margin-top: 0.2rem;
}
.public-privacy .privacy-box .public-content {
  margin: 0 0 0 0.6rem;
}
@media (max-width:991px) {
  .public-privacy .privacy-box {
    display: block;
  }
  .public-privacy .privacy-box .sidebar-box {
    display: none;
  }
  .public-privacy .privacy-box .public-content {
    margin: 0;
  }
}
.public-privacy .public-content {
  width: 100%;
  height: auto;
  margin-top: 0.9rem;
  font-weight: 500;
  font-size: var(--font18);
  color: #333333;
  line-height: 1.667;
}
.public-privacy .public-content > * {
  margin: 0.4em 0;
}
.public-privacy .public-content > *:first-child {
  margin-top: 0;
}
.public-privacy .public-content > *:last-child {
  margin-bottom: 0;
}
.public-privacy .public-content h2,
.public-privacy .public-content h3,
.public-privacy .public-content h4,
.public-privacy .public-content h5,
.public-privacy .public-content h6 {
  font-weight: bold;
  color: #333333;
}
.public-privacy .public-content h4 {
  font-size: var(--font36);
}
.public-privacy .public-content h5 {
  font-size: var(--font30);
}
.public-privacy .public-content h6 {
  font-size: var(--font24);
}
/* 网站地图 */
.public-map {
  width: 100%;
  height: auto;
  padding: 1.2rem 0;
  overflow: hidden;
}
.public-map .map-menu {
  width: 100%;
  height: auto;
  margin-top: 0.9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.public-map .map-menu .item {
  width: auto;
  height: auto;
}
.public-map .map-menu .item .headline {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  font-size: var(--font18);
}
.public-map .map-menu .item .headline,
.public-map .map-menu .item .headline a {
  font-weight: bold;
  font-size: var(--font22);
  color: #111111;
  line-height: 1.5;
}
.public-map .map-menu .item .headline a {
  position: relative;
  z-index: 1;
}
.public-map .map-menu .item .headline a::after {
  content: '';
  width: 0;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #000000;
  pointer-events: none;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.public-map .map-menu .item .headline .icon {
  width: 8px;
  height: 8px;
  font-size: 0;
  display: none;
}
.public-map .map-menu .item .headline .icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.public-map .map-menu .item .headline a:hover::after {
  width: 100%;
}
.public-map .map-menu .item .menu {
  width: 100%;
  height: auto;
  margin-top: 0.2rem;
}
.public-map .map-menu .item .menu .one {
  width: 100%;
  height: auto;
}
.public-map .map-menu .item .menu .one a {
  font-weight: bold;
  font-size: var(--font14);
  color: #666666;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.public-map .map-menu .item .menu .one a:hover {
  color: var(--purple-color);
}
.public-map .map-menu .item .menu .one + .one {
  margin-top: 10px;
}
.public-map .map-menu .item + .item {
  margin-left: 1rem;
}
@media (max-width:1024px) {
  .public-map .map-menu {
    display: block;
  }
  .public-map .map-menu .item {
    padding: 30px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  .public-map .map-menu .item .menu {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 12px 20px;
  }
  .public-map .map-menu .item .menu .one + .one {
    margin: 0;
  }
  .public-map .map-menu .item:first-child {
    padding-top: 0;
  }
  .public-map .map-menu .item:last-child {
    padding-bottom: 0;
    border: 0;
  }
  .public-map .map-menu .item + .item {
    margin: 0;
  }
}
@media (max-width:768px) {
  .public-map .map-menu .item .menu {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width:480px) {
  .public-map .map-menu .item .menu {
    grid-template-columns: 1fr;
  }
}
/* 搜索结果 */
/* 搜索 */
.search-header {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.search-header .search-box {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 1.2rem 0 1rem;
}
.search-header .search-box .headline {
  width: 100%;
  height: auto;
  text-align: center;
  font-weight: bold;
  font-size: var(--font40);
  color: #111111;
}
.search-header .search-box .form-box {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin: 20px auto 0;
  border-radius: 60px;
  padding: 5px;
  border: 1px solid #F5F5F5;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.search-header .search-box .form-box form {
  width: 100%;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  border-radius: 60px;
  overflow: hidden;
}
.search-header .search-box .form-box form input {
  width: 100%;
  height: 100%;
  padding: 0 1.2em;
  flex: 1;
  font-size: var(--font18);
  color: #000000;
  overflow: hidden;
}
.search-header .search-box .form-box form input::placeholder {
  color: #999999;
}
.search-header .search-box .form-box form button {
  width: auto;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0 20px;
  background: var(--color);
  border-radius: 50px;
  font-weight: 500;
  font-size: var(--font16);
  color: #FFFFFF;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.search-header .search-box .form-box form button:hover {
  filter: brightness(1.2);
}
.search-header .search-box .form-box:focus-within {
  border-color: #DDDDDD;
}
.search-subnav {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.search-subnav .subnav-box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.search-subnav .subnav-box a {
  width: auto;
  height: 50px;
  position: relative;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-weight: 500;
  font-size: var(--font20);
  color: #111111;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.search-subnav .subnav-box a::after {
  content: '';
  width: 0;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  background: var(--blue-color);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.search-subnav .subnav-box a span {
  margin-left: 0.5em;
  font-size: var(--font16);
  color: #999999;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.search-subnav .subnav-box a + a {
  margin-left: 0.6rem;
}
.search-subnav .subnav-box a:hover,
.search-subnav .subnav-box a.active {
  color: var(--color);
}
.search-subnav .subnav-box a:hover span,
.search-subnav .subnav-box a.active span {
  color: var(--color);
}
.search-subnav .subnav-box a.active::after {
  width: 100%;
}
.search-subnav .subnav-box::after {
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  background: #EEEEEE;
}
@media (max-width:768px) {
  .search-subnav .subnav-box {
    grid-gap: 10px;
  }
  .search-subnav .subnav-box a {
    height: 40px;
    padding: 0 1em;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    background: #FFFFFF;
    border-radius: 50px;
  }
  .search-subnav .subnav-box a + a {
    margin: 0;
  }
  .search-subnav .subnav-box::after {
    display: none;
  }
}
.search-result {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.search-result .result-box {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.search-result .result-box .result-item {
  width: 100%;
  height: auto;
  margin: var(--spacing-120) 0;
  /* ------------------------------- */
  /* Products */
  /* ------------------------------- */
  /* Download */
  /* ------------------------------- */
  /* ------------------------------- */
  /* News */
  /* ------------------------------- */
  /* NO */
}
.search-result .result-box .result-item .result-headline {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.search-result .result-box .result-item .result-headline .headline {
  width: 100%;
  height: auto;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.search-result .result-box .result-item .result-headline .headline .title {
  width: auto;
  height: auto;
  position: relative;
  z-index: 1;
  font-weight: bold;
  font-size: var(--font48);
  color: #111111;
  line-height: 1;
}
.search-result .result-box .result-item .result-headline .headline .word {
  margin-left: 0.5em;
  font-size: var(--font30);
  color: #999999;
  line-height: 1;
}
.search-result .result-box .result-item .result-headline .public-more {
  width: auto;
}
@media (max-width:768px) {
  .search-result .result-box .result-item .result-headline {
    display: block;
  }
  .search-result .result-box .result-item .result-headline .headline {
    display: block;
    text-align: center;
  }
  .search-result .result-box .result-item .result-headline .headline .title {
    display: inline;
  }
  .search-result .result-box .result-item .result-headline .headline .word {
    display: inline;
  }
  .search-result .result-box .result-item .result-headline .public-more {
    width: 100%;
    margin: 20px 0 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.search-result .result-box .result-item .product-menu {
  width: 100%;
  height: auto;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.4rem;
}
.search-result .result-box .result-item .product-menu .item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  border-radius: 0.3rem;
  background: #F9F9F9;
  overflow: hidden;
}
.search-result .result-box .result-item .product-menu .item .img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 0.4rem 0.6rem;
  overflow: hidden;
}
.search-result .result-box .result-item .product-menu .item .info-box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 5;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 0 20px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.search-result .result-box .result-item .product-menu .item .info-box .title-box {
  width: 100%;
  height: auto;
  text-align: center;
}
.search-result .result-box .result-item .product-menu .item .info-box .title-box .title {
  width: 100%;
  height: auto;
  font-weight: bold;
  font-size: var(--font40);
  color: #333333;
}
.search-result .result-box .result-item .product-menu .item .info-box .title-box .details {
  width: 100%;
  height: auto;
  margin-top: 10px;
  font-size: var(--font16);
  color: #666666;
}
.search-result .result-box .result-item .product-menu .item .info-box .info {
  width: 100%;
  height: auto;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.search-result .result-box .result-item .product-menu .item .info-box .info .public-more {
  width: auto;
}
.search-result .result-box .result-item .product-menu .item .info-box .info .public-more .more {
  min-width: 140px;
}
.search-result .result-box .result-item .product-menu .item .info-box .info .public-more:last-child .more {
  background: #F5F5F5;
  color: #666666;
}
.search-result .result-box .result-item .product-menu .item .info-box .info .public-more:last-child .more:hover {
  background: var(--color);
  color: #FFFFFF;
}
.search-result .result-box .result-item .product-menu .item .info-box .info .public-more + .public-more {
  margin-left: 0.2rem;
}
.search-result .result-box .result-item .product-menu .item:hover .info-box {
  transform: translateY(-0.3rem);
}
.search-result .result-box .result-item .product-menu .item:hover .info-box .info {
  opacity: 1;
  visibility: visible;
}
@media (max-width:1024px) {
  .search-result .result-box .result-item .product-menu {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
  }
}
@media (max-width:991px) {
  .search-result .result-box .result-item .product-menu .item .info-box {
    padding: 0 20px 30px;
  }
  .search-result .result-box .result-item .product-menu .item .info-box .info {
    opacity: 1;
    visibility: visible;
  }
  .search-result .result-box .result-item .product-menu .item .info-box .info .public-more .more {
    min-width: 100px;
  }
}
@media (max-width:768px) {
  .search-result .result-box .result-item .product-menu .item {
    border-radius: 0.2rem;
  }
  .search-result .result-box .result-item .product-menu .item .info-box .info .public-more .more {
    min-width: 80px;
    height: 36px;
    padding: 0 15px;
    font-size: 12px;
  }
  .search-result .result-box .result-item .product-menu .item .info-box .info .public-more + .public-more {
    margin-left: 5px;
  }
}
@media (max-width:480px) {
  .search-result .result-box .result-item .product-menu {
    grid-template-columns: 1fr;
  }
  .search-result .result-box .result-item .product-menu .item .img {
    max-width: 240px;
    margin: 20px auto;
  }
}
.search-result .result-box .result-item .download-menu {
  width: 100%;
  height: auto;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.2rem;
}
.search-result .result-box .result-item .download-menu .item {
  width: 100%;
  height: auto;
  border-radius: 0.2rem;
  background: #F9F9F9;
  overflow: hidden;
}
.search-result .result-box .result-item .download-menu .item a {
  width: 100%;
  height: 100%;
  display: block;
  padding: 0.4rem 0.2rem 0.35rem;
  overflow: hidden;
}
.search-result .result-box .result-item .download-menu .item a .img {
  width: 80%;
  max-width: 400px;
  height: auto;
  margin: 0 auto;
}
.search-result .result-box .result-item .download-menu .item a .img .pb {
  padding-bottom: 75%;
}
.search-result .result-box .result-item .download-menu .item a .img img {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.search-result .result-box .result-item .download-menu .item a .info {
  width: 100%;
  height: auto;
  margin-top: 30px;
  text-align: center;
}
.search-result .result-box .result-item .download-menu .item a .info .title {
  width: 100%;
  height: auto;
  font-weight: bold;
  font-size: var(--font22);
  color: #000000;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.search-result .result-box .result-item .download-menu .item a .info .details {
  width: 100%;
  height: auto;
  margin-top: 10px;
  font-size: var(--font14);
  color: #999999;
}
.search-result .result-box .result-item .download-menu .item:hover a .img img {
  transform: scale(1.05);
}
.search-result .result-box .result-item .download-menu .item:hover a .info .title {
  color: var(--color);
}
@media (max-width:768px) {
  .search-result .result-box .result-item .download-menu {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }
}
@media (max-width:480px) {
  .search-result .result-box .result-item .download-menu .item a {
    padding: 20px 10px;
  }
}
.search-result .result-box .result-item .faq-menu {
  width: 100%;
  height: auto;
  margin-top: 30px;
}
.search-result .result-box .result-item .faq-menu .item {
  width: 100%;
  height: auto;
  padding: 0.3rem 0;
  border-bottom: 1px solid #E5E5E5;
  overflow: hidden;
}
.search-result .result-box .result-item .faq-menu .item .info-head {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.search-result .result-box .result-item .faq-menu .item .info-head .title {
  width: 100%;
  height: auto;
  flex: 1;
  font-weight: 500;
  font-size: var(--font22);
  color: #000000;
}
.search-result .result-box .result-item .faq-menu .item .info-head .show-btn {
  width: auto;
  height: auto;
  cursor: pointer;
  padding: 15px 0.3rem;
  overflow: hidden;
}
.search-result .result-box .result-item .faq-menu .item .info-head .show-btn .icon {
  width: 10px;
  height: 10px;
  position: relative;
  z-index: 1;
  color: #000000;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.search-result .result-box .result-item .faq-menu .item .info-head .show-btn .icon::before,
.search-result .result-box .result-item .faq-menu .item .info-head .show-btn .icon::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  background: currentColor;
}
.search-result .result-box .result-item .faq-menu .item .info-head .show-btn .icon::before {
  width: 2px;
}
.search-result .result-box .result-item .faq-menu .item .info-head .show-btn .icon::after {
  height: 2px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.search-result .result-box .result-item .faq-menu .item .info-body {
  width: 100%;
  height: auto;
  margin-top: 20px;
  display: none;
  font-weight: 300;
  font-size: var(--font18);
  color: #000000;
  line-height: 1.33;
  overflow: hidden;
}
.search-result .result-box .result-item .faq-menu .item.active .info-head .show-btn .icon {
  transform: rotate(90deg);
}
.search-result .result-box .result-item .faq-menu .item.active .info-head .show-btn .icon::after {
  width: 0;
}
@media (max-width:768px) {
  .search-result .result-box .result-item .faq-menu .menu-box .item {
    padding: 20px 0;
  }
  .search-result .result-box .result-item .faq-menu .menu-box .item .info-head .show-btn {
    padding: 15px 20px;
  }
}
.search-result .result-box .result-item .news-menu {
  width: 100%;
  height: auto;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.8rem 0.45rem;
}
.search-result .result-box .result-item .news-menu .item {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.search-result .result-box .result-item .news-menu .item a {
  width: 100%;
  height: 100%;
}
.search-result .result-box .result-item .news-menu .item a .img {
  width: 100%;
  height: auto;
  border-radius: 0.3rem;
  overflow: hidden;
}
.search-result .result-box .result-item .news-menu .item a .img .pb {
  padding-bottom: 56.25%;
}
.search-result .result-box .result-item .news-menu .item a .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.search-result .result-box .result-item .news-menu .item a .info {
  width: 100%;
  height: auto;
  margin-top: 0.25rem;
}
.search-result .result-box .result-item .news-menu .item a .info .time {
  width: 100%;
  height: auto;
  display: block;
  line-height: 1;
  font-weight: 500;
  font-size: var(--font16);
  color: #666666;
}
.search-result .result-box .result-item .news-menu .item a .info .title {
  width: 100%;
  height: calc(3em * 1.45);
  margin-top: 0.15rem;
  font-weight: 500;
  font-size: var(--font18);
  color: #333333;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.search-result .result-box .result-item .news-menu .item a:hover .img img {
  transform: scale(1.05);
}
@media (max-width:768px) {
  .search-result .result-box .result-item .news-menu {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0.6rem 0.2rem;
  }
  .search-result .result-box .result-item .news-menu .item a .img {
    border-radius: 0.2rem;
  }
}
@media (max-width:480px) {
  .search-result .result-box .result-item .news-menu {
    grid-template-columns: 1fr;
  }
  .search-result .result-box .result-item .news-menu .item a .info .title {
    height: auto;
  }
}
.search-result .result-box .result-item .search-tips {
  width: 100%;
  height: auto;
  text-align: center;
}
.search-result .result-box .result-item .search-tips .iconimg {
  width: 45%;
  max-width: 210px;
  margin: 0 auto;
  font-size: 0;
  text-align: center;
}
.search-result .result-box .result-item .search-tips .details {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  font-weight: 500;
  font-size: var(--font16);
  color: #444444;
}
@media (max-width:480px) {
  .search-result .result-box .result-item .search-tips .details {
    margin-top: 30px;
    font-size: 14px;
  }
}
