html {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

body {
  width: 100vw;
  max-width: 1920px;
  overflow-x: hidden;
  position: relative;
  --body-padding-width: max(10px, calc(100% * 110 / 1920));
  --body-font-size-scale: 1;
  --body-nav-height: 80px;
}

body > nav {
  transform: scale(1);
  width: 100%;
  max-width: 1920px;
  height: var(--body-nav-height);
  background: #fff;
  background-clip: border-box;
  font-size: calc(23px * var(--body-font-size-scale));
  font-family: PingFang SC;
  font-weight: 400;
  color: #100f0f;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: fixed;
  z-index: 99;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
}

body > nav > a {
  position: absolute;
  left: var(--body-padding-width);
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
}

body > nav > a .logo {
  height: calc(100% - 20px);
  max-height: 45px;
}

body > nav > .nav-menu-icon {
  display: none;
  width: 20px;
  height: 20px;
  position: relative;
}

body > nav > .nav-menu-icon > .line {
  width: 100%;
  height: 2px;
  background-color: #e1251b;
  transition: all 0.3s linear;
  transform-origin: 0 center;
}

body > nav > .nav-menu-icon > .line_1 {
  position: absolute;
  top: -1px;
}

body > nav > .nav-menu-icon > .line_2 {
  margin: 9px 0;
}

body > nav > .nav-menu-icon > .line_3 {
  position: absolute;
  bottom: -1px;
}

body > nav > .nav-menu-icon[class~=close] ~ .nav {
  border-top: 1px solid rgba(204, 204, 204, 0.4);
  display: flex;
}

body > nav > .nav-menu-icon[class~=close] > .line_1 {
  width: 141.4%;
  transform: rotate(45deg);
}

body > nav > .nav-menu-icon[class~=close] > .line_2 {
  width: 0;
}

body > nav > .nav-menu-icon[class~=close] > .line_3 {
  width: 141.4%;
  transform: rotate(-45deg);
}

body > nav > .nav {
  flex: 1;
  height: 100%;
  position: relative;
  background: #fff;
  background-clip: border-box;
  padding-right: var(--body-padding-width);
}

body > nav > .nav > ul {
  height: 100%;
  display: flex;
  float: right;
}

body > nav > .nav > ul > li {
  height: 100%;
  padding: 0px 26px;
}

body > nav > .nav > ul > li[class~=nav-item] {
  position: relative;
}

body > nav > .nav > ul > li[class~=nav-item][class~=active] > .link, body > nav > .nav > ul > li[class~=nav-item]:hover > .link {
  font-weight: bold;
}

body > nav > .nav > ul > li[class~=nav-item]:hover > .link-box {
  transform: translate(0, 0);
}

body > nav > .nav > ul > li[class~=nav-item] > .link {
  display: inline-block;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

body > nav > .nav > ul > li[class~=nav-item] > .link-box {
  width: 100%;
  max-width: 1920px;
  height: 300px;
  background: #f7f7f7;
  position: fixed;
  top: var(--body-nav-height);
  left: 0;
  z-index: -1;
  transition: transform 0.5s ease-in-out;
  transform: translate(0, calc(-100% - var(--body-nav-height) - 10px));
}

body > nav > .nav > ul > li[class~=nav-item] > .link-box > .link-box-main {
  display: flex;
  justify-content: space-between;
  padding: 60px var(--body-padding-width);
}

body > nav > .nav > ul > li[class~=nav-item] > .link-box > .link-box-main > .list > h3 {
  font-size: 39px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #100f0f;
  line-height: 37px;
}

body > nav > .nav > ul > li[class~=nav-item] > .link-box > .link-box-main > .list > ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 60px;
}

body > nav > .nav > ul > li[class~=nav-item] > .link-box > .link-box-main > .list > ul > li {
  padding: 10px 0px;
  padding-right: 30px;
  font-size: calc(18px * var(--body-font-size-scale));
  font-family: PingFang SC;
  font-weight: 400;
  color: #100f0f;
  line-height: calc(37px * var(--body-font-size-scale));
}

body > nav > .nav > ul > li[class~=nav-item] > .link-box > .link-box-main > .list > ul > li.active, body > nav > .nav > ul > li[class~=nav-item] > .link-box > .link-box-main > .list > ul > li:hover, body > nav > .nav > ul > li[class~=nav-item] > .link-box > .link-box-main > .list > ul > li > a > .dot {
  color: #d70316;
}

body > nav > .nav > ul > li[class~=nav-item] > .link-box > .link-box-main > img {
  width: 605px;
  height: 181px;
}

body > nav > .nav > ul > li[class~=lang-item] > .lang {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

body > nav > .nav > ul > li[class~=lang-item] > .lang select {
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  border: none;
  width: 100%;
  max-width: 100px;
  height: 100%;
  font-size: calc(22px * var(--body-font-size-scale));
  font-family: PingFang SC;
  font-weight: 400;
  color: #101010;
  padding: 0 10px;
  text-overflow: ellipsis;
  background-color: #fff;
}

body > nav > .nav > ul > li[class~=lang-item] > .lang select:hover {
  cursor: pointer;
}

body > nav > .nav > ul > li[class~=lang-item] > .lang select > option {
  -webkit-appearance: none;
  appearance: none;
  padding: 0 10px;
}

body > nav > .nav > ul > li[class~=lang-item] > .lang > .select-wrapper {
  position: relative;
  padding-right: 10px;
}

body > nav > .nav > ul > li[class~=lang-item] > .lang > .select-wrapper > .icon {
  box-sizing: content-box;
  width: 0;
  height: 0;
  border-width: 8px 6px 0 6px;
  border-style: solid;
  border-color: #707070 rgba(0, 0, 0, 0);
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translate(0, -50%);
}

body > .banner {
  width: 100%;
  height: calc(var(--body-nav-height) + 36.25rem);
  overflow: hidden;
  position: relative;
  padding: 0 var(--body-padding-width);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}

body > .banner > img {
  position: absolute;
  z-index: -1;
  left: 50%;
  top: calc(50% + var(--body-nav-height));
  transform: translate(-50%, calc(-50% - var(--body-nav-height) / 2));
}

body > .banner > .title {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: calc(var(--body-nav-height) + 0.625rem);
}

body > .banner > .title > span {
  font-family: PingFang SC;
  font-weight: bold;
  color: #fff;
  line-height: 1em;
  margin-bottom: 1.5rem;
}

body > .banner > .title > span:nth-of-type(1) {
  font-size: 2.625rem;
}

body > .banner > .title > span:nth-of-type(2) {
  font-size: 2.25rem;
}

body > .banner > .title > .sign {
  display: block;
  width: 1.625rem;
  height: 0.25rem;
  background: #d70316;
}

body > .banner > .nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

body > .banner > .nav > li {
  margin: 1px;
}

body > .banner > .nav > li.active > a, body > .banner > .nav > li:hover > a {
  background-color: #d70316;
}

body > .banner > .nav > li.active > a > .img, body > .banner > .nav > li:hover > a > .img {
  background-color: rgba(0, 0, 0, 0);
}

body > .banner > .nav > li.active > a > .img > img.normal, body > .banner > .nav > li:hover > a > .img > img.normal {
  display: none;
}

body > .banner > .nav > li.active > a > .img > img.hover, body > .banner > .nav > li:hover > a > .img > img.hover {
  display: block;
}

body > .banner > .nav > li.active > a > .title-wrapper > .title, body > .banner > .nav > li:hover > a > .title-wrapper > .title {
  color: #fff;
}

body > .banner > .nav > li > a {
  width: 18.75rem;
  height: 10rem;
  display: flex;
  flex-direction: column;
  padding: 1.875rem;
  background-color: #fff;
}

body > .banner > .nav > li > a > .img {
  flex-shrink: 0;
  width: 2.875rem;
  height: 2.875rem;
  background-color: #f3f3f3;
}

body > .banner > .nav > li > a > .img:has(> img) {
  background-color: rgba(0, 0, 0, 0);
}

body > .banner > .nav > li > a > .img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

body > .banner > .nav > li > a > .img > img.normal {
  display: block;
}

body > .banner > .nav > li > a > .img > img.hover {
  display: none;
}

body > .banner > .nav > li > a > .title-wrapper > .title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 1.375rem;
  font-family: PingFang SC;
  font-weight: bold;
  color: #303030;
  line-height: 1.625rem;
}

body > .banner > .nav > li > a > .title-wrapper > .small {
  font-size: 0.875rem;
  font-family: Arial;
  font-weight: 400;
  line-height: 1.625rem;
}

@media screen and (max-width: 85.3125rem) {
  body > .banner > .nav > li > a {
    width: 15rem;
    height: initial;
    padding: 0.625rem;
  }
}
@media screen and (max-width: 56.25rem) {
  body > .banner > .nav > li > a {
    flex-direction: row;
  }
  body > .banner > .nav > li > a > .title-wrapper {
    margin-left: 0.3125rem;
  }
}
@media screen and (max-width: 30.5rem) {
  body > .banner > .nav > li > a {
    width: calc((100vw - 6.25rem) / 2);
  }
  body > .banner > .nav > li > a > .img {
    display: none;
  }
}
body > .detail {
  margin-top: 5.125rem;
  height: 22.5625rem;
  position: relative;
  overflow: hidden;
}

body > .detail > img {
  position: absolute;
  z-index: -1;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

body > .detail > ul {
  width: 100%;
  max-width: 60rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 0 auto;
}

body > .detail > ul > li {
  width: 16.8125rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

body > .detail > ul > li > .title {
  font-size: 4.3125rem;
  font-family: Arial;
  font-weight: bold;
  color: #d70316;
}

body > .detail > ul > li > .title > span {
  font-size: 1.1875rem;
  font-family: PingFang SC;
}

body > .detail > ul > li > .desc {
  font-size: 1.0625rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #404040;
}

body > .about {
  width: min(100%, 100.1875rem);
  margin: 0 auto;
  padding: 0 var(--body-padding-width);
}

body > .about > .title-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

body > .about > .title-box > .title {
  width: 100%;
  max-width: 25rem;
  height: 18.125rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body > .about > .title-box > .title > span {
  color: #0c0b0c;
  margin-bottom: 1.5rem;
}

body > .about > .title-box > .title > .title-big {
  font-size: 3.625rem;
  font-family: Arial;
  font-weight: bold;
  color: #0c0b0c;
}

body > .about > .title-box > .title > .title-small {
  font-size: 2.0625rem;
  font-family: PingFang SC;
  font-weight: 500;
  color: #0c0b0c;
}

body > .about > .title-box > .title > .sign {
  display: block;
  width: 1.875rem;
  height: 0.625rem;
  background: #e30317;
}

body > .about > .title-box > .info {
  width: 100%;
  max-width: 56.25rem;
  height: 18.125rem;
  display: flex;
  align-items: center;
}

body > .about > .title-box > .info > p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 1.375rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #0c0b0c;
  line-height: 2.25rem;
}

body > .about > .link-box {
  width: 100%;
  height: 14.375rem;
  padding-left: 4.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

body > .about > .link-box > .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
}

body > .about > .link-box > .bg > img {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

body > .about > .link-box > .link-info {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  flex: 1;
  max-width: 41.4375rem;
  font-size: 1.375rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #fff;
  line-height: 2.25rem;
}

body > .about > .link-box > .link {
  margin: 0 1.25rem;
  width: 8.5625rem;
  height: 8.5625rem;
  background-color: rgba(0, 0, 0, 0);
  border: 0.1875rem solid #fff;
  border-radius: 0;
  font-size: 1.1875rem;
  font-family: Arial;
  font-weight: bold;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s linear;
}

body > .about > .link-box > .link:hover {
  background-color: #fff;
  border-radius: 0.75rem;
  color: #303030;
}

body > .honor {
  width: min(100%, 100.1875rem);
  margin: 0 auto;
  padding: 0 var(--body-padding-width);
  margin-bottom: 6.25rem;
}

body > .honor > .title-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

body > .honor > .title-box > .title {
  width: 100%;
  height: 18.125rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body > .honor > .title-box > .title > span {
  color: #0c0b0c;
  margin-bottom: 1.5rem;
}

body > .honor > .title-box > .title > .title-big {
  font-size: 3.625rem;
  font-family: Arial;
  font-weight: bold;
  color: #0c0b0c;
}

body > .honor > .title-box > .title > .title-small {
  font-size: 2.0625rem;
  font-family: PingFang SC;
  font-weight: 500;
  color: #0c0b0c;
}

body > .honor > .title-box > .title > .sign {
  display: block;
  width: 1.875rem;
  height: 0.625rem;
  background: #e30317;
}

body > .honor > .title-box > .info {
  width: 100%;
  max-width: 56.25rem;
  height: 18.125rem;
  display: flex;
  align-items: center;
}

body > .honor > .title-box > .info > p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 1.375rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #0c0b0c;
  line-height: 2.25rem;
}

body > .honor > .img-wrapper {
  width: 100%;
  height: 37.125rem;
  position: relative;
  overflow: hidden;
}

body > .honor > .img-wrapper > .img-list-box {
  width: calc(100% - 59.0625rem);
  height: 100%;
  margin-left: 59.0625rem;
  overflow-y: auto;
  border: 0.0625rem solid #d4d4d4;
}

body > .honor > .img-wrapper > .img-list-box::-webkit-scrollbar {
  width: 0.625rem;
  height: 0.625rem;
  background-color: #ececec;
}

body > .honor > .img-wrapper > .img-list-box::-webkit-scrollbar-track {
  background-color: #ececec;
}

body > .honor > .img-wrapper > .img-list-box::-webkit-scrollbar-thumb {
  background-color: #d70316;
}

body > .honor > .img-wrapper > .img-list-box > .img-list {
  width: 100%;
}

body > .honor > .img-wrapper > .img-list-box > .img-list > li {
  display: inline-block;
  width: 100%;
  height: 18.5625rem;
}

body > .honor > .img-wrapper > .img-list-box > .img-list > li.active > .show-small > .img-box, body > .honor > .img-wrapper > .img-list-box > .img-list > li:hover > .show-small > .img-box {
  transform: scale(1.2);
}

body > .honor > .img-wrapper > .img-list-box > .img-list > li.active > .show-big, body > .honor > .img-wrapper > .img-list-box > .img-list > li:hover > .show-big {
  z-index: 1;
}

body > .honor > .img-wrapper > .img-list-box > .img-list > li.active > .show-big > .img-box > .img, body > .honor > .img-wrapper > .img-list-box > .img-list > li:hover > .show-big > .img-box > .img {
  opacity: 1;
}

body > .honor > .img-wrapper > .img-list-box > .img-list > li.active > .show-big > .name-box > .name, body > .honor > .img-wrapper > .img-list-box > .img-list > li:hover > .show-big > .name-box > .name {
  opacity: 1;
}

body > .honor > .img-wrapper > .img-list-box > .img-list > li .img-box {
  --img-in-margin-top: .875rem;
  position: relative;
}

body > .honor > .img-wrapper > .img-list-box > .img-list > li .img-box > .box {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  width: 100%;
  max-width: 36.9375rem;
  height: 100%;
  max-height: 24.9375rem;
}

body > .honor > .img-wrapper > .img-list-box > .img-list > li .img-box > .img {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  width: 100%;
  max-width: 36.9375rem;
  height: 100%;
  max-height: 24.9375rem;
}

body > .honor > .img-wrapper > .img-list-box > .img-list > li .img-box > .img > img {
  display: block;
  position: relative;
  width: 79.5262267343%;
  height: 76.4411027569%;
  margin: 0 auto;
  margin-top: var(--img-in-margin-top);
}

body > .honor > .img-wrapper > .img-list-box > .img-list > li > .show-small {
  width: 100%;
  height: 100%;
  padding: 2.5rem;
}

body > .honor > .img-wrapper > .img-list-box > .img-list > li > .show-small > .img-box {
  width: 100%;
  height: 100%;
  --img-in-margin-top: .5rem;
}

body > .honor > .img-wrapper > .img-list-box > .img-list > li > .show-big {
  width: 59.0625rem;
  height: 37.125rem;
  background: #f6f6f6;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

body > .honor > .img-wrapper > .img-list-box > .img-list > li > .show-big > .img-box {
  flex: 1;
  width: 100%;
}

body > .honor > .img-wrapper > .img-list-box > .img-list > li > .show-big > .img-box > .img {
  opacity: 0;
}

body > .honor > .img-wrapper > .img-list-box > .img-list > li > .show-big > .name-box {
  width: 59.0625rem;
  height: 5.625rem;
  background: #bd1524;
  text-align: center;
  text-overflow: ellipsis;
  line-height: 5.625rem;
  font-size: 1.75rem;
  font-family: PingFang SC;
  font-weight: 500;
  color: #fff;
}

body > .honor > .img-wrapper > .img-list-box > .img-list > li > .show-big > .name-box > .name {
  opacity: 0;
}

@media screen and (max-width: 87.6875rem) {
  body > .honor {
    width: 100%;
  }
  body > .honor > .img-wrapper {
    height: 55.6875rem;
  }
  body > .honor > .img-wrapper > .img-list-box {
    width: 100%;
    height: 18.5625rem;
    margin-left: 0;
    margin-top: 37.125rem;
    overflow-y: hidden;
    overflow-x: auto;
  }
  body > .honor > .img-wrapper > .img-list-box > .img-list {
    width: initial;
    height: 100%;
    white-space: nowrap;
  }
  body > .honor > .img-wrapper > .img-list-box > .img-list > li {
    width: 26.625rem;
    height: 100%;
  }
  body > .honor > .img-wrapper > .img-list-box > .img-list > li > .show-big {
    left: calc((100% - 59.0625rem) / 2);
  }
}
body footer {
  width: 100%;
  min-height: 180px;
  background: #fff;
  padding: 20px var(--body-padding-width);
  display: flex;
  align-items: center;
  font-size: calc(20px * var(--body-font-size-scale));
  font-family: PingFang SC;
  font-weight: 400;
  color: #404040;
  border-top: 1px solid #ececec;
}

body footer .link:hover {
  color: #2878ff;
}

body footer .tel {
  font-size: calc(32px * var(--body-font-size-scale));
  font-family: Arial;
  font-weight: 400;
  color: #404040;
}

body footer > ul {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-left: 40px;
}

body footer > ul > li {
  height: 100%;
  padding: 20px 10px;
}

body footer > ul > li > .other-link {
  display: flex;
  flex-wrap: wrap;
}

body footer > ul > li > .other-link > li {
  margin-right: 20px;
}

@media screen and (max-width: 1365px) {
  html {
    font-size: 80%;
  }
  body {
    --body-nav-height: 60px;
    --body-font-size-scale: .8;
  }
  body > nav {
    width: 100%;
    padding: 0 var(--body-padding-width);
  }
  body > nav > .nav-menu-icon {
    display: block;
  }
  body > nav > .nav {
    display: none;
    width: 100%;
    height: calc(100vh - var(--body-nav-height));
    position: fixed;
    top: var(--body-nav-height);
    left: 0;
    flex-direction: column;
    justify-content: flex-start;
    padding-bottom: 20px;
  }
  body > nav > .nav > ul {
    width: 100%;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
    padding: 0;
  }
  body > nav > .nav > ul > li {
    width: calc(100% - 60px);
    height: initial;
    padding: 0;
  }
  body > nav > .nav > ul > li[class~=nav-item] {
    padding: 18px var(--body-padding-width);
    padding-bottom: 0px;
  }
  body > nav > .nav > ul > li[class~=nav-item] > .link {
    height: initial;
    justify-content: flex-start;
    color: #d0121b;
  }
  body > nav > .nav > ul > li[class~=nav-item] > .link-box {
    display: flex;
    height: initial;
    position: relative;
    top: 0;
    left: 0;
    z-index: initial;
    transform: translate(0, 0);
    background-color: #fff;
    padding: 8px 10px;
    padding-bottom: 0px;
  }
  body > nav > .nav > ul > li[class~=nav-item] > .link-box > .link-box-main {
    padding: 0px;
    padding-bottom: 0;
  }
  body > nav > .nav > ul > li[class~=nav-item] > .link-box > .link-box-main > * {
    display: none;
  }
  body > nav > .nav > ul > li[class~=nav-item] > .link-box > .link-box-main > .list {
    display: block;
  }
  body > nav > .nav > ul > li[class~=nav-item] > .link-box > .link-box-main > .list > h3 {
    display: none;
  }
  body > nav > .nav > ul > li[class~=nav-item] > .link-box > .link-box-main > .list > ul {
    margin-top: 0;
  }
  body > nav > .nav > ul > li[class~=nav-item] > .link-box > .link-box-main > .list > ul > li {
    color: #888;
  }
  body > nav > .nav > ul > li[class~=lang-item] {
    padding: 20px 0px;
  }
  body > nav > .nav > ul > li:last-of-type {
    border-bottom: none;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 60%;
  }
  body {
    --body-nav-height: 40px;
    --body-font-size-scale: .6;
  }
  body footer {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  body footer > ul {
    padding: 0;
  }
}