/* 重置默认样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  /* 设置外边距为0 */
  padding: 0;
  /* 设置内边距为0 */
  overflow-x: hidden;
  /* 隐藏水平溢出的内容 */
}

.BoldText {
  font-family: "Poppins-Bold";
}

@font-face {
  font-family: "Poppins-Bold";
  /* 定义字体名称 */
  src: url("../fonts/POPPINS-BOLD.TTF");
  /* 字体文件路径和格式 */
}

@font-face {
  font-family: "Poppins-Light";
  src: url("../fonts/POPPINS-LIGHT.TTF");
}

.LightText {
  font-family: "Poppins-Light";
}

@font-face {
  font-family: "Poppins-Medium";
  src: url("../fonts/POPPINS-MEDIUM.TTF");
}

.MediumText {
  font-family: "Poppins-Medium";
}

@font-face {
  font-family: "Poppins-Regular";
  src: url("../fonts/POPPINS-REGULAR.TTF");
}

.RegularText {
  font-family: "Poppins-Regular";
}

@font-face {
  font-family: "Poppins-SemiBold";
  src: url("../fonts/POPPINS-SEMIBOLD.TTF");
}

.SemiboldText {
  font-family: "Poppins-SemiBold";
}

@font-face {
  font-family: "Aznauri-Square";
  src: url("../fonts/AznauriSquareBold-4.ttf");
}

nav ul {
  list-style: none;
  text-align: center;
}

nav ul li {
  display: inline-block;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a {
  text-decoration: none;
}

nav ul li a:hover {
  text-decoration: none;
}

@font-face {
  font-family: "HiJack";
  src: url("../fonts/HiJack-2.ttf");
}

.indexTextRed {
  color: rgba(217, 33, 41, 1);
}

.indexSearchBox {
  position: fixed;
  top: -150px;
  left: 0;
  right: 0;
  background-color: #d92129;
  padding: 20px;
  transition: top 0.3s;
  z-index: 99999;
  height: 150px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.searchButton {
  font-size: 24px;
  cursor: pointer;
}

.searchContainer {
  position: relative;
  width: 100%;
  max-width: 1100px;
}

#indexSearchInput {
  border: none;
  background: #fff;
  padding: 0 50px 0 20px;
  text-align: left;
  font-size: 22px;
  font-weight: 300;
  color: #333;
  line-height: 60px;
  height: 60px;
  width: 100%;
  font-family: 'Poppins-Regular';
}

#indexSearchInputIcon {
  position: absolute;
  color: #000000;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  transition: color 0.3s ease;

}

#indexSearchInputIcon:hover {
  color: #d92129;
}

#indexIconDelete {
  font-size: 20px;
  margin-left: 20px;
  color: #fff;
  transform: rotate(0);
  transition: transform 0.3s;
}

#indexIconDelete:hover {
  transform: rotate(180deg)
}

.container {
  width: 75%;
  margin: 0 auto;
}

.containerLeft {
  width: 100%;
  padding-left: calc(10% + 15px);
  background-color: red;
}

.indexNavContent {
  position: relative;
}

.navTop {
  padding: 0.9375rem 2.25rem 0 2.25rem;
  display: flex;
  justify-content: space-between;
}

.navLeft {
  color: #ffffff;
  display: flex;
  align-items: center;
}

.navRight a {
  color: #ffffff;
  padding-right: 0.9375rem;
  transition: color 0.3s ease;
}

.navRight a:hover {
  color: rgba(217, 33, 41, 1);
}

.navButton {
  padding: 0.4375rem 1.25rem;
  font-size: 0.875rem;
  background-color: rgba(217, 33, 41, 1);
  color: #ffffff;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.navButton:hover {
  color: #ffffff !important;
  background-color: #e15454;
}

.headerPc {
  color: #ffffff;
}

.headPc {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 9999;
}

.navPhoneIcon {
  font-size: 1.4375rem;
  padding-right: 1.125rem;
}

.navPhoneText {
  font-size: 0.875rem;
}

.navLeft:hover {
  color: rgba(217, 33, 41, 1);
}

.lineText {
  display: flex;
  align-items: center;
  width: 100%;
}

.lineText img {
  padding-bottom: 10px;
}

.lineText::before,
.lineText::after {
  content: "";
  flex: 1;
  border-bottom: 2px solid rgba(255, 255, 255, 0.29);
  /* 实线设置 */
}

.lineText::before {
  margin-right: 20px;
}

.lineText::after {
  margin-left: 20px;
}

.lineText span {
  white-space: nowrap;
}

.navContent {
  margin-top: -10px;
  display: flex;
  justify-content: space-between;
}

.navMenu>ul>li {
  padding: 0.625rem 2.5rem;
  font-size: 1.125rem;
  color: #ffffff;
  position: relative;
  transition: background-color 0.3s ease;
}

.navMenu>ul>li:not(:last-child)::before {
  content: "";
  position: absolute;
  opacity: 0.2;

  right: 0;
  top: 50%;
  width: 1px;
  height: 50%;
  background-color: #ffffff;
  transform: translateY(-50%);
}

.navMenu ul li:hover {
  background-color: #d92129;
}

.navMenu ul li:hover::before {
  display: none;
}

.subMenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 160%;
  padding: 3px;
  z-index: 1000;
  background-color: #1d1d1d;
}

.navMenu li:hover .subMenu {
  display: block;
}

.subMenu li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9375rem 1.25rem;
  font-size: 0.875rem;
  font-family: "Poppins-Light";
  position: relative;
}

.subMenu li:hover {
  background-color: #d92129;
}
.subMenu li a{
	text-align:left;
}
.subSubMenu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  padding: 3px;
  background-color: #1d1d1d;
  z-index: 1000;
}

.subMenu li:hover .subSubMenu {
  display: block;
}
.subSubMenu li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9375rem 0.5rem;
  font-size: 0.875rem;
  font-family: "Poppins-Light";
}

.subSubMenu li:hover {
  background-color: #d92129;
}
.mySwiper {
  width: 100%;
  height: 62rem;
  border-bottom-left-radius: 40px;
  /* 左下角圆角 */
  border-bottom-right-radius: 40px;
  /* 右下角圆角 */
}

.headerBackgroud {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.headerContentText {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.banner_cont_wrap {
	position:absolute;
	top:15vw;
	width:75%;
	left:0;right:0;
	margin:0 auto;
	text-align:left
}
.headerContentTextTilte {
  font-size: 5rem;
  font-family: "HiJack";
  color: #ffffff;
  letter-spacing: 0.05em;
}

.headerContentTextDownButton {
  margin: 3rem 0 4rem;
  border-radius: 1.25rem;
  color: #e62433;
  font-weight: bold;
  padding: 2rem 0;
  width:50px;
  text-align:center;
  border: 3px solid #e62433;
  cursor: pointer;
}

.headerContentTextDownButton:hover {
  color: #ffffff;
  background-color: #e62433;
}

.headerContentDetail {
  text-align: left;
  margin:0 auto 3vw;
  color: #dedede;
  font-size: 1.375rem;
}

.headerContentButton {
  margin-top: 3.5rem;
  background-color: #d92129;
  color: #ffffff;
  font-size: 16px;
  padding: 0.65rem 1.25rem;
  border: none;
  cursor: pointer;
  border-bottom-right-radius: 15% 100%;
  font-family: "Poppins-Regular";
  transition: background-color 0.5s ease, color 0.5s ease;
  border: 1px solid #d92129;
}

.headerContentButton:hover {
  background-color: transparent;
  color: #d92129;
}

.mainButton {
  margin-top: 3.5rem;
  background-color: #d92129;
  color: #ffffff;
  font-size: 16px;
  padding: 0.65rem 1.25rem;
  border: none;
  cursor: pointer;
  border-bottom-right-radius: 15% 100%;
  font-family: "Poppins-Regular";
  transition: background-color 0.5s ease;
}

.mainButton:hover {
  background-color: #000000;
  /* 鼠标悬停时变色 */
}

.headerContentButton span {
  padding-left: 10px;
}

.mySwiper .swiperPaginationCustom {
  position: absolute;
  width: auto;
  top: 46%;
  bottom: 0;
  left: auto;
  right: 5.625rem;
  display: flex;
  flex-direction: column;
}

.swiperPaginationCustom .swiper-pagination-bullet {
  font-family: "Poppins-Regular";
  width: auto;
  height: auto;
  display: flex;
  margin: 0 !important;
  color: #f2f2f2;
  background-color: transparent;
  font-size: 1.6875rem;
  cursor: pointer;
  border-radius: 0;
  opacity: 0.5;
}

.swiperPaginationCustom .swiper-pagination-bullet-active {
  color: #ffffff;
  background-color: transparent;
  opacity: 1;
}

.swiperYuanDian {
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiperXian {
  width: 23px;
  margin-left: 1.875rem;
  height: 6px;
  border-radius: 3px;
  background-color: #b2b2b2;
}

.swiperPaginationCustom .swiper-pagination-bullet-active .swiperXian {
  width: 45px;
  height: 8px;
  background: #d92129;
  border-radius: 3px;
}

.containerMain {
  width: 100%;
  margin-top: 7.5rem;
  padding-bottom: 7.5rem;
  padding-left: 10%;
}

.swiperPaginationCustom .swiper-pagination-bullet-active {
  font-size: 2.25rem;
  color: #d92129;
}

.mainFlex {
  position: relative;
  padding-left: 5%;
  padding-right: 11.25rem;
  padding-top: 1.875rem;
  width: 100%;
  display: flex;
}

.mainFlexBackNumber {
  position: absolute;
  font-size: 11.25rem;
  color: #f3f3f3;
  opacity: 0.38;
  line-height: 1;
  top: 0;
  left: 0;
  z-index: -1;
}

.mainFlexItem {
  width: 50%;
}

.mainFlexItemRed {
  font-size: 1.25rem;
  color: #d92129;
}

.mainFlexItemTitle {
  font-size: 3.75rem;
  color: #1c1f22;
}

.mainFlexItemDetail {
  font-size: 1.875rem;

  margin-bottom: 1.875rem;
  color: #4f4f4f;
}

.mainFlexItemText {
  font-size: 1.125rem;
  width: 70%;
  color: #707070;
}

.mainFlexImges {
  display: flex;
  align-items: end;
}

.mainFlexItemBorderPagination {
  position: relative;
  width: 6.25rem;
  border-radius: 1rem;
  margin-right: 1.75rem;
  padding-left: 1.25rem;
  background: #d92129;
  height: 23rem;
}

.mainFlexItemBorder {
  position: relative;
  height: 48.1875rem;
  width: calc(100% - 8rem);
  background-color: #d92129;
  border-radius: 1rem;
  border-top-left-radius: 35%;
}

.mainFlexItemBorderSwiper {
  position: absolute;
  top: -18px;
  left: -18px;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  border-top-left-radius: 35%;
  overflow: hidden;
}

.mainFlexItemBorderSwiper .swiper {
  width: 100%;
  height: 100%;
}

.mainFlexItemBorderSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mainSwiperPaginationBottom {
  position: absolute;
  bottom: 2.5rem;
}

.mainSwiperPagination {
  transform: none !important;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mainSwiperPagination .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  background: #ffffff;
  border-radius: 50%;
  opacity: 0.3;
}

.mainSwiperPagination .swiper-pagination-bullet-active {
  width: 21px;
  height: 21px;
  background: #ffffff;
  border-radius: 50%;
  opacity: 1;
}

.marginTop100 {
  margin-top: 6.25rem;
}

.productClassification {
  padding: 3.75rem 1.5625rem;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  background: #d92129;
}

.productClassificationFlex {
  display: flex;
}

.productClassificationFlexItem {
  width: 25%;
  display: flex;
  padding: 3.125rem 0 0 0;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.productClassificationFlexItem:hover {
  background-color: #e14d54;
}

.productClassificationFlexItemTitle {
  font-size: 1.5rem;
  color: #ffffff;
  margin: 2.5rem 0 0.625rem 0;
  font-family: "Poppins-SemiBold";
  line-height: 1.2;
}

.productClassificationFlexItemDetail {
  font-size: 0.875rem;
  width: 80%;
  color: #ffb5b8;
  font-family: "Poppins-Regular";
}

.productClassificationFlexItemIcon {
  visibility: hidden;
  padding: 2rem 0;
  color: #ffffff;
}

.productClassificationFlexItemIcon span {
  font-size: 1.5rem;
}

.productClassificationFlexItem:hover .productClassificationFlexItemIcon {
  visibility: visible;
}

.productDisplay {
  padding: 8.5rem 0 0 10%;
  background-color: #ffffff;
}

.productDisplayTitle {
  position: relative;
  padding-left: 5%;
  font-size: 3.75rem;
  color: #1c1f22;
}

.productDisplayTitle:before {
  content: "";
  display: block;
  width: 3.5625rem;
  height: 6px;
  border-radius: 3px;
  background-color: #d92129;
  position: absolute;
  left: 5%;
  bottom: 0;
}

.productDisplayDetail {
  color: #707070;
  padding-left: 5%;
  margin: 2.8125rem 0 5.9375rem 0;
  width: 72%;
  font-size: 1.375rem;
  font-family: "Poppins-Light";
}

.productDisplayContent {
  width: 100%;
  padding: 0 11.75rem 0 9.125rem;
}

.productDisplayContentFlex {
  display: flex;
  padding: 6.25rem;
}

.productDisplayContentFlexLeft,
.productDisplayContentFlexRight {
  width: calc(50% - 4px);
}

.productDisplayContentFlexLeft {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #d63138;
  position: relative;
  margin-right: 8px;
  padding: 3.75rem 2.5rem 3.75rem 0;
  height: 37.125rem;
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.productDisplayContentFlexLeftImg {
  position: absolute;
  left: -3.125rem;
  top: 4rem;
  width: 50%;
  z-index: 99;
}

.productDisplayContentFlexLeftImg img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.productDisplayContentFlexLeftTitle {
  font-size: 3.25rem;
  text-align: right;
  line-height: 1.25;
  color: #ffffff;
}

.productDisplayContentFlexRight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* 两列布局 */
  grid-template-rows: 1fr 1fr;
  /* 两行布局 */
  grid-gap: 8px;
  /* 元素之间的间距 */
}

.productDisplayContentFlexRightItem {
  position: relative;
  padding: 3.5rem 0 0 1.875rem;
  background-color: #f8f8f8;
  z-index: 99;
}

.productDisplayContentFlexRightItemImg {
  position: absolute;
  /* 绝对定位相对于父元素 */
  bottom: 8px;
  right: 8px;
  max-width: 60%;
  max-height: 15rem;
}

.productDisplayContentFlexRightItemImg img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}

.productDisplayContentFlexRightItem::after {
  content: "";
  display: block;
  width: 2.6875rem;
  height: 1.4375rem;
  border-bottom-right-radius: 42% 100%;
  background-color: #d92129;
  position: absolute;
  top: 0;
  left: 0;
}

.productDisplayButton {
  font-family: "Poppins-Regular";
  color: #ffffff;
  font-size: 1rem;
  padding: 0.5rem 1.875rem 0.5rem 1rem;
  border: 1px solid #ffffff;
  cursor: pointer;
  border-bottom-right-radius: 25% 100%;
  transition: border 0.3s ease, background-color 0.3s ease;
}

.productDisplayButton:hover {
  border: 1px solid #000000;
  background-color: #000000;
}

.productDisplayContentFlexRightItemTitle {
  font-family: "Poppins-SemiBold";
  font-size: 1.5rem;
  color: #707070;
  line-height: 1.5rem;
}

.productDisplayContentFlexRightItemDetail {
  width: 60%;
  font-family: "Poppins-Regular";
  line-height: 1.3;
  color: #707070;
}

#productDisplayContentSwiper .productDisplayContentSwiperPagination {
  top: 0;
  bottom: 0;
  height: 40px;
  text-align: right;
  right: 6.25rem;
  left: auto;
  --swiper-pagination-bullet-width: 12px;
  --swiper-pagination-bullet-height: 12px;
  --swiper-pagination-bullet-inactive-color: #cf0e21;
  --swiper-pagination-color: #cf0e21;
}

#productDisplayContentSwiper .productDisplayContentSwiperPagination .swiper-pagination-bullet-active {
  width: 16px;
  height: 16px;
}

#productDisplayContentSwiperNext {
  position: absolute;
  border-radius: 50%;
  border: 2px solid #c61f2c;
  color: #c61f2c;
  padding: 1.25rem;
  font-weight: bold;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 999;
  cursor: pointer;
}

