* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}
body {
  min-width: 1300px;
  scroll-behavior: smooth;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  z-index: 1000;
}

.left-section {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 218px;
}

.logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-left: 22px;
}

.title-group h1 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  line-height: 1.2;
}

.title-group p {
  font-size: 12px;
  color: #999;
}

.nav-menu {
  display: flex;
  gap: 80px;
  list-style: none;
  font-size: 15px;
}

.nav-menu li {
  position: relative;
  padding: 8px 0;
  cursor: pointer;
  color: #666;
}

.nav-menu li.active {
  color: #2c7dff;
}

.nav-menu li.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
}

.right-section {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 218px;
}

.customer-service {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 2px 20px 2px 0px; /* 右边正常留空，左边去掉 padding */
  background: rgba(44, 125, 255, 0.12);
  border-radius: 50px;
  color: #2c7dff;
  font-size: 14px;
  cursor: pointer;
  margin-left: 80px;
  overflow: hidden; /* 防止内容溢出 */
}

/* 让图标贴合左边且保持圆形 */
.customer-service .icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff; /* 可选：确保图像背景透明时也美观 */
}

.plugin-card {
  height: 355px;
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  background: linear-gradient(224deg, #f5f7ff 0%, #f8fdff 100%);
}
.main-container {
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  background-image: url("../img/cbj.png"); /* 替换为你的图片路径 */
  background-size: cover; /* 确保图片覆盖整个按钮 */
  background-position: center; /* 图片居中显示 */
  background-repeat: no-repeat; /* 防止图片重复 */
  padding: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 712px;
}

.title-line {
  margin-top: 100px;
  font-size: 70px;
  font-weight: bold;
  margin-bottom: 10px;
}

.blue-text {
  color: #2c7dff;
}

.subtitle {
  font-size: 40px;
  color: #000;
  margin-bottom: 30px;
}

.features-container {
  width: 74%;
  background: rgba(255, 255, 255, 0.36);
  box-shadow: inset 0px 1px 5px 0px #ffffff;
  border-radius: 15px;
  border: 1px solid #ffffff;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 30px;
  padding: 32px 20px;
  margin-top: 34px;
}

.feature-item {
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #333;
}

.feature-icon {
  width: 22px;
  height: 22px;
  margin-right: 8px;
}

.install-button {
  width: 264px;
  height: 84px;
  background-image: url(../img/buttonbj.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  border-radius: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 22px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  outline: none;
  margin-top: 51px;
  margin-bottom: 60px;
}

.install-button:hover {
  transform: translateY(-2px);
}
.container {
  margin: 0 auto;
}

.section-title {
  font-weight: 600;
  font-size: 40px;
  color: #000000;
  text-align: center;
  margin-top: 130px;
  margin-bottom: 10px;
}

.section-subtitle {
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  text-align: center;
  margin-bottom: 80px;
}

.price-cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 100px;
  max-width: 1310px;
  margin: 0 auto;
}

.price-card {
  background-image: url("../img/cardbj.png");
  background-size: cover;
  width: 254px;
  padding: 20px 15px;
  border-radius: 10px;
  color: white;
  text-align: center;
}

.service-name {
  font-weight: 400;
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 60px;
}

.price {
  display: flex;
  justify-content: center;
  align-items: baseline;
  margin-bottom: 15px;
  color: #000;
}

.price-symbol {
  font-size: 35px;
  margin-right: 5px;
}

.price-amount {
  font-size: 50px;
  position: relative;
}

.price-tag {
  position: absolute;
  top: 5px;
  right: -35px;
  width: 43px;
  height: 22px;
  border-radius: 30px;
  border: 1px solid #0062ff;
  color: #0062ff;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
}

.character-limit {
  font-weight: 400;
  font-size: 15px;
  color: #444d5f;
  margin-bottom: 40px;
}

.language-count {
  font-weight: 400;
  font-size: 16px;
  color: #444d5f;
}

.details-link {
  font-weight: 400;
  font-size: 12px;
  color: #0062ff;
  text-decoration: underline;
  cursor: pointer;
  margin-bottom: 30px;
  display: inline-block;
}
.feature-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  margin-bottom: -280px;
  max-width: 1310px;
}

.text-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  padding-right: 100px;
  padding-left: 100px;
}

.feature-title {
  font-weight: 500;
  font-size: 30px;
  color: #0062ff;
  margin-bottom: 23px;
  line-height: 1.3;
}

.feature-desc {
  font-weight: 400;
  font-size: 18px;
  color: #444d5f;
  line-height: 1.5;
}

.image-content {
  width: 60%;
  overflow: hidden;
}

.image-content img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.user-container {
  max-width: 1310px;
  margin: 0 auto;
  padding: 0 100px;
}
.contact-line {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 0;
}

.contact-text {
  font-weight: 500;
  font-size: 30px;
  color: #0062ff;
  white-space: nowrap;
}

.dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #0062ff;
}

.dot-medium {
  opacity: 0.5;
}

.dot-light {
  opacity: 0.1;
}

.line {
  flex-grow: 1;
  height: 1px;
  background: #0062ff;
}
.step-row {
  display: flex;
  margin-bottom: 30px;
  margin-top: 30px;
}

.step-number {
  font-weight: bold;
  margin-right: 10px;
}

.text-contents {
  flex: 1;
  color: #444d5f;
  font-size: 16px;
}

.instruction {
  line-height: 1.6;
  margin-bottom: 5px;
}

.image-row {
  display: flex;
  justify-content: space-between;
  margin: 15px 0;
}

