@font-face {
  font-family: 'Gilroy-Bold';
  /* 自定义字体名称 */
  src: url('../../font/honghuo/gilroy-Bold.ttf') format('truetype');
  /* 字体文件路径和格式 */
}

* {
  padding: 0;
  margin: 0;
  border: 0;
  -ms-overflow-style: none;
  position: relative;
  box-sizing: border-box;
}

:root {
  --primary-dark: #b8000e;
  --primary-rgb: 230, 0, 18;
  --primary: #e60012;
  --primary-1: #ff0317;
  --primary-3: #ff3b4a;
  --primary-5: #ff737e;
  --primary-7: #ffabb2;
  --primary-9: #ffe3e5;

  --text-color-primary: #1f1f1f;
  --text-color-secondary: rgb(0, 0, 0, .6);

  --font-size-maximum: max(26px, 2.6vw);
  --font-size-extra-large: max(21px, 2.08vw);
  --font-size-large: max(20px, 1.5vw);
  --font-size-medium: max(17px, 1.2vw);
  --font-size-base: max(15px, 1vw);
  --font-size-small: max(13px, .9vw);
  --font-size-extra-small: max(12px, .85vw);
  --font-size-minimum: max(12px, .63vw);

  --box-shadow-1: 0px 4px 17px -1px rgba(0, 0, 0, .1), 0px 2px 4px -2px rgba(0, 0, 0, .1);
  --box-shadow-2: 0px 0px 16px 0px rgba(17, 17, 26, .1);
  /* --radius-extra-large: 28px; */
  /* --radius-large: 24px; */
  /* --radius-medium: 20px; */
  /* --radius-base: 16px; */
  --radius-small: 10px;
  /* --radius-extra-small: 5px; */
}

html {
  overscroll-behavior-x: none;
  max-width: 100vw;
  width: 100vw;
  overflow-x: hidden;
}

body {
  font-size: var(--font-size-small);
  color: var(--text-color-primary);
}

a,
li,
ul {
  list-style: none;
}

li,
ul {
  padding: 0;
  margin: 0;
}

a {
  color: inherit;
  list-style: none;
  text-decoration: none;
}

input {
  border: none;
  outline: none;
}

/* #region 行布局 */
.row-wrap {
  width: 100%;
  height: 100vh;
  background-color: rgb(247, 247, 247);
  display: flex;
  border-radius: 3.5vw 0 3.5vw 3.5vw;
  z-index: 30;
}

.row-wrap.whole {
  height: auto;
  min-height: 100vh;
}

.row-sidebar {
  font-size: var(--font-size-extra-large);
  color: var(--text-color-primary);
  width: 32%;
  height: auto;
  padding: 7vw 5vw 7vw 10vw;
  background: #efefef;
  overflow: visible;
  border-radius: 3.5vw 0 0 3.5vw;
}

.row-sidebar:has(.row-sidebar-sticky) {
  padding: 0;
}

.row-sidebar-sticky {
  border-radius: 3.5vw 0 0 3.5vw;
  padding: 7vw 5vw 7vw 10vw;
  height: 100vh;
  overflow: hidden;
  position: sticky;
  top: 0
}

.row-sidebar__bg {
  border-radius: 3.5vw 0 0 3.5vw;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
  background-color: #efefef;
}

.row-main {
  width: 65%;
  height: auto;
  padding: 5vw 10vw 5vw 5vw;
  flex: 1;
  overflow: auto;
  scrollbar-width: none;
  display: flex;
  flex-direction: column;
}

.row-main.deep {
  background: #efefef;
}

.row-main.no-lpadd {
  padding-left: 0;
}

.row-sidebar-en {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.row-sidebar__en {
  white-space: nowrap;
  font-family: 'Gilroy-Bold';
  display: inline-block;
  font-weight: bold;
  z-index: 2;
  width: 100%;
  color: var(--primary);
}

.row-sidebar__en.draw-r {
  width: auto;
}

.row-sidebar__en.draw-r+.row-sidebar__en.draw-r::after {
  display: none;
}

.row-sidebar__en.draw-r::after {
  top: 0;
  right: 0;
  transform: translate(110%, -50%) scale(-1, -1);
  opacity: .2;
}

.row-sidebar__title {
  font-weight: bold;
  width: 100%;
  height: auto;
  z-index: 2;
  margin-top: .5vw;
}

.row-sidebar__text {
  width: 100%;
  z-index: 2;
  height: auto;
  font-size: var(--font-size-small);
  color: var(--text-color-primary);
  line-height: 2.5;
  margin-top: 1.5vw;
}

@media screen and (max-width: 1000px) {
  .row-wrap {
    flex-direction: column;
    gap: 0;
    min-height: 0 !important;
  }


  .row-sidebar {
    text-align: center;
    width: 100%;
    padding: 7.5vw 5vw;

  }

  .row-sidebar-sticky {
    height: auto;
    padding-bottom: 0;
  }

  .row-sidebar.row-reverse {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
  }

  .row-sidebar__bg {
    display: none;
  }

  .row-sidebar__title {
    width: auto;
    margin: 0 .5em 0 0;
  }

  .row-sidebar.row-reverse .row-sidebar__en {
    display: block;
    font-size: .5em;
    line-height: 1.2;
  }

  .row-sidebar__en.draw-l::before,
  .row-sidebar__en.draw-r::after {
    display: none;
  }

  .row-main {
    padding: 7.5vw 5vw 7.5vw !important;
    width: 100%;
  }
}

/* #endregion */

/* #region 公共样式 */

/* #region 字体、结构控制 */
.en {
  font-family: 'Gilroy-Bold';
}

.nobefore::before {
  content: none !important;
}

.noafter::after {
  content: none !important;
}

/* #endregion */

/* #region 板块 */

.wrapper {
  overflow: visible;
}

.section {
  width: 100%;
  z-index: 3;
  color: var(--text-color-primary);
  font-size: var(--font-size-small);
  background-color: #fff;
  padding: 7vw 10vw 7vw;
  border-radius: 3.5vw 0 3.5vw 3.5vw;
  background-repeat: no-repeat;
}

.section.deep {
  background-color: #f7f7f7;
}

.section.bg-red {
  background-color: var(--primary);
}

.section.box-banner {
  margin: -3.5vw 0 -3.5vw;
  border-radius: 0;
  z-index: 1;
}

.section.red-gradient::before,
.section.bg-icon::after {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.section.red-gradient::before {
  background: linear-gradient(100deg, #f94f3b, #ffffff00);
}

.section.bg-icon::after {
  background-image: url(../../img/honghuo/background-1.png);
  background-size: 50%;
  background-position: right;
  background-repeat: no-repeat;
}

.section.box-banner+.section {
  border-radius: 3.5vw 3.5vw 0 0;
}

.section:has(+.section.box-banner) {
  border-bottom-left-radius: 3.5vw;
  border-bottom-right-radius: 3.5vw;
}

.section.bg1 {
  background: #f7f7f7 url(../../img/honghuo/bg1.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: bottom;
}

.section.bg2 {
  background: #ececec url(../../img/honghuo/background.png);
  background-size: 60vw;
  background-repeat: no-repeat;
  background-position: 51vw 50%;
}

@media screen and (max-width: 1000px) {
  .section {
    padding: 10vw 5vw;
  }

  .section.bg-icon::after {
    background-image: url(../../img/honghuo/background.png);
    background-size: 80%;
    background-position: right -124% top 50%;
  }
}

/* #endregion */

/* #region 引号tag */
.draw-l::before,
.draw-r::after {
  content: "";
  background-image: url(../../img/honghuo/icon-draw1.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 1.2em;
  height: 1.2em;
}

.draw-r::after {
  transform: rotate(180deg);
}

/* #endregion */

/* #region 自定义滚动条 */
.scrollbar::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

.scrollbar::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  width: 3px;
}

.scrollbar::-webkit-scrollbar-track {
  background: rgb(0 0 0 / .05);
  width: 3px;
}

/* #endregion */

/* #region 图片卡片 */
.image-card {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  font-size: var(--font-size-base);
  border-radius: .9em;
}

/* #endregion */

/* #region 标题 */
.t-title {
  display: block;
  font-size: var(--font-size-base);
  color: var(--text-color-primary);
  line-height: 1.2;
}

/* #endregion */

/* #region 文本 */
.t-text {
  color: var(--text-color-primary);
  font-size: var(--font-size-small);
  line-height: 1.4;
}

.t-text.secondary {
  color: var(--text-color-secondary);
}

.t-text p+p {
  margin-top: 1.8em;
}

span.primary {
  color: var(--primary);
}

span.black {
  color: var(--text-color-primary);
}

span.bold {
  font-weight: bold;
}

/* #endregion */

input.none {
  display: none;
}

.min,
.min-flex,
.min-grid {
  display: none !important;
}

#mapContent {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1000px) {
  .max {
    display: none !important;
  }

  .min {
    display: block !important;
  }

  .min-flex {
    display: flex !important;
  }

  .min-grid {
    display: grid;
  }
}

/* #endregion */

/* #region 公共组件 */

/* #region 顶部导航菜单 */
.header {
  font-size: var(--font-size-small);
  --head-height: 5em;
  --head-bg: #fff;
  --max-item: 8;
  --search-top: calc(var(--head-height) * -1);
  width: 100%;
}

.head {
  line-height: 1;
  width: 100%;
  height: auto;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 5%;
  z-index: 866;
  transition: all .5s;
  height: var(--head-height);
}

.head::before {
  content: "";
  width: 100%;
  height: 0;
  background-color: var(--head-bg);
  background-repeat: no-repeat;
  background-position: right -0% top var(--head-height);
  background-size: calc(3em * var(--max-item)), cover;
  position: absolute;
  top: 0;
  left: 0;
  /* transform: translateY(99%); */
  z-index: 2;
  overflow: hidden;
  transition: height .3s;
}

.head:hover,
.head.search-show {
  --head-height: 4.5em;
  --search-top: var(--head-height);
}

.head.hover::before,
.head.search-show::before {
  height: var(--head-height);
}

.head.hover-menu::before {
  height: calc(2em * var(--max-item) + var(--head-height)) !important;
  background-image: url(../../img/honghuo/background.png), linear-gradient(to right, #ffffff, #ffffff);
  border-bottom: 1px solid rgb(234, 234, 234);
}

.head.hover-menu {
  --search-top: calc(2em * var(--max-item) + var(--head-height)) !important;
}

.head-topic {
  z-index: 3;
  width: 100%;
  display: flex;
  justify-content: right;
  float: left;
}

.head-logo {
  z-index: 3;
  display: inline-block;
  width: 10%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.head-logo img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: opacity .3s;
}

.head-logo .logo2,
.head:hover .head-logo .logo1,
.head.search-show .head-logo .logo1 {
  position: absolute;
  opacity: 0;
}

.head:hover .head-logo .logo2,
.head.search-show .head-logo .logo2 {
  position: relative;
  opacity: 1;
}

.head-menu {
  z-index: 3;
  display: flex;
  align-items: center;
  margin-left: auto;
}

.head-menu__icon {
  display: none;
}

.head-menu-item {
  cursor: pointer;
  height: 100%;
  position: relative;
  display: inline-block;
}

.head-menu__link {
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-size: var(--font-size-small);
  color: #ffffff;
  transition: color .3s;
  padding: 0 1em;
}

.head-menu__link::before {
  content: "";
  width: 0%;
  height: .25em;
  border-radius: .3em;
  background-color: var(--primary);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1em;
  transition: all .3s;
}

.head-menu-item.active .head-menu__link::before {
  width: 2em;
}

.head:hover .head-menu-item:not(.active) .head-menu__link,
.head.search-show .head-menu-item:not(.active) .head-menu__link {
  color: var(--text-color-primary);
}

.menu-expand {
  display: none;
}

.head-menu-menu {
  width: 150%;
  height: 0;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 99%);
  z-index: 1;
  overflow: hidden;
  transition: height .3s, opacity .3s;

}

.head-menu-item:hover .head-menu-menu {
  opacity: 1;
  height: calc(2em * var(--max-item));
}

.head-degree {
  padding: 4%;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}

.head-menu__item {
  width: 100%;
  border-radius: 50px;
}

.head-menu__item a {
  white-space: nowrap;
  display: block;
  text-align: center;
  padding: .5em 0;
  border-radius: 3em;
  color: rgb(0, 0, 0, .5);
  transition: color .3s;
}

.head-menu__item:hover a {
  color: var(--text-color-primary);
}

.head-btns {
  z-index: 3;
  margin-left: 1em;
  height: auto;
  display: flex;
  align-items: center;
  gap: 1em;
}

.head-btns__item {
  color: #ffffff;
  width: auto;
  border-radius: 3em;
  padding: .8em;
  line-height: 1;
  background-color: red;
  background-image: linear-gradient(to right, rgb(253, 95, 67), rgb(230, 0, 18));
  display: flex;
  align-items: center;
  gap: .5em;
  font-size: var(--font-size-extra-small);
}

.head-btns__item img {
  width: 1em;
  height: 1em;
  display: block;
}

.head-btns__item img.hide {
  display: none;
}

.head-btns__item.btn {
  padding-right: 1em;
}

.head-search {
  position: absolute;
  z-index: 1;
  top: var(--search-top);
  left: 100vw;
  display: flex;
  width: 100%;
  padding: 0 30vw;
  align-items: center;
  height: var(--head-height);
  background-color: rgb(0, 0, 0, .8);
  transition: left .3s, top .3s, opacity .3s, height .3s;
  opacity: 0;
}

.head.search-show {
  --head-menu-top: 9em;
}

.head.search-show .head-search {
  left: 0;
  opacity: 1;
}

@media screen and (max-width: 1100px) {
  .crumbs {
    display: none !important;
  }
}

@media screen and (max-width: 1450px) {
  .Four-text {
    padding: 3em 2.5em !important;
  }

  .Four-font2 {
    line-height: 2 !important;
  }
}

@media screen and (max-width: 1300px) {
  .Four-text {
    padding: 2.5em 2.5em !important;
  }

  .Four-font2 {
    line-height: 1.6 !important;
  }
}

@media screen and (max-width: 1200px) {
  .Four-text {
    padding: 1.5em 1.2em !important;
  }

  .Four-font2 {
    line-height: 1.4 !important;
  }
}

@media screen and (min-width: 1000px) {

  .head-menu-item:hover .head-menu__link,
  .head-menu-item.active .head-menu__link {
    color: var(--primary) !important;
  }
}

@media screen and (max-width: 1000px) {
  .header {
    --head-bg: var(--primary);
    --head-height: 4.5em;
    --head-menu-top: 4.5em;
    height: var(--head-height);
  }

  .head,
  .head:hover {
    --search-top: var(--head-height);
    padding-left: 1.5em;
    height: var(--head-height);
    position: fixed;
    padding-right: 0;
    background-color: var(--head-bg);
  }

  .head-logo {
    width: 9em;
    max-height: 100%;
  }

  .head-logo .logo1 {
    position: relative;
    opacity: 1 !important;
  }

  .head-logo .logo2 {
    display: none;
  }

  .head-menu {
    padding: 5vw 5vw 30vh;
    flex-direction: column;
    align-items: start;
    position: fixed;
    top: var(--head-menu-top);
    right: -100vw;
    transition: transform .5s, top .3s;
    width: 100vw;
    height: 100vh;
    overflow-y: auto;
    background-color: #fff;
  }

  .head-menu::before {
    display: none;
  }

  .head-menu__icon {
    margin-left: auto;
    display: block;
    width: 8em;
    height: auto;
    object-fit: cover;
  }

  .head-menu-item {
    width: 100%;
    height: auto;
    border-bottom: 1px solid rgb(0, 0, 0, .1);
  }

  .head-menu-item.active .head-menu__link {
    color: var(--primary);
  }

  .head-menu-item:hover .head-menu-menu {
    height: 0;
  }

  .head-menu__link {
    width: 100%;
    height: auto;
    padding: 1em 0;
    color: var(--text-color-primary);
    font-weight: bold;
    font-size: var(--font-size-medium);
  }

  .head-menu__link::before {
    top: 50%;
    left: auto;
    right: 0;
    width: 1em !important;
    height: .6em;
    transform: translateY(-50%);
    background: url(../../img/honghuo/icon23.png) no-repeat;
    background-size: 100%;
    transition: transform .3s;
    filter: brightness(.1);
  }

  .head-menu-item a.head-menu__link::before {
    transform: translateY(-50%) rotate(-90deg);
  }

  .head-menu-menu {
    display: block !important;
    left: auto;
    height: 0px;
    width: 100%;
    background: transparent;
    position: relative;
    transform: translate(0, 0);

    opacity: 0 !important;
    pointer-events: none;
  }

  .head-degree {
    font-size: var(--font-size-small);
    padding: 0 0 1em 0;
    display: block;
    background: transparent;
    width: 100%;
  }

  .head-menu__item {
    width: 100%;
    padding: 0;
  }

  .head-menu__item a {
    padding: .8em;
    background-size: contain;
    text-align: left;
    width: 100%;
    display: inline-block;
    color: var(--text-color-primary);
  }

  .head-menu__item a span {
    padding-right: .8em;
  }

  .head-menu__item a span::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: .4em;
    height: .7em;
    background-image: url(../../img/honghuo/icon37.png);
    background-size: .4em .7em;
    background-repeat: no-repeat;
  }

  .head-menu__item.active a {
    color: var(--primary);
  }

  .head-menu__item.active a span::before {
    filter: sepia(1) hue-rotate(300deg) saturate(600);
  }

  .head-btns {
    margin-left: auto;
    gap: 0;
  }

  .head-btns__item {
    background: transparent;
    width: 4.5em;
    height: 4.5em;
    padding: 1.5em;
  }

  .head-btns__item img {
    width: 100%;
    height: 100%;
  }

  .head-btns__item div {
    display: none;
  }

  .head-search {
    padding: 0 1.2em;
  }

  /* 特殊选中效果 */
  .head-menu__link.show+.head-menu-menu {
    opacity: 1 !important;
    pointer-events: all;
    height: calc(2.6em * var(--item-length));
  }

  .head-menu__link.show::before {
    transform: translateY(-50%) rotate(180deg);
    filter: sepia(1) hue-rotate(300deg) saturate(600);
  }

  .head.head-menu-show .head-btns__item img.show {
    display: none;
  }

  .head.head-menu-show .head-btns__item img.hide {
    display: block;
  }

  .head.head-menu-show .head-menu {
    transform: translateX(-100%);
  }

  .head.search-show {
    --head-menu-top: 9em;
  }
}

/* #endregion */

/* #region banner */
.banner {
  border-radius: 0 0 0 3.5vw;
  overflow: hidden;
  width: 100%;
  height: auto;
  display: block;
  z-index: 5;
}

.banner-item {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: auto;
}

.banner__info {
  position: absolute;
  top: 50%;
  left: 23%;
  transform: translate(-50%, -50%);
}

.banner__title {
  color: #ffffff;
  font-size: var(--font-size-maximum);
  font-weight: bold;
  margin-bottom: .5vw;
}

.banner__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.bannerSwiperPc .banner-item.swiper-slide .banner__image {
  aspect-ratio: 1700 / 709;
}

.bannerSwiperSj .banner-item.swiper-slide .banner__image {
  aspect-ratio: 185 / 161;
}

.banner__image.small {
  aspect-ratio: 16 / 9;
}

.banner__text {
  color: #ffffff;
  font-size: var(--font-size-medium);
}

.banner__msg {
  margin-top: .5em;
  color: rgb(255 255 255 / .9);
  font-size: var(--font-size-small);
}

.banner-search {
  width: 30vw;
  min-width: 300px;
  font-size: var(--font-size-small);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.banner-search .search-input {
  margin: 1em 0 1.5em;
}

@media screen and (max-width: 1000px) {
  .banner__info {
    width: 80%;
    text-align: center;
    top: 50%;
    left: 50%;
  }

  .banner__image.one {
    height: 14em;
  }

  .banner-search .search-input {
    margin-bottom: 1em;
  }
}

/* #endregion */

/* #region 导航栏 */

.navigation {
  width: 100%;
  height: auto;
  background: #ffffff;
  line-height: 1;
  display: flex;
  align-items: center;
  padding: 0% 10vw;
}

.view-nav {
  white-space: nowrap;
  margin-right: auto;
  font-size: var(--font-size-base);
  overflow: hidden;
}

.view-nav ul {
  display: flex;
  align-items: center;
  overflow: auto;
  width: 100%;
  height: auto;
}

.view-nav ul::-webkit-scrollbar {
  display: none;
}

.view-nav ul li {
  height: auto;
  display: inline-block;
}

.view-nav ul li span,
.view-nav ul li a {
  cursor: pointer;
  display: block;
  padding: 2.3em 1em;
  height: auto;
  text-align: center;
  color: var(--text-color-primary);
  font-weight: bold;
  transition: color .3s;
}

.view-nav ul li:hover a,
.view-nav ul li.now a {
  color: var(--primary);
}

.view-nav li::after {
  content: "";
  width: 0%;
  height: .2em;
  border-radius: .3em;
  background: var(--primary);
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translateX(-50%);
  transition: width .3s;
}

.view-nav ul li.now::after,
.view-nav li:hover::after {
  width: 3em;
}

.crumbs {
  height: auto;
  display: inline-flex;
  align-items: center;
}

.crumbs a {
  padding: 0 .6em;
  font-size: var(--font-size-extra-small);
  color: rgb(112, 112, 112);
}

.crumbs a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
  margin-top: .1em;
  width: .4em;
  height: .7em;
  background-image: url(../../img/honghuo/icon37.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.crumbs a:last-child::before {
  content: none;
}

.crumbs a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 1000px) {
  .navigation {
    padding: 0 0 0 0;
  }

  .view-nav ul li span,
  .view-nav ul li a {
    padding: 1.2em .6em;
  }

  .crumbs {
    display: none;
  }
}

/* #endregion */

/* #region 新闻列表卡片 */
.news-card {
  cursor: pointer;
  width: 100%;
  height: auto;
  padding: 2em 0 2em 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  font-size: max(13px, .8vw);
}

.news-card-list {
  width: 100%;
  overflow: auto;
  scrollbar-width: none;
}

.news-search-list {
  width: 100%;
  padding: 0 8vw;
  display: flex;
  flex-direction: column;
}

.news-card::before,
.news-card::after {
  content: "";
  position: absolute;
  height: 1px;
  bottom: 0;
  left: 0;
}

.news-card::before {
  width: 100%;
  background-color: rgb(0, 0, 0, .05);
}

.news-card::after {
  width: 0%;
  transition: width .5s;
  background-color: var(--primary);
}

.news-card:hover::after {
  width: 100%;
}

.news-card-cont {
  width: auto;
  height: auto;
  flex: 1;
  padding: 0 5% 0 0;
}

.news-card-cont__date {
  width: 100%;
  height: auto;
  font-size: clamp(12px, .7vw, .7vw);
  color: var(--primary);
  font-weight: bold;
  font-family: 'Gilroy-Bold';
}

.news-card-cont__title {
  width: 100%;
  height: auto;
  font-size: var(--font-size-base);
  color: var(--text-color-primary);
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: .6em;
}

.news-card-cont__ul,
.news-card-cont__text {
  width: 100%;
  height: auto;
  color: rgb(99, 99, 99);
  line-height: 1.5;
}

.news-card-cont__ul {
  display: grid;
  gap: .5em 1.5em;
  grid-template-columns: repeat(2, 1fr);
}

.news-card-cover {
  width: 33%;
  max-width: 20.5em;
  height: auto;
}

.news-card-cover img {
  width: 100%;
  height: auto !important;
  aspect-ratio: 3 / 2;
  border-radius: .6em;
  display: block;
  object-fit: cover;
}

.news-card-cont .button-link {
  margin-top: 1.5em;
}

.news-card-cont+.button-link {
  margin: auto 0 auto auto;
}

@media screen and (max-width: 1500px) {
  .news-card-cont__ul {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media screen and (max-width: 1000px) {
  .news-search-list {
    padding: 0;
  }

  .news-card-cont+.button-link {
    margin: 1em 0 0 0;
  }

  .news-card-cont__text,
  .news-card-cont .button-link {
    display: none;
  }

  .news-card-cover {
    width: 40%;
  }
}

/* #endregion */

/* #region 产品卡片 */
.product-card {
  --product-hover-height: 2em;
  font-size: var(--font-size-base);
  color: var(--text-color-primary);
  display: inline-block;
  width: 100%;
  height: auto;
  transition: padding .3s;
}

.product-card.hover {
  padding-top: var(--product-hover-height);
}

.product-card.small {
  font-size: var(--font-size-extra-small);
  --product-hover-height: 1.8em;
}

.product-card-box {
  border-radius: .5em;
  background-color: rgb(234, 234, 234);
  transition: background-color .2s;
  padding: .3em;
  padding-bottom: 0;
}

.product-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 316 / 238;
  object-fit: cover;
  border-radius: .3em;
}

.product-card-info {
  width: 100%;
  height: auto;
  text-align: center;
  padding: 1.5em .5em;
}

.product-card.small .product-card-info {
  padding: .6em .3em;
}

.product-card__title {
  width: 100%;
  height: auto;
  text-align: center;
}

.product-card__btn {
  overflow: hidden;
  height: auto;
  width: 100%;
}

.product-card.hover .product-card__btn {
  display: flex;
  align-items: end;
  transition: height .3s, opacity .3s;
  opacity: 0;
  height: 0;
}

.product-card__link {
  font-size: .8em;
  height: 2em;
  display: inline-flex;
  align-items: center;
  margin: 0 auto;
  padding: .43em 1em .57em;
  color: #ffffff;
  border: .1vw solid rgba(238, 77, 90, 1);
  border-radius: 1.5em;
}

.product-card.hover:hover {
  padding-top: 0;
}

.product-card:hover .product-card-box {
  background-color: var(--primary);
}

.product-card:hover .product-card-info {
  background-image: url(../../img/honghuo/background-1.png), linear-gradient(to right, rgb(223, 16, 21), rgb(223, 16, 21));
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100%, cover;
}

.product-card:hover .product-card__title {
  color: #fff;
}

.product-card.hover:hover .product-card__btn {
  opacity: 1;
  height: var(--product-hover-height);
}

@media screen and (max-width: 1000px) {
  .product-card {
    padding-top: 0 !important;
  }

  .product-card-box {
    background-color: var(--primary);
  }

  .product-card__title {
    color: #fff;
  }

  .product-card__btn {
    opacity: 1 !important;
    height: var(--product-hover-height) !important;
  }
}

/* #endregion */

/* #region 轮播图分页器 */
.swiper-pagination {
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: center;
  font-size: var(--font-size-base);
  gap: .4em;
}

.swiper-pagination.drop .swiper-pagination-bullet {
  width: .6em;
  height: .6em;
  background-color: #eaeaea;
  opacity: 1;
  border-radius: 1em;
  transition: width .3s, background-color .3s;
}

.swiper-pagination.drop.deep .swiper-pagination-bullet {
  background-color: rgb(0, 0, 0, .1);
}

.swiper-pagination.drop .swiper-pagination-bullet-active {
  width: 1em;
  background-color: var(--primary) !important;
}

/*  */

.swiper-pagination.image {
  --pagination-height: 6em;
  --pagination-width: 13em;
}

.swiper-pagination.image .swiper-pagination-bullet {
  position: relative;
  width: var(--pagination-width);
  height: var(--pagination-height);
  padding-bottom: .3em;
  overflow: hidden;
}

.swiper-pagination.image .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: .3em;
  background-color: rgb(255, 255, 255, .3);
  border-radius: 1em;
  z-index: 2;
  transition: background-color .3s;
}

.swiper-pagination.image .swiper-pagination-bullet img {
  position: absolute;
  bottom: calc(var(--pagination-height) * -1);
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: bottom .3s;
  border-radius: .5em .5em 0 0;
}

.swiper-pagination.image .swiper-pagination-bullet-active::before,
.swiper-pagination.image .swiper-pagination-bullet.active::before {
  background-color: var(--primary);
}

.swiper-pagination.image .swiper-pagination-bullet:hover img {
  bottom: 0;
}

@media screen and (max-width: 1000px) {
  .swiper-pagination.drop .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    border-bottom: 0 solid #fff;
    opacity: .5;
  }

  .swiper-pagination.drop .swiper-pagination-bullet:last-child {
    margin-right: 0;
  }

  .swiper-pagination.drop .swiper-pagination-bullet-active {
    width: 10px;
    height: 10px;
    background: var(--primary);
    opacity: 1;
    border-bottom: 0 solid var(--primary);
  }

  .swiper-pagination.drop .swiper-pagination-bullet-active:hover {
    width: 10px;
    height: 10px;
    background: var(--primary);
  }

  .swiper-pagination.drop .swiper-pagination-bullet-active:hover:nth-of-type(2n),
  .swiper-pagination.drop .swiper-pagination-bullet-active:hover:nth-of-type(3n),
  .swiper-pagination.drop .swiper-pagination-bullet-active:hover:nth-of-type(4n) {
    width: 10px;
    height: 10px;
    background: var(--primary);
  }
}

/* #endregion */

/* #region 分页器 */
.pagination {
  width: 100%;
  height: auto;
  padding: 5% 0;
  white-space: nowrap;
  font-size: max(13px, .78vw);
}

.pagination.padd-max {
  padding-bottom: 10%;
}

.pagination.center ul {
  justify-content: center;
}

.pagination ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5em;
}