#productDisplayContentSwiperPrev {
  position: absolute;
  border-radius: 50%;
  border: 2px solid #c61f2c;
  color: #c61f2c;
  padding: 1.25rem;
  font-weight: bold;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 999;
  cursor: pointer;
}

#productDisplayContentSwiper .productDisplayContentSwiperNext:not(.swiper-button-disabled):hover,
#productDisplayContentSwiper .productDisplayContentSwiperPrev:not(.swiper-button-disabled):hover {
  background-color: #c61f2c;
  color: #ffffff;
}

.productDisplayContentSwiperNext.swiper-button-disabled,
.productDisplayContentSwiperPrev.swiper-button-disabled {
  opacity: 0.6;
  color: #ffffff !important;
  background-color: #c61f2c;
}

.productSwiperRed {
  background-color: #d92129;
}

.productSwiperRedSlide {
  width: 63rem !important;
  height: 30.1875rem;
}

.mySwiperRed {
  padding: 6.25rem 0 6.25rem 0;
}

.mySwiperRed .swiper-wrapper .productSwiperRedSlide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.productSwiperRedSlide:not(.swiper-slide-active)::before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 63rem;
  height: 30.1875rem;
  background-color: rgba(0, 0, 0, 0.5);
}

.mySwiperRedNext {
  position: absolute;
  border-radius: 50%;
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 1.25rem;
  font-weight: bold;
  top: 50%;
  right: 16%;
  transform: translateY(-50%);
  z-index: 999;
  cursor: pointer;
}

