.foodImgs {
  background-image: url(../images/foot.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #f6f8fb;
  height: 37.625rem;
  width: 100%;
}
.foodTextNav {
  color: #ffffff;
  margin-top: 5px;
}
.foodTextMain {
  font-size: 3rem;
}
.foodTextMainDeputy {
  font-size: 2.5rem;
}
.foodButtonNav {
  display: grid;
  grid-template-columns:25% 25% 25% 25%;
  padding: 2.5rem 0;
  align-items: center;
  justify-content: center;
  width:80%;
  margin:0 auto;
  border-bottom: 1px solid #e6e6e6;
  justify-items:center;
}
@media (max-width:768px){
	.foodButtonNav{
		grid-template-columns:50% 50%;
	}
}
.foodButtonItem {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f9fd;
  padding: 1rem;
  font-family: "Poppins-Regular";
  text-align: center;
  width: 15rem;
  border-radius: 5rem;
  font-size: 1.6rem;
  cursor: pointer;
  transition: background-color 0.3s, box-shadow 0.3s;
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 10px;
}
.foodButtonItem img{
  margin-right: 10px;
  filter: drop-shadow(#ffffff 300px 0);
  position: relative;
  
}
.foodButtonItem.active img {
    left: -300px;
}
.foodButtonItem:hover img{
  left: -300px;
}
.foodButtonItem svg {
  margin-right: 0.625rem;
}

.foodButtonItem:hover,
.foodButtonItem:focus {
  background-color: #083e89;
  box-shadow: 0px 7px 23px 1px rgba(142, 143, 143, 0.38);
  color: white;
}

.foodButtonItem:hover svg image,
.foodButtonItem:focus svg image {
  filter: brightness(0) invert(1);
}
.foodButtonItem.active {
  background-color: #083e89;
  box-shadow: 0px 7px 23px 1px rgba(142, 143, 143, 0.38);
  color: white;
}

.foodButtonItem.active svg image {
  filter: brightness(0) invert(1);
}

.foodButtonItem:last-child {
  margin-right: 0;
}
.foodContentTitle {
  padding: 4.0625rem 0 3.75rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 2.625rem;
  color: #080808;
	margin-top:3rem;
	margin-bottom:3rem;
}
.foodContentNav {
  display: flex;
  flex-wrap: wrap;
}
.foodContentNavItem {
  padding: 0.9375rem 1.75rem;
  font-weight: 400;
  border-bottom: 1px solid #e6e6e6;
  font-size: 1.125rem;
  cursor: pointer;
  font-family: "Poppins-Regular";
}
.foodContentNavItem.active {
  background: #083e89;
  color: #ffffff;
}
.foodContentNavItem:hover {
  background: #083e89;
  color: #ffffff;
}
/* 分页样式 */
.foodPageArraw {
  cursor: pointer;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border: 1px solid #083e89;
  margin: 0 10px;
  border-radius: 50%;
  color: #083e89;
  background-color: white;
}
.foodPageArraw.disabled {
  color: #d3d1d1;
  border-color: #d3d1d1;
  cursor: default;
}
.foodPageArraw:hover:not(.disabled) {
  background-color: #083e89;
  color: #ffffff;
}
.foodPage {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 1.875rem;
  margin: 0 1px;
  color: #d3d1d1;
  cursor: pointer;
}
.foodPage.active {
  color: #083e89;
}
/* 产品图 */
.foodProductFlex {
  display: flex;
  flex-wrap: wrap;
}
.foodProductItem {
  width: calc(25% - 15px);
  margin: 0 15px 15px 0;
  border: 1px solid #e6e6e6;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
/* 产品图 */
.foodPageContent {
  margin-top: 4.375rem;
}

.foodProductItemImges {
  display: flex;
  justify-content: center; /* 水平居中图片 */
  align-items: center; /* 垂直居中图片 */
  background: #ffffff;
  height: 21.25rem;
}
.foodProductItemImges img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; /* 保持图片比例，并适应容器 */
}
.foodProductItemText {
  background-color: #ffffff;
  padding-bottom: 1.25rem;
  flex:1;
}
.foodProductItemTextMain {
  font-size: 1.25rem;
  text-align: center;
  padding: 1.25rem 2.5rem 0.9375rem 2.5rem;
  color: #2c2c2c;
}
.foodProductItemTextButton {
  display: flex;
  justify-content: center;
  align-items: center;
}
.foodProductItemTextButton a {
  padding: 10px 19px 7px 18px;
  display: flex;
  justify-content: center;
  font-family: "Poppins-Regular";
  align-items: center;
  background: #083e89;
  color: #ffffff;
  border-radius: 40px;
  font-size: 11px;
}
.foodProductItem:hover,
.foodProductItem.active {
  /* active类用于点击后的样式 */
  border-color: #083e89;
  box-shadow: 0px 13px 29px 0px rgba(228, 232, 239, 0.52);
}

.foodProductItem:hover .foodProductItemText,
.foodProductItem.active .foodProductItemText {
  background-color: #083e89;
}

.foodProductItem:hover .foodProductItemTextMain,
.foodProductItem.active .foodProductItemTextMain {
  color: #ffffff;
}

.foodProductItem:hover .foodProductItemTextButton a,
.foodProductItem.active .foodProductItemTextButton a {
  background-color: #ffffff;
  color: #083e89;
}

.scrollToTopBtnBlue {
  display: none;
  /* 初始隐藏按钮 */
  position: fixed;
  /* 固定定位 */
  bottom: 10%;
  /* 距离底部的距离 */
  right: 10%;
  /* 距离右侧的距离 */
  z-index: 99;
  /* 确保按钮在其他内容的上面 */
  background-color: #ffffff;
  /* 按钮背景颜色 */
  color: #000000;
  /* 按钮文字颜色 */
  border: 3px solid #083e89;
  /* 移除按钮边框 */
  border-radius: 50%;
  /* 圆形按钮 */
  width: 50px;
  /* 按钮宽度 */
  height: 50px;
  /* 按钮高度 */
  font-size: 30px;
  /* 按钮图标大小 */
  cursor: pointer;
  /* 光标样式为手型 */
  display: flex;
  /* 使用 Flex 布局 */
  justify-content: center;
  /* 水平居中 */
  align-items: center;
  /* 垂直居中 */
}

.scrollToTopBtnBlue:hover {
  background-color: #083e89;
  color: #ffffff;
  /* 鼠标悬停时按钮背景颜色 */
}
.scrollToTopBtnBlue:hover svg {
  filter: invert(100%);
}

.osdTextTitle {
  font-size: 1.25rem;
  color: #083e89;
}
.osdTextTitleMain {
  margin: 1.5rem 0 1.5rem 0;
  font-size: 2.625rem;
  color: #000000;
  width: 34%;
  line-height: 1.2;
}
.osdTextNav {
  font-size: 16px;
  color: #4c4c4c;
}
.osdButtonNav {
  padding: 2.5rem 0 0 5rem;
  display: flex;
  flex-wrap: wrap;
}
.osdButtonItem {
  margin-right: 2rem;
  padding: 1.2rem 2.6rem;
  margin-bottom: 1.5rem;
  background-color: #f5f9fd;
  border-radius: 2.5rem;
  font-family: "Poppins-Regular";
  font-size: 1.4rem;
  color: #323232;
  white-space: nowrap;
  text-align: center;
}
.osdButtonItem:hover {
  background-color: #083e89;
  color: #ffffff;
  box-shadow: 0px 7px 23px 1px rgba(142, 143, 143, 0.38);
}
.osdButtonItem.active {
  background-color: #083e89;
  color: #ffffff;
  box-shadow: 0px 7px 23px 1px rgba(142, 143, 143, 0.38);
}
.osdMainContent {
  display: flex;
}
.osdMainContentLeft {
  width: 50%;
  padding: 5.25rem 2.875rem 5.25rem 15%;
  background-color: #083e89;
}
.osdMainContentRight {
  width: 50%;
  padding: 5.25rem 3.375rem;
  background-color: #ffffff;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}
.osdMainContentLeftTitle {
  font-size: 2.625rem;
  color: #ffffff;
}
.osdMainContentLeftDetail {
  color: #ffffff;
  font-size: 1.125rem;
}
.osdMainContentRightDetail {
  font-size: 1.125rem;
  max-width: 40.625rem;
  color: #464646;
}
.solutionListImg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #f6f8fb;
  height: 37.625rem;
  width: 100%;
  background-image: url(../images/solutionList.png);
  margin-top: 10rem;
}
.solutionBlue {
  background: #f6f8fb;
  padding: 2px 15%;
  margin-top:10rem;
}
.solutionIconFlex {
  display: flex;
  justify-content: center;
  align-items: center;
}
.solutionIconItmes {
  height: 145px;
  padding-top: 35px;
  position: relative;
  width: 12.5%;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.solutionIconItmes:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 35px;
  right: 0px;
  width: 1px;
  height: 70px;
  background: rgba(8, 62, 137, 0.1);
}
.solutionIconItmes:hover {
  border-bottom: 3px solid #083e89;
}
.solutionIconItmes.active {
  border-bottom: 3px solid #083e89;
}
.solutionIconItmes:hover .solutionIconItmesText {
  color: #083e89;
}
.solutionIconItmes.active .solutionIconItmesText {
  color: #083e89;
}
.solutionIconItmesText {
  margin-top: 20px;
  font-size: 1rem;
  color: #505152;
  text-align: center;
  font-family: "Poppins-Regular";
}
.solutionMainTitle {
  padding:20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.solutionMainTitleText {
  font-size: 3.75rem;
  color: #080808;
}
.solutionMainTitleDetail {
  width: 65%;
  text-align: center;
  font-size: 1.25rem;
  color: #464646;
}
.solutionMain {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f6f8fb;
  /*height: 54.0625rem;*/ /* 使容器高度为视口高度 */
}

.solutionMain img {
  max-width: 100%;
  max-height: 100%;
}

.solutionMainBlue {
  position: absolute;
  bottom: 72px;
  left: 15%;
  width: 30%;
  padding: 1.2rem 0rem 1rem 1.5rem;
  background: #083e89;
}
.solutionMainBlueItems {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
}
.solutionMainBlueItem {
  width: 50%;
  font-size: 1.625rem;
  height: 50px;
  line-height: 50px;
  font-family: "Poppins Medium";
  color: #ffffff;
  transition: transform 0.3s ease-in-out;
}
.solutionMainBlueItem a {
  color: #ffffff;
}
.solutionMainBlueItem:hover {
  transform: translateY(-5px);
}
.solutionContent {
  padding: 0 15%;
  margin-bottom: 5rem;
}
.solutionMainTitleDetail60 {
/*   width: 60%; */
  text-align: center;
  font-size: 1.25rem;
  color: #464646;
  padding-bottom:50px;
}
.solutionContentMainTitle {
  min-height: 258px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.solutionContentMainTitleText {
  font-size: 40px;
  color: #080808;
}
.solutionContentFlex {
  display: flex;
  flex-wrap: wrap;
  margin-bottom:50px;
}
.solutionContentItems {
  width: calc(50% - 1.875rem);
  border-top: 16px solid #083e89;
  margin-right: 3.75rem;
  background: #f6f8fb;
  margin-bottom: 3.75rem;
  padding: 3.125rem;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.solutionContentItems:nth-child(2n) {
  margin-right: 0;
}
.solutionContentItemTitle {
  font-size: 3rem;
  font-family: "Poppins-SemiBold";
}
.solutionContentItemDetail {
  font-size: 1.125rem;
  color: #282828;
  font-family: "Poppins-Regular";
  padding: 2rem 0 4.5rem 0;
  transition: color 0.3s ease;
}
.solutionContentItemBlueButton {
  display: inline-block;
  padding: 0.625rem 1.5rem 0.625rem 2rem;
  font-size: 0.9375rem;
  border-radius: 2rem;
  background: #083e89;
  color: #ffffff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.solutionContentItems:hover {
  background-color: #083e89;
  color: #ffffff;
}
.solutionContentItems:hover .solutionContentItemDetail {
  color: #ffffff;
}
.solutionContentItems:hover .solutionContentItemBlueButton {
  background-color: #ffffff;
  color: #083e89;
}
.circleBox {
  position: absolute;
}
.solutionMainTooltip {
  display: none;
  font-family: "Poppins-Regular";
  position: absolute;
  background-color: #d92129;
  color: #fff;
  padding: 10px 20px;
  left: 30px;
  top: -10px;
  border-radius: 5px;
  white-space: nowrap;
  z-index: 10;
}
.plusSign {
  position: relative;
  top: -5px;
  opacity: 0.6;
  color: #e8e4e4; /* 或其他颜色 */
  z-index: 1; /* 确保加号在最上层 */
}
/* 扩散动画 */
.circle,
.circle1,
.circle2,
.circle3 {
  width: 10px;
  height: 10px;
  background: rgba(217, 33, 41, 1);
  border: 1px solid rgba(255, 001, 002, 0.85);
  border-radius: 999px;
  position: absolute;
}
.circle1,
.circle2,
.circle3 {
  /* animation: circleChange 2s 1s ease-out infinite; */
  animation-name: circleChange;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.circle1 {
  animation-delay: 1s;
}
.circle2 {
  animation-delay: 2s;
}
.circle3 {
  animation-delay: 3s;
}
.SolutionTextTitleMain {
  margin: 1.5rem 0 1.5rem 0;
  font-size: 2.625rem;
  color: #000000;
  width: 38%;
  line-height: 1.2;
}
.productDetailImg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #f6f8fb;
  height: 37.625rem;
  width: 100%;
  margin-top: 10rem;
}
.productTitleMain {
  font-size: 3.25rem;
  margin: 2.2rem 0 3rem 0;
}
.blueRadiusButton {
  font-size: 1.125rem;
  padding: 0.8rem 2.5rem;
  border-radius: 2.5rem;
  color: #ffffff;
  background: #083e89;
  display: inline-block;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease; /* 添加过渡效果 */
}

.blueRadiusButton:hover {
  color: #ffffff;
  background-color: #073370; /* 鼠标悬停时的颜色 */
}
.productDetailContent {
  width: 100%;
  position: relative;
  display: flex;
}
.productDetailContentLeft {
  width: 50%;
  height: 54.5625rem;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding-right: 5.5rem;
  padding-bottom: 2.625rem;
  background: linear-gradient(to right, #ffffff 35%, #f3f5fb 35%);
}

.productDetailContentLeft .swiper-slide {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.productDetailContentLeft img {
  max-width: 100%;
  height: 38.25rem;
  object-fit: contain;
}
.productDetailContentRight {
  width: 50%;
}

.productContentDetail {
  margin-left: 5.625rem;
  margin-top: 13.75rem;
  width:60%;
}
.productContentDetailTitle {
  font-size: 2.5rem;
}
.productContentDetailLine {
  height: 5px;
  width: 40%;
  margin-top: 10px;
  border-radius: 3px;
  background: #083e89;
}

.productContentDetailExplain {
  color: #898989;
  font-size: 1.125rem;
  margin: 3.75rem 0;
}
.productContentPage {
  margin-top: 3rem;
}
.swiper-productContentPage {
  margin-left: 1rem;
}
.swiper-productContentPage .swiper-pagination-bullet {
  margin-right: 1rem;
}
.swiper-productContentPage .swiper-pagination-bullet-active {
  background: #083e89;
}
.swiper-productContentPagePrev {
  margin-right: 2.5rem;
  font-size: 1.875rem;
  color: #7b7b7b;
}
.swiper-productContentPageNext {
  font-size: 1.875rem;
  color: #7b7b7b;
}
.swiper-productContentPageNext:hover {
  color: #083e89;
}
.swiper-productContentPagePrev:hover {
  color: #083e89;
}
.productDescriptionButton {
  height: 8.125rem;
  display: flex;
  align-items: flex-end;
}
.productBlueZeroButton {
  font-size: 1.125rem;
  padding: 0.8rem 2.5rem;
  border-radius: 0.5rem;
  color: #ffffff;
  background: #083e89;
  display: inline-block;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin: 0 5px;
}
.productBlueZeroButton:hover {
  background-color: #073370;
}
.productDescription {
  color: #606060;
  background: #f7f8fc;
  padding: 2.25rem 0;
  font-size: 1.5rem;
  margin-bottom: 8.125rem;
}
.productDescriptionText {
  margin-bottom: 2.5rem;
}

.videoContainer {
  position: relative;
  max-width: 100%;
  margin: 20px auto;
  margin-bottom: 2.5rem;
}
.videoPlayer {
  width: 100%;
  display: block;
}
.playButton {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.swiperProductButton {
  position: relative;
}
/* 自定义箭头样式 */
.swiperProductButton .swiper-button-next,
.swiperProductButton .swiper-button-prev {
  background-image: none;
  width: 50px; /* 箭头宽度 */
  height: 50px; /* 箭头高度 */
  background-color: #ffffff; /* 背景色 */
  border-radius: 50%; /* 圆形按钮 */
  color: #083e89;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 45%;

  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: 1px solid #083e89;
}

/* 鼠标悬停时的样式 */
.swiperProductButton .swiper-button-next:hover,
.swiperProductButton .swiper-button-prev:hover {
  background-color: #083e89; /* 深色背景 */
  color: #ffffff;
}

/* 左箭头位置 */
.swiperProductButton .swiper-button-prev {
  left: -45px;
}

/* 右箭头位置 */
.swiperProductButton .swiper-button-next {
  right: -45px;
}
.swiperProductButton .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #083e89;
}
.productMoreProduct
  .eveventsDetailProductItems:hover
  .eveventsDetailProductItemsTextTitle {
  color: #083e89;
}
.productForm {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  margin: 5rem 0 15.625rem 0;
}
.productFormContent {
  width: 60%;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.productFormContent input {
  background: #f8f8f8;
}
.productFormContent textarea {
  background: #f8f8f8;
}
.formGroup {
  position: relative;
}
.productFormContent select {
  background: #f8f8f8;
  appearance: none; /* 隐藏默认箭头 */
  -webkit-appearance: none; /* 隐藏默认箭头（Safari） */
  -moz-appearance: none; /* 隐藏默认箭头（Firefox） */
}

.formGroup::after {
  content: "\25BC"; /* Unicode箭头符号 */
  position: absolute;
  top: 56%;
  right: 15px;
  pointer-events: none;
  color: #9b9b9b;
  font-size: 16px;
}
.formProductContent {
  background-color: #ffffff;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.productFormTitle {
  height: 15rem;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-bottom: 1px solid #b2b2b2;
  background: linear-gradient(-84deg, #083e89, #077ded);
}
.productFormTitleContact {
  font-size: 3.5rem;
  font-weight: bold;
  font-family: "Poppins-SemiBold";
  text-align: center;
  color: #ffffff;
}
.productFormTitleSend {
  color: #ffffff;
  font-size: 2rem;
}
.formProduct label {
  padding-left: 12px;
}
.formButtonCenter .formButtonCenterBlue {
  background-color: #083e89;
  width: 50%;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 0.8rem 0;
  font-family: "Poppins-Medium";
  font-size: 1.4063rem;
}
.formButtonCenterBlue:hover {
  background-color: #073370;
}
.swiperSlideNumberFlex {
  display: flex;
  align-items: center;
  height: 50px;
  margin-top: 15px;
}
.swiperSlideNumberContainer {
  position: relative;
  width: 40px;
  height: 40px;
  display: inline-block;
}

.progress-ring {
  position: absolute;
  top: 0;
  left: 0;
}

.progress-ring__circle {
  transition: stroke-dashoffset 0.5s ease;
}

.swiperSlideNumber {
  position: absolute;
  top: 53%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  font-weight: bold;
  color: #000;
}
.customSelectContainer {
  position: absolute;
  top: 30px;
  width: 70%;
  left: 15%;
}

.customSelect {
  position: relative;
  width: 100%;
  z-index: 100000;
}

.customSelect input {
  width: 100%;
  border-radius: 30px;
  padding: 15px 30px;
  border: 1px solid #ccc;
  cursor: pointer;
  outline: none; /* 取消默认的点击轮廓样式 */
  background-color: transparent;
}

.selectDropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  display: none;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  box-sizing: border-box;
  display: none;
}

.column {
  width: 33%;
  padding: 10px;
  font-family: "Poppins-Light";
  box-sizing: border-box;
  border-right: 1px solid #ccc;
}

.column:last-child {
  border-right: none;
}

.column .item {
  padding: 5px 25px;
  border-radius: 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.column .item:hover {
  background-color: #f3f3f5;
  color: #083e89;
}
.item:hover .arrow {
  color: #083e89;
}
.item.active {
  background-color: #f3f3f5; /* 激活状态的背景色 */
  color: #083e89; /* 激活状态的文字颜色 */
}
.item.active .arrow {
  color: #083e89; /* 激活状态的文字颜色 */
}
.arrow {
  margin-left: 10px;
  color: #999;
}
.customSelect::after {
  content: url(../images/arrawBottom.svg); /* 替换 'your-icon.svg' 为你的图标路径 */
  position: absolute;
  top: 50%;
  right: 15px; /* 调整图标距离右侧的距离 */
  transform: translateY(-50%);
  width: 35px; /* 图标宽度 */
  height: 35px; /* 图标高度 */
  z-index: 2; /* 确保图标在输入框上方 */
  cursor: pointer;
}
.iconRight {
  padding-left: 10px;
}

.partnerMainTitle {
  font-size: 3.25rem;
  color: #161616;
}
.partnerMainDetail {
  font-size: 1.2rem;
  color: #707070;
  width: 35%;
  margin-top: 10px;
}
.outPartnerTitleDetail {
  text-align: center;
}
.outPartnerTitle {
  padding-bottom: 3.125rem;
}
.outPartnerTitleDetailMain {
  font-size: 3.75rem;
  color: #100f0f;
}
.outPartnerTitleDetailMainJs {
  width: 50%;
  margin: 0 auto;
  font-size: 1.375rem;
  color: #585858;
}
.outPartnerSwiperBackgroud {
  height: 46rem;
  background: linear-gradient(to bottom, #ffffff 50%, #083e89 50%);
}
#partnerSwiper {
  width: 78%;
  padding-top: 2rem;
  height: 34.5625rem;
  margin: 0 auto;
}
.swiperPartnerButton {
  position: relative;
}
/* 自定义箭头样式 */
.swiperPartnerButton .swiper-button-next,
.swiperPartnerButton .swiper-button-prev {
  background-image: none;
  width: 50px; /* 箭头宽度 */
  height: 50px; /* 箭头高度 */
  background-color: #ffffff; /* 背景色 */
  border-radius: 50%; /* 圆形按钮 */
  color: #083e89;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 58%;
  z-index: 10;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: 1px solid #083e89;
}

/* 鼠标悬停时的样式 */
.swiperPartnerButton .swiper-button-next:hover,
.swiperPartnerButton .swiper-button-prev:hover {
  background-color: #083e89; /* 深色背景 */
  color: #ffffff;
}
.swiperPartnerSlideImg {
  width: 90%;
  margin: 0 auto;
}
.swiperPartnerSlideImg img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* 或者使用 cover 根据需求 */
}
.swiperPartnerText {
  font-size: 3rem;
  padding-top: 3rem;
  text-align: center;
  color: #ffffff;
}
.outPartnerTouchText {
  padding-top: 4.6875rem;
  font-size: 1.625rem;
  width: 85%;
  padding-left: 10%;
  color: #585858;
}
.outPartnerTouchTextItem {
  margin-bottom: 2.5rem;
}
.outPartnerTouchButton {
  padding: 35px 0 75px 0;
  text-align: center;
}
.outPartnerMap {
  background-color: #f6f8fb;
  padding: 8rem 0 12rem 0;
  position: relative;
}
.outPartnerMap img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* 或者使用 cover 根据需求 */
}
.outPartnerMapText {
  position: absolute;
  text-align: center;
  top: 55%;
  left: 50%;
  width: 50%;
  transform: translateX(-50%);
}
.outPartnerMapTextDetail {
  font-size: 1.5rem;
  width: 66%;
  margin: 1.25rem auto;
  color: #585858;
}
.marginTop20 {
  margin-top: 20px;
}
.productDescription .mbox{
	/*overflow-x:auto;*/
}
@media (max-width: 1440px) {
  .outPartnerMap {
    padding: 8rem 0 15rem 0;
  }
  .outPartnerMapText {
    width: 90%;
    top: 60%;
  }
  .swiperPartnerButton .swiper-button-next,
  .swiperPartnerButton .swiper-button-prev {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

@media (max-width: 767.98px) {
  .productDetailImg {
    margin-top: 0;
  }
  .eventsText {
    margin-left: 5%;
  }
  .foodButtonNav {
	 width:100%;
    margin: 0 10px;
  }
  .foodButtonNav .foodButtonItem {
    font-size: 1rem;
    width: 10rem;
    margin-bottom: 15px;
  }
  .foodButtonNav .foodButtonItem svg {
    width: 20px;
    height: 30px;
  }
  .foodButtonNav .foodButtonItem:nth-child(2n) {
    margin-right: 0;
  }
  .foodButtonNav .foodButtonItem svg image {
    width: 20px;
    height: 30px;
  }
  .foodProductFlex .foodProductItem {
    width: 100%;
    margin: 0 0 15px 0;
  }
  .foodProductItemText .foodProductItemTextMain {
    font-size: 1rem;
  }
  /* osd样式 */
  .eventsText .osdTextTitleMain {
    width: 80%;
  }
  .osdMainContent {
    flex-wrap: wrap;
  }
  .osdMainContent .osdMainContentLeft {
    width: 100%;
  }
  .osdMainContent .osdMainContentRight {
    width: 100%;
  }
  .container .osdButtonNav {
    padding: 2.5rem 0 0 0;
  }
  .osdButtonNav .osdButtonItem {
    margin-right: 1rem;
    font-size: 1rem;
  }
  .circleBox {
    display: none;
  }
  .solutionListImg {
    background-image: url(../images/phoneSolution.png);
	  margin-top: 0;
  }
  .solutionBlue {
    padding: 2px 20px;
	 margin-top:0;
  }
  .solutionIconFlex {
    flex-wrap: wrap;
    margin-top: 60px;
  }
  .solutionMainBlueItems .solutionMainBlueItem {
    font-size: 1.2rem;
  }
  .solutionIconFlex .solutionIconItmes {
    width: 25%;
    padding: 35px 20px 2px 20px;
  }
  .solutionMainTitleText,
  .solutionMainTitleText {
    font-size: 2.5rem;
  }
  .solutionMainTitleDetail,
  .solutionMainTitleDetail60 {
    width: 90%;
  }
  .solutionContent {
    padding: 0 20px;
  }
  .solutionContentFlex .solutionContentItems {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .solutionMain {
    height: 37.75rem;
    padding-bottom: 10.625rem;
  }
  .solutionMain .solutionMainBlue {
    width: 90%;
    left: 5%;
  }
  .eventsText .SolutionTextTitleMain {
    width: 90%;
  }
  .productDetailContent {
    flex-wrap: wrap;
  }
  .productDetailContent .productDetailContentLeft {
    width: 100%;
    height: 40rem;
    padding: 10px;
  }
  .productDetailContent .productDetailContentLeft img {
    height: 100%;
  }
  .productDetailContent .productDetailContentRight {
    width: 100%;
  }
  .productDetailContentRight .productContentDetail {
    margin-left: 2rem;
    margin-top: 8rem;
	 width:80%;
  }
  .swiperProductButton .swiper-button-next {
    right: 10px !important;
    top: 50% !important;
    width: 30px !important;
    height: 30px !important;
    font-size: 10px;
  }
  .swiperProductButton .swiper-button-prev {
    left: 10px !important;
    top: 50% !important;
    width: 30px !important;
    height: 30px !important;
    font-size: 10px;
  }
  .productDetailContentRight .customSelectContainer {
    width: 90%;
    margin-bottom: 2rem;
  }
  .customSelectContainer .customSelect {
    font-size: 11px;
  }
  .customSelectContainer {
    display: none;
  }

  #myProductSwiper2 > .swiper-pagination-bullets,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    left: 0;
  }
  .productForm .productFormContent {
    width: 90%;
  }
  .productFormContent .productFormTitleContact {
    font-size: 2.5rem;
  }
  .formButtonCenter .formButtonCenterBlue {
    color: #ffffff;
    font-size: 1rem;
  }

  .eventsText .partnerMainDetail {
    width: 80%;
  }
  .outPartnerTitleDetail .outPartnerTitleDetailMain {
    font-size: 2.5rem;
  }
  .outPartnerTitleDetail .outPartnerTitleDetailMainJs {
    width: 80%;
  }
  .outPartnerSwiperBackgroud {
    height: 16rem;
    background: linear-gradient(to bottom, #ffffff 50%, #083e89 50%);
  }
  .swiperPartnerSlideImg {
    width: 100%;
  }
  #partnerSwiper {
    height: 150px;
  }
  .outPartnerSwiperBackgroud .swiperPartnerText {
    padding-top: 0;
    font-size: 1.5rem;
  }
  .swiperPartnerButton .swiper-button-next,
  .swiperPartnerButton .swiper-button-prev {
    width: 30px;
    height: 30px;
    font-size: 1rem;
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
  }
  .swiperPartnerButton .swiper-button-next:hover,
  .swiperPartnerButton .swiper-button-prev:hover {
    background-color: rgba(8, 62, 137, 0.5);
  }
  .outPartnerMap {
    padding: 4rem 0 25rem 0;
  }
  .outPartnerTouchText {
    width: 90%;
    font-size: 1.3rem;

    padding-left: 5%;
  }
  .outPartnerMapText {
    width: 90%;
    top: 34%;
  }
  .outPartnerTitleDetailMain {
    font-size: 2rem;
  }
  .outPartnerMapTextDetail {
    width: 90%;
  }
  .solutionContentMainTitleText{
    font-size:30px;
  }
}
@keyframes circleChange {
  0% {
    transform: scale(1);
    opacity: 0.95;
  }
  25% {
    transform: scale(2);
    opacity: 0.75;
  }
  50% {
    transform: scale(3);
    opacity: 0.5;
  }
  75% {
    transform: scale(4);
    opacity: 0.25;
  }
  100% {
    transform: scale(5);
    opacity: 0.05;
  }
}
