@charset "UTF-8";
:root {
  --primary-pink: #df608f;
  --primary-blue: #009cfd;
  --neutral-gray: #f8f9fa;
  --text-dark: #333;
  --transition-base: all 0.3s ease;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-image: url(../image/background.jpg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  font-family: "Segoe UI", system-ui, sans-serif;
  line-height: 1.6;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #ffffff; /* 白色背景 */
}

header {
  padding: 30px; /* 增大间距 */
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-container .section {
  align-items: center;
  flex-direction: column;
}
.header-container p {
  color: #df608f;
  font-size: 0.75rem;
}

.logo {
  color: #df608f; /* 主题色 */
  font-size: 36px;
  margin: 0;
}

.nav-link,
.register-link {
  color: #df608f; /* 主题色 */
  margin: 0 20px; /* 增大间距 */
  text-decoration: none;
}

.register-link {
  color: #009cfd; /* 主题色 */
}

main {
  padding: 60px; /* 增大间距 */
  display: flex;
  justify-content: space-between;
}

.tupian1 img {
  height: 25rem;
  align-items: center;
}
.hero {
  text-align: center;
}
.sub-title {
  color: #009cfd; /* 主题色 */
  font-size: 1.25rem;
  margin: 10px 0; /* 增大间距 */
  /* border: 2px solid #009cfd; */
  padding: 8px; /* 增加内边距 */
}
.main-title {
  color: #df608f; /* 主题色 */
  font-size: 4rem;
  margin: 10px 0; /* 增大间距 */
  /* border: 2px solid #df608f;  */
  padding: 10px; /* 增加内边距 */
}
.description {
  color: #009cfd; /* 主题色 */
  font-size: 1.25rem;
  margin: 10px 0; /* 增大间距 */
  /* border: 2px solid #009cfd; */
  padding: 8px; /* 增加内边距 */
}

.hero-image {
  width: 100%;
  height: auto;
  max-width: 600px;
  margin: 30px 0; /* 增大间距 */
}

.service-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding: 40px 20px;
}

.service-card {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(223, 96, 143, 0.1);
  margin: 20px auto;
  width: 90%;
  max-width: 1200px;
  overflow: hidden;
}

.service-overview-title {
  font-size: 28px;
  color: #df608f;
  margin-bottom: 30px;
  text-align: center;
}

.service-flow {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  margin: 40px 0;
}

.flow-step {
  flex: 1;
  min-width: 200px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 25px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.flow-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(223, 96, 143, 0.15);
}

.step-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: inline-block;
  padding: 15px;
  background: rgba(223, 96, 143, 0.1);
  border-radius: 50%;
  line-height: 1;
}

.step-title {
  font-size: 20px;
  color: var(--primary-pink);
  margin: 15px 0;
  font-weight: 600;
}

.step-description {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 1200px) {
  .service-flow {
    flex-wrap: wrap;
    justify-content: center;
  }

  .flow-step {
    flex: 0 1 calc(33.33% - 20px);
    min-width: 250px;
  }
}

@media (max-width: 768px) {
  .service-flow {
    flex-direction: column;
    align-items: center;
  }

  .flow-step {
    width: 100%;
    max-width: 350px;
  }
}

.cta-container {
  text-align: center;
  margin-top: 50px;
}

