body{
  background: #f5f5f5;
}
#jobList{
  padding: 20px;
}
.panels{
  background: #fff;
  padding: 20px;
  margin-bottom: 20px;
}
.jobtitle{
  font-size: 18px;
  font-family: PingFangSC-Semibold, PingFang SC;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.85);
}
.panelline{
  display: flex;
  justify-content: space-between;
}
.openbox{
  font-size: 16px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #FF7918;
  display: flex;
  align-items: center;
}


.hidebox{
  font-size: 14px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #333333;
  line-height: 20px;
  display: none;
}
.panel-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.panel-header img{
  width: 18px;
  height: 18px;
  transition: all .4s;
}

.panel-body{
  height: 0px;
  overflow: hidden;
  transition: height .4s;
}
.panel-header.opened img {
  transform:rotate(90deg);
}
.panel-body-content{
  padding-top: 20px;
}
.panel-body div, .panel-body p {
  padding: 5px 0;
  line-height: 20px;
  font-size: 14px;
  color: #333;
}
.content-loading{
  padding: 20px;
  text-align: center;
}
.content-loading img {
  width: 20px;
  vertical-align: middle;
}
