* {
  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: 12rem;
  margin: 0 auto;
  padding: 1.5rem 0;
}

/* 标题部分 */
.title-section {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.title-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  padding: 0.04rem 0;
}

.title {
  width: 12rem;
  color: #4F80C8;
  font-weight: 400;
  font-size: 0.24rem;
  line-height: 1.3333;
  text-align: left;
}

.divider {
  width: 100%;
  height: 0.02rem;
  background-color: #4F80C8;
}

/* 内容部分 */
.content-section {
  display: flex;
  flex-direction: column;
  gap: 0.01rem;
}

.job-card {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 0.2rem;
  padding: 0.3rem 0;
  border-bottom: 0.01rem solid #E7E8EB;
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 12rem;
  gap: 0.72rem;
}

.job-title {
  color: #4F80C8;
  font-weight: 400;
  font-size: 0.2rem;
  line-height: 1.4;
  text-align: left;
  flex: 1;
}

.detail-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.04rem;
  padding: 0.06rem 0.12rem;
  cursor: pointer;

}
.button-text {
  color: #4F80C8;
  font-weight: 400;
  font-size: 0.14rem;
  line-height: 1.5714;
  text-align: left;
}

.button-icon {
  width: 0.16rem;
  height: 0.16rem;
}

.job-description {
  width: 100%;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 400;
  font-size: 0.16rem;
  line-height: 2;
  text-align: left;
}

.publish-date {
  color: rgba(0, 0, 0, 0.6);
  font-weight: 400;
  font-size: 0.14rem;
  line-height: 1.5714;
  text-align: left;
}