/* 服务及产品页面专用样式 */

.service-hero {
  /* background: linear-gradient(120deg, #a06ad7 0%, #e16ba7 100%); */
  background-image: url("../images/servicebg.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 0px 0 60px 0;
  box-sizing: border-box;
  position: relative;
  height: 840px;
}
.service-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-hero-text {
  width: 40%;
  /* text-align: center; */
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-44%);
  color: #fff;
  /* max-width: 600px; */
}
.service-hero-text .title {
  font-family: FZCuHeiSongS-B-GB;
  font-weight: 400;
  font-size: 54px;
  color: #fdfdfd;
  margin-bottom: 20px;
}
.service-hero-text .desc {
  font-family: FZCuHeiSongS-B-GB;
  font-weight: 400;
  font-size: 30px;
  color: #ffffff;
  line-height: 60px;
}
.service-hero-images {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-hero-images > div {
  display: flex;
  gap: 12px;
}
.service-hero-images img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 16px;
}

.service-table-section {
  position: relative;
  background: #eaf6fb;
  padding: 48px 199px;
}
.service-table-section .title {
  font-family: Source Han Sans SC;
  font-weight: 500;
  font-size: 36px;
  color: #000000;
}
.service-table-section img {
  width: 938px;
  height: 754px;
}
.service-table-section .fixed-box {
  position: absolute;
  right: 216px;
  top: 50%;
  text-align: center;
  cursor: pointer;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.service-table-section .fixed-box2{
    top: 66%;
}
.service-table-section .fixed-box.animated,
.service-table-section .fixed-box2.animated {
  opacity: 1;
  transform: translateX(0);
}
.service-table-section .fixed-box img {
  width: 63px;
  height: 56px;
}
.box-desc {
  margin-top: 10px;
  color: #1ca5e8;
  font-size: 18px;
}
.service-table-section thead {
  background: #ffe9c7;
}
.service-table-section th,
.service-table-section td {
  padding: 16px 8px;
  font-weight: 600;
  text-align: center;
}
.service-table-section tbody td {
  font-weight: 400;
}
.service-table-section tr {
  background: #fff;
}
.service-table-section .open-btn {
  background: linear-gradient(90deg, #e6d1f7 0%, #ffe9c7 100%);
  color: #222;
  font-size: 18px;
  border: none;
  border-radius: 24px;
  padding: 12px 48px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(58, 143, 255, 0.08);
  margin-top: 32px;
}

.service-app-download {
  background: #fff;
  padding: 60px 0 48px 0;
}
.service-app-download-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 32px;
}
.service-app-card {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 20px;
  border-radius: 16px;
  padding: 24px 48px;
  color: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.service-app-card:hover {
  transform: translateY(-8px) scale(1.04) rotate(-1deg);
  box-shadow: 0 8px 32px rgba(58, 143, 255, 0.18);
}
.service-app-card.android {
  background: #4ecb6c;
}
.service-app-card.ios {
  background: #3a8fff;
}
.service-app-card img {
  width: 48px;
  height: 48px;
}
.service-app-card .desc {
  font-size: 14px;
  color: #eaf6fb;
}

.service-table-section .fixed-box:hover,
.service-table-section .fixed-box2:hover {
  transform: translateX(0) scale(1.08) translateY(-8px) rotate(-2deg);
  /* box-shadow: 0 8px 32px rgba(58, 143, 255, 0.18); */
  z-index: 2;
}

/* 响应式设计 */
@media (max-width: 1200px) {
  .service-hero {
    height: 700px;
  }
  
  .service-hero-text {
    left: 5%;
  }
  
  .service-hero-text .title {
    font-size: 48px;
  }
  
  .service-hero-text .desc {
    font-size: 26px;
    line-height: 50px;
  }
  
  .service-table-section {
    padding: 40px 100px;
  }
  
  .service-table-section img {
    width: 100%;
    height: auto;
  }
  
  .service-app-download-inner {
    padding: 0 40px;
  }
}

@media (max-width: 900px) {
  .service-hero {
    height: 500px;
    background-size: cover;
    background-position: center;
  }
  
  .service-hero-inner {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }
  
  .service-hero-text {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    text-align: center;
    width: 90%;
  }
  
  .service-hero-text .title {
    font-size: 36px;
    margin-bottom: 15px;
  }
  
  .service-hero-text .desc {
    font-size: 20px;
    line-height: 32px;
  }
  
  .service-table-section {
    padding: 30px 20px;
  }
  
  .service-table-section .title {
    font-size: 28px;
    text-align: center;
  }
  
  .service-table-section img {
    width: 100%;
    height: auto;
  }
  
  .service-table-section .fixed-box,
  .service-table-section .fixed-box2 {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    opacity: 1;
    margin: 20px auto;
    display: inline-block;
  }
  
  .service-table-section .fixed-box img {
    width: 50px;
    height: 45px;
  }
  
  .box-desc {
    font-size: 16px;
  }
  
  .service-app-download {
    padding: 40px 0 30px 0;
  }
  
  .service-app-download-inner {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    padding: 0 20px;
  }
  
  .service-app-card {
    width: 100%;
    max-width: 400px;
    padding: 20px 30px;
    font-size: 18px;
  }
  
  .service-app-card img {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 600px) {
  .service-hero {
    height: 400px;
  }
  
  .service-hero-text {
    width: 95%;
  }
  
  .service-hero-text .title {
    font-size: 28px;
    margin-bottom: 12px;
  }
  
  .service-hero-text .desc {
    font-size: 16px;
    line-height: 24px;
  }
  
  .service-table-section {
    padding: 20px 15px;
  }
  
  .service-table-section .title {
    font-size: 24px;
  }
  
  .service-table-section .fixed-box img {
    width: 40px;
    height: 36px;
  }
  
  .box-desc {
    font-size: 14px;
  }
  
  .service-app-download {
    padding: 30px 0 20px 0;
  }
  
  .service-app-download-inner {
    padding: 0 15px;
  }
  
  .service-app-card {
    padding: 15px 20px;
    font-size: 16px;
    gap: 12px;
  }
  
  .service-app-card img {
    width: 35px;
    height: 35px;
  }
  
  .service-app-card .desc {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .service-hero {
    height: 350px;
  }
  
  .service-hero-text .title {
    font-size: 24px;
  }
  
  .service-hero-text .desc {
    font-size: 14px;
    line-height: 20px;
  }
  
  .service-table-section .title {
    font-size: 20px;
  }
  
  .service-table-section .fixed-box img {
    width: 35px;
    height: 31px;
  }
  
  .box-desc {
    font-size: 12px;
  }
  
  .service-app-card {
    padding: 12px 15px;
    font-size: 14px;
  }
  
  .service-app-card img {
    width: 30px;
    height: 30px;
  }
  
  .service-app-card .desc {
    font-size: 11px;
  }
}
