@font-face {
  font-family: "PingFang";
  src: url("../fonts/PingFang Regular.ttf");
}

html {
  font-size: clamp(0.5rem, calc(100vw / 19.2), 10rem);
}


body {
  margin: 0;
  padding: 0;
  font-family: 'PingFang';
}


.container {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 1.5rem 3.6rem;
  box-sizing: border-box;
}

.content {
  width: 12rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.notice-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-bottom: 0.3rem;
  border-bottom: 0.001rem solid #e7e8eb;
  box-sizing: border-box;
}

.title-section {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 0.2rem;
  align-items: flex-start;
}

.title {
  font-size: 0.2rem;
  font-weight: 400;
  line-height: 1.4em;
  color: #4f80c8;
  flex: 1;
}

.detail-btn {
  width: 1rem;
  height: 0.34rem;
  display: flex;
  align-items: center;
  position: relative;
}
.detail-btn a {
  color: #4F80C8;
  text-decoration: none;
}

.detail-btn span {
  font-size: 0.14rem;
  font-weight: 400;
  line-height: 1.5714em;
  color: #4f80c8;
  position: absolute;
  left: 0.12rem;
  top: 0.06rem;
}

.detail-btn img {
  width: 0.16rem;
  height: 0.16rem;
  position: absolute;
  left: 0.72rem;
  top: 0.09rem;
}

.description {
  width: 100%;
  height: 0.64rem;
  font-size: 0.16rem;
  font-weight: 400;
  line-height: 2em;
  color: rgba(0, 0, 0, 0.6);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.publish-time {
  font-size: 0.14rem;
  font-weight: 400;
  line-height: 1.5714em;
  color: rgba(0, 0, 0, 0.6);
}

.load-more-btn {
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.1rem;
  padding: 0.05rem 0.16rem;
  background-color: #ffffff;
  border: 0.001rem solid #dcdde1;
  border-radius: 0.16rem;
  box-sizing: border-box;
  cursor: pointer;
  margin: 0 auto;
}

.load-more-btn span {
  font-size: 0.14rem;
  font-weight: 400;
  line-height: 1.5714em;
  text-align: center;
  color: #000000;
}