.image-row img {
  object-fit: contain;
}

.centered-content {
  text-align: center;
  margin: 80px 0;
}

.two-images {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

.two-images img {
}
.carousel-container {
  max-width: 1310px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

/* Carousel Container Styles */
.carousel-track {
  display: flex;
  animation: scroll-left 20s linear infinite;
}

.carousel-track.paused {
  animation-play-state: paused;
}

/* Testimonial Card Styles */
.testimonial-card {
  width: 339px;
  height: 256px;
  background-image: url("../img/pjk.png");
  background-size: cover;
  background-position: center;
  padding: 60px 40px;
  flex-shrink: 0;
  position: relative;
  margin-right: 20px;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.testimonial-text {
  width: 282px;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 40px;
  font-weight: 500;
}

/* User Info Section */
.user-info {
  position: absolute;
  bottom: 40px;
  left: 40px;
  display: flex;
  align-items: center;
  width: calc(100% - 80px);
}

.user-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  flex-shrink: 0;
}

.user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.user-details {
  flex: 1;
}

.user-name {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
}

.user-title {
  font-size: 12px;
  color: #666;
  margin-bottom: 8px;
}

.rating-stars {
  display: flex;
  gap: 4px;
}

.rating-stars img {
  width: 16px;
  height: 16px;
}

/* Carousel Navigation (Optional) */
.carousel-nav {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
}

.carousel-nav button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  padding: 0;
  cursor: pointer;
}

.carousel-nav button.active {
  background: #0062ff;
}
.footer {
  height: 240px;
  background: linear-gradient(90deg, #2c7dff 0%, #00c3ff 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  color: white;
  margin-top: 300px;
}

.top-row {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin-bottom: 20px;
}

.logos {
  margin-right: auto; /* 将logo推到左边 */
}

.logos img {
  height: 42px;
}

.brand-text {
  margin-right: auto; /* 将品牌文本居中 */
  text-align: left;
  margin-left: 20px;
}

.brand-name {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 4px;
}

.brand-subname {
  font-size: 12px;
  letter-spacing: 1px;
  opacity: 0.8;
}

.slogan {
  font-size: 14px;
  text-align: center;
  width: 100%;
  max-width: 1200px;
}
.translation-engine-container {
  background-image: url("../img/cjbj.png");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  margin-bottom: 30px;
}

.text-contentcj {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.titlecj {
  font-weight: 500;
  font-size: 18px;
  color: #000000;
  margin-bottom: 7px;
}

.subtitlecj {
  font-weight: 400;
  font-size: 14px;
  color: #444d5f;
}

.numbercj {
  font-weight: 400;
  font-size: 140px;
  color: #218fff;
  line-height: 100px;
  height: 100%;
  display: flex;
  align-items: center;
  opacity: 0.1;
  width: 80px;
}
.centerMx,
.centerMxGz,
.centerBaidu,
.centerYoudao {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 562px;
  height: 300px;
  z-index: 3;
  background-color: #fff;
  display: none;
  border-radius: 14px;
  border: 1px solid #f2e7ff;
}
.languages-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  font-size: 14px;
  height: 300px;
  padding: 10px;
  overflow: auto;
}

.language {
  list-style-type: none;
  margin: 0;
}

.logoss {
  width: 90px;
  height: 90px;
  margin-top: 100px;
}

.titles {
  font-weight: bold;
  font-size: 60px;
  color: #000000;
  margin-top: 30px;
}

.subtitles {
  font-weight: 400;
  font-size: 30px;
  color: #000000;
  margin-top: 10px;
}

.button-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 130px;
}

.browser-button {
  position: relative;
  width: 160px;
  height: 60px;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 5px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  z-index: 0;
  cursor: pointer;
}

.browser-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #b7c3dc;
  opacity: 0.2;
  backdrop-filter: blur(10px);
  z-index: -1;
}

.browser-button:hover {
  border-color: #3a8dff;
  opacity: 1;
}

.browser-button img,
.browser-button span {
  z-index: 1;
}
.browser-button img {
  width: 35px;
  margin-right: 10px;
}

.weiChat {
  width: 53px;
  height: 53px;
  position: fixed;
  right: 1px;
  top: 50%;
  z-index: 999;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left;
  background-image: url("../img/weichat.png");
  cursor: pointer;
}

.right-qr-wrap {
  width: 200px;
  height: 222px;
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.12);
  border-radius: 24px;
  background-color: #fff;
  position: relative;
  right: 160px;
  top: 55px;
}

.right-qr-wrap .footer-qr {
  position: absolute;
  left: 50%;
  top: 34px;
  transform: translateX(-50%);
}

.right-qr-wrap p {
  width: 100%;
  position: absolute;
  top: 167px;
  left: 0;
  text-align: center;
}

.footer-qr {
  width: 110px;
  height: 109px;
  background-size: cover; /* 或 contain */
  background-repeat: no-repeat;
  background-position: left; /* 可选：控制图片居中 */
  background-image: url("../img/qrBg.png");
  padding: 2px;
}

.footer-qr img {
  width: 106px;
  height: 105px;
}

.hidden {
  display: none;
}

.advertisement img {
  width: 253px;
  height: 54px;
  cursor: pointer;
}

.advertisement-wrap {
  position: fixed;
  top: 110px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}

.advertisement-wrap img {
  width: 559px;
  height: 566px;
}

.advertisement-wrap .close {
  position: absolute;
  right: 29px;
  top: 25px;
  width: 14px;
  height: 14px;
  z-index: 99;
  cursor: pointer;
}