.service-section .cta-button {
  display: inline-flex;
  align-items: center;
  background: var(--primary-pink);
  color: white;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 30px;
  font-size: 1.25rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.service-section .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(223, 96, 143, 0.2);
  background: linear-gradient(45deg, var(--primary-pink), #e87fa8);
}

.service-section .button-text {
  margin-right: 10px;
}

.service-section .button-icon {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.service-section .cta-button:hover .button-icon {
  transform: translateX(5px);
}

.service-icon {
  width: 80px;
  height: auto;
  margin-bottom: 10px;
}

.service-title {
  color: #df608f; /* 主题色 */
  font-size: 20px;
  margin: 15px 0; /* 增大间距 */
  border: 1px solid #df608f; /* 添加边框 */
  padding: 8px; /* 增加内边距 */
}

.service-description {
  font-size: 16px;
  margin: 10px 0; /* 增大间距 */
  border: 1px solid #cccccc; /* 添加边框 */
  padding: 8px; /* 增加内边距 */
}

footer {
  background-color: #f3f3f1;
  color: #ffffff;
  /* text-align: center; */
  padding-top: 1rem; /* 增大间距 */
}

.form-background {
  background-color: #ffffff; /* 白色背景 */
}

.form-container {
  max-width: 800px;
  margin: 100px auto;
  padding: 30px; /* 增大内边距 */
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  color: #009cfd;
}
.form-container button {
  width: 100%;
  padding: 10px;
  margin-top: 15px;
  border: none;
  border-radius: 4px;
  background-color: #009cfd; /* 主题色 */
  color: white;
  cursor: pointer;
}
.form-container button:hover {
  background-color: #c95a88; /* 悬停效果 */
}

.form-title {
  color: #df608f;
  font-size: 36px;
  text-align: center;
  margin-bottom: 20px; /* 增大间距 */
  border: 2px solid #333333; /* 添加边框 */
  padding: 10px; /* 增加内边距 */
}

.form-label {
  font-size: 14px;
  margin-bottom: 5px; /* 增大间距 */
}

.form-input {
  width: 100%;
  padding: 12px; /* 增大内边距 */
  margin-bottom: 15px; /* 增大间距 */
  border: 1px solid #cccccc;
  border-radius: 4px;
}
.form-group {
  position: relative;
  margin: 10px; /* 为每个表单组添加间距 */
}

.tooltip-trigger {
  position: relative;
  cursor: pointer;
  /* text-decoration: underline; */
  display: inline-block;
}

.tooltip-content {
  visibility: hidden;
  width: 450px; /* 控制提示框的最大宽度，自动适应文本 */
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
  text-align: left;
  padding: 10px;
  border-radius: 5px;
  position: absolute;
  z-index: 9999; /* 确保提示框显示在其他内容之上 */
  bottom: 125%; /* 提示框位于文本上方 */
  left: 50%;
  margin-left: -150px; /* 使提示框居中 */
  opacity: 0;
  transition: opacity 0.3s;
  white-space: normal; /* 允许文本自动换行 */
  word-wrap: break-word; /* 长文本换行 */
}
.price-group {
  color: red;
  padding-top: 1rem;
}

.tooltip-trigger:hover .tooltip-content {
  visibility: visible;
  opacity: 100;
}
.form-button {
  background-color: #009cfd; /* 主题色 */
  color: #ffffff;
  border: none;
  padding: 12px; /* 增大内边距 */
  width: 100%;
  border-radius: 4px;
  cursor: pointer;
} /*# sourceMappingURL=style.css.map */
/* 注意事项样式 */
.zhuyi {
  background: linear-gradient(180deg, #df608f 0%, rgba(223, 96, 143, 0.8) 100%);
  padding: 30px 20px;
  position: relative;
  margin-top: 20px;
}

.zhuyi h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 600;
  text-align: left;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.zhuyi p {
  color: #fff;
  font-size: 15px;
  line-height: 1.6;
  margin: 12px auto;
  max-width: 1200px;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .zhuyi {
    padding: 25px 15px;
    margin-top: 15px;
  }

  .zhuyi h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .zhuyi p {
    font-size: 13px;
    margin: 8px auto;
    padding: 0 10px;
    white-space: normal;
  }
}

/* 首页主体部分 */
.hero-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.hero {
  flex: 1;
  padding-right: 60px;
}

.sub-title {
  color: var(--primary-blue);
  font-size: 1.25rem;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease;
}

.main-title {
  color: var(--primary-pink);
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 30px;
  animation: fadeInUp 0.8s ease;
}

.description {
  color: var(--text-dark);
  font-size: 1.25rem;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease;
}

.hero-image {
  flex: 1;
}

.image-card {
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.image-card:hover {
  transform: translateY(-10px);
}

.image-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* 右侧 QQ 按钮容器 */
.qq-wrapper {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* QQ 按钮 */
.qq-container {
  width: 80px;
  height: 80px;
  background-color: #4a90e2;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.qq-container img {
  width: 50px;
  height: 50px;
}

/* 二维码弹出框 */
.qq-qrcode {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  width: 150px;
  padding: 10px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.qq-qrcode img {
  width: 100%;
  border-radius: 10px;
}

/* 当鼠标悬停在 qq-wrapper 内时，显示二维码 */
.qq-wrapper:hover .qq-qrcode {
  opacity: 1;
  visibility: visible;
}
/* 底部样式 */
.footer {
  background: linear-gradient(#f3f3f1 100%);
  padding: 60px 0 20px;
  margin-top: 80px;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(180deg, #f3f3f1 100%);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  margin-bottom: 40px;
  position: relative;
}

.footer-section {
  flex: 1;
  margin-right: 60px;
}

.footer-section:last-child {
  margin-right: 0;
}

.footer-logo h3 {
  color: var(--primary-pink);
  font-size: 24px;
  margin-bottom: 10px;
}

.footer-logo p {
  color: #666;
  font-size: 14px;
}

.footer-section h4 {
  color: #333;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 14px;
  position: relative;
  padding-left: 0;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--primary-pink);
  padding-left: 5px;
}

.footer-section p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(238, 238, 238, 0.5);
  padding: 20px 0;
  text-align: center;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
}

.beian-info {
  margin-bottom: 10px;
}

.beian-link {
  color: #666;
  text-decoration: none;
  margin: 0 10px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}

.beian-link:hover {
  color: var(--primary-pink);
}

.beian-link img {
  height: 16px;
  margin-right: 5px;
}

.copyright {
  color: #666;
  font-size: 14px;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    padding: 0 20px;
  }

  .footer-section {
    margin-right: 0;
    margin-bottom: 30px;
    text-align: center;
  }

  .footer-section ul li {
    margin-bottom: 10px;
  }
}

/* 返回顶部按钮 */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  background: var(--primary-pink);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(223, 96, 143, 0.2);
}

.back-to-top:hover {
  transform: translateY(-3px);
}

.back-to-top.visible {
  opacity: 1;
}

/* 动画 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 响应式设计 */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    padding: 20px;
  }

  .hero {
    padding-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }

  .main-title {
    font-size: 2.5rem;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-section {
    margin-right: 0;
    margin-bottom: 30px;
    text-align: center;
  }
}

/* 主页按钮样式 */
.hero .cta-button {
  display: inline-flex;
  align-items: center;
  background: var(--primary-pink);
  color: white;
  padding: 15px 40px;
  border-radius: 30px;
  font-size: 1.25rem;
  font-weight: 500;
  margin-top: 30px;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  cursor: pointer;
}

.hero .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(223, 96, 143, 0.2);
  background: linear-gradient(45deg, var(--primary-pink), #e87fa8);
}

.hero .button-text {
  margin-right: 10px;
}

.hero .button-icon {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.hero .cta-button:hover .button-icon {
  transform: translateX(5px);
}

@media (max-width: 1200px) {
  .service-card {
    width: 95%;
    padding: 30px;
  }

  .flow-step {
    min-width: 160px;
    padding: 15px;
  }
}

@media (max-width: 768px) {
  .service-flow {
    flex-direction: column;
    align-items: center;
  }

  .flow-step {
    max-width: 300px;
    width: 100%;
    margin: 5px 0;
  }

  .step-description {
    height: auto;
  }
}

@media (max-width: 1200px) {
  .service-flow {
    padding: 0 15px;
  }

  .flow-step {
    padding: 15px 10px;
  }

  .step-description {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .service-flow {
    flex-direction: column;
    align-items: center;
  }

  .flow-step {
    max-width: 300px;
    width: 100%;
    margin: 5px 0;
  }

  .step-description {
    height: auto;
  }
}
