/* this website */
/* flex */
/* font-size */
/* color */
/* margin */
/* padding */
/* 动画 */
/* other */
.whmax {
  width: 100%;
  height: 100%;
}
.service-show-page01 .section_main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6rem;
}
.service-show-page01 .mleft {
  width: 45%;
}
.service-show-page01 .mleft .minfo {
  color: #666;
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 4rem;
}
.service-show-page01 .mleft .mstats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.service-show-page01 .mleft .mstats .mitem {
  display: flex;
  gap: 1rem;
  background: #F9FAFB;
  padding: 2rem;
  border-radius: 2rem;
  transition: all 0.4s ease;
  border: 1px solid #F3F4F6;
}
.service-show-page01 .mleft .mstats .mitem:hover {
  background: #fff;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.08);
  transform: translateY(-0.5rem);
}
.service-show-page01 .mleft .mstats .mitem .micon {
  flex-shrink: 0;
}
.service-show-page01 .mleft .mstats .mitem .micon i {
  font-size: 3rem;
  color: #FE7310;
}
.service-show-page01 .mleft .mstats .mitem .mtext .counter,
.service-show-page01 .mleft .mstats .mitem .mtext div:first-child {
  font-size: 2.4rem;
  font-weight: bold;
  font-family: numfont;
  color: #333;
  margin-bottom: 0.5rem;
  line-height: 1;
}
.service-show-page01 .mleft .mstats .mitem .mtext p {
  font-size: 1.6rem;
  color: #666;
}
.service-show-page01 .mright {
  width: 50%;
}
.service-show-page01 .mright .swiper-container {
  width: 100%;
  overflow: hidden;
}
.service-show-page01 .mright .swiper-slide img {
  width: 100%;
  display: block;
}
.service-show-page02 {
  background: #F9F9F9;
}
.service-show-page02 .mtitle {
  text-align: center;
  margin-bottom: 6rem;
}
.service-show-page02 .mlist {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  /* Logic for dynamic count */
  /* Gap logic: using margin or gap property. Flex gap is ideal but need fallback calc if needed. We use native gap. */
  /* Width calculation needs to account for gap.
           2 cols: (100% - 3rem) / 2
           3 cols: (100% - 6rem) / 3
           4 cols: (100% - 9rem) / 4
        */
  /* 5-6 items -> 3 cols */
  /* >= 7 items -> 4 cols */
}
.service-show-page02 .mlist .mitem {
  background: #fff;
  padding: 2rem 3rem;
  border-radius: 1rem;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.service-show-page02 .mlist .mitem:hover {
  transform: translateY(-1rem);
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.1);
}
.service-show-page02 .mlist .mitem .micon {
  width: 6rem;
  height: 6rem;
  background: rgba(254, 115, 16, 0.1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}
.service-show-page02 .mlist .mitem .micon i {
  font-size: 3rem;
  color: #FE7310;
}
.service-show-page02 .mlist .mitem .mtext h3 {
  font-size: 1.8rem;
  color: #333;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
.service-show-page02 .mlist .mitem .mtext p {
  font-size: 1.6rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 2rem;
  flex-grow: 1;
  /* Fix lint and ensure robustness */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.service-show-page02 .mlist .mitem .mtext ul {
  border-top: 1px solid #F3F4F6;
  padding-top: 1rem;
}
.service-show-page02 .mlist .mitem .mtext ul li {
  font-size: 1.4rem;
  color: #666;
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}
.service-show-page02 .mlist .mitem .mtext ul li::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  background: #FE7310;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.8rem;
}
.service-show-page02 .mlist:has( > .mitem:nth-child(2):last-child) .mitem {
  width: calc((100% - 3rem) / 2);
}
.service-show-page02 .mlist:has( > .mitem:nth-child(3):last-child) .mitem {
  width: calc((100% - 6rem) / 3);
}
.service-show-page02 .mlist:has( > .mitem:nth-child(4):last-child) .mitem {
  width: calc((100% - 9rem) / 4);
}
.service-show-page02 .mlist:has( > .mitem:nth-child(5):last-child) .mitem,
.service-show-page02 .mlist:has( > .mitem:nth-child(6):last-child) .mitem {
  width: calc((100% - 6rem) / 3);
}
.service-show-page02 .mlist:has( > .mitem:nth-child(n+7):last-child) .mitem {
  width: calc((100% - 9rem) / 4);
}
.service-show-page03 {
  background: #0F1115;
  color: #fff;
}
.service-show-page03 .mtitle {
  text-align: center;
  margin-bottom: 6rem;
}
.service-show-page03 .mtitle .mtitle-h2 {
  color: #fff;
}
.service-show-page03 .mtitle .mtitle-p {
  color: rgba(255, 255, 255, 0.7);
}
.service-show-page03 .mlist {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  /* 预设 5 种循环颜色 */
  /* Dynamic Quantity Logic for Page 03 */
  /* Even: 2 per row */
  /* Odd: First line 3, then 2 */
}
.service-show-page03 .mlist .mitem {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  height: 30rem;
  display: flex;
  align-items: flex-end;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-sizing: border-box;
  transition: 0.2s all ease-in;
  /* Background Image handling */
}
.service-show-page03 .mlist .mitem .mimg {
  transition: 0.2s all ease-in;
  position: absolute;
  top: 0;
  background: #151921;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.service-show-page03 .mlist .mitem .mimg img {
  width: 100%;
  height: 100%;
  opacity: 0.4;
  transition: 0.2s all ease-in;
  object-fit: cover;
}
.service-show-page03 .mlist .mitem .mimg::after {
  content: '';
  position: absolute;
  top: 0;
  transition: 0.2s all ease-in;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #0b0f17 0%, rgba(11, 15, 23, 0.8) 50%, rgba(11, 15, 23, 0.3) 100%);
  z-index: 2;
  transition: all 0.3s;
}
.service-show-page03 .mlist .mitem:hover .mimg img {
  opacity: 1;
}
.service-show-page03 .mlist .mitem:hover .mtext {
  transform: translateY(-1rem);
}
.service-show-page03 .mlist .mitem .mtext {
  position: relative;
  z-index: 3;
  width: 100%;
  transition: all 0.3s;
}
.service-show-page03 .mlist .mitem .mtext .micon {
  width: 5rem;
  height: 5rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.service-show-page03 .mlist .mitem .mtext .micon i {
  font-size: 2.4rem;
  color: #fff;
}
.service-show-page03 .mlist .mitem .mtext h3 {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.service-show-page03 .mlist .mitem .mtext p {
  font-size: 1.6rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.service-show-page03 .mlist .mitem .mtext .mtags {
  display: flex;
  gap: 1rem;
}
.service-show-page03 .mlist .mitem .mtext .mtags span {
  opacity: 0.5;
  font-size: 1.4rem;
  padding: 0.3rem 1rem;
  color: #CAD5E2;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2rem;
}
.service-show-page03 .mlist .mitem:nth-child(5n+1) .micon {
  background: rgba(254, 115, 16, 0.15);
  border-color: rgba(254, 115, 16, 0.3);
}
.service-show-page03 .mlist .mitem:nth-child(5n+1) .micon i {
  color: #FE7310;
}
.service-show-page03 .mlist .mitem:nth-child(5n+2) .micon {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.3);
}
.service-show-page03 .mlist .mitem:nth-child(5n+2) .micon i {
  color: #3B82F6;
}
.service-show-page03 .mlist .mitem:nth-child(5n+3) .micon {
  background: rgba(168, 85, 247, 0.15);
  border-color: rgba(168, 85, 247, 0.3);
}
.service-show-page03 .mlist .mitem:nth-child(5n+3) .micon i {
  color: #A855F7;
}
.service-show-page03 .mlist .mitem:nth-child(5n+4) .micon {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.3);
}
.service-show-page03 .mlist .mitem:nth-child(5n+4) .micon i {
  color: #10B981;
}
.service-show-page03 .mlist .mitem:nth-child(5n+5) .micon {
  background: rgba(244, 63, 94, 0.15);
  border-color: rgba(244, 63, 94, 0.3);
}
.service-show-page03 .mlist .mitem:nth-child(5n+5) .micon i {
  color: #F43F5E;
}
.service-show-page03 .mlist:has( > .mitem:nth-child(even):last-child) .mitem {
  width: calc((100% - 2rem) / 2);
}
.service-show-page03 .mlist:has( > .mitem:nth-child(odd):last-child) .mitem:nth-child(-n+3) {
  width: calc((100% - 4rem) / 3);
}
.service-show-page03 .mlist:has( > .mitem:nth-child(odd):last-child) .mitem:nth-child(n+4) {
  width: calc((100% - 2rem) / 2);
}
.service-show-page04 .mlist {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
}
.service-show-page04 .mlist .mitem {
  text-align: center;
  padding: 3rem 1.5rem;
  transition: all 0.4s ease;
}
.service-show-page04 .mlist .mitem:hover {
  transform: translateY(-0.5rem);
}
.service-show-page04 .mlist .mitem:hover .micon {
  background: #FFF3EB;
  box-shadow: 0 1rem 2rem rgba(254, 115, 16, 0.15);
}
.service-show-page04 .mlist .mitem .micon {
  width: 7.2rem;
  height: 7.2rem;
  margin: 0 auto 2.5rem;
  background: #FFF3EB;
  color: #FE7310;
  border-radius: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}
.service-show-page04 .mlist .mitem .micon i {
  font-size: 3.6rem;
}
.service-show-page04 .mlist .mitem h3 {
  font-size: 2rem;
  font-weight: bold;
  color: #1A1A1A;
  margin-bottom: 1.5rem;
}
.service-show-page04 .mlist .mitem p {
  font-size: 1.5rem;
  color: #666;
  line-height: 1.7;
  text-align: center;
}
@media (max-width: 769px) {
  .page-service-show .page_banner-plan2 .banner_mfont {
    padding-top: 2rem;
    padding-bottom: 0;
    align-items: flex-start;
  }
  .service-show-page01 .section_main {
    gap: 1rem;
    flex-direction: column;
  }
  .service-show-page01 .mleft {
    width: 100%;
  }
  .service-show-page01 .mright {
    width: 100%;
  }
  .service-show-page02 .mlist {
    gap: 1rem;
  }
  .service-show-page02 .mlist:has( > .mitem:nth-child(3):last-child) .mitem {
    width: 100%;
    padding: 2rem;
  }
  .service-show-page02 .mtitle {
    margin-bottom: 3rem;
  }
  .service-show-page02 .mlist .mitem .micon {
    width: 5rem;
    height: 5rem;
    margin-bottom: 2rem;
  }
  .service-show-page02 .mlist .mitem .micon i {
    font-size: 2.2rem;
  }
  .service-show-page03 .mlist:has( > .mitem:nth-child(odd):last-child) .mitem:nth-child(-n+3) {
    width: 100%;
    height: auto;
    padding: 2rem;
  }
  .service-show-page03 .mlist:has( > .mitem:nth-child(odd):last-child) .mitem:nth-child(n+4) {
    width: 100%;
    height: auto;
    padding: 2rem;
  }
  .service-show-page04 .mlist {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .service-show-page04 .mlist .mitem {
    padding: 0.5rem;
    width: calc(50% - 1rem);
  }
  .service-show-page04 .mlist .mitem .micon {
    width: 4.2rem;
    height: 4.2rem;
    margin-bottom: 2rem;
  }
  .service-show-page04 .mlist .mitem .micon i {
    font-size: 2.2rem;
  }
  .service-show-page04 .mlist .mitem h3 {
    font-size: 1.8rem;
  }
  .service-show-page04 .mlist .mitem p {
    font-size: 1.4rem;
  }
}