.mySwiperRedPrev {
  position: absolute;
  border-radius: 50%;
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 1.25rem;
  font-weight: bold;
  top: 50%;
  left: 16%;
  transform: translateY(-50%);
  z-index: 999;
  cursor: pointer;
}

.mySwiperRedNext:not(.swiper-button-disabled):hover,
.mySwiperRedPrev:not(.swiper-button-disabled):hover {
  background-color: #d92129;
  color: #ffffff;
  border: 2px solid #d92129;
}

.mySwiperRedNext.swiper-button-disabled,
.mySwiperRedPrev.swiper-button-disabled {
  opacity: 0.6;
}

.mySwiperRedPagination {
  bottom: 3rem !important;
  --swiper-pagination-bullet-width: 0.75rem;
  --swiper-pagination-bullet-height: 0.75rem;
  --swiper-pagination-bullet-inactive-color: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mySwiperRedPagination .swiper-pagination-bullet-active {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  color: #ffffff;
  background-color: #ffffff;
}

.productDisplayMap {
  background-color: #fcfcfc;
  padding-bottom: 8.625rem;
}

.productDisplayText {
  text-align: center;
  padding: 6.25rem 0 5% 0;
}

.productDisplayTextTitle {
  font-size: 3.75rem;
  line-height: 1;
  color: #1a1818;
  font-family: "Poppins-SemiBold";
}

.productDisplayTextDetail {
  font-size: 1.375rem;
  font-family: "Poppins-Regular";
  color: #a6a5a5;
}

.indexMap {
  width: 100%;
  height: 26.25rem;
  margin-left: 10%;
  padding-left: 2.25rem;
  background-position: 75%;
  background-repeat: no-repeat;
}

.indexMapNumberFlex {
  display: flex;
  margin-bottom: 6.25rem;
}

.indexMapNumberFlexItem {
  display: flex;
  align-items: center;
  width: 25rem;
}

.indexMapNumberFlexItemNumber {
  font-size: 4.125rem;
  font-family: "Poppiins-SemiBold";
  font-weight: 600;
  color: #1d1d1d;
  line-height: 1.2;
}

.indexMapNumberFlexItemTitle {
  font-size: 1.6875rem;
  font-family: "Poppins-Regular";
  color: #999898;
  line-height: 1.2;
}

.indexMapNumberFlexItemDetail {
  font-size: 1.375rem;
  font-family: "Poppins-Regular";
  color: #999898;
  line-height: 1.2;
}

.indexMapNumberFlexItemImg {
  width: 6.25rem;
  height: 5.0625rem;

  margin-right: 1.5625rem;
}

.indexMapNumberFlexItemImg img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.indexNews {
  position: relative;
  padding-top: 3.75rem;
  background-color: #ffffff;
  background-repeat: no-repeat;
  width: 100%;
  padding-bottom: 25rem;
}

.indexNewsB {
  background-image: url("../images/indexNews.png");
}

.indexNewsContent {
  padding-top: 5.88rem;
  margin: 0 10%;
}

.indexNewsButton {
  position: absolute;
  top: 9.375rem;
  right: calc(10% + 2.25rem);
  border: 1px solid #d92129;
  color: #d92129;
  padding: 8px 12px;
  font-weight: 600;
  font-family: "Poppins-Regular";
  border-bottom-right-radius: 25% 100%;
  vertical-align: middle;
  cursor: pointer;
}

.indexNewsButton span {
  font-weight: 800;
  padding-left: 5px;
  padding-right: 5px;
}

.indexNewsButton:hover {
  color: #ffffff;
  background-color: #d92129;
}

.indexNewsMain {
  padding: 0 5%;
}

.indexNewsMainFlex {
  display: flex;
}

.indexNewMainFlexItem {
  width: calc(33.33% - 17.5px);
  margin-right: 17.5px;
  border: 1px solid #d92129;
  min-height: 42.3125rem;
  margin-top: 8.375rem;
  transition: transform 0.3s ease;
}

.indexNewMainFlexItem:hover {
  transform: translateY(-70px);
  /* 向上偏移70px */
}

.indexNewMainFlexItem:last-child {
  margin-right: 0;
}

.indexNewMainFlexItemImg {
  position: relative;
  padding: 1.1875rem 0.625rem 0.5rem 0.625rem;
  background-color: #ffffff;
}

.indexNewMainFlexItemImgText {
  position: absolute;
  bottom: 0.25rem;
  left: 1.375rem;
  background: #000000;
  width: 12.5rem;
  height: 3.75rem;
  font-size: 1.125rem;
  color: #ffffff;
  font-family: "Poppins-Medium";
  display: flex;
  align-items: center;
  justify-content: center;
}

.indexNewMainFlexItemImg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.indexNewMainFlexItemText {
  padding-left: 1.375rem;
  padding: 0.625rem 2rem 1.1875rem 2rem;
}

.indexNewMainFlexItemTextUser {
  text-align: right;
  font-size: 0.875rem;
  color: #707070;
  padding-right: 0.625rem;
  font-family: "Poppins-Regular";
}

.indexNewMainFlexItemTextUser span {
  margin-right: 5px;
}

.indexNewMainFlexItemTextTitle {
  padding-top: 1.25rem;
  font-size: 1.75rem;
  color: #222222;
  font-family: "Poppins-Medium";
  font-weight: 500;
  line-height: 1.5;
}

.indexNewMainFlexItemTextDetail {
  color: #272d34;
  margin-top: 1.25rem;
  margin-bottom: 2.375rem;
  font-family: "Poppiins-Regular";
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* 限制在两行内 */
  overflow: hidden;
  /* 隐藏溢出的内容 */
  text-overflow: ellipsis;
  /* 显示省略号 */
  max-width: 78%;
}

.indexNewMainFlexItemTextUndline {
  position: relative;
  padding-top: 1.25rem;
  width: 100%;
  /* 或者你希望的宽度 */
}

.indexNewMainFlexItemTextUndline::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  background: #d93b3b;
  width: 4.1875rem;
  /* 实线的长度 */
  height: 6px;
  /* 根据虚线的样式调整高度 */
  z-index: 999;
}

