@font-face {
  font-family: "PingFang";
  src: url("../fonts/PingFang-Bold.ttf");
}

body {
  font-family: "PingFang", sans-serif;
  color: rgba(0, 0, 0, 0.6);
}

html {
  font-size: calc(100vw / 19.2);
  font-size: clamp(0.5rem, calc(100vw / 19.2), 10rem);
}

.party-structure-container {
  max-width: 12rem;
  margin: 0 auto;
  padding: 1rem 0rem;
}

.content-section {
  margin-bottom: 0.6rem;
}

.content-section:last-child {
  margin-bottom: 0;
}

/* 标题部分样式 */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 0.2rem;
}

.section-title {
  margin: 0;
  font-size: 0.24rem;
  font-weight: 400;
  color: #ee1d23;
  line-height: 2em;
  text-align: center;
}

.title-divider {
  width: 12rem;
  height: 0.01rem;
  background-color: #ee1d23;
}

.stats-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 0.3rem;
  box-sizing: border-box;
  gap: 1.2rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.12rem;
}

.stat-icon img {
  width: 0.56rem;
  height: 0.56rem;
  display: block;
}

.icon-placeholder {
  width: 0.56rem;
  height: 0.56rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.2rem;
  font-weight: bold;
}


.stat-data {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.06rem;
  width: 0.8rem;
}

.stat-number {
  display: flex;
  align-items: flex-end;
  gap: 0.01rem;
}

.number {
  font-size: 0.32rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.9);
  line-height: 1.125em;
}

.unit {
  font-size: 0.14rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.714em;
}

.stat-label {
  font-size: 0.18rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.333em;
  text-align: center;
}

.text-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.text-block {
  display: flex;
  flex-direction: column;
  align-items: left;
  width: 100%;
}

.text-title {
  font-size: 0.2rem;
  font-weight: 400;
  color: #ee1d23;
  line-height: 1.4em;
  margin: 0.04rem 0;
  text-align: left;
}

.text-description {
  /*text-indent: 2em;*/
  font-size: 0.18rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
  line-height: 2em;
  margin: 0;
  width: 12rem;
  box-sizing: border-box;
  text-align: justify

}