/* this website */
/* flex */
/* font-size */
/* color */
/* margin */
/* padding */
/* 动画 */
/* other */
.whmax {
  width: 100%;
  height: 100%;
}
/* Page 01: Bottlenecks */
.product-show-page01 {
  background-color: #fff;
}
.product-show-page01 .mlist {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 5rem;
  justify-content: flex-start;
}
.product-show-page01 .mlist:has(.mitem:nth-child(2):last-child) .mitem {
  flex: 1 1 calc(50% - 2rem);
  min-width: calc(50% - 2rem);
}
.product-show-page01 .mlist:has(.mitem:nth-child(3):last-child) .mitem {
  flex: 1 1 calc(33.333% - 2rem);
  min-width: calc(33.333% - 2rem);
}
.product-show-page01 .mlist:has(.mitem:nth-child(4):last-child) .mitem {
  flex: 1 1 calc(25% - 2rem);
  min-width: calc(25% - 2rem);
}
.product-show-page01 .mlist:has(.mitem:nth-child(5):last-child) .mitem,
.product-show-page01 .mlist:has(.mitem:nth-child(6):last-child) .mitem {
  flex: 1 1 calc(33.333% - 2rem);
  min-width: calc(33.333% - 2rem);
}
.product-show-page01 .mlist:has(.mitem:nth-child(7) ~ .mitem) .mitem {
  flex: 1 1 calc(25% - 2rem);
  min-width: calc(25% - 2rem);
}
.product-show-page01 .mlist .mitem {
  display: block;
  background: #F7F9FB;
  border-radius: 2rem;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}