.indexNewMainFlexItemTextUndline::after {
  content: "";
  position: absolute;
  left: 0;
  /* 实线之后的位置 */
  bottom: 0;
  border-bottom: 1px dashed #d2d2d2;
  /* 虚线样式 */
  width: calc(100% - 20px);
  /* 减去实线的长度 */
  height: 1px;
  /* 线的高度 */
}

.indexNewMainFlexItemTextButton {
  color: #ffffff;
  background-color: #d92129;
  padding: 8px 15px;
  font-weight: 500;
  font-family: "Poppins-Regular";
  border-bottom-right-radius: 25% 100%;
  cursor: pointer;
}

.indexNewMainFlexItem:hover {
  background: #d92129;
  box-shadow: 0px 9px 12px 1px rgba(148, 148, 148, 0.4);
}

.indexNewMainFlexItem:hover .indexNewMainFlexItemTextUser {
  color: #ffffff;
}

.indexNewMainFlexItem:hover .indexNewMainFlexItemTextTitle {
  color: #ffffff;
}

.indexNewMainFlexItem:hover .indexNewMainFlexItemTextUndline::before {
  background: #ffffff;
}

.indexNewMainFlexItem:hover .indexNewMainFlexItemTextDetail {
  color: #ffffff;
  opacity: 0.7;
}

.indexNewMainFlexItem:hover .indexNewMainFlexItemTextDetail {
  color: #ffffff;
  opacity: 0.7;
}

.indexNewMainFlexItem:hover .indexNewMainFlexItemTextButton {
  color: #d92129;
  background-color: #ffffff;
}

.indexFooter {
  position: relative;
  background: #1a1a1a;
  padding-top: 5.5rem;
}