.pagination .more,
.pagination .skip,
.pagination .input,
.pagination a {
  display: inline-block;
  border: 1px solid rgb(0, 0, 0, .1);
  transition: color .3s, background-color .3s;
  padding: 0 .6em;
  height: 2.6em;
  min-width: 2.6em;
  max-height: 2.6em;
  background-color: #fff;
  line-height: 2.6;
  text-align: center;
  border-radius: .4em;
  color: var(--text-color-primary);
}

.pagination a {
  cursor: pointer;
}

.pagination .skip,
.pagination .more {
  margin: 0 -.4em;
  border: 0;
  background-color: transparent;
  color: rgb(0, 0, 0, .3);
}

.pagination .more {
  font-weight: bold;
}

.pagination .input {
  width: 4em;
}

.pagination a:hover,
.pagination .active a {
  background-color: var(--primary);
  color: #ffffff;
}

@media screen and (max-width: 1000px) {
  .pagination {
    gap: .3em;
  }

  .pagination.min-center {
    justify-content: center;
  }

  .pagination ul {
    justify-content: center;
  }
}

/* #endregion */

/* #region 轮播图切换按钮*/
.swiper-button {
  display: flex;
  align-items: center;
}

.swiper-button .t-button {
  border-radius: 50%;
  padding: 1em;
}

.swiper-button .t-button img {
  width: 1em;
  height: 1em;
}

.swiper-button .t-button.reverse img {
  transform: rotate(180deg);
}

/* #endregion */

/* #region 链接按钮 */

.button-link {
  min-width: 10.3em;
  height: 3em;
  background-color: #EDEDEF;
  color: rgb(0, 0, 0);
  font-size: var(--font-size-extra-small);
  border-radius: 200px;
  font-weight: 500;
  padding-left: 1.4em;
  overflow: hidden;
  border: none;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: all .3s;
}

.button-link.light {
  background-color: rgb(255, 255, 255, .8);
}

.button-link.large {
  font-size: var(--font-size-base);
  min-width: 11em;
}

.button-link.small {
  font-size: var(--font-size-small);
  padding-left: 1em;
  min-width: 10em;
  height: 2.5em;
}

.button-link .show,
.button-link.active .hide {
  display: block;
}

.button-link .hide,
.button-link.active .show {
  display: none;
}

.button-link__icon {
  background-color: var(--primary);
  position: absolute;
  right: .5em;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2em;
  width: 2em;
  border-radius: 50%;
  transition: background-color .3s, transform .3s;
}

.button-link.active .button-link__icon {
  transform: rotate(270deg);
}

.button-link.small .button-link__icon {
  right: .25em;
}

.button-link__icon.bottom {
  transform: rotate(90deg);
}

.button-link__icon img {
  width: 40%;
  height: 40%;
}

.button-link:hover,
.button-link.active,
.button-link-parent:hover .button-link {
  background: var(--primary);
  color: #ffffff;
  padding-left: 2.5em;
}

.button-link:hover .button-link__icon,
.button-link.active .button-link__icon,
.button-link-parent:hover .button-link .button-link__icon {
  background-color: #fff;
}

.button-link:hover .button-link__icon img,
.button-link.active .button-link__icon img,
.button-link-parent:hover .button-link .button-link__icon img {
  filter: sepia(1) hue-rotate(300deg) saturate(600);
}

/* #endregion */

/* #region 普通按钮 */
.t-button {
  font-size: inherit;
  padding: .6em 1em;
  line-height: 1;
  border: 0;
  border-left: none;
  border-radius: .4em;
  cursor: pointer;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .2em;
  text-align: center;
  -webkit-user-select: none;
  /* Safari, Chrome */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer */
  user-select: none;
  /* 标准 */
}

.t-button {
  color: var(--button-color);
  border: 1px solid var(--button-border);
  background-color: var(--button-background);
}

.t-button.whole {
  flex: auto;
  width: 100%;
}

.t-button.is-square {
  aspect-ratio: 1 / 1;
  padding: .3em .5em;
}

.t-button__icon {
  width: auto;
  height: 1em;
  object-fit: cover;
}

.t-button:hover {
  color: var(--button-hover-color);
  border: 1px solid var(--button-hover-border);
  background-color: var(--button-hover-background);
}

.t-button:active {
  color: var(--button-active-color);
  border: 1px solid var(--button-active-border);
  background-color: var(--button-active-background);
}

.t-button:disabled {
  color: var(--button-disabled-color) !important;
  border: 1px solid var(--button-disabled-border) !important;
  background-color: var(--button-disabled-background) !important;
  cursor: not-allowed;
}

.t-button {
  --button-color: #ffffff;
  --button-border: transparent;
  --button-background: #23272f;

  --button-hover-color: #ffffff;
  --button-hover-border: transparent;
  --button-hover-background: #47484f;

  --button-active-color: #ffffff;
  --button-active-border: transparent;
  --button-active-background: #626469;

  --button-disabled-color: #ffffff;
  --button-disabled-border: transparent;
  --button-disabled-background: #a5a7ab;
}

.t-button.primary {
  --button-color: #ffffff;
  --button-border: transparent;
  --button-background: var(--primary);

  --button-hover-color: #ffffff;
  --button-hover-border: transparent;
  --button-hover-background: var(--primary-1);

  --button-active-color: #ffffff;
  --button-active-border: transparent;
  --button-active-background: var(--primary-5);

  --button-disabled-color: #ffffff;
  --button-disabled-border: transparent;
  --button-disabled-background: var(--primary-dark);
}

