@charset "utf-8";
/* 公共响应变量 */
.color-red-c40 {
  color: #c40000;
}
.color-red-a70 {
  color: #a70000;
}
.bg-red-c40 {
  background-color: #c40000;
}
.bg-red-a70 {
  background-color: #a70000;
}
:root {
  /* 导航高度 */
  --header-height: 0.8rem;
  /* COLOR */
  --color-active: #c40000;
  --color-red-c40: #c40000;
  --color-red-a70: #a70000;
  --color-white: #fff;
  --color-black: #282828;
  --color-gray-f6: #f6f6f6;
  --color-gray-f4: #f4f4f4;
  --color-gray-eee: #eee;
  --color-gray-ddd: #ddd;
  --color-gray-bbb: #bbb;
  --color-gray-999: #999;
  --color-gray-666: #666;
  --color-gray-444: #444;
  --color-gray-333: #333;
  /* --- font40以下 */
  --font12: clamp(12px, 0.12rem, 12px);
  --font14: clamp(12px, 0.14rem, 14px);
  --font15: clamp(12px, 0.15rem, 15px);
  --font16: clamp(13px, 0.16rem, 16px);
  --font17: clamp(13px, 0.17rem, 17px);
  --font18: clamp(14px, 0.18rem, 18px);
  --font20: clamp(15px, 0.2rem, 20px);
  --font22: clamp(16px, 0.22rem, 22px);
  --font24: clamp(17px, 0.24rem, 24px);
  --font26: clamp(18px, 0.26rem, 26px);
  --font28: clamp(18px, 0.28rem, 28px);
  --font30: clamp(20px, 0.3rem, 30px);
  --font32: clamp(20px, 0.32rem, 32px);
  --font34: clamp(22px, 0.34rem, 34px);
  --font36: clamp(22px, 0.36rem, 36px);
  --font38: clamp(24px, 0.38rem, 38px);
  /* --- font40 */
  --font40: clamp(23px, 0.4rem, 40px);
  --font42: clamp(24px, 0.42rem, 42px);
  --font44: clamp(24px, 0.44rem, 44px);
  --font46: clamp(25px, 0.46rem, 46px);
  --font48: clamp(26px, 0.48rem, 48px);
  /* --- font50 */
  --font50: clamp(28px, 0.5rem, 50px);
  --font52: clamp(28px, 0.52rem, 52px);
  --font54: clamp(28px, 0.54rem, 54px);
  --font56: clamp(28px, 0.56rem, 56px);
  --font58: clamp(29px, 0.58rem, 58px);
  /* --- font60 */
  --font60: clamp(30px, 0.6rem, 60px);
  --font62: clamp(31px, 0.62rem, 62px);
  --font64: clamp(31px, 0.66rem, 64px);
  --font66: clamp(31px, 0.66rem, 66px);
  /* --- font70以及以上 */
  --font70: clamp(32px, 0.7rem, 70px);
  --font72: clamp(32px, 0.72rem, 72px);
  --font80: clamp(32px, 0.8rem, 80px);
  --font100: 1rem;
  --font120: 1.2rem;
  --font160: 1.6rem;
  --font230: 2.3rem;
}
@media (max-width: 1580px) {
  :root {
    --header-height: 50px;
  }
}
/* 公共字体 */
.font12 {
  font-size: var(--font12);
}
.font14 {
  font-size: var(--font14);
}
.font15 {
  font-size: var(--font15);
}
.font16 {
  font-size: var(--font16);
}
.font18 {
  font-size: var(--font18);
}
.font20 {
  font-size: var(--font20);
}
.font22 {
  font-size: var(--font22);
}
.font24 {
  font-size: var(--font24);
}
.font26 {
  font-size: var(--font26);
}
.font28 {
  font-size: var(--font28);
}
.font30 {
  font-size: var(--font30);
}
.font32 {
  font-size: var(--font32);
}
.font34 {
  font-size: var(--font34);
}
.font36 {
  font-size: var(--font36);
}
.font38 {
  font-size: var(--font38);
}
.font40 {
  font-size: var(--font40);
}
.font42 {
  font-size: var(--font42);
}
.font44 {
  font-size: var(--font44);
}
.font46 {
  font-size: var(--font46);
}
.font48 {
  font-size: var(--font48);
}
.font50 {
  font-size: var(--font50);
}
.font52 {
  font-size: var(--font52);
}
.font54 {
  font-size: var(--font54);
}
.font56 {
  font-size: var(--font56);
}
.font58 {
  font-size: var(--font58);
}
.font60 {
  font-size: var(--font60);
}
.font62 {
  font-size: var(--font62);
}
.font64 {
  font-size: var(--font64);
}
.font66 {
  font-size: var(--font66);
}
.font70 {
  font-size: var(--font70);
}
.font72 {
  font-size: var(--font72);
}
.font80 {
  font-size: var(--font80);
}
.font100 {
  font-size: var(--font100);
}
.font120 {
  font-size: var(--font120);
}
.font160 {
  font-size: var(--font160);
}
.font230 {
  font-size: var(--font230);
}
/* 初始化 */
* {
  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;
}
html,
body {
  min-height: 100%;
}
html {
  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;
}
@media (min-width: 1901px) {
  html {
    font-size: 100px;
  }
}
@media (max-width: 1580px) {
  html {
    font-size: calc(100vw / 21);
  }
}
@media (max-width: 1280px) {
  html {
    font-size: calc(100vw / 19.3);
  }
}
@media (max-width: 767px) {
  html {
    font-size: calc(100vw/15);
  }
}
@media (max-width: 480px) {
  html {
    font-size: calc(100vw/7.5);
  }
}
body {
  font-family: 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  font-size: 16px;
  color: #000;
  background: #fff;
  overflow-x: hidden;
}
@media (max-width: 1580px) {
  body {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 0.28rem;
  }
}
img {
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
  border: 0;
  vertical-align: middle;
}
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* 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_auto {
  -webkit-box-flex: 1;
  -ms-flex: auto;
  -webkit-flex: auto;
  flex: auto;
}
.flex_1 {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
.order_2 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}
.order_3 {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 3;
  -webkit-order: 3;
  order: 3;
}
/* 文字超出隐藏 */
.text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 动画 */
.dh {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
/* 动画延迟 */
.white-space {
  white-space: pre-line;
}
@media (max-width: 1024px) {
  .white-space {
    white-space: inherit;
  }
}
.font-weight-b {
  font-weight: bold;
}
.text-cap {
  text-transform: uppercase;
}
/* 布局 */
.pc,
.c-pc {
  display: block;
}
@media (max-width: 767px) {
  .pc,
  .c-pc {
    display: none;
  }
}
.wap,
.mobile,
.c-mb {
  display: none;
}
@media (max-width: 767px) {
  .wap,
  .mobile,
  .c-mb {
    display: block;
  }
}
/* images等比-NEW */
.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;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}
.public-img-plus:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.item-animation:hover .public-img-plus img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
/* 公共样式 - 结束 */
.header {
  /* ----------------------------------------------------------    手机端导航 */
}
@media (max-width: 1024px) {
  .header .header-pc {
    display: none;
  }
}
.header .m_header_box {
  width: 100%;
  height: auto;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
}
.header .m_header_box .header_title {
  width: 100%;
  height: 50px;
  padding: 0 20px;
  position: relative;
  background-color: var(--color-white);
  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;
}
.header .m_header_box .header_title .logo {
  height: 100%;
  overflow: hidden;
}
.header .m_header_box .header_title .logo a {
  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 .m_header_box .header_title .logo img,
.header .m_header_box .header_title .logo svg {
  width: auto;
  height: 24px;
}
.header .m_header_box .header_title .column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.header .m_header_box .header_title .menu_btn {
  width: 30px;
  height: 30px;
  position: relative;
  overflow: hidden;
}
.header .m_header_box .header_title .menu_btn::after,
.header .m_header_box .header_title .menu_btn::before,
.header .m_header_box .header_title .menu_btn i {
  width: 70%;
  height: 2px;
  display: block;
  background: var(--color-black);
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -1px 0 0 -35%;
  transform-origin: center;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.header .m_header_box .header_title .menu_btn::before {
  content: '';
  margin-top: -8px;
}
.header .m_header_box .header_title .menu_btn::after {
  content: '';
  margin-top: 6px;
}
.header .m_header_box .header_title .menu_btn.active i {
  opacity: 0;
}
.header .m_header_box .header_title .menu_btn.active::before {
  margin-top: -1px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-radius: 5px;
  background: var(--color-active);
}
.header .m_header_box .header_title .menu_btn.active::after {
  margin-top: -1px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-radius: 5px;
  background: var(--color-active);
}
.header .m_header_box .header_title .head_btn {
  width: auto;
  height: 30px;
  margin-right: 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-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  cursor: pointer;
  overflow: hidden;
}
.header .m_header_box .header_title .head_btn .icon {
  max-width: 14px;
  height: 14px;
  font-size: 0;
  margin-right: 5px;
  filter: invert(1);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.header .m_header_box .header_title .head_btn .link {
  line-height: 1;
  font-size: 12px;
  color: var(--color-black);
  margin-top: 3px;
}
.header .m_header_box .header_title .head_btn .link span {
  opacity: 0.6;
}
.header .m_header_box .header_title .head_btn .link a {
  color: var(--color-black);
  opacity: 0.6;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.header .m_header_box .header_title .head_btn .link a:hover {
  opacity: 1;
}
.header .m_header_box .header_title .head_btn:hover .icon {
  filter: invert(1);
}
.header .m_header_box .header_title .head_btn:hover .link {
  color: var(--color-black);
}
.header .m_header_box .header_title .head_btn:hover .link a,
.header .m_header_box .header_title .head_btn:hover .link span {
  color: var(--color-black);
}
.header .m_header_box .header_body {
  width: 100%;
  height: calc(100vh - 50px) !important;
  height: auto !important;
  background: var(--color-gray-f6);
  display: none;
  overflow: hidden;
}
.header .m_header_box .header_body .menu_info {
  width: 100%;
  height: 100%;
  padding: 0 0 20px;
  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;
}
.header .m_header_box .header_body .menu_nav {
  width: 100%;
  height: auto;
  padding: 20px;
  overflow: hidden;
  overflow-y: auto;
}
.header .m_header_box .header_body .menu_nav ul {
  padding: 0;
  margin: 0;
}
.header .m_header_box .header_body .menu_nav ul li {
  width: 100%;
  height: auto;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  overflow: hidden;
}
.header .m_header_box .header_body .menu_nav ul li .one {
  width: 100%;
  height: auto;
  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;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
}
.header .m_header_box .header_body .menu_nav ul li .one a {
  padding: 15px 0;
  display: block;
  font-size: 14px;
  color: var(--color-gray-444);
  line-height: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  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;
  flex: 1;
  position: relative;
}
.header .m_header_box .header_body .menu_nav ul li .one a .subtitle {
  font-size: 14px;
  margin-right: 10px;
}
.header .m_header_box .header_body .menu_nav ul li .one a .title {
  font-size: 14px;
}
.header .m_header_box .header_body .menu_nav ul li .one .icon {
  width: 50px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  font-size: 0;
  color: var(--color-gray-444);
  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-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.header .m_header_box .header_body .menu_nav ul li .one .icon img,
.header .m_header_box .header_body .menu_nav ul li .one .icon svg {
  position: relative;
  width: 10px;
  height: auto;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.header .m_header_box .header_body .menu_nav ul li .one.active a {
  color: var(--color-active);
}
.header .m_header_box .header_body .menu_nav ul li .one.active .icon svg {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.header .m_header_box .header_body .menu_nav ul li .one.active .icon svg path {
  fill: var(--color-active);
}
.header .m_header_box .header_body .menu_nav ul li ul {
  border-top: 1px solid var(--color-active);
  padding: 10px 0;
  display: none;
}
.header .m_header_box .header_body .menu_nav ul li ul li {
  border: 0;
}
.header .m_header_box .header_body .menu_nav ul li ul li a {
  display: block;
  font-size: 13px;
  padding: 6px 0 6px 20px;
  color: var(--color-gray-444);
  position: relative;
}
.header .m_header_box .header_body .menu_nav ul li ul li a .icon {
  width: 16px;
  height: 16px;
  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: absolute;
  left: 0;
  top: 50%;
  margin-top: -8px;
  color: var(--color-gray-444);
}
.header .m_header_box .header_body .menu_nav ul li ul li a .icon img,
.header .m_header_box .header_body .menu_nav ul li ul li a .icon svg {
  width: 8px;
  height: auto;
  position: static;
  margin: 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.header .m_header_box .header_body .menu_nav ul li ul li .two.active {
  color: var(--color-active);
}
.header .m_header_box .header_body .menu_nav ul li ul li .two.active a {
  color: var(--color-active);
}
.header .m_header_box .header_body .menu_nav ul li ul li .two.active svg {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.header .m_header_box .header_body .menu_nav ul li ul li .two.active svg path {
  fill: var(--color-active);
}
.header .m_header_box .header_body .menu_nav ul li ul li ul {
  border: 0;
  display: none;
}
.header .m_header_box .header_body .menu_nav ul li ul li ul li a {
  padding: 10px 0 10px 35px;
  font-size: 12px;
  color: var(--color-gray-999);
}
.header .m_header_box .header_body .menu_nav ul li ul li ul li a:before {
  content: '';
  width: 5px;
  height: 1px;
  color: var(--color-gray-999);
  position: absolute;
  top: 50%;
  left: 20px;
  margin-top: -1.5px;
  z-index: 1;
}
.header .m_header_box .header_body .menu_nav ul li ul li ul li a.active:before {
  background: var(--color-active);
}
.header .m_header_box .header_body .menu_nav ul li ul li ul.active {
  display: block;
}
.header .m_header_box .header_body .menu_form {
  width: 100%;
  height: auto;
  padding: 0 20px;
  overflow: hidden;
}
.header .m_header_box .header_body .menu_form .center {
  width: 100%;
  height: 50px;
  background-color: var(--color-white);
  overflow: hidden;
}
.header .m_header_box .header_body .menu_form .center form {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  overflow: hidden;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.header .m_header_box .header_body .menu_form .center form input {
  flex: 1;
  height: 100%;
  padding: 0 15px;
  font-size: 14px;
  color: var(--color-gray-444);
  border: 0;
}
.header .m_header_box .header_body .menu_form .center form button {
  width: 70px;
  border: 0;
  height: 100%;
  padding: 0;
  background: var(--color-active);
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.header .m_header_box .header_body .menu_form .center form button img,
.header .m_header_box .header_body .menu_form .center form button svg {
  width: 18px;
  height: auto;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.header .m_header_box .header_body .menu_lang {
  width: 100%;
  height: auto;
  margin-top: 20px;
  padding: 0 20px;
  font-size: 0;
  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;
}
.header .m_header_box .header_body .menu_lang .one {
  width: auto;
  height: 36px;
  margin-right: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}
.header .m_header_box .header_body .menu_lang .one a {
  width: 100%;
  height: 100%;
  padding: 0 1em;
  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-color: var(--color-white);
  border-radius: 50px;
  font-size: 12px;
  color: var(--color-gray-444);
}
.header .m_header_box .header_body .menu_lang .one a.active {
  background: var(--color-active);
  color: var(--color-white);
}
@media (max-width: 1024px) {
  .header .m_header_box {
    display: block !important;
  }
}
@media (max-width: 1024px) {
  .wrapper {
    margin-top: var(--header-height);
  }
}
.kefu-box .item {
  width: auto;
  padding: 0.1rem;
}
.kefu-box .item#backToTopBtn {
  height: 50px;
}
#footer .footer-up .list .item .item-box .text-box {
  position: relative !important;
  padding: 0 !important;
  width: auto;
  background: transparent;
}
#footer .footer-up .list .item .item-box .text-box.text-box2 {
  padding-left: 0.23rem !important;
}
#footer .footer-up .list .item .item-box .text-box .text-body {
  font-size: var(--font14);
}
@media (max-width: 1024px) {
  #footer .footer-up .list {
    -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;
    grid-gap: 0.4rem;
  }
  #footer .footer-up .list .item .item-box {
    overflow: visible;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  #footer .footer-up .list .item .item-box .text-box1 {
    min-width: 64px;
    max-width: 64px;
  }
  #footer .footer-up .list .item .item-box .text-box2 {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    -webkit-flex: 1;
    flex: 1;
  }
}
@media (max-width: 1024px) {
  .index-swiper .swiper-slide .container .text-box .title {
    letter-spacing: 0;
    font-size: var(--font44);
    line-height: 1;
  }
}
@media (max-width: 1024px) {
  .index-swiper .swiper-slide .container .text-box .text-body {
    line-height: inherit;
    margin-top: 0.2rem !important;
  }
}
@media (max-width: 1024px) {
  .express-entrance-page {
    padding: 0.28rem 0;
  }
}
@media (max-width: 1024px) {
  .express-entrance-page .list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0.4rem;
  }
  .express-entrance-page .list .item:nth-child(2) .item-box,
  .express-entrance-page .list .item:nth-child(4) .item-box {
    border: none;
  }
  .express-entrance-page .list .item .item-box {
    padding: 0;
    display: block;
    text-align: center;
  }
  .express-entrance-page .list .item .item-box .icon {
    margin-bottom: 0.14rem;
  }
  .express-entrance-page .list .item .item-box .text-box::before {
    display: none;
  }
}
@media (max-width: 1024px) {
  .index-about {
    padding: 0.8rem 0;
  }
}
@media (max-width: 1024px) {
  .index-about .wrap-box {
    display: block;
  }
  .index-about .wrap-box .wrap-left {
    width: 100%;
    max-width: 100%;
  }
  .index-about .wrap-box .wrap-right {
    width: 100%;
    margin-top: 0.48rem;
  }
}
@media (max-width: 1024px) {
  .index-about .img-box .list .item:first-child {
    left: -0.2rem;
  }
  .index-about .img-box .list .item:last-child {
    right: 0.2rem;
    bottom: 0.2rem;
  }
  .index-about .img-box .list .item .item-box {
    overflow: visible;
  }
  .index-about .img-box .list .item .item-box .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .index-about .img-box .list .item .item-box .text-box .text-body {
    line-height: initial;
  }
}
.tab-main .tab-title .title {
  min-height: 36px;
}
.swiper-pagination {
  width: 100%;
}
@media (max-width: 1024px) {
  .index-business .swiper-main .index-business-swiper > .swiper-wrapper > .swiper-slide {
    padding-bottom: 40px;
  }
  .index-business .swiper-main .index-business-swiper > .swiper-wrapper > .swiper-slide .swiper-pagination {
    opacity: 1;
  }
}
@media (max-width: 1024px) {
  .index-operate .wrap-box {
    display: block;
  }
  .index-operate .wrap-box .wrap-left {
    width: 100%;
    max-width: 100%;
  }
  .index-operate .wrap-box .wrap-right {
    width: 100%;
    margin-top: 0.48rem;
  }
  .index-operate .list {
    margin-bottom: 0.3rem;
  }
  .index-operate .list:first-child,
  .index-operate .list:last-child {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 1024px) and (max-width: 767px) {
  .index-operate .wrap-box .wrap-right {
    display: block;
  }
}
@media (max-width: 1024px) {
  .index-honor .wrap-box {
    display: block;
  }
  .index-honor .wrap-box .wrap-left {
    width: 100%;
    max-width: 100%;
  }
  .index-honor .wrap-box .wrap-right {
    width: 100%;
    max-width: 100%;
    margin-top: 0.48rem;
  }
}
@media (max-width: 1024px) and (max-width: 767px) {
  .index-honor .list {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 1024px) {
  .index-case .up .wrap-box {
    display: block;
  }
  .index-case .up .wrap-box .wrap-left {
    width: 100%;
    max-width: 100%;
  }
  .index-case .up .wrap-box .wrap-right {
    width: 100%;
    max-width: 100%;
    margin-top: 0.48rem;
  }
}
@media (max-width: 990px) {
  .index-news .swiper-box .swiper-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 767px) {
  .news-page1 .item-box {
    display: block;
  }
  .news-page1 .item-box .public-img {
    width: 100%;
  }
  .news-page1 .item-box .text-box {
    margin-top: 0.28rem;
  }
}
@media (max-width: 990px) {
  .news-page2 .list {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0.4rem;
  }
  .news-page2 .list .item-box {
    border-top: 1px solid hsla(0, 0%, 60%, 0.15) !important;
  }
}
.case-page1 .case-swiper .swiper-slide {
  height: auto;
}
@media (max-width: 1024px) {
  .case-page1 .case-swiper {
    padding-bottom: 40px;
  }
  .case-page1 .case-swiper .swiper-pagination {
    opacity: 1;
  }
}
@media (max-width: 1024px) {
  .case-page2 .list {
    grid-gap: 0.4rem;
  }
}
@media (max-width: 767px) {
  .case-page2 .list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .case-page2 .list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.news-d-page .news-detail-content * {
  margin: 0 !important;
}
.news-d-page .news-detail-content p {
  text-align: left !important;
  margin-bottom: 0.24rem;
}
@media (max-width: 1024px) {
  .index-recruitment .page-title .title {
    font-size: var(--font32);
  }
  .index-recruitment .wrap-box {
    display: block;
  }
  .index-recruitment .wrap-box .wrap-left {
    width: 100%;
    max-width: 100%;
  }
  .index-recruitment .wrap-box .wrap-right {
    width: 100%;
    max-width: 100%;
    margin-top: 0.8rem;
  }
}
@media (max-width: 1024px) and (max-width: 767px) {
  .index-recruitment .list {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 1024px) {
  .case-page3 .list {
    grid-gap: 0.4rem;
  }
}
@media (max-width: 767px) {
  .case-page3 .list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .case-page3 .list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.news-d-page .book-info-container p {
  text-align: left !important;
}
@media (max-width: 1024px) {
  .news-d-page .book-info-container {
    width: 94% !important;
  }
}
@media (max-width: 1024px) {
  .news-d-page .book-info-top {
    display: block !important;
  }
  .news-d-page .book-info-top .book-details {
    width: 100% !important;
    padding: 0 !important;
    margin-top: 0.48rem;
  }
  .news-d-page .book-editor-content {
    padding: 20px !important;
  }
  .news-d-page .book-editor-content .btn-container {
    float: none !important;
    margin: 0 !important;
    margin-bottom: 0.38rem !important;
  }
}
@media (max-width: 1024px) and (max-width: 767px) {
  .news-d-page .book-info-top .book-cover {
    width: 70% !important;
  }
}
@media (max-width: 1024px) {
  .brand-design-page1 .list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0.4rem;
  }
}
@media (max-width: 1024px) {
  .brand-design-page2 .list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0.4rem;
  }
}
.index-brand .item-box .img img {
  max-height: 66px;
}