.product-show-page01 .mlist .mitem .mmain {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.product-show-page01 .mlist .mitem .mtop {
  padding: 3rem 3rem 3rem 3rem;
  flex: 1;
}
.product-show-page01 .mlist .mitem .mtop .micon {
  width: 6.4rem;
  height: 6.4rem;
  background: #fff;
  border-radius: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.8rem 2rem rgba(28, 54, 142, 0.05);
  margin-bottom: 3rem;
  transition: all 0.3s;
}
.product-show-page01 .mlist .mitem .mtop .micon i {
  font-size: 2.8rem;
  color: #5D7297;
}
.product-show-page01 .mlist .mitem .mtop h3 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: #1a1a1a;
  font-weight: 600;
}
.product-show-page01 .mlist .mitem .mtop p {
  font-size: 1.6rem;
  color: #666;
  line-height: 1.8;
}
.product-show-page01 .mlist .mitem .mbom {
  padding: 2rem 3rem;
  border-top: 1px solid rgba(229, 233, 240, 0.6);
}
.product-show-page01 .mlist .mitem .mbom .mstatus {
  display: inline-flex;
  align-items: center;
  background: rgba(254, 115, 16, 0.08);
  color: #FE7310;
  padding: 0.6rem 1.5rem;
  border-radius: 0.8rem;
  font-size: 1.6rem;
  font-weight: 500;
}
.product-show-page01 .mlist .mitem .mbom .mstatus i {
  font-size: 1.8rem;
  margin-right: 0.8rem;
}
.product-show-page01 .mlist .mitem:hover {
  transform: translateY(-1rem);
  box-shadow: 0 2rem 5rem rgba(28, 54, 142, 0.1);
  background: #fff;
}
.product-show-page01 .mlist .mitem:hover .micon {
  background: #1B368E;
}
.product-show-page01 .mlist .mitem:hover .micon i {
  color: #fff;
}
.product-show-page01 .mlist .mitem:hover .mstatus {
  background: #FE7310;
  color: #fff;
}
/* Page 02: Integrated Platform */
.product-show-page02 {
  background: url('/Static/images/bg02.jpg') no-repeat center center #999;
  background-size: cover;
}
.product-show-page02 .mtags {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.product-show-page02 .mtags .mitem {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 1.5rem 3.5rem;
  border-radius: 10rem;
  box-shadow: 0 0.4rem 2.5rem rgba(28, 54, 142, 0.05);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: default;
}
.product-show-page02 .mtags .mitem .micon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
}
.product-show-page02 .mtags .mitem .micon i {
  font-size: 2.4rem;
  color: #FE7310;
}
.product-show-page02 .mtags .mitem .mfont {
  font-size: 1.6rem;
  color: #666;
  font-weight: 500;
}
.product-show-page02 .mtags .mitem:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 1rem 2rem rgba(28, 54, 142, 0.3);
}
@media screen and (max-width: 900px) {
  .product-show-page02 .mtags {
    gap: 2rem;
    margin-bottom: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .product-show-page02 .mtags {
    gap: 1.2rem;
    margin-bottom: 4rem;
  }
  .product-show-page02 .mtags .mitem {
    padding: 1rem 2rem;
  }
  .product-show-page02 .mtags .mitem .micon {
    margin-right: 1rem;
  }
  .product-show-page02 .mtags .mitem .micon i {
    font-size: 1.8rem;
  }
  .product-show-page02 .mtags .mitem .mfont {
    font-size: 1.6rem;
  }
}
/* Page 03: Core Functions - Alternating Layout */
.product-show-page03 {
  background: #fff;
}
.product-show-page03 .core-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.product-show-page03 .core-list .mitem {
  display: flex;
  align-items: center;
}
.product-show-page03 .core-list .mitem:last-child {
  margin-bottom: 0;
}
.product-show-page03 .core-list .mitem:nth-child(even) {
  flex-direction: row-reverse;
}
.product-show-page03 .core-list .mitem:nth-child(even) .mfont {
  padding-left: 6rem;
  padding-right: 0;
}
.product-show-page03 .core-list .mitem .mfont {
  width: 50%;
  padding-right: 6rem;
  padding-left: 4rem;
}
.product-show-page03 .core-list .mitem .mfont .mtop-sub {
  font-size: 1.6rem;
  color: #FE7310;
  letter-spacing: 0.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.product-show-page03 .core-list .mitem .mfont .mtitle-h2 {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 2.5rem;
  font-weight: bold;
  line-height: 1.2;
}
.product-show-page03 .core-list .mitem .mfont .mtxt {
  font-size: 1.8rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 4rem;
}
.product-show-page03 .core-list .mitem .mfont .features {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-show-page03 .core-list .mitem .mfont .features li {
  width: 50%;
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  color: #666;
  margin-bottom: 2rem;
  font-weight: 500;
  transition: all 0.3s;
}
.product-show-page03 .core-list .mitem .mfont .features li i {
  background: rgba(46, 204, 113, 0.1);
  color: #2ecc71;
  font-size: 2rem;
  margin-right: 1.2rem;
  flex-shrink: 0;
}
.product-show-page03 .core-list .mitem .mfont .features li:hover {
  color: #FE7310;
  transform: translateX(0.5rem);
}
.product-show-page03 .core-list .mitem .mimg {
  width: 50%;
}
.product-show-page03 .core-list .mitem .mimg .mimg-box {
  overflow: hidden;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.1);
  position: relative;
}
.product-show-page03 .core-list .mitem .mimg .mimg-box:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.05), transparent);
  pointer-events: none;
}
.product-show-page03 .core-list .mitem .mimg .mimg-box img {
  width: 100%;
  display: block;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.product-show-page03 .core-list .mitem .mimg:hover .mimg-box img {
  transform: scale(1.08);
}
/* Page 04: Steady & Flexible */
.product-show-page04 {
  background: #0B0E17 url('/Static/images/bg03.jpg') no-repeat center center;
  background-size: cover;
  color: #fff;
  position: relative;
}
.product-show-page04 .section_main {
  position: relative;
  z-index: 2;
}
.product-show-page04 .steady-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-show-page04 .steady-box .mleft {
  width: 45%;
}
.product-show-page04 .steady-box .mleft .mtitle-left {
  margin-bottom: 5rem;
}
.product-show-page04 .steady-box .mleft .mtitle-left h2 {
  color: #fff;
}
.product-show-page04 .steady-box .mleft .mtitle-left h2 span {
  color: #FE7310;
}
.product-show-page04 .steady-box .mleft .mtitle-left p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.8rem;
  line-height: 1.6;
}
.product-show-page04 .steady-box .mleft .mfeatures {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}
.product-show-page04 .steady-box .mleft .mfeatures .f-item {
  display: flex;
  align-items: center;
  transition: all 0.3s;
}
.product-show-page04 .steady-box .mleft .mfeatures .f-item .micon {
  width: 5.6rem;
  height: 5.6rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 2rem;
  flex-shrink: 0;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.product-show-page04 .steady-box .mleft .mfeatures .f-item .micon i {
  font-size: 2.4rem;
  color: #FE7310;
  transition: all 0.3s;
}
.product-show-page04 .steady-box .mleft .mfeatures .f-item .minfo h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.8rem;
}
.product-show-page04 .steady-box .mleft .mfeatures .f-item .minfo p {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}
.product-show-page04 .steady-box .mleft .mfeatures .f-item:hover {
  transform: translateX(1rem);
}
.product-show-page04 .steady-box .mleft .mfeatures .f-item:hover .micon {
  background: #FE7310;
  border-color: #FE7310;
  box-shadow: 0 0 2rem rgba(254, 115, 16, 0.4);
}
.product-show-page04 .steady-box .mleft .mfeatures .f-item:hover .micon i {
  color: #fff;
}
.product-show-page04 .steady-box .mleft .mfeatures .f-item:hover .minfo h3 {
  color: #FE7310;
}
.product-show-page04 .steady-box .mright {
  width: 50%;
}
.product-show-page04 .steady-box .mright .stack-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  align-items: flex-end;
}
.product-show-page04 .steady-box .mright .stack-list .stack-item {
  height: 10.8rem;
  border-radius: 1.6rem;
  padding: 0 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.3);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  cursor: default;
}
.product-show-page04 .steady-box .mright .stack-list .stack-item .mname {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
}
.product-show-page04 .steady-box .mright .stack-list .stack-item .mtag {
  background: rgba(255, 255, 255, 0.15);
  padding: 0.8rem 2rem;
  border-radius: 10rem;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(0.5rem);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.product-show-page04 .steady-box .mright .stack-list .stack-item:nth-child(6) {
  width: calc(100% - (6 - 1) * 4.5rem);
}
.product-show-page04 .steady-box .mright .stack-list .stack-item:nth-child(5) {
  width: calc(100% - (5 - 1) * 4.5rem);
}
.product-show-page04 .steady-box .mright .stack-list .stack-item:nth-child(4) {
  width: calc(100% - (4 - 1) * 4.5rem);
}
.product-show-page04 .steady-box .mright .stack-list .stack-item:nth-child(3) {
  width: calc(100% - (3 - 1) * 4.5rem);
}
.product-show-page04 .steady-box .mright .stack-list .stack-item:nth-child(2) {
  width: calc(100% - (2 - 1) * 4.5rem);
}
.product-show-page04 .steady-box .mright .stack-list .stack-item:nth-child(1) {
  width: calc(100% - (1 - 1) * 4.5rem);
}
.product-show-page04 .steady-box .mright .stack-list .stack-item.item-saas {
  background: linear-gradient(90deg, #2E6EEF 0%, #1D54C6 100%);
}
.product-show-page04 .steady-box .mright .stack-list .stack-item.item-middle {
  background: linear-gradient(90deg, #FE7310 0%, #E85F00 100%);
}
.product-show-page04 .steady-box .mright .stack-list .stack-item.item-data {
  background: linear-gradient(90deg, #6C5CE7 0%, #4834D4 100%);
}
.product-show-page04 .steady-box .mright .stack-list .stack-item.item-infra {
  background: linear-gradient(90deg, #4A5568 0%, #2D3748 100%);
}
.product-show-page04 .steady-box .mright .stack-list .stack-item:hover {
  transform: scale(1.03) translateX(-1rem);
  box-shadow: 0 3rem 6rem rgba(0, 0, 0, 0.5);
  z-index: 5;
}
.product-show-page04 .steady-box .mright .stack-list .stack-item:hover .mtag {
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
}
/* Page 05: Certification */
.product-show-page05 {
  background: #fff;
}
.product-show-page05 .cert-box {
  display: flex;
  position: relative;
}
@media screen and (max-width: 900px) {
  .product-show-page05 .cert-box {
    flex-direction: column;
  }
}
.product-show-page05 .cert-box .mleft {
  flex: 1;
  padding-right: 6rem;
  padding-top: 6rem;
}
.product-show-page05 .cert-box .mleft .mtitle-left {
  margin-bottom: 4rem;
}
.product-show-page05 .cert-box .mleft .mtitle-left .mtop-sub {
  font-size: 1.6rem;
  color: #FE7310;
  font-weight: 700;
  letter-spacing: 0.1rem;
  margin-bottom: 1.5rem;
}
.product-show-page05 .cert-box .mleft .mtitle-left .mtxt {
  font-size: 1.8rem;
  color: #666;
  max-width: 60rem;
  line-height: 1.8;
}
.product-show-page05 .cert-box .mleft .cert-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 0;
  list-style: none;
  padding: 0;
}
.product-show-page05 .cert-box .mleft .cert-list li {
  width: 50%;
  font-size: 1.6rem;
  color: #333;
  display: flex;
  align-items: center;
  font-weight: 500;
  transition: all 0.3s;
  line-height: 1.4;
}
.product-show-page05 .cert-box .mleft .cert-list li i {
  font-size: 1.4rem;
  color: #FE7310;
  margin-right: 1.2rem;
  font-weight: bold;
}
.product-show-page05 .cert-box .mleft .cert-list li:hover {
  color: #FE7310;
  transform: translateX(0.5rem);
}
.product-show-page05 .cert-box .mright {
  max-width: 53rem;
  overflow: hidden;
  position: relative;
  padding: 0 5rem;
}
.product-show-page05 .cert-box .mright .cert-swiper {
  width: calc(100% - 10px);
  margin: 0 auto;
  overflow: visible !important;
}
.product-show-page05 .cert-box .mright .cert-swiper .swiper-slide {
  transition: all 0.5s;
}
.product-show-page05 .cert-box .mright .cert-swiper .swiper-slide .mimg-box {
  position: relative;
  padding: 2rem 1rem 3rem 1rem;
}
.product-show-page05 .cert-box .mright .cert-swiper .swiper-slide .mimg-box .mbg {
  position: absolute;
  top: 1rem;
  left: 0rem;
  width: 90%;
  height: 90%;
  background: linear-gradient(to top right, #10FECE, #0B3AD4);
  border-radius: 1rem;
  z-index: 1;
}
.product-show-page05 .cert-box .mright .cert-swiper .swiper-slide .mimg-box img {
  position: relative;
  z-index: 2;
  width: 100%;
  display: block;
  background: #fff;
  transition: all 0.4s;
}
.product-show-page05 .cert-box .mright .swiper-button-prev,
.product-show-page05 .cert-box .mright .swiper-button-next {
  width: 4rem;
  height: 4rem;
  background: #F5F5F5;
  border-radius: 50%;
  color: #999;
  transition: all 0.3s;
  top: 50%;
  margin-top: -2.5rem;
}
.product-show-page05 .cert-box .mright .swiper-button-prev:after,
.product-show-page05 .cert-box .mright .swiper-button-next:after {
  display: none;
}
.product-show-page05 .cert-box .mright .swiper-button-prev i,
.product-show-page05 .cert-box .mright .swiper-button-next i {
  font-size: 2rem;
  font-weight: bold;
}
.product-show-page05 .cert-box .mright .swiper-button-prev:hover,
.product-show-page05 .cert-box .mright .swiper-button-next:hover {
  background: #FE7310;
  color: #fff;
  box-shadow: 0 0.5rem 1.5rem rgba(254, 115, 16, 0.3);
}
.product-show-page05 .cert-box .mright .cert-prev {
  left: 0rem;
}
.product-show-page05 .cert-box .mright .cert-next {
  right: 1rem;
}
/* Page 06: Full Lifecycle Service */
.product-show-page06 {
  background: #f7f8fb;
}
.product-show-page06 .mlist {
  display: flex;
  gap: 2rem;
  margin-top: 5rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media screen and (min-width: 1201px) {
  .product-show-page06 .mlist:has(.mitem:nth-child(2):last-child) .mitem {
    flex: 0 0 calc(50% - 1.5rem);
  }
  .product-show-page06 .mlist:has(.mitem:nth-child(3):last-child) .mitem {
    flex: 0 0 calc(33.333% - 2rem);
  }
  .product-show-page06 .mlist:has(.mitem:nth-child(4):last-child) .mitem {
    flex: 0 0 calc(25% - 2.25rem);
  }
  .product-show-page06 .mlist:has(.mitem:nth-child(5):last-child) .mitem,
  .product-show-page06 .mlist:has(.mitem:nth-child(6):last-child) .mitem {
    flex: 0 0 calc(33.333% - 2rem);
  }
  .product-show-page06 .mlist:has(.mitem:nth-child(7)) .mitem {
    flex: 0 0 calc(25% - 2.25rem);
  }
}
.product-show-page06 .mlist .mitem {
  flex: 0 0 calc(25% - 2.25rem);
  background: #fff;
  border: 1px solid rgba(229, 233, 240, 0.6);
  border-radius: 2.4rem;
  padding: 4.5rem 3.5rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 0.5rem 2rem rgba(28, 54, 142, 0.03);
  text-align: left;
}
.product-show-page06 .mlist .mitem .micon {
  width: 7.2rem;
  height: 7.2rem;
  background: #FE7310;
  border-radius: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3.5rem;
  transition: all 0.3s;
}
.product-show-page06 .mlist .mitem .micon i {
  font-size: 3.2rem;
  color: #fff;
}
.product-show-page06 .mlist .mitem h3 {
  font-size: 1.8rem;
  color: #1a1a1a;
  font-weight: 700;
  margin-bottom: 2rem;
}
.product-show-page06 .mlist .mitem p {
  font-size: 1.6rem;
  color: #666;
  line-height: 1.8;
  margin: 0;
}
.product-show-page06 .mlist .mitem:hover {
  transform: translateY(-1rem);
  box-shadow: 0 2rem 5rem rgba(28, 54, 142, 0.1);
  border-color: #FE7310;
}
.product-show-page06 .mlist .mitem:hover .micon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 1rem 2rem rgba(254, 115, 16, 0.3);
}
@media (max-width: 769px) {
  .product-show-page01 .mlist {
    gap: 1rem;
  }
  .product-show-page01 .mlist:has(.mitem:nth-child(4):last-child) .mitem {
    flex: none;
    min-width: auto;
    width: calc(50% - 0.5rem);
  }
  .product-show-page01 .mlist .mitem .mtop .micon {
    height: 5rem;
    width: 5rem;
    margin-bottom: 2rem;
  }
  .product-show-page01 .mlist .mitem .mtop .micon i {
    font-size: 2.2rem;
  }
  .product-show-page01 .mlist .mitem .mtop {
    padding: 2rem;
  }
  .product-show-page01 .mlist .mitem .mtop h3 {
    font-size: 1.8rem;
  }
  .product-show-page01 .mlist .mitem .mbom {
    padding: 1rem 2rem;
  }
  .product-show-page02 .mtags {
    margin-bottom: 0;
  }
  .product-show-page03 .core-list .mitem {
    flex-direction: column-reverse;
  }
  .product-show-page03 .core-list .mitem .mfont {
    width: 100%;
    padding: 0;
  }
  .product-show-page03 .core-list .mitem .mimg {
    width: 100%;
    margin-bottom: 2rem;
  }
  .product-show-page03 .core-list .mitem .mfont .mtxt {
    margin-bottom: 2rem;
  }
  .product-show-page03 .core-list .mitem:nth-child(even) {
    flex-direction: column-reverse;
  }
  .product-show-page03 .core-list .mitem:nth-child(even) .mfont {
    padding-left: 0;
  }
  .product-show-page03 .core-list .mitem .mfont .mtitle-h2 {
    font-size: 2rem;
  }
  .product-show-page03 .core-list .mitem .mfont .mtop-sub {
    font-size: 1.4rem;
  }
  .product-show-page04 .steady-box .mright {
    display: none;
  }
  .product-show-page04 .steady-box .mleft {
    width: 100%;
  }
  .product-show-page05 .cert-box .mleft {
    padding: 0;
    margin-bottom: 3rem;
  }
  .product-show-page06 .mlist .mitem {
    flex: none;
    width: calc(50% - 0.5rem);
    padding: 2rem;
  }
  .product-show-page06 .mlist .mitem .micon {
    height: 5.5rem;
    width: 5.5rem;
    margin-bottom: 2rem;
  }
  .product-show-page06 .mlist .mitem .micon i {
    font-size: 2.6rem;
  }
  .product-show-page06 .mlist .mitem h3 {
    margin-bottom: 1rem;
  }
  .product-show-page06 .mlist {
    gap: 1rem;
  }
}
