.page {
  background-color: rgba(255, 255, 255, 1);
  position: relative;
  width: 100%;
  max-width: 100vw;
  min-height: 100vh;
  height: auto;
  overflow-x: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

/* 移动端样式 */
@media screen and (max-width: 768px) {
  .page {
    min-width: 0;
    width: 100%;
    max-width: 100vw;
    min-height: 100vh;
    height: auto;
    align-items: flex-start;
    overflow-x: hidden;
  }
}

/* 隐藏滚动条但保持滚动功能 */
.page::-webkit-scrollbar {
  display: none;
}

.page {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.group_1 {
  background-image: url('./14081748876401_.pic.jpg');
  background-repeat: repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  max-width: 100vw;
  min-height: 100vh;
  height: auto;
  border: 1px solid rgba(151, 151, 151, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
}

/* 移动端样式 */
@media screen and (max-width: 768px) {
  .group_1 {
    min-width: 0;
    width: 100%;
    max-width: 100vw;
    min-height: 100vh;
    background-size: cover;
    overflow-x: hidden;
  }
}

.block_1 {
  background-color: rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 5vw;
  box-sizing: border-box;
}

/* 移动端样式 */
@media screen and (max-width: 768px) {
  .block_1 {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    height: 50px;
    padding: 0 10px;
    box-sizing: border-box;
  }
}

.content {
  display: flex;
  align-items: center;
}

/* 下载链接容器 */
.download-links {
  display: flex; /* 默认显示，PC端由JavaScript隐藏 */
  align-items: center;
  gap: 15px;
  margin-left: auto;
}

.download-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
}

.download-link:hover {
  background-color: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.download-link span {
  color: #ffffff;
}

/* 移动端内容样式 */
@media screen and (max-width: 768px) {
  .block_1 {
    flex-wrap: wrap;
    min-height: 50px;
    height: auto;
    padding: 8px 10px;
  }
  
  .content {
    flex-wrap: wrap;
  }
  
  .label_1 {
    width: 24px;
    height: 32px;
    margin: 0 4px 0 0;
  }
  
  .text_1 {
    font-size: 14px;
  }
  
  .download-links {
    margin-left: auto;
    margin-top: 0;
    width: auto;
    justify-content: flex-end;
    gap: 8px;
  }
  
  .download-link {
    padding: 6px 14px;
    font-size: 12px;
    flex: 0 0 auto;
  }
}

.box_2 {
  width: 100%;
  max-width: 1920px;
  min-height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 20px 5vw;
  overflow-y: auto;
  box-sizing: border-box;
}

/* 移动端样式 */
@media screen and (max-width: 768px) {
  .box_2 {
    width: 100%;
    max-width: 100%;
    min-height: calc(100vh - 90px);
    padding: 15px 20px;
    box-sizing: border-box;
    overflow-x: hidden;
  }
}

/* 隐藏内容区域的滚动条 */
.box_2::-webkit-scrollbar {
  display: none;
}

.box_2 {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.group_6 {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  box-sizing: border-box;
}

/* 移动端样式 - 垂直堆叠 */
@media screen and (max-width: 768px) {
  .group_6 {
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
}

/* 修改其他相关样式以适应自适应布局 */
.label_1 {
  width: 29px;
  height: 40px;
  margin: 0 5px 0 0;
}

.text_1 {
  margin: 0;
  font-weight: bold;
}

.box_3 {
  margin: 0;
  height: auto;
}

/* 右侧图片和二维码容器 */
.image-right-section {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 20px;
  box-sizing: border-box;
  width: auto;
  max-width: 50%;
}

/* 修改图片相关样式 */
.image_1 {
  max-width: 50%;
  height: auto;
  object-fit: contain;
  box-sizing: border-box;
}

/* 移动端样式 */
@media screen and (max-width: 768px) {
  .image-right-section {
    width: 100%;
    max-width: 100%;
    align-items: center;
    gap: 20px;
  }
  
  .image_1 {
    max-width: 100%;
    width: 100%;
    margin-top: 10px;
    box-sizing: border-box;
  }
}

/* 修改文字相关样式，使用vw单位实现响应式 */
.text_2 {
  width: 100%;
  height: auto;
  white-space: normal;
  font-weight: bold;
}

.text_3 {
  width: 100%;
  height: auto;
  white-space: normal;
  margin-top: 10px;
  font-weight: bold;
}

.text_4 {
  margin-top: 20px;
  width: 100%;
  height: auto;
  white-space: normal;
  font-weight: 400;
}

.box_3 {
  width: 45%;
  height: auto;
  margin: 0;
  box-sizing: border-box;
}

/* 移动端样式 */
@media screen and (max-width: 768px) {
  .box_3 {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box;
  }
  
  .text_2, .text_3, .text_4 {
    width: 100% !important;
    padding: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box;
  }
  
  .group_6 .box_3 {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}


/* 添加媒体查询确保最小尺寸时的可读性 */
@media screen and (max-width: 1024px) {
  .box_3 {
    width: 48%;
  }
  
  .text_2 {
    font-size: 24px;
  }
  
  .text_3,
  .text_4 {
    font-size: 16px;
  }
  
}

/* 添加媒体查询以处理大屏幕 */
@media screen and (min-width: 1920px) and (min-height: 1200px) {
  .group_1 {
    background-size: auto;
  }
  
  .box_2 {
    padding: 0 5vw;
  }
}

@media screen and (min-width: 2000px) {
  .text_2,
  .text_3 {
    line-height: 1.4;
  }
}


/* 保留新添加的层级样式 */
.paragraph-layer {
  margin-top: 40px;
  margin-bottom: 30px;
}

.paragraph-layer:last-child {
  margin-bottom: 0;
}

/* 基础样式（适用于1024*768） */
.paragraph-layer span {
  display: block;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  line-height: 20px;
  white-space: normal;
}

/* 移动端段落样式 */
@media screen and (max-width: 768px) {
  .paragraph-layer {
    margin-top: 20px;
    margin-bottom: 15px;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
  }
  
  .paragraph-layer span {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 10px;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
  }
  
  .paragraph_1 {
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .text-group_4 {
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .paragraph {
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
  }
}

/* 1920*1080屏幕 */
@media screen and (min-width: 1920px) and (min-height: 1080px) {
  .paragraph-layer span {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
  }
}

/* 2560*1440屏幕 */
@media screen and (min-width: 2560px) and (min-height: 1440px) {
  .paragraph-layer span {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
  }
}

/* 标题样式 */
.text_2 {
  font-size: 28px;
  line-height: 40px;
}

.text_3 {
  font-size: 20px;
  line-height: 32px;
}

.text_4 {
  font-size: 20px;
  line-height: 28px;
}

/* 移动端标题样式 */
@media screen and (max-width: 768px) {
  .text_2 {
    font-size: 20px;
    line-height: 28px;
  }

  .text_3 {
    font-size: 16px;
    line-height: 24px;
  }

  .text_4 {
    font-size: 14px;
    line-height: 20px;
  }
}

/* 1920*1080屏幕标题样式 */
@media screen and (min-width: 1920px) and (min-height: 1080px) {
  .text_2 {
    font-size: 36px;
    line-height: 48px;
  }

  .text_3,
  .text_4 {
    font-size: 24px;
    line-height: 28px;
  }

  .image_1 {
    max-width: 35%;
  }

}

/* 2560*1440屏幕标题样式 */
@media screen and (min-width: 2560px) and (min-height: 1440px) {
  .text_2 {
    font-size: 40px;
    line-height: 60px;
  }

  .text_3 {
    font-size: 28px;
    line-height: 44px;
  }

  .text_4 {
    font-size: 28px;
    line-height: 42px;
  }
}
.paragraph-layer span:last-child {
  margin-bottom: 0;
}

.bottom {
  background-color: rgba(0, 0, 0, 0.3);
  width:  100%;
  max-width: 100%;
  min-height: 40px;
  height: auto;
  line-height: 40px;
  text-align: center;
  padding: 10px 15px;
  box-sizing: border-box;
}

.bottom span {
  color: #fff;
  display: inline-block;
  line-height: 1.6;
}

/* 移动端底部样式 */
@media screen and (max-width: 768px) {
  .bottom {
    min-height: auto;
    padding: 12px 10px;
    line-height: 1.6;
  }
  
  .bottom span {
    font-size: 11px;
    line-height: 1.8;
    display: block;
  }
  
  .icp-info, .ga-info {
    display: block;
    margin: 8px 0 0 0;
    text-align: center;
  }
  
  .icp-icon, .ga-icon {
    width: 14px;
    height: 14px;
  }
  
  .icp-info a, .ga-info a {
    font-size: 11px;
  }
}

/* 备案信息样式 */
.icp-info, .ga-info {
  display: inline-flex;
  align-items: center;
  margin-left: 15px;
  opacity: 1;
}

.icp-icon, .ga-icon {
  width: 16px;
  height: 16px;
  margin-right: 5px;
  vertical-align: middle;
  opacity: 1;
  filter: none;
}

.icp-info a, .ga-info a {
  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
  opacity: 1;
}

.icp-info a:hover, .ga-info a:hover {
  text-decoration: underline;
  color: #ffffff;
}

/* 二维码下载区域样式 */
.qr-code-section {
  width: auto;
  margin: 0;
  align-items: center;
  box-sizing: border-box;
}

.qr-codes-container {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: flex-start;
  justify-content: center;
}

.qr-code-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.qr-code-image {
  width: 100px;
  height: 100px;
  object-fit: contain;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 6px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.qr-code-label {
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
}

/* 响应式设计 - 二维码区域 */
@media screen and (max-width: 1024px) {
  .qr-code-image {
    width: 100px;
    height: 100px;
  }
  
  .qr-code-label {
    font-size: 14px;
  }
  
  .qr-codes-container {
    gap: 20px;
  }
}

/* 移动端二维码样式 */
@media screen and (max-width: 768px) {
  .qr-code-section {
    width: 100%;
    margin: 0;
    align-items: center;
    box-sizing: border-box;
  }
  
  .qr-codes-container {
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .qr-code-image {
    width: 90px;
    height: 90px;
    padding: 6px;
  }
  
  .qr-code-label {
    font-size: 13px;
  }
}

@media screen and (min-width: 1920px) and (min-height: 1080px) {
  .qr-code-image {
    width: 160px;
    height: 160px;
  }
  
  .qr-code-label {
    font-size: 20px;
  }
  
  .qr-codes-container {
    gap: 50px;
  }
}

/* 新增样式 - 在原有基础上增加的内容 */
.company-details {
  width: 100%;
  max-width: 1500px;
  margin: 40px 0 30px 0;
  box-sizing: border-box;
}

.company-info-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.company-title {
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.4;
}

.company-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: #e0e0e0;
  margin-bottom: 20px;
  line-height: 1.3;
  font-style: italic;
}

.company-desc, .company-desc-en {
  font-size: 14px;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 15px;
  text-align: justify;
}

.company-desc-en {
  color: #d0d0d0;
  font-style: italic;
}

/* 产品功能介绍部分 */
.features-section {
  width: 100%;
  max-width: 1500px;
  margin: 30px 0;
  box-sizing: border-box;
}

.features-title {
  font-size: 22px;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  margin-bottom: 25px;
  line-height: 1.4;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 25px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 20px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.feature-name {
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 13px;
  line-height: 1.5;
  color: #e0e0e0;
  text-align: justify;
}

.compliance-note {
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 8px;
  padding: 15px;
  text-align: center;
}

.compliance-text {
  font-size: 13px;
  line-height: 1.5;
  color: #ffffff;
}

/* 联系信息部分 */
.contact-info-section {
  width: 100%;
  max-width: 1500px;
  margin: 30px 0 20px 0;
  box-sizing: border-box;
}

.contact-title {
  font-size: 22px;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.4;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 15px 20px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
}

.contact-label {
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
  min-width: 80px;
  margin-right: 10px;
}

.contact-value {
  font-size: 14px;
  line-height: 1.4;
  color: #e0e0e0;
  flex: 1;
}

/* 响应式设计 */
@media screen and (max-width: 1024px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .company-title {
    font-size: 20px;
  }
  
  .company-subtitle {
    font-size: 14px;
  }
  
  .features-title, .contact-title {
    font-size: 20px;
  }
  
  .company-desc, .company-desc-en {
    font-size: 13px;
  }
  
  .contact-item {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .contact-label {
    margin-bottom: 5px;
    margin-right: 0;
  }
}

/* 移动端样式 - 公司信息、功能、联系信息 */
@media screen and (max-width: 768px) {
  .company-details {
    width: 100%;
    max-width: 100%;
    margin: 25px 0 20px 0;
    box-sizing: border-box;
  }
  
  .company-info-card {
    padding: 18px;
    border-radius: 10px;
  }
  
  .company-title {
    font-size: 18px;
    margin-bottom: 6px;
  }
  
  .company-subtitle {
    font-size: 12px;
    margin-bottom: 15px;
  }
  
  .company-desc, .company-desc-en {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 12px;
  }
  
  .features-section {
    width: 100%;
    max-width: 100%;
    margin: 25px 0;
    box-sizing: border-box;
  }
  
  .features-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .features-grid {
    gap: 15px;
  }
  
  .feature-card {
    padding: 15px;
    border-radius: 8px;
  }
  
  .feature-name {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .feature-desc {
    font-size: 12px;
    line-height: 1.4;
  }
  
  .compliance-note {
    padding: 12px;
    border-radius: 6px;
  }
  
  .compliance-text {
    font-size: 11px;
    line-height: 1.4;
  }
  
  .contact-info-section {
    width: 100%;
    max-width: 100%;
    margin: 25px 0 15px 0;
    box-sizing: border-box;
  }
  
  .contact-title {
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .contact-details {
    gap: 12px;
  }
  
  .contact-item {
    padding: 12px 15px;
    border-radius: 6px;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .contact-label {
    font-size: 13px;
    margin-bottom: 6px;
    margin-right: 0;
    min-width: auto;
  }
  
  .contact-value {
    font-size: 13px;
    line-height: 1.4;
    word-break: break-all;
  }
  
  /* 确保文本不会溢出 */
  .text_1, .text_2, .text_3, .text_4 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
  
  /* 段落文本优化 */
  .paragraph_1 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
  
  .paragraph-layer {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
  
  .paragraph-layer span,
  .paragraph {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (min-width: 1920px) and (min-height: 1080px) {
  .company-title {
    font-size: 28px;
  }
  
  .company-subtitle {
    font-size: 18px;
  }
  
  .features-title, .contact-title {
    font-size: 26px;
  }
  
  .company-desc, .company-desc-en {
    font-size: 16px;
  }
  
  .feature-name {
    font-size: 20px;
  }
  
  .feature-desc {
    font-size: 15px;
  }
}

/* 微信提示框样式 */
.wechat-tip-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  padding: 20px;
  box-sizing: border-box;
}

.wechat-tip-content {
  background-color: #ffffff;
  border-radius: 12px;
  width: 100%;
  max-width: 320px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.wechat-tip-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #e5e5e5;
}

.wechat-tip-title {
  font-size: 18px;
  font-weight: bold;
  color: #333333;
}

.wechat-tip-close {
  font-size: 24px;
  color: #999999;
  cursor: pointer;
  line-height: 1;
  user-select: none;
}

.wechat-tip-close:hover {
  color: #333333;
}

.wechat-tip-body {
  padding: 20px;
  line-height: 1.6;
}

.wechat-tip-body p {
  margin: 0;
  font-size: 15px;
  color: #666666;
  text-align: left;
}

.wechat-tip-footer {
  padding: 12px 20px 20px;
  text-align: center;
}

.wechat-tip-btn {
  background-color: #007aff;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 10px 40px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s;
}

.wechat-tip-btn:hover {
  background-color: #0056b3;
}

.wechat-tip-btn:active {
  background-color: #004085;
}

/* 移动端提示框样式 */
@media screen and (max-width: 768px) {
  .wechat-tip-content {
    max-width: 90%;
  }
  
  .wechat-tip-title {
    font-size: 16px;
  }
  
  .wechat-tip-body p {
    font-size: 14px;
  }
  
  .wechat-tip-btn {
    font-size: 15px;
    padding: 10px 30px;
  }
}