.contactUsIndex {
  position: absolute;
  bottom: calc(100% - 3rem);
  left: 50%;
  width: calc(80% - 8.75rem);
  border-radius: 15px;
  transform: translateX(-50%) perspective(1000px) rotateX(15deg);
  z-index: 99;
  border-radius: 15px;
  min-height: 15rem;
  background: #d92129;
}

.contactUsIndexContent {
  position: absolute;
  width: 100%;
  bottom: calc(100% - 3rem);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 2rem 0;
  z-index: 199;
}

.contactUsIndexContentBackGroud {
  position: absolute;
  bottom: calc(100% - 3rem);
  left: 50%;
  width: calc(83% - 8.75rem);
  height: 8rem;
  border-radius: 15px;
  transform: translateX(-50%) perspective(1000px) rotateX(-10deg);
  background: rgba(186, 186, 186, 0.2);
  z-index: 1;
}

.contactUsIndexContentButton {
  padding: 0.625rem 1.5625rem;
  border-bottom-right-radius: 25% 100%;
  color: #ffffff;
  background: #272d34;
  font-family: "Poppins-Regular";
  cursor: pointer;
}

.contactUsIndexContentButton:hover {
  background-color: #000000;
}

.contactUsIndexContentDetail {
  font-size: 1.375rem;
  color: #ffffff;
  font-family: "Poppins-Regular";
}

.contactUsIndexContentTitle {
  font-size: 3.75rem;
  color: #ffffff;
  line-height: 1;
  padding: 0.5rem 0 1.2rem 0;
  font-family: "Poppins-SemiBold";
}

.indexFooterContent {
  width: 80%;
  margin: 0 auto;
  display: flex;
  padding: 0 5%;
  padding-bottom: 3.125rem;
}

.indexFooterLogoDetail {
  font-size: 0.875rem;
  font-family: "Poppins-Light";
  width: 68%;
  color: #a5a5a5;
  padding: 2.1875rem 0;
}

.indexFooterLogo {
  width: 25%;
}

.indexFooterLogoIconFlex {
  display: flex;
}

.indexFooterLogoIconFlexItem {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #cf372d;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.indexFooterLogoIconFlexItem span {
  vertical-align: middle;
  font-size: 20px;
}

.indexFooterLogoIconFlexItem:hover {
  opacity: 0.9;
}

.indexFooterProduct {
  width: 18.75%;
  padding-left: 15px;
  position: relative;
}

.indexFooterProductSolution {
  width: 17%;
}

.indexFooterProductContact {
  width: 20.5%;
}

.indexFooterProductTitle {
  font-size: 1.125rem;
  font-family: "Poppins-Regular";
  color: #ffffff;
}

.indexFooterProductTitle::after {
  content: "";
  display: block;
  width: 0.6875rem;
  height: 0.4375rem;
  border-bottom-right-radius: 42% 100%;
  background-color: #d92129;
  position: absolute;
  top: 0;
  left: 0;
}

.indexFooterProductNav {
  font-size: 0.875rem;
  color: #a5a5a5;

  list-style-type: none;
  margin-top: 1.1rem;
}

.indexFooterProductNav li {
  margin-bottom: 1rem;
}

.indexFooterProductNav a {
  color: #a5a5a5;
  font-family: "Poppiins-Light";
}

.indexFooterProductNav a:hover {
  color: #d92129;
}

.footerCopyright {
  border-top: 1px solid #707070;
  line-height: 41px;
  color: #868686;
  font-size: 12px;
  padding: 0 10%;
  font-family: "Poppins-Light";
}

.footerCopyLift {
  padding-left: 5%;
}

.footerCopyrightRight {
  padding-right: 7.0625rem;
}

.headerPhone {
  display: none;
  align-items: center;
  padding: 15px 40px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  box-sizing: border-box;
}

.headerIndexTransparent {
  background-color: transparent;
}

.logo {
  font-weight: bold;
  margin: 0 auto;
  display: block;
  width: 165px;
  height: 26px;
  scale: 0.7;
  object-fit: contain;
}

.menu-toggle {
  position: absolute;
  right: 10px;
  cursor: pointer;
  display: block;
}

.navPhone {
  display: none;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.75);
  position: fixed;
  top: 50px;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
}

.navPhone ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.navPhone>ul>li {
  border-bottom: 1px solid #ccc;
  display: block;
}

.navPhone ul li a {
  display: block;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
}

.navPhone ul li span {
  font-size: 16px;
  padding-left: 5px;
}

.submenu {
  display: none;
}

.submenu li {
  width: 100%;
  padding-left: 20px;
}

.navPhone ul li.open>.submenu {
  display: block;
}

.swiperPaginationCustomNumber {
  display: none;
}

.indexNewsMainSwiper {
  display: none;
}

.indexNewMainFlexItemPhone {
  width: 99%;
  border: 1px solid #d92129;
  min-height: 42.3125rem;
  margin-top: 9.375rem;
}

.contactUsPhone {
  display: none;
}

.headerIndexRed {
  background-color: #d92129;
}

.scrollToTopBtnBlue:hover {
  background: #e6202a;
  color: #ffffff;
}

