/* 基础样式 */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.title1 {
    font-weight: bold;
  font-size: 32px;
  text-align: center;
  color: #E98E3D;
  margin-bottom: 20px;
}

.title2 {
  text-align: center;
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

/* 数据统计区 */
.icon_box {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.flex-column {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  width: calc(33.33% - 20px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.flex-column img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.desc_data {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

/* 卡片区域 */
.card_box {
  display: flex;
  flex-wrap: wrap; /* 允许换行 */
  gap: 20px; /* 卡片之间的间距 */
}

.card_item {
  display: flex;
  align-items: center; /* 图标与文字垂直居中 */
  background-color: #FFE5CC;
  border-radius: 50px;
  padding: 15px;
  width: calc(33.33% - 15px); /* 每行3个卡片，减去gap空间 */
  box-sizing: border-box;
}

.icon_circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px; /* 图标和文字之间留出空隙 */
  flex-shrink: 0; /* 防止图标被压缩 */
}

.icon_circle img {
  max-width: 100%;
  max-height: 80%;
}

.card_text {
  margin: 0;
  font-size: 16px;
  color: #333;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* 关于我们*/
.module_us {
  font-family: "微软雅黑", Arial, sans-serif;
  background-color: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
  padding: 20px;
}

.content {
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  max-width: 1200px;
  width: 100%;
}

h2 {
  margin-bottom: 20px;
  color: #333;
}

.qr-wrapper {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.qr-card {
      display: flex;
      align-items: center; /* 垂直居中 */
      width: calc(50% - 10px);
      padding: 20px;
      border: 1px solid #ccc;
      max-width: 500px;
      border-radius: 8px;
      font-family: Arial, sans-serif;
      box-shadow: 0 6px 10px rgba(0, 0, 0, 0.5);
      transition: transform 0.3s ease;
       background-color: #fff;
    }

    .qr-card:hover {
  transform: translateY(-5px);
   }
    .qr-image {
      width: 200px;
      height: 200px;
      margin-right: 20px;
    }

    .qr-text {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .qr-text span {
      font-size: 18px;
      font-weight: bold;
      margin-bottom: 5px;
    }

    .qr-text img {
      vertical-align: middle;
      width: 20px;
      height: 20px;
      margin-right: 5px;
    }

    .qr-text p {
      margin: 0;
      font-size: 14px;
      color: #555;
    }
/* 响应式布局 */
@media (max-width: 992px) {
  .flex-column,
  .card_item {
    width: calc(50% - 20px);
  }
   .qr-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .qr-card {
    width: 100%;
  }
    .qr-image {
      width: 100px;
      height: 100px;
      margin-right: 20px;
    }

}

@media (max-width: 600px) {
  .flex-column,
  .card_item {
    width: 100%;
  }

  .title1 {
    font-size: 24px;
  }

  .title2 {
    font-size: 14px;
  }

  .card_text {
    font-size: 14px;
  }
     .qr-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .qr-card {
    width: 100%;
  }
    .qr-image {
      width: 100px;
      height: 100px;
      margin-right: 20px;
    }
}