/* 基础重置和根字体大小设置 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "PingFang";
  src: url("../fonts/PingFang-Medium.ttf");
}

html {
  font-size: calc(100vw / 19.2);
  font-size: clamp(0.5rem, calc(100vw / 19.2), 10rem);
}

body {
  font-family: 'PingFang', sans-serif;
  background-color: #FFFFFF;
  color: rgba(0, 0, 0, 0.9);
}


.container {
  width: 100%;
  padding: 1.5rem 3.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.section {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
  padding-bottom: 0.3rem;
  border-bottom: 0.01rem solid #E7E8EB;
}

.header {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.14rem;
}

.title-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.2rem;
}

.title {
  font-weight: 400;
  font-size: 0.2rem;
  line-height: 1.4;
  color: #4F80C8;
  flex: 1;
}

.detail-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  font-size: 0.14rem;
  line-height: 1.57;
  color: #4F80C8;
  cursor: pointer;
}
.detail-btn a{
  color: #4F80C8;
  text-decoration: none;
}
.info-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.1rem;
}

.project-id {
  overflow: hidden;
  color: #4F80C8;
  text-overflow: ellipsis;
  font-family: "PingFang SC";
  font-size: 0.16rem;
  font-style: normal;
  font-weight: 400;
  line-height: 0.24rem;

}

.date {
  font-weight: 400;
  font-size: 0.16rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.6);
}

.date {
  color: rgba(0, 0, 0, 0.6);
}

.content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  height: 1.6rem;
}

.condition,
.overview {
  font-weight: 400;
  font-size: 0.16rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.9);
  height: 0.24rem;
}

.condition-detail {
  font-weight: 400;
  font-size: 0.16rem;
  line-height: 2;
  color: rgba(0, 0, 0, 0.6);
  width: 100%;
}

.load-more-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.1rem;
  padding: 0.05rem 0.16rem;
  font-weight: 400;
  font-size: 0.14rem;
  line-height: 1.57;
  text-align: center;
  color: #4F80C8;
  background-color: #FFFFFF;
  border: 0.01rem solid #DCDDE1;
  border-radius: 0.16rem;
  cursor: pointer;
  width: fit-content;
  margin-top: 0.2rem;
}