.scrollToTopBtnBlue {
  display: none;
  position: fixed;
  bottom: 10%;
  right: 10%;
  z-index: 999;
  background-color: #d92129;
  color: #ffffff;
  border: 1px solid #d92129;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

#headRedPc {
  background-color: #d92129;
  position: static;
  padding-bottom: 10px;
}

.navContentPc .navMenu>ul>li:hover {
  background-color: #fff;
}

.navContentPc .navMenu>ul>li:hover>a {
  color: #d92129;
}

.submenuPc {
  background-color: #d92129;
}

.submenuPc>li:hover {
  background-color: #ffffff !important;
}

.submenuPc>li:hover>a {
  color: #d92129 !important;
}

.navButtonRed {
  border: 1px solid #ffffff;
}

#headRedPc .navRight a:hover {
  color: #e15454;
}

#headRedPc .navLeft:hover {
  color: #e15454;
}

.paddingTop {
  padding-top: 4rem;
}

.myNewsMainSwiperPagination {
  --swiper-pagination-color: #cf0e21;
  --swiper-pagination-bullet-inactive-color: #cf0e21;
  bottom: -50px !important;
}
@media (max-width: 1900px) {
    .headerContentTextTilte {
        font-size: 5vw;
    }
}

@media (max-width: 1440px) {

  /* 5%修改区域 */
  .container {
    width: 90%;
  }

  .mainFlex {
    padding: 0 5% 0 0;
  }

  .productDisplay {
    padding-left: 5%;
  }

  .containerMain {
    padding-left: 5%;
  }

  .indexFooterContent {
    padding-right: 2%;
  }

  .productDisplayContent {
    padding: 5%;
  }

  .indexMap {
    margin-left: 5%;
  }

  .indexNewsContent {
    margin: 0 5%;
  }

  .contactUsIndex {
    width: 80%;
  }

  .contactUsIndexContentBackGroud {
    width: 83%;
  }

  .indexFooterContent {
    width: 90%;
  }

  .footerCopyright {
    padding: 0 5%;
  }

  /* 5%修改区域 End*/
  .mainFlexItem {
    width: 45%;
  }

  .mainFlexImges {
    width: 55%;
  }

  .mainFlexItemBorderPagination {
    width: 5rem;
  }

  .mainFlexItemBorder {
    width: 100%;
  }

  .productDisplayContentFlex {
    padding: 6.25rem 4.75rem;
  }

  .productDisplayContentFlexLeftImg {
    top: 10rem;
    width: 61%;
  }

  .navMenu>ul>li {
    padding: 0.4rem 1.5rem;
  }

  .subMenu li {
    padding: 0.6rem 1.25rem;
  }
}

@media (max-width: 1024px) {

  body,
  html {
    font-size: 14px;
  }

  .navMenu>ul>li {
    padding: 0.3rem 0.6rem;
  }

  .headerContentDetail {
    width: 100%;
    font-size: 18px;
  }

  .mainFlex {
    padding-right: 5%;
  }

  .productClassification .container {
    width: 90%;
  }

  .productDisplayContent {
    padding: 0 5%;
  }

  .productDisplayTitle {
    padding-left: 0;
  }

  .headerContentTextTilte {
    font-size: 7.75rem;
  }

  .indexNewsMain {
    padding: 0;
  }

  .lineText img {
    scale: 0.8;
  }

  .productSwiperRedSlide {
    width: 100% !important;
  }
}