/* #endregion */

/* #region tabs栏 */
.tabs {
  white-space: nowrap;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  font-size: var(--font-size-base);
  font-weight: bold;
}

.tabs.border {
  border-top: 1px solid rgb(0, 0, 0, .1);
  border-bottom: 1px solid rgb(0, 0, 0, .1);
}

.tabs__title {
  padding: .9em 0;
  margin-right: 2.8em;
}

.tabs__list {
  overflow: auto;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 2em;
}

.tabs__list::-webkit-scrollbar {
  display: none;
}

.tabs__item {
  cursor: pointer;
  padding: .9em 0;
}

.tabs__item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: .2em;
  background-color: var(--primary);
  transition: width .3s;
  border-radius: .2em;
}

.tabs__item.active::before,
.tabs__item:hover::before {
  width: 2em;
}

/* #endregion */

/* #region 弹出框 */
.popover {
  font-size: var(--font-size-medium);
  padding: 0 0 .5em;
  position: absolute;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  line-height: 2;
}

.popover.top {
  inset: auto;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.popover-box {
  position: relative;
  color: var(--text-color-primary);
  border-radius: .3em;
  background-color: #fff;
  padding: .3em;
  box-shadow: var(--box-shadow-2);
}

.popover.whole,
.popover.whole .popover-box {
  width: 100%;
}

.popover-cont {
  font-size: var(--font-size-large);
  z-index: 4;
}

.popover-box::before {
  content: "";
  width: .6em;
  height: .6em;
  z-index: 1;
  position: absolute;
  background-color: #fff;
  left: 50%;
  bottom: 0;
  border-radius: .1em;
  transform: translate(-50%, 40%) rotate(45deg);
  box-shadow: var(--box-shadow-2);
}

.popover-box::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: .3em;
}

.popover--hover:hover .popover {
  opacity: 1;
  pointer-events: all;
}

/* #endregion */

/* #region 弹窗 */

dialog {
  all: unset;
  display: block;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 100%);
  transition: transform .3s, opacity .3s;
  outline: none;
  background: none;
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
}

dialog[open] {
  transform: translate(-50%, -50%);
  opacity: 1;
  pointer-events: all;
}

dialog::backdrop {
  content: '';
  position: fixed;
  inset: 0px;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  opacity: 0;
  transition: opacity 3s;
}

dialog[open]::backdrop {
  opacity: 1;
}

.dialog-content {
  max-width: 100%;
  max-height: 100%;
  border-radius: .5em;
  font-size: var(--font-size-base);
  color: var(--text-color-primary);
  overflow: hidden;
}

.dialog-content.large {
  width: 48.87vw;
  height: 33.25vw;
  min-width: 823px;
  min-height: 560px;
}

.dialog-conten.bg {
  background-color: #fff;
}


.dialog__close {
  position: absolute;
  z-index: 99;
  top: .8em;
  right: .8em;
  width: .8em;
  height: .8em;
  transition: transform .3s;
  box-sizing: content-box;
  display: block;
  cursor: pointer;
  filter: brightness(.1);
  background-image: url(../../img/honghuo/icon22.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.dialog__close.zoom-close {
  top: 3vw;
  right: 3vw;
  width: 1em;
  height: 1em;
  padding: 1em;
  background-size: 1em;
  background-position: center;
  filter: brightness(1);
  background-color: rgb(0 0 0 / .1);
  border-radius: 50%;
}

.dialog__close:hover {
  transform: rotate(180deg);
}

.dialog-box {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 1000px) {
  .dialog-content.large {
    width: 90vw;
    height: 80vh;
    min-width: 300px;
    min-height: 204px
  }
}

/* #endregion */

/* #region 搜索框 */
.searchbox {
  width: 100%;
  line-height: 1;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: var(--font-size-small);
}

.searchbox__icon {
  width: 1em;
  height: 1em;
  object-fit: cover;
}

.searchbox__input {
  font-size: inherit;
  color: #fff;
  background: transparent;
  margin: 0 1em 0 .5em;
  flex: 1;
}

.searchbox__input::placeholder {
  color: #fff;
}

.searchbox_button {
  white-space: nowrap;
  font-size: inherit;
  height: 2.2em;
  line-height: 2.2em;
  padding: 0 1.2em;
  border-radius: 2em;
}

.searchbox__close {
  margin-left: 1em;
  width: 2.2em;
  height: 2.2em;
  padding: .5em;
  background-color: rgb(255, 255, 255, .3);
  object-fit: cover;
  border-radius: 50%;
}

.search-input {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  border-radius: 4em;
  padding: .15em .15em .15em 1em;
  background-color: rgb(255 255 255 /80%);
  font-size: var(--font-size-small);
}

.search-input.base {
  font-size: var(--font-size-base);
}

.search-input input {
  font-size: inherit;
  color: var(--text-color-secondary);
  background: transparent;
  margin: 0 1em 0 .5em;
  flex: 1;
  outline: none;
}

.search-input input::placeholder {
  color: var(--text-color-secondary);
}

.search-input .t-button {
  padding: .8em;
  border-radius: 3em;
}

.search-input .t-button img {
  width: 1em;
  height: 1em;
  object-fit: cover;
}

/* #endregion */

/* #region 手风琴卡片组 */
.accordion {
  font-size: var(--font-size-small);
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  gap: .6em;
}

.accordion-item {
  flex: 1;
  height: 23.5vw;
  overflow: hidden;
  transition: .5s;
  border-radius: .5em;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.accordion__image {
  width: 200%;
  height: 100%;
  object-fit: cover;
  transition: .5s;
}

.accordion.mask .accordion-item::before,
.accordion.mask .accordion-item::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  width: 100%;
  pointer-events: none;
  transition: opacity .3s;
}

.accordion.mask .accordion-item::before {
  top: 0;
  height: 100%;
  background: url(../../img/honghuo/opBg.png);
}

.accordion.mask .accordion-item::after {
  opacity: 0;
  bottom: 0;
  height: 30%;
  background: linear-gradient(0deg, rgb(0, 0, 0, 7), #ffffff00);
}

.accordion__icon {
  display: flex;
  width: 3em;
  height: 3em;
  border-radius: 50%;
  background-color: var(--primary);
  cursor: pointer;
  transition: opacity .3s;
  position: absolute;
  top: 5%;
  right: 5%;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
}

.accordion__icon img {
  width: auto;
  height: 50%;
}

.accordion-text {
  position: absolute;
  z-index: 2;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
  text-align: center;
  transition: all .3s;
}

.accordion__title {
  writing-mode: vertical-rl;
  font-weight: 600;
  font-size: var(--font-size-large);
  color: #ffffff;
  transition: all .3s;
}

.accordion__text {
  font-size: var(--font-size-extra-small);
  color: rgb(255, 255, 255, .8);
  margin-top: .3em;
  height: 4.5em;
  line-height: 1.5;
  width: 40%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: none;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

@media screen and (min-width: 1000px) {

  .accordion-item.active {
    flex-basis: 40%;
  }


  .accordion.mask .accordion-item.active::before {
    opacity: 0;
  }

  .accordion.mask .accordion-item.active::after {
    opacity: 1;
  }

  .accordion-item.active .accordion__icon {
    opacity: 1;
    pointer-events: all;
  }

  .accordion-item.active .accordion-text {
    text-align: left;
    bottom: 8%;
    left: 5%;
    transform: translate(0, 0);
  }

  .accordion-item.active .accordion__title {
    writing-mode: horizontal-tb;
  }

  .accordion-item.active .accordion__text {
    display: -webkit-box;
  }
}

@media screen and (max-width: 1000px) {
  .accordion {
    flex-wrap: wrap;
  }

  .accordion-item {
    height: 25vw;
    flex-basis: calc(50% - .3em);
  }

  .accordion-item.active {
    height: 38vw;
    flex-basis: 100%;
  }

  .accordion.mask .accordion-item.active::before {
    opacity: 0;
    pointer-events: none;
  }

  .accordion.mask .accordion-item.active::after {
    opacity: 1;
  }

  .accordion-item.active .accordion__icon {
    opacity: 1;
    pointer-events: all;
  }

  .accordion-item.active .accordion-text {
    text-align: left;
    bottom: 8%;
    left: 5%;
    transform: translate(0, 0);
  }

  .accordion-item.active .accordion__text {
    display: -webkit-box;
    height: auto;
  }

  .accordion-text {
    width: 100%;
  }

  .accordion__title {
    font-size: var(--font-size-medium);
    writing-mode: horizontal-tb;
  }

  .accordion__text {
    width: 80%;
    height: auto;
  }
}

/* #endregion */

/* #region 三级菜单 */
.h3-title {
  font-weight: bold;
  font-size: var(--font-size-large);
  display: flex;
  gap: .2em;
  align-items: center;
  flex-wrap: wrap;
}

.h3-title__text {}

.h3-title__en {
  font-family: 'Gilroy-Bold';
  font-size: .55em;
  line-height: 1.1;
  color: var(--primary);
}

/* #endregion */

/* #region 文本块 */

.text-block {
  z-index: 1;
  margin: auto 0;
  flex: 1;
}

.text-block__en,
.text-block__title {
  font-size: var(--font-size-extra-large);
  font-weight: bold;
  line-height: 1.2;
}

.text-block__en {
  display: flex;
  flex-direction: column;
  color: var(--primary);
  margin-bottom: .3em;
}

.text-block__en .draw-r::after {
  content: none;
  transform: rotate(180deg) translate(-10%, 60%);
  opacity: .2;
}

.text-block__en .draw-r:nth-child(1)::after {
  content: "";
}

.text-block__subtitle {
  color: var(--primary);
  font-weight: 400;
  font-size: var(--font-size-medium);
  padding: .4em 0 .7em;
  margin: 0 0 .5em;
}

.text-block__subtitle.bold {
  font-weight: bold;
}

.text-block__subtitle.top {
  margin: .5em 0 0;
}

.text-block__subtitle.bold {
  font-weight: bold;
}

.text-block__subtitle::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2.2em;
  height: .2em;
  background-color: var(--primary);
  border-radius: .4em;
}

.text-block__subtitle.nobefore {
  padding: 0;
}

.text-block__text {
  width: 100%;
  color: var(--text-color-secondary);
  margin-top: 2em;
  font-size: var(--font-size-small);
  line-height: 2;
}

.text-block__text.deep {
  color: var(--text-color-primary);
}

.text-block__text p {
  margin-top: 1.8em;
}

.text-block__text p:nth-child(1) {
  margin-top: 0;
}

.text-block.space-between {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0 5.66%;
  margin-bottom: 2vw;
}

.text-block.space-between .text-block__left {
  width: 50%;
}

.text-block.space-between .text-block__text {
  margin: 0;
  flex: 1;
}

.text-block.center {
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2em;
}

.text-block.center .text-block__subtitle {
  padding: 0 0 .5em;
}

.text-block.center .text-block__subtitle::before {
  left: 50%;
  transform: translateX(-50%);
}

.text-block.center .text-block__text {
  width: 80%;
}

@media screen and (max-width: 1000px) {

  .text-block__title {
    text-align: center;
  }

  .text-block__en {
    justify-content: center;
    flex-direction: row;
  }

  .text-block__en .draw-r::after {
    content: none !important;
  }

  .text-block__text {
    margin-top: 1em !important;
  }

  .text-block.center .text-block__text {
    width: 100%;
  }

  .text-block.space-between {
    display: flex;
    flex-direction: column;
  }

  .image-view,
  .text-block.space-between .text-block__left {
    width: 100%;
  }

  .text-block.space-between .text-block {
    flex-direction: column;
  }
}

/* #endregion */

/* #region 图片缩放样式 */
.zoom-container {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  touch-action: none;
}

.zoom-image {
  max-width: 100%;
  max-height: 100%;
  transform-origin: center center;
  transition: transform 0.15s cubic-bezier(0.2, 0, 0.2, 1);
  cursor: zoom-in;
}

.scale-display {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 12px;
  border-radius: 4px;
  font-family: sans-serif;
}

/* #endregion */

/* #endregion */

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: .35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.bannerSwiperPc,
.bannerSwiperSj {
  width: 100%;
  height: auto;
}

.skeleton {
  display: flex;
  transition: transform .5s ease;
}

.banner .swiper-pagination {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 3%;
  left: 0%;
  text-align: center;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.banner-animation {
  position: absolute;
  bottom: -1px;
  right: 3.5%;
}

.banner-tag {
  width: 10em;
  height: 2em;
  overflow: hidden;
  background: url(../../img/honghuo/icon15.png);
  background-size: 100% 100%;
}

#scrollContainer {
  font-size: var(--font-size-medium);
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: .6em;
  height: .9em;
  overflow: hidden;
  border: .1em solid red;
  border-radius: 30px;
}

#scrollText {
  position: absolute;
  left: 50%;
  width: .1em;
  height: .35em;
  background: #ff0000;
  animation: carousel-tag .8s linear infinite;
}

@keyframes carousel-tag {
  0% {
    transform: translate(-50%, -100%);
  }

  100% {
    transform: translate(-50%, 200%);
  }
}

.frame-Chamfering {
  position: absolute;
  bottom: 0%;
  left: 0%;
  width: 100px;
  height: 100px;
  overflow: hidden;
  transform: rotate(180deg) skew(0deg, 0deg);
}

.frame-Chamfering-corner {
  position: absolute;
  bottom: -100%;
  right: -0%;
  content: "";
  display: inline-block;
  width: 200%;
  height: 200%;
  border-radius: 3.5vw;
  box-shadow: 100px -100px #ffffff;
}

.frame1-Chamfering {
  position: absolute;
  bottom: -.1%;
  left: 0%;
  width: 100px;
  height: 100px;
  overflow: hidden;
  transform: rotate(180deg) skew(0deg, 0deg);
}

.frame1-Chamfering-corner {
  position: absolute;
  bottom: -100%;
  right: -0%;
  content: "";
  display: inline-block;
  width: 200%;
  height: 200%;
  border-radius: 6vw;
  box-shadow: 100px -100px #ffffff;
}

.frame1-Chamfering1 {
  position: absolute;
  bottom: -.1%;
  right: 0%;
  width: 100px;
  height: 100px;
  overflow: hidden;
  transform: rotate(90deg) skew(0deg, 0deg);
}

.frame1-Chamfering1-corner {
  position: absolute;
  top: -0%;
  right: -0%;
  content: "";
  display: inline-block;
  width: 200%;
  height: 200%;
  border-radius: 6vw;
  box-shadow: 100px -100px #ffffff;
}

/* 公司简介 */
.business {
  width: 100%;
  height: auto;
  padding-right: 0 !important;
}

.business-text {
  width: 100%;
  height: 5%;
  color: rgb(247, 247, 247);
  font-size: 8.34vw;
  font-weight: 1000;
  position: absolute;
  top: -7.7%;
  left: 0%;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.business-writing {
  width: 100%;
  height: auto;
  display: flex;
}

.business-file {
  width: 33%;
  height: auto;
}

.business-line {
  width: 100%;
  height: auto;
}

.business-pag {
  font-family: 'Gilroy-Bold';
  color: var(--primary);
  font-size: var(--font-size-large);
}

.business-cont {
  font-size: var(--font-size-extra-large);
  font-weight: bold;
  margin-top: 0;
}

.business-enot {
  margin-top: .8em;
  font-size: var(--font-size-small);
  color: rgb(0, 0, 0, .8);
  margin-bottom: 1%;
  line-height: 2;
}

.business-botn {
  margin-top: 20%;
}

.business-right {
  width: 60%;
  height: auto;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
  margin-left: 5%;
}

.Slippery {
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: initial;
  box-sizing: content-box;
}

.smooth {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  transition-property: transform;
  padding-top: 5%;
  padding-right: 3%;
  transition: transform .5s ease-in-out;
  font-size: var(--font-size-small);
}

.smooth>a {
  display: flex;
  gap: 2.5em;
}

.smooth:nth-child(odd)>a {
  flex-direction: column;
}

.smooth:nth-child(even)>a {
  flex-direction: column-reverse;
}

.smooth:hover {
  transform: translateY(-5%);
  transition: all .3s;
  overflow-y: auto;
}

.smooth .smooth-icon:active {
  background-color: var(--primary);
  box-shadow: 0 0 0 .1875rem var(--primary), 0 0 0 .375rem var(--primary);
  transition-duration: 75ms;
  transition: all .3s;
}

.smooth-cont {
  padding: 0 1em
}

.smooth-title {
  font-size: var(--font-size-large);
  color: var(--text-color-primary);
  font-weight: bold;
  white-space: nowrap;
}

.smooth-text {
  line-height: 1.4;
  color: var(--text-color-secondary);
  margin-top: 1em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.smooth-bg {
  width: 100%;
  border-radius: .8em;
}

.smooth-bg.max {
  aspect-ratio: 278 / 348;
}

.smooth-bg.min {
  aspect-ratio: 193 / 117;
}

.smooth-icon {
  width: 3em;
  height: 3em;
  border-radius: 50%;
  background: var(--primary);
  align-items: center;
  justify-content: center;
  display: flex;
  transition: box-shadow .3s;
  position: absolute;
  top: 1em;
  right: 1em;
}

.smooth:hover .smooth-icon {
  box-shadow: 0 0 0 .2em white, 0 0 0 .35rem var(--primary);
}

.smooth-icon img {
  width: auto;
  height: 50%;
}

/* 旗下子公司 */
.Subsidiary {
  border-radius: 3.5vw !important;
}

.Subsidiary {
  width: 100%;
  height: auto;
  display: flex;
  overflow: hidden;
}

.cebear {
  display: flex;
  transition: transform .5s ease;
}

.Play {
  gap: 8vw;
  width: 100%;
  height: auto;
  display: flex;
}

.Subsidiary-right {
  width: 38%;
  height: auto;
}

.Subsidiary-img {
  width: 100%;
  float: left;
}

.Subsidiary-img img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 2em;
}

.Subsidiary-jpg {
  width: 44%;
  height: auto;
  float: right;
  display: flex;
  cursor: pointer;
  position: absolute;
  bottom: -8%;
  right: -10%;
  border: 10px solid #ffffff;
  border-radius: 40px;
}

.Subsidiary-jpg img {
  width: 100%;
  aspect-ratio: 1;
}

.Subsidiary-img1 {
  display: none;
}

.Subsidiary-left {
  flex: 1;
}

.Play-h6 {
  display: none;
}

.Subsidiary-name .h6 {
  font-size: var(--font-size-medium);
  margin: 1em 0 .2em;
  font-weight: bolder;
}

.Subsidiary-name .h5 {
  font-size: var(--font-size-large);
  font-weight: bold;
  margin-top: .2em;
}

.Subsidiary-jgp {
  font-size: var(--font-size-base);
  color: var(--primary);
  font-weight: bold;
  margin: 0 0 1em;
  padding-bottom: 1em;
}

.Subsidiary-jgp::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3em;
  height: .25em;
  background-color: var(--primary);
  border-radius: .3em;
}

.Subsidiary-picdesc {
  font-size: var(--font-size-small);
  color: rgb(0, 0, 0, .8);
  line-height: 2;
}

.Subsidiary-botn {
  margin-top: 10%;
}

.push {
  width: 3.64vw;
  height: 3.64vw;
  background: #ffffff;
  border-radius: 50%;
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid #00000050;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  display: flex;
  cursor: pointer;
  transition: all .3s;
}

.puzh {
  width: 3.64vw;
  height: 3.64vw;
  background: #ffffff;
  border-radius: 50%;
  position: absolute;
  left: 4.5%;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid #00000050;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  display: flex;
  cursor: pointer;
  transition: all .3s;
}

.push img {
  width: 25%;
  height: 25%;
}

.puzh img {
  width: 25%;
  height: 25%;
}

.push:hover {
  transition: all .3s;
  border: 1px solid rgba(230, 0, 18);
  background: rgba(230, 0, 18);
}

.puzh:hover {
  transition: all .3s;
  border: 1px solid rgba(230, 0, 18);
  background: rgba(230, 0, 18);
}

.push:hover img {
  transition: all .3s;
  filter: invert(100%) brightness(100%);
}

.puzh:hover img {
  transition: all .3s;
  filter: invert(100%) brightness(100%);
}

.Whatsnew {
  padding-top: 10.5vw;
  padding-bottom: 9vw;
  margin-top: -3.5vw;
  z-index: 2;
}

.Whatsnew-content {
  gap: 2%;
  width: 100%;
  height: auto;
  display: flex;
}

.Whatsnew-caption {
  font-size: var(--font-size-base);
  width: 17%;
  min-width: 11em;
  height: auto;
}

.Whatsnew-cap h5 {
  font-family: 'Gilroy-Bold';
  font-size: var(--font-size-large);
  color: var(--primary);
}

.Whatsnew-cap h4 {
  font-size: var(--font-size-extra-large);
  margin-top: 2%;
}

.Whatsnew-tion {
  width: 100%;
  height: auto;
  margin-top: 18%;
}

.Whatsnew-tion li {
  font-size: var(--font-size-base);
  width: 100%;
  height: auto;
  border-left: 3px solid rgb(200, 199, 203);
  color: rgb(0, 0, 0, .3);
  padding: 5%;
  cursor: pointer;
  transition: all .3s;
}

.Whatsnew-tion li.active {
  border-color: var(--primary);
  color: var(--text-color-primary);
  font-weight: bold;
}

.Whatsnew-headline {
  font-size: var(--font-size-base);
  /* width: calc(81% - 11em); */
  width: 81%;
  height: auto;
  z-index: 1;
}

.Whatsnew-headline-page {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(100%);
  transition: transform .5s;
  width: 0;
  height: 0;
  padding-top: 2em;
  margin-top: -3em;
  overflow: hidden;
}

.Whatsnew-headline-page.active {
  position: relative;
  width: 100%;
  height: auto;
  transform: translateX(0%);
}

.Whatsnew-headline-ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1em;
}

.Headlines {
  width: 100%;
  height: auto;
}

.Whatsnew-frame {
  width: 100%;
  height: auto;
  display: flex;
  transition: transform .5s ease;
  margin-left: 0%;
}

.Whatsnew-text {
  width: 100%;
  flex-shrink: 0;
}

.Whatsnew-text li {
  width: 100%;
  height: 100%;
  display: inline-block;
  transition: all .3s;
}

.Whatsnew-text li:hover {
  transform: translateY(-3%);
  transition: all .3s;
  overflow-y: auto;
}

.Whatsnew-text li a {
  display: block;
}

.Whatsnew-headline-img {
  width: 100%;
  aspect-ratio: 355 / 237;
}

.Whatsnew-headline-img img {
  width: 100%;
  height: 100%;
  border-radius: 1.2em;
  object-fit: cover;
}

.Whatsnew-headline-Time {
  font-family: 'Gilroy-Bold';
  color: #ffffff;
  background-color: var(--primary);
  border-radius: 50px;
  font-size: .7em;
  line-height: 1;
  position: absolute;
  inset: auto 1em 1em auto;
  padding: .7em .9em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Whatsnew-headline-font {
  font-size: var(--font-size-small);
  margin-top: 1em;
  padding: 0 1em;
}

.Whatsnew-headline-font h3 {
  margin-bottom: 5%;
  font-size: var(--font-size-base);
  width: 100%;
  height: auto;
  color: var(--text-color-primary);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.Whatsnew-headline-font p {
  font-size: var(--font-size-small);
  line-height: 1.5;
  width: 100%;
  height: auto;
  color: #1e2124;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  transition: all .3s;
}

.Smallbuttons {
  margin: -1em 0 1em;
  width: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: end;
}

.Whatsnew-page {
  font-family: 'Gilroy-Bold';
  width: auto;
  margin: 0 1%;
  font-size: var(--font-size-small);
}

.Whatsnew-next {
  width: .65%;
  height: auto;
}

.Whatsnew-prev {
  width: .65%;
  height: auto;
}

.Whatsnew-next img {
  width: 100%;
  height: auto;
  float: right;
}

.Whatsnew-prev img {
  width: 100%;
  height: auto;
  float: left;
}

.Whatsnew-next:hover {
  filter: sepia(1) hue-rotate(300deg) saturate(600);
  cursor: pointer;
}

.Whatsnew-prev:hover {
  filter: sepia(1) hue-rotate(300deg) saturate(600);
  cursor: pointer;
}

.Whatsnew-button {
  margin-top: 18%;
}

.Whatsnew-button .button-link:not(.active) {
  display: none;
}

/* #region 底部 */
.footer {
  width: 100%;
  padding-top: 9vw;
  padding-bottom: 3.5vw;
  margin-bottom: 0;
  height: auto;
  border-radius: 0;
  z-index: 1;
  background-image: linear-gradient(to right, #f43a30, var(--primary));
}

.footer-Subject {
  width: 100%;
}

.footer-text {
  width: 100%;
  height: auto;
  display: flex;
  margin-bottom: 2%;
}

.footer-liang {
  width: 29%;
  height: auto;
}

.footer-logo {
  width: 13.62vw;
  height: auto;
}

.footer-logo img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.footer-liang-shi {
  height: auto;
  position: absolute;
  top: 53%;
  left: 0;
  float: left;
}

.footer-liang-ul {
  font-size: var(--font-size-small);
  display: flex;
  align-items: center;
  gap: .7em;
}

.footer-liang-shi li {
  min-width: 2.5em;
  height: 2.5em;
  padding: 0 .4em;
  border-radius: 3em;
  background-color: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  display: flex;
  border: 1px solid var(--primary);
  transition: background-color .3s, border-color .3s;
}

.footer-liang-shi li img {
  width: auto;
  height: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-liang-shi li .footer-liang-codecode {
  width: 5.5em;
  height: auto;
  border: .3em solid #ffffff;
  border-radius: .3em;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 120%);
  opacity: 0;
  z-index: -1;
}

.footer-liang-shi li .footer-liang-codecode img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.footer-liang-shi li .footer-liang-codecode::after {
  content: "";
  width: 0;
  height: 0;
  border-left: .7vw solid transparent;
  border-right: .7vw solid transparent;
  border-bottom: .7vw solid #ffffff;
  position: absolute;
  top: -12%;
  left: 50%;
  transform: translateX(-50%);
}

.footer-liang-shi li:hover {
  border-color: #fff;
  background-color: var(--primary);
}

.footer-liang-shi li:hover img {
  filter: brightness(30000%);
}

.footer-liang-shi li:hover .footer-liang-codecode {
  opacity: 1;
  z-index: 2;
}

.footer-liang-shi li:hover .footer-liang-codecode img {
  filter: brightness(100%);
}

.footer-Good {
  width: 80%;
  height: auto;
  display: flex;
  justify-content: space-between;
}

.footer-link li {
  margin-bottom: .5vw;
}

.footer-link li:first-child {
  margin-bottom: 1.5vw;
}

.footer-link li a {
  color: rgb(255, 255, 255, .6);
  font-size: var(--font-size-extra-small);
  transition: color .3s;
}

.footer-link li:hover a {
  color: #ffffff;
}

.footer-link li:first-child a {
  color: #ffffff;
  font-size: var(--font-size-base);
}

.footer-Below {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 2%;
  border-top: 1px solid rgb(255, 255, 255, .5);
}


.footer-Below-crlf {
  display: block;
  line-height: 1;
  width: 10em;
  height: auto;
  padding: .9em 1em;
  border: 1px solid rgb(245, 122, 123);
  border-radius: 3em;
  cursor: pointer;
  font-size: var(--font-size-extra-small);
  color: #ffffff;
}

.footer-Below-crlf::before {
  content: "";
  position: absolute;
  background: url(../../img/honghuo/icon24.png);
  background-size: .7em .4em;
  background-repeat: no-repeat;
  transform: translateY(-50%);
  top: 50%;
  right: 1em;
  width: .7em;
  height: .4em;
  transition: transform .3s;
}

.footer-Below-Drop:hover .footer-Below-crlf::before {
  transform: translateY(-50%) rotate(180deg);
}

.footer-Below-tuer {
  padding-bottom: 1em;
  font-size: var(--font-size-small);
  width: 140%;
  height: 14em;
  display: none;
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translate(-50%, 0);
}

.footer-Below-tuer>div {
  width: 100%;
  height: 100%;
  padding: .5em 0;
  border-radius: .5em;
  background-color: #F5F5F7;
}

.footer-Below-tuer>div::before {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%) rotate(45deg);
  width: 1em;
  height: 1em;
  border-radius: 0 0 .1em 0;
  background-color: #F5F5F7;
}

.footer-Below-Drop:hover .footer-Below-tuer {
  display: block;
}

.footer-Below-tuer ul::-webkit-scrollbar {
  display: none;
}

.footer-Below-tuer ul {
  z-index: 2;
  overflow: auto;
  width: 100%;
  height: 100%;
  padding: .5em 1em;
}

.footer-Below-tuer li a {
  width: 100%;
  height: auto;
  cursor: pointer;
  transition: all .3s;
  font-size: var(--font-size-extra-small);
  color: rgb(139, 139, 141);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-Below-tuer-line {
  height: .03vw;
  background-color: rgb(238, 225, 240);
  margin: .5vw 0;
}

.footer-Below-tuer-line::before {
  position: absolute;
  content: "";
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgb(231, 28, 32);
}

.footer-Below-tuer ul li:hover .footer-Below-tuer-line::before {
  width: 100%;
  transition: all 1s;
}

.footer-Below-tuer li:hover a {
  color: rgb(231, 28, 32);
}

.footer-Below-text {
  width: 100%;
  height: auto;
  color: rgb(255, 255, 255, .8);
  align-items: center;
  justify-content: right;
  display: flex;
  font-size: var(--font-size-minimum);
}

.footer-Below-text a {
  color: rgb(255, 255, 255, .8);
  margin-left: 2%;
}

@media screen and (max-width: 1000px) {
  .footer-horn {
    width: 100%;
    height: 30px;
  }

  .footer-Chamfering {
    width: 100%;
    height: 30px;
  }

  .footer-Subject {
    width: 100%;
    height: auto;
    position: relative;
    margin-bottom: 10%;
    box-sizing: border-box;
  }

  .footer-text {
    width: 100%;
    height: auto;
    display: flex;
    margin-bottom: 2.5%;
  }

  .footer-liang {
    width: 100%;
    height: auto;
    display: flex;
    align-self: center;
    justify-content: center;
  }

  .footer-logo {
    width: 100%;
    height: auto;
    max-width: 35%;
    display: flex;
    align-self: center;
    justify-content: center;
  }

  .footer-logo img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
  }

  .footer-Below {
    width: 100%;
    height: auto;
    display: flex;
    border-top: 0px solid #b0b0b0;
    /* padding-bottom: 10%; */
    padding-top: 0%;
  }

  .footer-Below-text {
    text-align: center;
    display: block;
    padding-bottom: 10%;
    font-size: var(--font-size-small);
  }

  .footer-Below-text a {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0;
  }

  .footer-liang-shi {
    display: none;
  }

  .footer-Good {
    display: none;
  }

  .footer-Below-Drop {
    display: none;
  }

  .footer-Below-tuer {
    display: none;
  }
}

/* #endregion */

/* #region 底部导航栏*/
.BottomNavigation {
  width: 100%;
  height: auto;
  background-color: rgb(255, 255, 255);
  position: fixed;
  bottom: 0px;
  right: 0;
  z-index: 9999;
  transition: right .8s ease;
  padding: 2% 0;
  display: none;
}

.BottomNavigation-content {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 0;
}

.BottomNavigation li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20%;
}

.BottomNavigation li a {
  text-align: center;
  color: #9a9a9a;
}

.BottomNavigation .on a .Image img {
  filter: sepia(1) hue-rotate(300deg) saturate(600);
}

.BottomNavigation .on a .writing {
  text-align: center;
  color: var(--primary);
}

.Image img {
  width: 50%;
  height: 50%;
}

.third img {
  width: 65%;
  height: 65%;
}

.writing {
  font-size: clamp(12px, .7vw, .7vw);
}

.button-bottom {
  position: fixed;
  bottom: 10%;
  right: -20vw;
  display: flex;
  flex-direction: column;
  gap: .6em;
  z-index: 80;
  transition: right .3s, opacity .3s;
  opacity: 0;
}

.button-bottom.show {
  right: 2%;
  opacity: 1;
}

.Backtotop {
  width: 3em;
  height: 3em;
  border-radius: 50%;
  background: #000000;
  cursor: pointer;
  border: 1px solid #000000;
}

.Backtotop.red {
  background-color: var(--primary);
  border-color: #fff;
}

.Backtotop-icon {
  display: block;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.Backtotop-text {
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center;
  line-height: 1;
  top: 50%;
  right: 0;
  width: 3em;
  height: 3em;
  color: #ffffff;
  padding: 0 0 0 .8em;
  border-radius: 2em;
  transition: width .3s, opacity .3s;
  opacity: 0;
  transform: translate(0, -50%);
  background-color: #000000;
  pointer-events: none;
}

.Backtotop:hover .Backtotop-icon {}

.Backtotop:hover .Backtotop-text {
  width: 10em;
  pointer-events: all;
  opacity: 1;
}

.Backtotop-image {
  padding-right: 1em;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-100%, -50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.Backtotop-image-box {
  box-shadow: var(--box-shadow-2);
  border-radius: .3em;
  background: #fff;
  padding: .3em;
  width: 6em;
  height: 6em;
}

.Backtotop-image img {
  width: 100%;
  height: auto;
  z-index: 2;
}

.Backtotop-image-box::before {
  content: "";
  width: 1em;
  height: 1em;
  z-index: 1;
  position: absolute;
  background-color: #fff;
  top: 50%;
  right: 0;
  border-radius: .1em;
  transform: translate(40%, -50%) rotate(45deg);
}

.Backtotop:hover .Backtotop-image {
  opacity: 1;
  pointer-events: all;
}

.Backtotop:hover .Backtotop-image img {
  transition: all .3s;
  filter: brightness(100%);
}

@media screen and (max-width: 1000px) {
  .cssbuttons-button {
    width: 24.78vw;
    padding-left: 2.5vw;
    height: 5em;
    background: #f0f0f0;
    color: rgb(0, 0, 0);
    font-family: inherit;
    font-size: clamp(12px, 1vw, 1vw);
    border-radius: 200px;
    border: none;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    cursor: pointer;
  }

  .cssbuttons-button .icon {
    background: var(--primary);
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: clamp(30px, 3vh, 3vh);
    width: clamp(30px, 3vw, 3vw);
    border-radius: 50%;
    right: 1em;
    transition: all .3s;
  }

  .cssbuttons-button .icon img {
    width: 40%;
    height: 40%;
  }

  .cssbuttons-button:hover {
    background: var(--primary);
    color: #ffffff;
  }

  .cssbuttons-button:hover .icon {
    background: #ffffff;
  }

  .cssbuttons-button:hover .icon img {
    filter: sepia(1) hue-rotate(300deg) saturate(600);
  }

  .banner-animation {
    display: none;
  }

  .jiao {
    display: none;
  }

  .jiao1 {
    display: block;
  }

  .jiao2 {
    display: block;
  }

  /* 文本 */
  .business {
    padding: 10vw 5vw !important;
    width: 100%;
    height: auto;
    position: relative;
  }

  .business-text {
    width: 100%;
    height: 5%;
    color: rgb(247, 247, 247);
    font-size: 8.34vw;
    font-weight: 1000;
    position: absolute;
    top: -1%;
    left: 0%;
    z-index: 1;
    display: flex;
    justify-content: center;
  }

  .business-writing {
    width: 100%;
    height: auto;
    flex-direction: column;
  }

  .business-file {
    width: 100%;
  }

  .business-line {
    width: 100%;
    height: auto;
  }

  .business-pag {
    width: 100%;
    text-align: center;
    color: var(--primary);
  }

  .business-cont {
    width: 100%;
    height: auto;
    font-size: 4vw;
    font-size: clamp(20px, 4vw, 4vw);
    margin-bottom: 20px;
    margin-top: 0;
    position: relative;
    font-weight: 600;
  }

  .business-cont>div {
    width: 100%;
    height: auto;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  .business-cont>div br {
    display: none;
  }

  .business-enot p {
    line-height: 1.8;
  }

  .business-botn {
    margin: 2.5% 0 10%;
    display: flex;
    justify-content: center;
  }

  .business-right {
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .Slippery {
    flex-direction: column;
    gap: .8em;
  }

  .smooth {
    padding: 0;
    margin: 0%;
  }

  .smooth:hover {
    transform: translateY(-0%);
    transition: all .3s;
    overflow-y: auto;
  }

  .smooth>a {
    gap: 0;
    align-items: center;
  }

  .smooth:nth-child(odd)>a {
    flex-direction: row;
  }

  .smooth:nth-child(even)>a {
    flex-direction: row-reverse;
  }

  .smooth-cont {
    width: 50%;
    padding: 0 .8em;
  }

  .smooth-img {
    width: 50%;
  }

  .smooth-text {
    margin-top: .3em;
    margin-bottom: 0%;
  }

  .smooth-icon {
    font-size: 8px;
  }

  .digit {
    width: 100%;
    height: auto;
    position: relative;
  }

  .digit-horn {
    width: 100%;
    height: 30px;
  }

  .digit-horn2 {
    width: 100%;
    height: 30px;
    top: -1px;
  }

  .digit-Chamfering {
    width: 100%;
    height: 30px;
  }

  .digit-Chamfering2 {
    width: 100%;
    height: 30px;
  }

  .cebear {
    display: flex;
    transition: transform .5s ease;
    position: relative;
  }

  .Play {
    flex-shrink: 0;
    display: block;
  }

  .Subsidiary-right {
    width: 100%;
    height: auto;
  }

  .Subsidiary-img {
    display: none;
  }

  .Subsidiary-img1 {
    width: 100%;
    float: left;
    position: relative;
    display: block;
    padding-bottom: 5%;
  }

  .Subsidiary-img1 img {
    width: 100%;
    height: auto;
    border-radius: 1em;
  }

  .Subsidiary-jpg1 {
    width: 30%;
    height: auto;
    float: right;
    display: flex;
    cursor: pointer;
    position: absolute;
    bottom: -0%;
    right: 0%;
    border: 5px solid #ffffff;
    border-radius: 15px;
  }

  .Subsidiary-jpg1 img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }

  .Subsidiary-left {
    width: 100%;
    height: auto;
    position: relative;
    left: auto;
    top: auto;
    margin-bottom: 3%;
  }

  .Play-h6 {
    font-size: var(--font-size-extra-large);
    margin-top: 0%;
    margin-bottom: 6%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bolder;
  }

  .Subsidiary-name .h6 {
    display: none;
  }

  .Subsidiary-jgp {
    color: var(--primary);
  }

  .Subsidiary-picdesc {
    display: block;
  }

  .Subsidiary-botn {
    display: none;
  }

  .push {
    display: none;
  }

  .puzh {
    display: none;
  }

  .Subsidiary .swiper-pagination {
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 8vw;
    left: 0%;
  }

  .Subsidiary .swiper-pagination-bullet {
    background-color: rgb(0, 0, 0, .1) !important;
  }

  .Whatsnew-content {
    width: 100%;
    display: block;
  }

  .Whatsnew-caption {
    width: 100%;
    position: static;
  }

  .Whatsnew-cap h5 {
    font-size: var(--font-size-extra-large);
    text-align: center;
  }

  .Whatsnew-cap h4 {
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .Whatsnew-tion {
    width: 100%;
    margin: 1.2em 0 1.2em;
    text-align: center;
    display: flex;
  }

  .Whatsnew-tion li {
    flex: 1;
    border-left: 0px;
    border-bottom: .15em solid rgb(200, 199, 203);
    color: #a0a0a0;
    padding: 3%;
    margin-left: 0%;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .Whatsnew-frame {
    padding-bottom: 20%;
  }

  .Whatsnew-headline {
    width: 100%;
    margin: 0;
  }

  .Whatsnew-headline-page {
    padding: 0;
    margin: 0;
  }

  .Whatsnew-headline-ul {
    width: 100%;
    gap: 1.5em;
    grid-template-columns: repeat(1, 1fr);
  }

  .Whatsnew-text li {
    width: 100%;
    margin-right: 0%;
  }

  .Whatsnew-text li:hover {
    transform: translateY(-0%);
    transition: all .3s;
    overflow-y: auto;
  }

  .Whatsnew-text li a {
    display: flex;
    align-items: center;
    gap: 1em;
  }

  .Whatsnew-headline-img {
    width: 40%;
    height: 100%;
    margin: 0;
  }

  .Whatsnew-headline-img img {
    border-radius: .6em;
  }

  .Whatsnew-headline-font {
    flex: 1;
    margin: 0;
    padding: 0%;
    display: flex;
    align-items: center;
    justify-items: center;
  }

  .Whatsnew-headline-font h3 {
    margin: auto 0;
    -webkit-line-clamp: 3;
  }

  .Whatsnew-headline-font p {
    display: none;
  }

  .Whatsnew-button {
    z-index: 2;
    margin: 0;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .Smallbuttons {
    display: none;
  }

  .BottomNavigation {
    display: block;
  }
}

/* #endregion */

/* #region 公司简介 */

.Details {
  display: flex;
  align-items: center;
  gap: 8vw;
  z-index: 4;
}

.Details .text-block {
  width: 39%;
}

.Details-tag {
  position: absolute;
  bottom: 0;
  font-size: 6vw;
  font-weight: bold;
  color: rgb(0, 0, 0, .03);
  line-height: 1;
  height: .78em;
  overflow: hidden;
}

.Details-content-fig {
  font-size: var(--font-size-small);
  width: 53%;
}

.Details-content-fig-img {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Details-content-fig-img img {
  width: 100%;
  aspect-ratio: 721 / 403;
  object-fit: cover;
  border-radius: 3.5em 1em 1em 1em;
}

.Details-content-fig-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(110%);
  width: 100%;
  background-image: url(../../img/honghuo/background.png), linear-gradient(to right, rgb(223, 16, 21), rgb(223, 16, 21));
  background-repeat: no-repeat;
  background-position: center;
  background-size: 65%, cover;
  padding: 3.8em;
  border-radius: 1em 1em 3.5em 1em;
}

.Details-content-fig-Numbers {
  width: 100%;
}

.Details-content-fig-Numbers.space-around {
  justify-content: space-around;
}

.Details-content-fig-Numbers {
  display: flex;
  justify-content: space-between;
}

.Details-content-fig-Numbers li {
  text-align: center;
}

.Details-content-fig-Numbers-top {
  display: inline-flex;
  width: auto;
  height: auto;
  font-size: var(--font-size-extra-large);
  color: #ffffff;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  text-align: center;
  font-family: 'Gilroy-Bold';
}

.Details-content-fig-Numbers.maximum .Details-content-fig-Numbers-top {
  font-size: max(35px, 4.2vw);
}

.Details-content-fig-Numbers-top span {
  position: absolute;
  top: .7em;
  right: 0;
  transform: translateX(100%);
  font-size: .3em;
  font-weight: bold;
  margin-left: 3px;
  transition: all .3s;
}

.Details-content-fig-Numbers-bottom {
  width: 100%;
  height: auto;
  font-size: var(--font-size-extra-small);
  color: #ffffff;
}

.Businessarea .text-block {
  margin-top: 2vw;
  display: flex;
  flex-wrap: wrap;
  gap: 20%;
}

.Businessarea .text-block__title {
  width: 30%;
}

.Businessarea .text-block__subtitle {
  width: 100%;
  padding: 0;
}

.Businessarea .text-block__text {
  width: 50%;
  margin: 0;
}

.Businessarea-accordion {
  margin-top: 4vw;
}

.Aspiretobe {
  background-image: url(../../img/honghuo/icon39.png);
  background-repeat: no-repeat;
  background-position: 100% bottom;
  background-size: 100% auto;
  display: flex;
  align-items: center;
  gap: 10%;
}

.Aspiretobe .text-block {
  width: 40%;
}

.Aspiretobe .text-block__subtitle {
  padding: 0;
}

.Aspiretobe-Image {
  width: 50%;
}

.Aspiretobe-Image-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.Aspiretobe-Image-box {
  position: absolute;
  top: 0%;
  left: 18%;
}

.Aspiretobe-Image-box>div {
  position: relative;
  width: var(--parent-box);
  height: var(--parent-box);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  --parent-box: 32.5vw;
  --gap: 40deg;
  --translate: calc(-1 * (var(--parent-box) / 2));
  --offset: 0;
}

.Aspiretobe-Image-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.Aspiretobe-Image-icon {
  width: 6.8em;
  height: 6.8em;
  cursor: pointer;
  position: absolute;
  border: .4em solid #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: var(--primary);
  text-align: center;
  padding: 0 .7em;
  font-size: var(--font-size-small);
}

.Aspiretobe-Image-icon:nth-of-type(1) {
  transform: rotate(calc(var(--gap) * 0)) translateY(var(--translate)) rotate(calc(var(--gap) * 0));
}

.Aspiretobe-Image-icon:nth-of-type(2) {
  transform: rotate(calc(var(--gap) * 1)) translateY(var(--translate)) rotate(calc(var(--gap) * -1));
}

.Aspiretobe-Image-icon:nth-of-type(3) {
  transform: rotate(calc(var(--gap) * 2)) translateY(var(--translate)) rotate(calc(var(--gap) * -2));
}

.Aspiretobe-Image-icon:nth-of-type(4) {
  transform: rotate(calc(var(--gap) * 3)) translateY(var(--translate)) rotate(calc(var(--gap) * -3));
}

.Aspiretobe-Image-icon:nth-of-type(5) {
  transform: rotate(calc(var(--gap) * 4)) translateY(var(--translate)) rotate(calc(var(--gap) * -4));
}

.Aspiretobe-Image-icon:nth-of-type(6) {
  transform: rotate(calc(var(--gap) * 5)) translateY(var(--translate)) rotate(calc(var(--gap) * -5));
}

@media screen and (max-width: 1000px) {

  .Details,
  .Aspiretobe {
    flex-direction: column;
    gap: 20px;
  }


  .Businessarea .text-block {
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
  }

  .Details-content-fig,
  .Details .text-block,
  .Businessarea .text-block__title,
  .Businessarea .text-block__text,
  .Aspiretobe .text-block,
  .Aspiretobe-Image {
    width: 100%;
  }

  .Aspiretobe .text-block,
  .Details .text-block,
  .Businessarea .text-block__subtitle,
  .Businessarea .text-block__text {
    text-align: center;
    margin: 0;
  }

  .Businessarea .text-block {
    justify-content: center;
  }

  .Businessarea .text-block__title {
    text-align: center;
    margin-top: .5em;
    width: 60%;
  }

  .Details-content-fig {
    font-size: var(--font-size-extra-small);
  }

  .Details-content-fig-img img {
    border-radius: 2.5em .7em .7em .7em;
  }

  .Details-content-fig-bottom {
    margin-top: .5em;
    position: relative;
    bottom: auto;
    left: auto;
    transform: translate(0);
    border-radius: .7em .7em 2.5em .7em;
    padding: 1.4em 2.5em 1.8em 2.5em;
  }

  .Details-content-fig-Numbers {
    flex-wrap: wrap;
    gap: 1em 0;
  }

  .Details-content-fig-Numbers li:nth-child(2) {
    min-width: 50%;
    margin: 0 auto;
  }

  .Details-content-fig-Numbers li:nth-child(4),
  .Details-content-fig-Numbers li:nth-child(5) {
    width: 50%;
  }

  .Details-content-fig-Numbers-top {
    font-size: var(--font-size-maximum);
  }

  .Aspiretobe {
    gap: 30px;
    padding-bottom: 15vw !important;
  }

  .Aspiretobe-Image-box {
    top: 3%;
    left: 18%;
  }

  .Aspiretobe-Image-box>div {
    --parent-box: 70vw;
    --gap: 45deg;
  }

  .Aspiretobe-Image-icon {
    width: 5.8em;
    height: 5.8em;
    border: .3em solid #ffffff;
    padding: 0 .3em;
  }
}

/* #endregion */

/* #region 联系我们 */
.Contact-button {
  width: 8.22vw;
  height: 2.8em;
  background: #f0f0f0;
  color: rgb(0, 0, 0);
  font-size: clamp(10px, .7vw, .7vw);
  border-radius: 200px;
  font-weight: 600;
  border: none;
  display: flex;
  padding-left: 1vw;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
}

.Contact-button .Contact-icon {
  background: var(--primary);
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1.7em;
  width: 1.7em;
  border-radius: 50%;
  right: .8em;
  transition: all .3s;
}

.Contact-button .Contact-icon img {
  width: 40%;
  height: 40%;
}

.Contact-button:hover {
  transition: all 1s;
  background: var(--primary);
  color: #ffffff;
}

.Contact-button:hover .Contact-icon {
  transition: all 1s;
  background: #ffffff;
}

.Contact-button:hover .Contact-icon img {
  filter: sepia(1) hue-rotate(300deg) saturate(600);
}

.Contact-picture {
  width: 100%;
  height: auto;
}

.Contact-picture img {
  width: 100%;
  border-radius: 3vw 1vw 3vw 1vw;
}

.Contact-picture-text {
  width: 32%;
  height: 17%;
  padding: 1% 0;
  position: absolute;
  bottom: 4px;
  left: 0;
  background: url(../../img/honghuo/background.png) no-repeat left center var(--primary);
  background-size: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 1vw 0 1vw;
  color: #ffffff;
  font-size: clamp(12px, 1.5vw, 1.5vw);
  font-weight: 600;
}

.Contact-introduce {
  padding: 4% 5.5%;
  border-radius: 1vw;
  margin-top: 3%;
  font-size: var(--font-size-small);
  background-color: rgb(255, 255, 255);
  line-height: 1.8;
  font-weight: 600;
}

.Contact-introduce-text {
  display: flex;
  align-items: baseline;
}

.Contact-introduce-text+.Contact-introduce-text {
  margin-top: 1em;
}

.Contact-introduce-text-h1 {
  width: 2.2em;
  margin-right: 1.8em;
  white-space: nowrap;
}

.Contact-introduce-text-h2 {
  color: rgb(76, 76, 76);
  margin-right: 1em;
  font-weight: normal;
}

.Contact-content-QRcode {
  font-size: var(--font-size-extra-small);
  width: 100%;
  height: auto;
  padding: 4%;
  padding-bottom: 10%;
  border-radius: 1vw 1vw 3.5vw 1vw;
  margin-top: 3%;
  background-color: rgb(255, 255, 255);
  display: flex;
  justify-content: space-between;
}

.QRcode-box {
  width: 18%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.QRcode-box:nth-of-type(5n) {
  margin-right: 0%;
}

.QRcode-box>img {
  width: 80%;
  height: auto;
  margin-bottom: .5em;
  box-shadow: var(--box-shadow-2);
}

.QRcode-button {
  cursor: pointer;
  width: 100%;
  min-width: 8em;
  height: 2.8em;
  background: rgb(240, 240, 240);
  color: var(--text-color-primary);
  font-size: var(--font-size-extra-small);
  border-radius: 2em;
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: all .3s;
}

.QRcode-button .QRcode__icon {
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.8em;
  min-width: 2.8em;
  border-radius: 2em;
  padding: 0 .5em;
  border: 1px solid #000;
  transition: background-color .3s, border-color .3s;
}

.QRcode-button .QRcode__title {
  flex: 1;
  padding-right: 0.8em;
  text-align: center;
}


.QRcode-button .QRcode__icon img {
  width: auto;
  height: 1.2em;
  filter: brightness(10);
  transition: filter .3s;
}

.QRcode-button .QRcode__icon.small img {
  height: .9em;
}

.QRcode-button:hover {
  color: #fff;
  background-color: var(--primary);
}

.QRcode-button:hover .QRcode__icon {
  background-color: #fff;
  border-color: var(--primary);
}

.QRcode-button:hover .QRcode__icon img {
  filter: brightness(1);
}

@media screen and (max-width: 1000px) {
  .Contact-picture img {
    border-radius: 1.5vw 3vw 3vw 3vw;
  }

  .Contact-introduce {
    border-radius: 3vw;
    padding: 8%;
  }

  .Contact-introduce-text-h1 {
    margin-right: .8em;
  }

  .Contact-introduce .button-link {
    display: none;
  }

  .QRcode-button {
    width: 78%;
  }

  .Contact-content-QRcode {
    padding: 8% 4%;
    border-radius: 3vw 3vw 1.5vw 3vw;
  }

  .Contact-content-QRcode {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2em 1em;
  }

  .QRcode-box {
    width: 100%;
  }
}

/* #endregion */

/* #region 企业文化 */
.CorporateCulture {
  background: url(../../img/honghuo/Image25.jpg);
  background-size: 100% 100%;
  display: flex;
  gap: 1em;
}

.Corporate-list {
  display: grid;
  gap: 1em;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1em;
  flex: 1;
  height: 30vw;
}

.Corporate-item {
  padding: 2.5em 1em 2em 2em;
  color: var(--text-color-primary);
  flex: 1;
  display: block;
  transition: all .3s;
  background-color: #ffff;
  border-radius: 1em;
  overflow: hidden;
  transition: color .3s, background-color .3s;
}

.Corporate-item.whole {
  padding: 4em 3.5em;
  width: 50%;
  height: 30vw;
}

.Corporate__cover {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.Corporate-text {
  width: 100%;
}

.Corporate-text-h1 {
  width: 100%;
  height: auto;
  font-size: var(--font-size-large);
  font-weight: 600;
}

.Corporate-text-h2 {
  font-family: 'Gilroy-Bold';
  width: 100%;
  height: auto;
  color: var(--primary);
  font-size: var(--font-size-medium);
  font-weight: bold;
  transition: color .3s;
}

.Corporate-text-h3 {
  font-size: var(--font-size-extra-small);
  color: rgb(0, 0, 0, .7);
  line-height: 1.8;
  margin-top: .3vw;
  transition: color .3s;
}

.Corporate-list .Corporate-text-h3 {
  font-size: var(--font-size-extra-small);
}

.Corporate-item.whole .Corporate-text-h3 {
  font-size: var(--font-size-base);
}

.Corporate-item:not(.whole):hover {
  background-color: var(--primary);
  color: #fff;
}

.Corporate-item:not(.whole):hover .Corporate-text-h2 {
  color: rgb(255, 255, 255, .6);
}

.Corporate-item:not(.whole):hover .Corporate-text-h3 {
  color: rgb(255, 255, 255, .9);
}

@media screen and (max-width: 1350px) {
  .Corporate-item.whole {
    width: 40%;
    flex: none;
    height: 38vw;
  }

  .Corporate-list {
    height: 38vw;
  }
}

@media screen and (max-width: 1000px) {
  .CorporateCulture {
    flex-direction: column;
    gap: .5em;
  }

  .Corporate-item.whole {
    padding: 2.5em 2em;
    width: 100%;
    height: 80vw;
  }

  .Corporate-list {
    gap: .5em;
    height: 40vw;
  }

  .Corporate-item {
    line-height: 1.2;
    border-radius: .7em;
    padding: 1.2em .5em 1em 1em;
  }

  .Corporate-text-h1 {
    font-size: var(--font-size-large);
  }

  .Corporate-text-h2 {
    font-size: var(--font-size-small);
  }

  .Corporate-text-h3 {
    line-height: 1.2;
  }

  .Corporate-item.whole .Corporate-text-h3 {
    line-height: 1.5;
  }
}

/* #endregion */

/* #region 理念列表*/

.idea {
  color: rgb(255, 255, 255, .7);
  display: flex;
  align-items: center;

  --title-size: var(--font-size-large);
  --en-size: var(--font-size-large);
  --index-size: var(--font-size-medium);
  --text-size: var(--font-size-small);
  --item-title-size: var(--font-size-small);

  --border-color: rgb(255, 255, 255, .5);

  --title-color: #fff;
  --en-color: #fff;
  --index-color: #fff;
  --text-color: rgb(255, 255, 255, .7);
  --item-title-color: #fff;
}

.idea+.idea {
  margin-top: 4em;
}

.idea.deep {
  --border-color: rgb(0, 0, 0, .1);


  --title-color: var(--text-color-primary);
  --en-color: var(--primary);
  --index-color: var(--primary);
  --text-color: var(--text-color-secondary);
  --item-title-color: var(--text-color-primary);
}

.idea.large {
  --title-size: var(--font-size-extra-large);
  --en-size: var(--font-size-extra-large);
  --index-size: var(--font-size-large);
  --text-size: var(--font-size-medium);
  --item-title-size: var(--font-size-medium);
}

.idea-title {
  width: 28%;
}

.idea-title-h1 {
  color: var(--title-color);
  font-weight: bold;
  font-size: var(--title-size);
  margin-bottom: 2%;
}

.idea-title-en {
  font-family: 'Gilroy-Bold';
  font-size: var(--en-size);
  color: var(--en-color);
  font-weight: bold;
}

.idea-list {
  width: 72%;
  display: flex;
}

.idea-list ul {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em 0;
}

.idea-list.columns-4 ul {
  grid-template-columns: repeat(4, 1fr);
}

.idea-list ul li {
  width: 100%;
  height: auto;
  padding: 0 15%;
  border-left: 1px solid var(--border-color);
}

.idea-item-index {
  font-family: 'Gilroy-Bold';
  font-weight: bold;
  font-size: var(--index-size);
  color: var(--index-color);
  line-height: 1;
  margin-bottom: .5em;
}

.idea-item-title {
  color: var(--item-title-color);
  font-size: var(--item-title-size);
  font-weight: bold;
}

.idea-item-text {
  line-height: 1.5;
  font-size: var(--text-size);
  color: var(--text-color);
}

.idea-item-text.bold {
  font-weight: bold;
}

.idea-item-text.deep {
  --text-color: var(--text-color-primary)
}

@media screen and (max-width: 1000px) {
  .idea {
    flex-direction: column;
  }

  .idea+.idea {
    margin-top: 2em;
  }

  .idea-title {
    text-align: center;
    width: 100%;
  }

  .idea-title-en {}

  .idea-list {
    margin-top: .8em;
    width: 100%;
  }

  .idea-list ul {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2em 0;
  }

  .idea-list ul li:nth-child(odd) {
    border: 0;
  }
}

/* #endregion */

/* #region 证书组*/

.enterprise {
  margin-top: 6vw;
  font-size: var(--font-size-small);
  width: 100%;
  height: auto;
  display: flex;
  gap: 1em;
}

.enterprise-box {
  flex: 1;
  overflow: hidden;
  border-radius: .7em;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: transform .3s;
}

.enterprise-box:hover {
  transform: translateY(-5%);
}

.enterprise-box::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../../img/honghuo/opBg.png);
  pointer-events: none;
}

.enterprise-box img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.enterprise-box-text {
  position: absolute;
  z-index: 2;
  left: 10%;
  bottom: 10%;
}

.enterprise-box-text-h1 {
  font-weight: bold;
  color: #fff;
  font-size: var(--font-size-large);
}

.enterprise-box-text-h2 {
  font-weight: bold;
  font-family: 'Gilroy-Bold';
  color: var(--primary);
  font-size: var(--font-size-base);
}


.enterprise-box-text-p {
  color: rgb(255, 255, 255, .8);
  font-size: var(--font-size-small);
  margin-top: 1em;
}

@media screen and (max-width: 1000px) {
  .enterprise {
    margin-top: 20px;
    flex-direction: column;
  }

  .enterprise-box:hover {
    transform: translateY(0);
  }

  .enterprise-box img {
    width: 100%;
    height: auto;
    aspect-ratio: 673 / 257;
  }

  .enterprise-box-text {
    left: 1.5em;
    width: 100%;
  }

  .enterprise-box-text-p {
    margin-top: .2em;
  }

  .enterprise-box-text-h2 br,
  .enterprise-box-text-p br {
    display: none;
  }
}

/* #endregion */

/* #region 证书页面 */
.Honors {
  width: 100%;
  aspect-ratio: 1920 / 880;
  background: url(../../img/honghuo/Image31.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  border-radius: 3.5vw 0 0 0;
}

.Honors-text-h1 {
  color: var(--primary);
  font-size: var(--font-size-large);
  font-family: 'Gilroy-Bold';
  font-weight: 600;
}

.Honors-text-h2 {
  color: var(--text-color-primary);
  font-size: var(--font-size-extra-large);
  font-weight: 600;
}

.Honors-image {
  height: auto;
  position: absolute;
  display: flex;
  align-items: end;
  gap: max(6px, 2vw);
}

.Honors-image.first {
  top: 42%;
  left: 27%;
}

.Honors-image.second {
  top: 29.5%;
  left: 50%;
}

.Honors-image.third {
  top: 53.5%;
  left: 53.5%;
}

.Honors-image img {
  z-index: 2;
  width: 100%;
  height: auto;
  display: block;
}

.Honors-image-box.long img {
  aspect-ratio: 178 / 245;
  width: 9.27vw;
}

.Honors-image-box.wide img {
  aspect-ratio: 263 / 185;
  width: 13.70vw;
}

.Honors-image-box::before {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: .4em;
  background-color: red;
  border-radius: 100%;
  box-shadow: .5em .1em .4em .3em rgb(0, 0, 0, .3)
}

.Honors-list {
  background-color: #EEEEEE;
  border-radius: 0 0 3.5vw 3.5vw;
}

@media screen and (max-width: 1000px) {
  .Honors {
    aspect-ratio: 1920 / 1400;
    background-size: 161%;
  }

  .Honors-image.first {
    top: 45%;
    left: 15%;
  }

  .Honors-image.second {
    top: 31.5%;
    left: 52%;
  }

  .Honors-image.third {
    top: 56.5%;
    left: 57.5%;
  }

  .Honors-image-box.long img {
    width: 13vw;
  }

  .Honors-image-box.wide img {
    width: 19vw;
  }
}

/* #endregion */

/* #region 新闻详情 */

.article {
  padding: 0 0 5%;
  width: 100%;
  height: auto;
}

.article-info {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--font-size-small);
  color: var(--text-color-primary);
}

.article-info__title {
  font-size: var(--font-size-large);
  width: 100%;
  height: auto;
  font-weight: bold;
  margin-right: 4%;
  line-height: 1.4;
}

.article-info__date {
  font-weight: bold;
  height: auto;
  padding-left: 2em;
  font-size: var(--font-size-large);
  color: var(--primary);
  text-align: center;
  border-left: 1px solid rgb(225, 225, 225);
  font-family: 'Gilroy-Bold';
}

.article__data {
  margin-top: 1.2em;
  font-size: var(--font-size-extra-small);
  display: flex;
  align-items: center;
  gap: 10%;
}

.article__hr {
  width: 100%;
  height: 1px;
  border-bottom: 1px solid rgb(225, 225, 225);
  margin: 1.6em 0;
}

.article-content * {
  all: revert;
}

.article-content img {
  max-width: 100%;
}

.article-annex {
  width: 100%;
  height: auto;
  float: left;
  margin: 5% 0;
  padding-bottom: 2.5%;
  border-bottom: 1px solid rgb(225, 225, 225);
}

.article-annex__title {
  font-size: var(--font-size-medium);
  font-weight: bold;
  width: 100%;
  height: auto;
  float: left;
  color: var(--text-color-primary);
  margin-bottom: 2%;
}

.article-annex-item {
  line-height: 1;
  width: 100%;
  margin: .8em 0;
  padding: .9em 1em;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  border-radius: .4em;
  transition: all .3s;
  overflow: hidden;
}

.article-annex-item__icon {
  width: 70%;
  height: auto;
  display: flex;
  justify-content: left;
  align-items: center;
}

.article-annex-item__icon img {
  width: auto;
  height: 1em;
  margin-right: .3em;
  opacity: .5;
}

.article-annex-item__icon div {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-decoration: none;
}

.article-annex-item__btn {
  margin-left: auto;
  height: auto;
  color: #fff;
  display: flex;
  justify-content: right;
  align-items: center;
  white-space: nowrap;
}

.article-annex-item__btn img {
  width: auto;
  height: 1em;
  margin-left: .2em;
}

.article-annex-item:hover {
  background-color: var(--primary);
  color: #fff;
}

.article-annex-item:hover .article-annex-item__icon img {
  filter: brightness(10) saturate(100%) invert(100%);
  opacity: 1;
}

.article-more {
  display: inline-block;
  width: 100%;
  height: auto;
}

.article-more a {
  /* 溢出隐藏 */
  overflow: hidden;

  width: 100%;
  height: auto;
  line-height: 3;
  display: flex;
  justify-content: left;
  align-items: center;
  transition: all .3s;
}

.article-more a div:nth-child(1) {
  white-space: nowrap;
  color: var(--primary);
  font-weight: 600;
  overflow: hidden;
}

.article-more a div:nth-child(2) {
  color: rgb(85, 85, 85);
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-decoration: none;
}

.article-more a:hover {
  transform: translateY(-15%);
}

@media screen and (max-width: 1000px) {

  .article {
    margin-top: 0;
  }

  .article-info {
    flex-direction: column-reverse;
    align-items: self-start;
  }

  .article-info__date {
    display: flex;
    align-items: center;
    padding: 0;
    border: 0;
  }

  .article-info__title,
  .article__data {
    margin: 20px 0 0;
  }

  .article__hr {
    margin: 20px 0;
  }
}

/* #endregion */

/* #region 组织架构*/
.Organization {
  aspect-ratio: 1414 / 941;
  background: url(../../img/honghuo/Image37.jpg);
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
}

.Organization-img {
  width: 65%;
  height: auto;
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
}

.Organization-img img {
  width: 100%;
  height: auto;
}

.Organization-text {
  position: absolute;
  bottom: 3%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14vw;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
}

@media screen and (max-width: 1000px) {
  .Organization {
    aspect-ratio: 1920 / 1850;
  }

  .Organization-img {
    width: 90%;
  }
}

/* #endregion */

/* #region 产品详情*/
.product-item {
  display: flex;
  gap: 3.7%;
}

.product-view {
  width: 35.1%;
  height: auto;
}

.product-view-box {
  position: sticky;
  top: 2em;
}

.prouct-image-group {
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  background-color: #ffffff;
  border: 4px solid var(--primary);
  overflow: hidden;
  border-radius: .8em;
}

.prouct-cover-swiper {
  width: 100%;
  height: 100%;
  display: block;
}

.prouct-cover-swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform .5s ease;
}

.prouct-cover-swiper .swiper-slide {
  width: 100%;
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.prouct-cover-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prouct-pagination-swiper {
  position: absolute;
  bottom: 1.5em;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding: 0 1em;
  /* width: 6em; */
}

.prouct-pagination-swiper .swiper-wrapper {
  display: flex;
  justify-content: center;
  gap: .5em;
  width: 100%;
}

.prouct-pagination-swiper .swiper-slide {
  min-width: 45px;
  max-width: calc(100% / 6 - .4em);
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid rgb(203, 203, 203);
  background-color: #Fff;
  border-radius: .3em;
  transition: border-color .3s;
}

.prouct-pagination-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prouct-pagination-swiper .swiper-slide.swiper-slide-thumb-active {
  border-color: var(--primary);
}

.prouct-button-group {
  width: 100%;
  height: auto;
  margin-top: 2.5%;
  display: flex;
  flex-wrap: wrap;
  gap: .5em;
  font-size: var(--font-size-large);
  font-weight: 400;
}

.prouct-button-group .t-button.whole {
  padding: 1.15em 0;
}

.prouct-button-group .t-button:not(.whole) {
  font-size: var(--font-size-medium);
  flex: 1;
  padding: 1.2em;
}

.product-detail {
  width: 61.2%;
  margin-top: 2%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  font-size: var(--font-size-small);
  color: var(--text-color-primary);
}

.product-detail .detail-title {
  width: 100%;
  height: auto;
}

.product-detail .detail__title {
  width: 100%;
  height: auto;
  padding-bottom: .5em;
  font-weight: bold;
  font-size: var(--font-size-large);
}

.product-detail .detail__text {
  width: 100%;
  height: auto;
  line-height: 2;
}

.product-detail .detail-info__text {
  flex: 1;
}

.product-detail .details-card {
  width: 100%;
  height: auto;
  padding: 1.5em;
  background-color: #fff;
  border-radius: 1em;
  overflow: hidden;
  box-shadow: var(--box-shadow-1);
}

.product-detail .details-card__title {
  width: 100%;
  height: auto;
  padding-left: .8em;
  margin: .3em 0 .9em 0;
  font-weight: bold;
  font-size: var(--font-size-medium);
  line-height: 1;
}

.product-detail .details-card__title.minbot {
  margin-bottom: .3em;
}

.product-detail .details-card__title::after {
  content: "";
  width: .2em;
  height: 1em;
  border-radius: 1em;
  background: var(--primary);
  position: absolute;
  bottom: 0%;
  left: .5%;
  transform: translateX(-50%);
}

.product-detail .more-product ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(1, 1fr);
  grid-gap: 10px;
  justify-items: center;
  align-items: center;
  justify-content: center;
  align-content: center;
}

.product-detail .details-rich-text {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.product-detail .details-rich-text img {
  max-width: 100%;
  height: auto;
}

.product-detail .more-product-swiper {
  margin-bottom: 1em;
  width: 100%;
  height: auto;
  z-index: 100;
  display: block;
}

.product-detail .more-product-wrapper {
  display: flex;
  transition: transform .5s ease;
}

.product-detail .more-product {
  min-width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-detail .more-product-swiper .swiper-pagination {
  width: 100%;
  height: auto;
  position: absolute;
  top: 7%;
  right: 0%;
  transform: translateY(-350%);
  text-align: center;
  z-index: 10;
  cursor: pointer;
  justify-content: flex-end;
}

.more-product-swiper .swiper-button {
  justify-content: space-between;
  width: 105%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -30%);
  opacity: 0;
  transition: opacity .5s;
}

.more-product-swiper:hover .swiper-button {
  opacity: 1;
}

@media screen and (max-width: 1000px) {

  .prouct-button-group,
  .prouct-button-group .popover-cont {
    font-size: var(--font-size-base);
  }

  .prouct-button-group .t-button {
    margin-top: .3em;
  }

  .product-item {
    flex-direction: column;
    gap: 10vw;
  }

  .product-view,
  .product-detail {
    width: 100%;
    flex: 1;
  }

  .product-detail {
    gap: 20px;
  }

  .product-detail .more-product ul {
    grid-template-columns: repeat(2, 1fr);
    gap: max(1.2vw, 6px);
  }

  .product-detail .details-card__title.minbot {
    margin-bottom: .9em;
  }

  .product-detail .more-product-swiper .swiper-pagination {
    top: 1%;
  }
}

/* #endregion */

/* #region 产品列表 */
.Four-nav {
  width: 100%;
  height: auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-small);
}

.Four-text {
  width: 50%;
  height: auto;
  background-color: #fff;
  padding: 3.5em 3em;
  border-radius: 1em 0 0 1em;
  color: var(--text-color-primary);
}

.Four-font1 {
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: left;
}

.Four-text-h1 {
  font-weight: 600;
  font-size: var(--font-size-large);
}

.Four-text-h2 {
  font-family: 'Gilroy-Bold';
  font-weight: bold;
  color: var(--primary);
  font-weight: normal;
  font-size: var(--font-size-extra-small);
  margin-left: .8em;
}

.Four-font2 {
  margin-top: .8em;
  width: 100%;
  line-height: 2.5;
  color: var(--text-color-secondary);
}

.Four-Swiper {
  width: 50%;
  height: auto;
  z-index: 100;
  display: block;
  overflow: hidden;
}

.Four-wrapper {
  display: flex;
  transition: transform .5s ease;
}

.Four-Swiper .swiper-pagination {
  position: absolute;
  z-index: 2;
  bottom: 1.2em;
  left: 0;
  width: 100%;
}

.Four-slide {
  width: 100%;
  height: auto;
  min-width: 100%;
}

.Four-slide img {
  width: 100%;
  aspect-ratio: 680 / 403;
  object-fit: cover;
  border-radius: 1em;
}

.Four-layout {
  width: 100%;
  height: auto;
  margin-top: 5%;
}

.Four-layout>ul {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: .5em 1.2em;
  /* margin-bottom: 10vw; */
}

@media screen and (max-width: 1000px) {
  .Four-nav {
    gap: 20px;
    flex-direction: column-reverse;
  }

  .Four-Swiper,
  .Four-text {
    width: 100%;
  }

  .Four-text {
    padding: 1.8em 1.8em !important;
    border-radius: 1em;
  }

  .Four-font1 {
    flex-direction: column;
  }

  .Four-text-h2 br {
    display: none;
  }

  .Four-font2 {
    margin-top: .5em;
    line-height: 1.8 !important;
  }

  .Four-layout {
    margin-top: 30px;
  }

  .Four-layout>ul {
    margin-bottom: 5vw;
    gap: max(2vw, 6px);
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .Four-layout .product-card-info {
    padding-top: .3em;
    padding-bottom: .3em;
  }

  .Four-layout .product-card__btn {
    height: 2em !important;
  }
}

/* #endregion */

/* #region 信息卡片*/
.info-card {
  width: 100%;
  font-size: var(--font-size-extra-large);
  display: flex;
  background-color: #fff;
  border-radius: var(--radius-small);
  overflow: hidden;
}

.info-card.reverse {
  flex-direction: row-reverse;
}

.info-card__gallery {
  width: 50%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: flex-start;
  border-radius: var(--radius-small);
  overflow: hidden;
  gap: 3px;
}

.info-card__gallery .image {
  width: calc(50% - 1.6px);
  height: calc(50% - 1.6px);
  background-color: red;
  object-fit: cover;
}

.info-card__gallery .image.small {}

.info-card__gallery .image.medium {
  flex: none;
  height: 100%;
}

.info-card__gallery .image.full {
  flex: none;
  width: 100%;
  height: 100%;
}

.info-card__cont {
  padding: 1em 1.5em;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.info-card__title {
  width: auto;
  font-weight: bold;
  padding-bottom: .5em;
}

.info-card__title.whole {
  width: 100%;
}

.info-card__title.underline:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1.6em;
  height: .15em;
  background-color: var(--primary);
  border-radius: .4em;
}

.info-card__title.draw-l::before {
  opacity: .1;
  top: 0;
  left: 0;
  transform: translate(-70%, -50%);
}

.info-card__title.draw-r::after {
  opacity: .1;
  top: 0;
  right: 0;
  transform: rotate(180deg) translate(-110%, 50%);
}

.info-card__icon {
  width: 1.3em;
  height: 1.3em;
  padding: .6em;
  background-color: var(--primary);
  border-radius: 50%;
  position: absolute;
  top: calc(50% - .25em);
  right: 0;
  transform: translateY(-50%);
  border: .15em solid var(--primary-3);
  display: flex;
  justify-content: center;
  align-items: center;
}

.info-card__icon img {
  width: .5em;
  height: .5em;
  object-fit: cover;
}

.info-card__text {
  margin-top: 1em;
  font-size: var(--font-size-medium);
  line-height: 2;
  opacity: .7;
}

.info-card.small {
  font-size: max(17px, 1.56vw);
}

.info-card__cont.small,
.info-card.small .info-card__cont {
  padding: 1em 2em 1em 3em;
}

.info-card__text.small,
.info-card.small .info-card__text {
  font-size: var(--font-size-small);
}

.info-card.gap+.info-card {
  margin-top: 3em;
}

@media screen and (max-width: 1000px) {
  .info-card {
    flex-direction: column;
    margin-bottom: 20px;
  }

  .info-card:last-child {
    margin-bottom: 0;
  }

  .info-card.reverse {
    flex-direction: column;
    margin-bottom: 20px;
  }

  .info-card__cont,
  .info-card__gallery {
    width: 100%;
  }

  .info-card__cont {
    padding: .5em 1em 1em !important;
  }

  .info-card__text {
    margin-top: .5em;
  }

  .info-card.gap+.info-card {
    margin-top: 1em;
  }
}

/* #endregion */

/* #region 图片展示组 */
.image-view {
  width: 100%;
  font-size: max(18px, 1.56vw);
  overflow: hidden;
}

.host-graph {
  display: flex;
}

.host-graph__item {
  border-radius: var(--radius-small);
  overflow: hidden;
  display: block;
  min-width: 100%;
  max-width: 100%;
}

.host-graph__item::before {
  content: attr(text);
  position: absolute;
  z-index: 4;
  bottom: 0;
  left: 0;
  padding: 1em;
  color: #fff;
  font-weight: 400;
}

.host-graph__item::after,
.image-pagination-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-radius: var(--radius-small);
  height: 50%;
  background: linear-gradient(0deg, #00000088, #ffffff00);
  z-index: 3;
}

.host-graph__item img {
  display: block;
  aspect-ratio: 748 / 406;
}

.host-graph__item img,
.image-pagination-item img {
  border-radius: var(--radius-small);
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.image-pagination {
  overflow: auto;
  display: flex;
  gap: max(6px, .63vw);
  padding-top: max(10px, 1.3vw);
}

/* 隐藏滚动条 */
.image-pagination::-webkit-scrollbar {
  display: none;
}

.image-pagination-item {
  border-radius: .4em;
  overflow: hidden;
  cursor: pointer;
  flex: 1;
  padding-bottom: 6px;
  transition: transform .3s;
}

.image-pagination-item::after {
  bottom: 6px;
}

.image-pagination-item:hover {
  transform: translateY(-10%);
}

.image-pagination-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 30%;
  background-color: var(--primary);
  border-radius: .4em;
  transition: width .3s;
}

.image-pagination-item.active::before,
.image-pagination-item:hover::before {
  transform: translate(-50%, -10%);
  width: 100%;
}

.image-pagination-item img {
  border-radius: .4em;
  aspect-ratio: 178 / 97;
}

/* #endregion */

/* #region 科技研发 */
.microbe-farming {
  display: flex;
  gap: 20px 5.66%;
}

.microbe-farming .image-view {
  width: 50%;
}

.waterfall-view {
  font-size: var(--font-size-small);
  width: 100%;
  aspect-ratio: 1502 / 492;
  width: 100%;
  gap: max(10px, 1.3vw);
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: flex-start;
}

.waterfall-view .image {
  cursor: pointer;
  display: block;
  border-radius: .8em;
  overflow: hidden;
  transition: transform .3s;
}

.waterfall-view .image img {
  width: 100%;
  height: 100%;
}

.waterfall-view .image::before {
  font-size: var(--font-size-medium);
  content: attr(text);
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  padding: 1em;
  color: #fff;
  font-weight: 400;
}

.waterfall-view .image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-radius: var(--radius-small);
  height: 50%;
  background: linear-gradient(0deg, #00000054, #ffffff00);
  z-index: 1;
  pointer-events: none;
}

.waterfall-view .image:hover {
  transform: translateY(-5%);
}

.waterfall-view .image.small {
  height: 35.77%;
}

.waterfall-view .image.medium {
  flex: 1;
}

.waterfall-view .image.full {
  height: 100%;
}

.waterfall-view .image:nth-child(1) {
  height: 35.77%;
}

.waterfall-view .image:nth-child(2) {
  flex: 1;
}

.waterfall-view .image:nth-child(3) {
  height: 100%;
}

.waterfall-view .image:nth-child(4) {
  flex: 1;
}

.waterfall-view .image:nth-child(5) {
  height: 35.77%;
}

.certificate-list {
  padding: max(15px, 2vw) 0;
  display: grid;
  gap: max(10px, 1.5vw);
  /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
  grid-template-columns: repeat(4, 1fr);
}

.certificate-item {
  cursor: pointer;
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, .1), 0px 2px 4px -2px rgba(0, 0, 0, .1);
  background-color: #fff;
  display: inline-block;
  font-size: max(14px, 1vw);
  border-radius: .8em;
  overflow: hidden;
  transition: transform .3s;
}

.certificate-item:not(:nth-child(-n+4)) {
  display: none;
}

.certificate-list.show .certificate-item {
  display: block;
}

.certificate-item:hover {
  transform: translateY(-5%);
}

.certificate-item__image {
  width: 100%;
  aspect-ratio: 356 / 282;
  background-image: url('../../img/honghuo/Image32.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.certificate-item__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 70%;
  max-height: 80%;
  display: block;
  object-fit: cover;
  transition: max-height .3s, max-width .3s;
}

.certificate-item__image img:hover {
  max-height: 85%;
  max-width: 75%;
}

.certificate-item__info {
  text-align: center;
  padding: 1.2em;
}

.certificate-item__title {}

.certificate-more {
  margin: 1.5em 0 3em;
  font-size: var(--font-size-medium);
  display: flex;
  justify-content: center;
}

.certificate-more .cssbuttons-button {
  font-size: var(--font-size-medium);
  height: 3em;
}

.certificate-more .cssbuttons-button .icon {
  transform: rotate(90deg);
}

@media screen and (max-width: 1000px) {
  .microbe-farming {
    flex-direction: column;
  }

  .microbe-farming .image-view {
    width: 100%;
  }

  .image-pagination-item.active::before,
  .image-pagination-item:hover::before {
    transform: translate(-50%, -20%);
  }

  .waterfall-view {
    aspect-ratio: auto;
    flex-direction: row;
    margin-top: 6vw;
    gap: .5em;
  }

  .waterfall-view .image {
    flex: none !important;
    width: auto;
    height: 25vw !important;
  }

  .waterfall-view .image:nth-child(1) {
    width: calc(50% - .25em);
  }

  .waterfall-view .image:nth-child(2) {
    width: calc(50% - .25em);
  }

  .waterfall-view .image:nth-child(3) {
    width: calc(35% - .25em);
  }

  .waterfall-view .image:nth-child(4) {
    width: calc(65% - .25em);
  }

  .waterfall-view .image:nth-child(5) {
    width: 100%;
  }

  .waterfall-view .image::before {
    font-size: var(--font-size-extra-small);
  }

  .certificate-list {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }

  .certificate-item__info {
    padding: .8em .5em;
  }

  .certificate-more {
    margin: .5em 0 1.8em;
  }
}

/* #endregion */

/* #region 加入红火 */

.benefit-box {
  display: flex;
}

.benefit {
  flex: 1;
  font-size: max(15px, .94vw);
  color: #fff;
  display: flex;
  justify-content: space-between;
  padding: 0 4em 0 2.5em;
  border-left: 1px solid rgb(255, 255, 255, .3);
}

.benefit:nth-child(1) {
  border: 0;
  animation-delay: .3s;
}

.benefit:nth-child(2) {
  animation-delay: .4s;
}

.benefit:nth-child(3) {
  animation-delay: .5s;
}

.benefit__title {
  font-weight: bold;
  font-size: max(17px, 1.56vw);
}

.benefit__title__en {
  font-size: .5em;
  color: rgb(255, 255, 255, .5);
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 1.8em;
}

.benefit-list__item {
  display: flex;
  align-items: center;
}

.benefit-list__item-text {
  min-width: 4em;
}

.benefit-list__item-border {
  width: 5em;
  height: 1px;
  /* 虚线边框 */
  margin: 0 .5em;
  border-top: 1px dashed rgb(255, 255, 255, .5);
}

.benefit-list__item-icon {
  width: 1.2em;
  height: 1.2em;
  object-fit: cover;
}

.hire-info {
  padding: 2.2em;
  background-color: #f5f5f5;
  width: 100%;
  height: auto;
}

.hire-info__title {
  font-weight: bold;
  font-size: max(16px, 1.1vw);
}

.hire-info-list {
  margin-top: 1em;
  font-size: max(13px, .75vw);
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 1em;
  color: var(--text-color-secondary);
}

.hire-require {
  font-size: max(13px, .75vw);
  padding: 2.2em 1.1em 2.2em 2.2em;
  background-color: #fff;
  width: 100%;
  max-width: 100%;
  flex: 1;
  display: flex;
  overflow: hidden;
}

.hire-require .scrollbar {
  padding-right: 1.1em;
  width: 100%;
  height: 100%;
  flex: 1;
  overflow-y: auto;
}

.hire-require__title {
  font-weight: bold;
}

.hire-require-list {
  width: 100%;
  margin-top: .6em;
  color: var(--text-color-secondary);
  list-style: decimal;
  margin-bottom: 2em;
}

.hire-require-list li {
  list-style: decimal;
  padding: .6em 0 .6em 1.2em;
  margin-left: 1.3em;
}

.talent-training .info-card__gallery .image.full {
  aspect-ratio: 680 / 331;
}

.talent-training .info-card__text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

@media screen and (max-width: 1000px) {

  .hire-info {
    padding: 1.5em;
  }

  .hire-require {
    padding: 1.5em;
  }

  .hire-require,
  .hire-require .scrollbar {
    padding-right: .75em;
  }

  .hire-info-list {
    margin-top: 1em;
    display: flex;
    flex-direction: column;
    gap: .5em;
  }

  .hire-require-list li {
    padding: .3em 0 .3em .5em;
  }

  .benefit-box {
    padding: 1em 0;
    flex-direction: column;
    gap: 2em;
  }

  .benefit {
    padding: 0;
    border: 0;
    flex-direction: column;
    gap: 1em;
  }

  .benefit:nth-child(even) {
    /* flex-direction: row-reverse; */
  }

  .benefit-list {
    display: flex;
    flex-direction: column;
    gap: .8em;
  }

  .benefit-list__item-border {
    flex: 1;
  }
}

/* #endregion */

/* #region 党建 */

.politics-overview {}

.politics-overview .t-text {
  all: revert;
  margin: 1.8em 0 .5em;
}

.politics-overview .t-text * {
  all: revert;
}

.politics-overview .t-text img {
  max-width: 100%;
}

.features {
  font-size: var(--font-size-small);
  display: grid;
  gap: 2.2em;
  grid-template-columns: repeat(3, 1fr);
}

.features-item {
  cursor: pointer;
  padding-bottom: 2em;
}

.features-item-image {
  display: flex;
  position: relative;
  border-radius: .7em;
  overflow: hidden;
}

.features-item__tag {
  position: absolute;
  color: #fff;
  z-index: 1;
  bottom: 0;
  left: 0;
  font-size: 1.3em;
  padding: .5em 1.2em;
  font-weight: bold;
  border-radius: 0 .5em 0 0;
  background-color: var(--primary);
}

.features-item-cont {
  padding: 0 1.2em;
}

.features-item .t-title {
  margin: 1em 0 .8em;
}

.features-item .t-text {
  line-height: 1.8;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

@media screen and (max-width: 1000px) {
  .features {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .politics-overview .image-card {
    aspect-ratio: 1082 / 603;
  }
}

/* #endregion */

/* #region 董事长致辞 */
.leader-speak {
  display: flex;
  align-items: flex-start;
  gap: 5%;
}

.leader-image {
  color: #fff;
  font-size: var(--font-size-large);
  border-radius: .65em;
  width: 30%;
  background-color: var(--primary);
}

.leader-image .image-card {
  border-radius: .65em;
}

.leader-info {
  line-height: 1;
  padding: .5em 1em;
  display: flex;
  align-items: center;
}

.leader-info__name {}

.leader-info__position {
  font-size: var(--font-size-extra-small);
  margin-left: .5em;
}

.leader-info__en {
  position: absolute;
  bottom: 0;
  right: 0;
  color: rgb(255, 255, 255, .1);
  font-weight: bold;
  line-height: 1;
  font-size: 2em;
  pointer-events: none;
}

.leader__content {
  flex: 1;
}

.leader__content .text-block__text * {
  all: revert !important;
}

.signature {
  font-size: var(--font-size-base);
  margin-top: 4em;
  display: flex;
  justify-content: flex-end;
}

.signature__title {
  font-weight: bold;
}

.signature__image {
  width: 12em;
  margin: -1.9em 0 0 -2em;
}

@media screen and (max-width: 1000px) {
  .leader-speak {
    flex-direction: column;
    gap: 20px;
  }

  .leader-image {
    width: 100%;
  }
}

/* #endregion */

/* #region 新闻列表 */
.newslist {}

@media screen and (max-width: 1000px) {

  .newslist .news-card {
    align-items: center;
    padding: 2em 0;
  }

  .newslist .news-card-cont {
    flex: 1;
  }


  .newslist .news-card-cover {
    width: 40%;
  }

  .newslist .news-card-cont__title {
    font-weight: normal;
    margin: .2em 0 0;
    line-height: 1.3;
  }

  .newslist .news-card-cont__text,
  .newslist .news-card-cont .button-link {
    display: none;
  }

}

/* #endregion */

/* #region 品控管理 */
.quality-control {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  width: 100%;
  aspect-ratio: 1919 / 938;
  background-image: url('../../img/honghuo/quality-bg1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.quality-control .text-block {
  flex: none;
  padding: 0 10vw;
  display: flex;
  align-items: center;
  width: 69%;
  gap: 2em;
  z-index: 1;
}

.text-block__text {
  line-height: 1.7;
  flex: 1;
  margin: 1em 0 0;
}

.quality-list {
  margin-top: 3em;
  padding: 0 7vw;
  font-size: var(--font-size-small);
  display: flex;
  align-items: center;
  gap: .5em;
  z-index: 2;
}

.quality-list::before {
  content: "";
  position: absolute;
  top: 30%;
  left: 0;
  width: 100%;
  aspect-ratio: 1920 / 104;
  height: auto;
  background-image: url('../../img/honghuo/icon-wave1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}

.quality-list .quality-item {
  margin-top: 3em;
}

.quality-list .quality-item.reverse {
  margin-top: -3em;
  padding-bottom: .2em;
}

.quality-item {
  cursor: pointer;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: var(--font-size-small);
  --quality-item-color: var(--primary);
  padding: 1.2em 0;
}

.quality-item.reverse {
  flex-direction: column-reverse;
}

.quality-item.deep {
  --quality-item-color: var(--text-color-primary);
}

.quality-item__icon {
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4em;
  height: 4em;
  border-radius: 50%;
  box-sizing: content-box;
  transition: box-shadow .3s;
  background-color: var(--quality-item-color);
}

.quality-item__icon img {
  width: 50%;
  height: auto;
  object-fit: cover;
}

.quality-item__icon::before,
.quality-item__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  background-color: var(--quality-item-color);
  bottom: 0;
}

.quality-item__icon::before {
  transform: translate(-50%, 99%);
  width: .2em;
  height: 1.5em;
}

.quality-item__icon::after {
  transform: translate(-50%, 1.95em);
  width: .9em;
  height: .9em;
  border-radius: 50%;
}

.quality-item.reverse .quality-item__icon::before {
  bottom: auto;
  top: 0;
  transform: translate(-50%, -99%);
}

.quality-item.reverse .quality-item__icon::after {
  bottom: auto;
  top: 0;
  transform: translate(-50%, -1.95em);
}

.quality-item:hover .quality-item__icon {
  box-shadow: 0 0 0 .3em #fff, 0 0 0 .75em var(--primary-5), 0 0 0 1.2em var(--primary-7);
}

.quality-item.deep:hover .quality-item__icon {
  box-shadow: 0 0 0 .3em #fff, 0 0 0 .75em #7e7e7e, 0 0 0 1.2em #989898;
}

.quality-item-cont {
  padding: 2.4em 0 0;
}

.quality-item.reverse .quality-item-cont {
  padding: 0 0 2.4em;
}

.quality-item__title {
  font-weight: bold;
  color: var(--quality-item-color);
  font-size: var(--font-size-large);
}

.quality-item__text {
  margin-top: .3em;
  line-height: 1.4;
  color: var(--text-color-secondary);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.quality-item-image {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(0%);
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: .6em;
  border-bottom: .5em solid var(--primary);
  opacity: 0;
  transition: opacity .2s, transform .3s;
}

.quality-item:hover .quality-item-image {
  opacity: 1;
}

.quality-item:hover .quality-item-image {
  transform: translateY(100%);
}

.quality-item.reverse:hover .quality-item-image {
  bottom: auto;
  top: 0;
  transform: translateY(-100%);
}

.quality-box {
  font-size: var(--font-size-small);
  display: flex;
  align-items: center;
  gap: 2em;
}

.quality-box+.quality-box {
  margin-top: 5em;
}

.quality-box-left {
  flex: 1;
}

.quality-box-left .t-text {
  margin-top: 1.8em;
  line-height: 2.2;
}

.quality-box-right {
  width: 60%;
}

.quality-box-right .quality-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media screen and (max-width: 1000px) {
  .quality-control {
    display: flex;
    flex-direction: column;
    aspect-ratio: auto;

    background-position: bottom;
    background-size: 100%;
  }

  .quality-control .text-block {
    width: 100%;
    flex-direction: column;
    text-align: center;
    gap: 0;
  }

  .quality-control .text-block,
  .quality-list {
    padding: 0 5vw;
  }

  .quality-box {
    flex-direction: column;
    gap: 10px;
  }

  .quality-box+.quality-box {
    margin-top: 3em;
  }

  .quality-box-left .t-text {
    margin-top: 1em;
  }

  .quality-box-right {
    width: 100%;
  }

  .quality-list::before {
    content: none;
  }

  .quality-list {
    flex-direction: column;
    margin: 20px 0 0;
    padding-bottom: 16vw;
    gap: .8em;
  }

  .quality-item {
    padding: 0;
    width: 100%;
    flex-direction: row;
    align-items: center;
    margin: 0 !important;
  }

  .quality-item {
    --quality-item-color: var(--text-color-primary);
  }

  .quality-item.reverse {
    flex-direction: row-reverse;
  }

  .quality-item__icon {
    display: none;
    position: absolute;
    top: 1.5em;
    right: 1.5em;
    font-size: 8px;
  }

  .quality-item.reverse .quality-item__icon {
    left: 1.5em;
    right: auto;
  }

  .quality-item__icon::before,
  .quality-item__icon::after {
    content: none;
  }

  .quality-item-cont {
    text-align: left;
    flex: 1;
    padding: 0 .8em !important;
  }

  .quality-item-image {
    aspect-ratio: 78 / 47;
    width: 50%;
    flex: 1;
    position: relative;
    opacity: 1;
    border: 0;
    transform: translate(0, 0) !important;
  }
}

/* #endregion */

/* #region 加盟合作 */
.join-list {
  margin-top: 2vw;
  display: flex;
  flex-direction: column;
  gap: .5em;
}

.join-item {
  font-size: var(--font-size-small);
  padding: 1em 3em;
  min-height: 8em;
  max-height: 8em;
  display: flex;
  align-items: center;
  color: var(--text-color-primary);
  border-bottom: 1px solid rgb(0, 0, 0, .1);
  border-radius: .5em;
  cursor: pointer;
  transition: background-color .3s, padding .5s, height .3s, min-height .3s;
}

.join-item:hover {
  color: #fff;
}

.join-item.active {
  margin-top: 3vw;
  align-items: self-start;
  min-height: 30.5vw;
  max-height: none;
  height: auto;
  padding: 5em 5em 1.5em;
  color: #fff;
  border-radius: 1.2em;
  background-color: var(--primary);
  background-image: url(../../img/honghuo/background.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  border: 0;
}

.join-item:nth-child(1) {
  margin-top: 0;
}

.join-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: .5em;
  opacity: 0;
  background: linear-gradient(90deg, var(--primary), #E1E1E1);
  transition: opacity .3s;
  pointer-events: none;
}

.join-item:hover::before {
  opacity: 1;
}

.join-item.active::before {
  opacity: 0;
}

.join-item-cont {
  position: static;
  width: auto;
  display: flex;
  flex-direction: column;
}

.join-item.active .join-item-cont {
  width: 54%;
}

.join-item__title {
  font-size: var(--font-size-extra-large);
  font-weight: bold;
}

.join-item__en {
  color: #ACACAC;
  font-size: var(--font-size-large) !important;
}

.join-item.active .join-item__en {
  display: none;
}

.join-item-list {
  display: flex;
  overflow: hidden;
  max-height: 0;
  transition: max-height .3s, padding .3s;
  gap: 2em;
}

.join-item.active .join-item-list {
  padding-top: 3em;
  max-height: 30vw;
}

.join-item-list-box {
  flex: 1;
}

.join-item-list-box__title {
  font-size: var(--font-size-medium);
}

.join-item-list-box-item {
  padding: 1em 0 0 1.5em;
}

.join-item-list-box-item::before {
  content: "";
  position: absolute;
  top: 1.5em;
  left: .75em;
  width: 1px;
  height: 100%;
  transform: translateX(-.3px);
  border-left: 1px dashed rgb(255, 255, 255, .3);
}

.join-item-list-box-item:last-child::before {
  content: none;
}

.join-item-ul-box-item-title {
  line-height: 1
}

.join-item-ul-box-item-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -.75em;
  transform: translate(-50%, -50%);
  background-color: #fff;
  width: .35em;
  height: .35em;
  box-shadow: 0 0 0 .3em rgb(255 255 255 / .2);
  border-radius: 1em;
}

.join-item-ul-box-item-text {
  margin-top: .4em;
  line-height: 1.5;
  font-size: var(--font-size-extra-small);
  color: rgb(255 255 255 / .7);
}

.join-item-image {
  width: 0;
  position: absolute;
  bottom: 1.5em;
  right: 1.5em;
  height: auto;
  display: block;
  transition: width .3s;
}

.join-item.active .join-item-image {
  width: 39%;
}

.join-item-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: .8em;
}

.join-item__icon {
  display: inline-flex;
  margin-left: auto;
  padding: 1.5em;
  border-radius: 50%;
}

.join-item:hover .join-item__icon {
  box-shadow: 0 0 0 .6em var(--primary-7);
}

.join-item.active .join-item__icon {
  display: none;
}


.join-item__icon img {
  width: 1em;
  height: 1em;
  object-fit: cover;
}

@media screen and (max-width: 1000px) {
  .join-list {
    margin-top: 20px;
  }

  .join-item {
    padding: 1em;
    color: #fff;
    transition: none;
    min-height: 4.5em;
    max-height: 4.5em;
    box-shadow: var(--box-shadow-1);
  }

  .join-item::before {
    opacity: 1;
    background: var(--primary);
  }

  .join-item.active {
    margin: 0;
    flex-direction: column;
    gap: 2em 0;
    /* padding: 1.5em 1em 1em; */
    padding: 0;
    justify-content: center;
    align-items: center;
  }

  .join-item.active .join-item__title {
    padding: .7em 1em;
  }

  .join-item__en {
    display: none;
  }

  .join-item-cont {
    width: 100% !important;
  }

  .join-item-list {
    color: var(--text-color-primary);
    background-color: #fff;
    padding: 1.2em 1.2em 1.8em !important;
    flex-direction: column;
    gap: .8em;
    height: auto;
    max-height: none !important;
    display: none;
    border-radius: 0 0 1.1em 1.1em;
  }

  .join-item.active .join-item-list {
    display: flex;
  }

  .join-item-list-box-item {
    padding: .5em 0 0 1.5em;
  }

  .join-item-list-box-item::before {
    left: .75em;
    border-color: rgb(0, 0, 0, .3);
  }

  .join-item-ul-box-item-title::before {
    box-shadow: 0 0 0 .3em var(--primary-9);
    background-color: var(--primary);
  }

  .join-item-ul-box-item-text {
    color: var(--text-color-secondary);
  }

  .join-item-image {
    overflow: hidden;
    border-radius: .8em .8em 0 0;
    background-color: #fff;
    width: 100%;
    height: 0;
    position: relative;
    bottom: auto;
    right: auto;
    transition: height .3s;
  }

  .join-item.active .join-item-image {
    padding: 1.5em 1.2em 0;
    width: 100%;
    height: 33vw;
  }

  .join-item-image img {
    height: 100%;
  }

  .join-item__icon {
    font-size: 10px;
    padding: .9em;
    box-shadow: none !important;
    background: var(--primary) !important;
  }

  .join-item__icon img {
    width: 1.6em;
    height: 1.6em;
    object-fit: cover;
  }
}

/* #endregion */

/* #region 产业布局 */
.industrial-swiper {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 2vw 3.5vw 3vw;
}

.industrial-info {
  width: 35%;
  font-size: var(--font-size-small);
  padding: 3.5em 2.5em 3.5em;
  border-radius: 1em;
  background-color: #fff;
  box-shadow: var(--box-shadow-1);
  margin-right: -4.5em;
  z-index: 2;
}

.industrial-info .text-block__en {
  display: inline-block;
  margin-right: 1em;
}

.industrial-info .text-block__text {
  margin-top: 1.2em;
  width: 25vw;
}

.industrial-info .text-block__en.draw-r::after {
  top: 0;
  right: 0;
  transform: translate(110%, -50%) scale(-1, -1);
  opacity: .2;
}

.industrial-swiper-cover {
  width: 100%;
  aspect-ratio: 691 / 510;
  border-radius: .8em;
  overflow: hidden;
  transition: transform .3s;
}

.industrial-swiper-cover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0, .4);
  transition: opacity .3s;
  pointer-events: none;

}

.industrial-swiper-cover .cover {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.industrial-swiper .swiper-container {
  width: 65%;
  /* padding: 10% 0; */
  /* overflow: hidden; */
}

.industrial-swiper .swiper-wrapper {
  width: 100%;
  z-index: 1;
  display: flex;
}

.industrial-swiper .swiper-slide {
  z-index: 1;
  flex-shrink: 0;
  transition: opacity .3s, transform .3s;
  opacity: 0;
}

.industrial-swiper .swiper-slide-active {
  opacity: 1;
  z-index: 2;
  transform: translateX(35%) scale(1.5);
}

.industrial-swiper .swiper-slide-active .industrial-swiper-cover::after {
  opacity: 0;
}

.industrial-swiper .swiper-slide-next {
  opacity: 1;
}

.industrial-swiper .swiper-button {
  position: absolute;
  top: 50%;
  right: 3.8vw;
  transform: translateY(-50%);
  z-index: 2;
}

.industrial-cont {
  padding: 3vw 15vw 0;
}

.industrial-cont img {
  max-width: 100%;
}

.industrial-cont .view-nav {
  width: 100%;
}

.industrial-cont .view-nav ul {
  justify-content: space-between;
}

.industrial-cont .view-nav ul::before {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgb(0, 0, 0, .1);
}

.industrial-cont .view-nav ul li span,
.industrial-cont .view-nav ul li a {
  padding: 1em;
}

.industrial-cont-text:not(.active) {
  display: none;
}

.industrial-cont-text .t-text {
  margin: 1.8em 0 .5em;
  line-height: 2.2;
}

@media screen and (max-width: 1000px) {
  .industrial-swiper {
    padding: 0 0 20px;
    flex-direction: column;
  }

  .industrial-info {
    margin: 0;
    background-color: transparent;
    box-shadow: none;
    padding: 0;
  }

  .industrial-info .text-block__en {
    width: 100%;
    text-align: center;
    margin: 0 0 .2em;
  }

  .industrial-info .text-block__en.draw-r::after {
    content: none;
  }

  .industrial-swiper-cover {
    border-radius: .4em;
    aspect-ratio: 691 / 452;
  }

  .industrial-info,
  .industrial-swiper .swiper-container,
  .industrial-info .text-block__text {
    width: 100%;
  }

  .industrial-info .text-block__text {
    margin-top: .5em !important;
  }

  .industrial-swiper .swiper-container {
    margin: 12vw 0 5vw;
  }

  .industrial-swiper .swiper-slide {
    transform: translate(-10%) scale(1.2);
  }

  .industrial-swiper .swiper-slide-active {
    transform: translateX(30%) scale(1.6);
  }

  .industrial-cont {
    padding: 3vw 0 0;
  }

  .industrial-cont-text .t-text {
    margin-top: 1.2em;
  }
}

/* #endregion */