@media (max-width: 767.98px) {

  html,
  body {
    font-size: 12px;
  }

  .headerPhone {
    display: flex;
  }

  .headPc {
    display: none;
  }

  .mySwiper {
    border-radius: 0;
  }
	.banner_cont_wrap {
		width:100%;
		padding:0 30px;
		top:18vh;
		text-align:center
	}
  .headerContentTextTilte {
    font-size: 3.25rem;
    margin-top: 0;
	 line-height:4rem   
  }
	.headerContentTextDownButton {
		display:none
	}

  .swiperXian {
    margin-left: 1rem;
  }

  .mainFlexItemBorder {
    margin-top: 40px;
  }

  .mainFlexBackNumber {
    font-size: 3.25rem;
  }

  .headerContentDetail {
    width: 100%;
    font-size: 1.375rem;
	  text-align:center;
	  margin:20px 0 40px;
  }

  .mySwiper .swiperPaginationCustom {
    flex-direction: row;
    top: 96%;
    right: 5% !important;
  }

  .swiperYuanDian span {
    display: none;
  }

  .indexMap {
    margin-left: 0;
    height: 38.25rem;
    background-size: 150%;
    background-position: bottom;
    background-repeat: no-repeat;
  }

  .indexMapNumberFlex {
    flex-wrap: wrap;
    margin-bottom: 0;
  }

  .indexMapNumberFlexItem {
    width: 100%;
    margin-bottom: 3rem;
  }

  .indexMapNumberFlex:first-child {
    margin-top: 1rem;
  }

  .indexMapNumberFlexItemImg {
    width: 60px;
    height: 60px;
  }

  #swiperPaginationCustomNumber {
    position: absolute;
    display: block;
    top: 91%;
    left: 5% !important;
    color: #b2b2b2;
    z-index: 999;
    font-size: 1.5625rem;
    font-family: "Poppins-SemiBold";
  }

  #swiperPaginationCustomNumber .active {
    color: #d92129;
    font-size: 50px;
  }

  #swiperPaginationCustomNumber span {
    margin-right: 1.4375rem;
  }

  .mainFlex {
    padding-top: 0;
    padding-left: 5%;
    padding-right: 0;
    flex-wrap: wrap;
  }

  .mainFlexItem {
    width: 100%;
  }

  .mainFlexBackNumber {
    font-size: 6.25rem;
    left: -10%;
    width: 100%;
  }

  .mainFlexItemText {
    width: 90%;
  }

  .headerContentButton {
    margin-bottom: 60px;
  }

  .mainFlexImges {
    flex-direction: column-reverse;
  }

  .containerMain {
    padding-left: 5%;
    overflow: hidden;
  }

  .mainFlexItemBorderPagination {
    width: 70%;
    height: 53px;
    border-radius: 16px;
    margin-top: 15px;
    margin-right: 0;
  }

  .mainSwiperPagination {
    flex-direction: row;
  }

  .mainSwiperPaginationBottom {
    bottom: 10px;
  }

  .mainSwiperPagination .swiper-pagination-bullet {
    margin-right: 15px !important;
  }

  .productClassificationFlex {
    flex-wrap: wrap;
  }

  .productClassification {
    padding: 3.75rem 5%;
  }

  .productClassificationFlexItem {
    width: 50%;
    padding-top: 2rem;
  }

  .productClassification .container {
    width: 100%;
  }

  .productDisplay {
    padding: 5.5rem 0 0 5%;
  }

  .productDisplayContent {
    padding: 0;
  }

  .productDisplayContentFlex {
    padding: 6.25rem 10%;
    flex-wrap: wrap;
  }

  .productDisplayContentFlexLeft {
    width: 100%;
    margin-right: 0;
  }

  .productDisplayContentFlexRight {
    width: 100%;
    margin-right: 0;
    margin-top: 25px;
  }

  .productDisplayContentFlexRightItemDetail {
    width: 100%;
  }

  .productDisplayContentFlexRightItem {
    height: 270px;
  }

  .productDisplayContentFlexRightItemImg {
    max-width: 64%;
  }

  .productDisplayDetail {
    width: 90%;
  }

  .productSwiperRedSlide:not(.swiper-slide-active)::before {
    position: unset;
  }

  .mySwiperRedPrev {
    left: 5%;
  }

  .mySwiperRedNext {
    right: 5%;
  }

  .productDisplayTextTitle {
    font-size: 3rem;
  }

  .productDisplayTextDetail {
    font-size: 1.2rem;
  }

  .productDisplayTitle {
    font-size: 2.8rem;
  }

  .productDisplayMap {
    padding-bottom: 5rem;
  }

  .indexNews {
    padding-top: 100px;
    padding-bottom: 10rem;
  }

  .indexNewsB {
    background-image: url("../images/IndexPhoneFoot.png");
    background-position: top -28px right 63%;
  }

  .indexNewsButton {
    display: none;
    right: 54%;
    top: 9rem;
  }

  .indexNewsMain {
    display: none;
  }

  .indexNewsMainSwiper {
    display: block;
  }

  .indexNewsMainSwiper {
    position: relative;
    --swiper-pagination-bottom: -60px;
  }

  .indexNewsContent {
    margin: 0;
    padding: 0 5%;
  }

  .contactUsPc {
    display: none;
  }

  .contactUsPhone {
    display: block;
    padding: 2.5rem 0;
    background: #d92129;
    text-align: center;
  }

  .indexFooterContent {
    width: 100%;
    padding: 0 5%;
    flex-wrap: wrap;
  }

  .indexFooterLogo {
    width: 100%;
    text-align: center;
  }

  .indexFooterLogoDetail {
    width: 80%;
    margin: 0 auto;
  }

  .indexFooterLogoIconFlex {
    justify-content: center;
    margin-bottom: 60px;
  }

  .indexFooterProduct {
    width: 33%;
  }

  .indexFooterProduct:not(.indexFooterProductContact) .indexFooterProductNav a {
    display: flex;
  }

  .indexFooterProductContact {
    width: 100%;
    text-align: center;
  }

  .phoneInfo {
    display: block;
  }

  .indexFooterProductContact .indexFooterProductTitle {
    display: none;
  }

  #productDisplayContentSwiperPrev {
    top: 28%;
    padding: 1rem;
  }

  #productDisplayContentSwiperNext {
    top: 28%;
    padding: 1rem;
  }

  .footerCopyright {
    text-align: center;
  }

  .footerCopyLift {
    padding-left: 0;
  }

  .footerCopyrightRight {
    display: none;
  }

  .seizeASeat {
    display: none;
  }

  #productDisplayContentSwiper .productDisplayContentSwiperPagination {
    top: auto;
    bottom: -23px;
    height: 40px;
    text-align: right;
    right: 40%;
  }
}
.productDisplayContentFlexRightItemTitle {
    font-family: "Poppins-SemiBold";
    font-size: 1.5rem;
    color: #707070;
    line-height: 1.1;
}
.productDisplayContentFlexRightItem {
    position: relative;
    padding: 2rem 0 0 1.875rem;
    background-color: #f8f8f8;
    z-index: 99;
}