body {
  background: #f5f5f5;
}
.main-container {
  margin: 2.375rem auto;
  max-width: 90rem;
  display: flex;
  align-items: flex-start;
}
/* 左边侧边栏样式 */
.side-bar__job {
  width: 15rem;
  padding: 1.25rem;
  background: #ffffff;
  box-shadow: 2px 3px 3px 0px rgba(0, 0, 0, 0.15);
  position: relative;
  top: -5rem;
}
.side-bar__job .sidebar-header {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.sidebar-header .header-title__container {
  display: inline-block;
  padding-left: 1rem;
}
.sidebar-header .vertical-line {
  display: inline-block;
  width: 0.375rem;
  height: 2.25rem;
  background: linear-gradient(180deg, rgba(102, 102, 102, 1) 50%, rgba(186, 45, 46, 1) 50%);
}
.sidebar-header .header-title--main {
  display: block;
  color: #ba2d2e;
  font-size: 1.5rem;
  font-weight: bold;
}
.sidebar-header .header-title--sub {
  display: block;
  color: #999999;
  font-family: Adobe Heiti Std;
}
.side-bar__job .side-bar__section {
  margin-bottom: 1.875rem;
}
.side-bar__section .section-header {
  color: #333333;
  margin-bottom: 1.25rem;
}
.side-bar__section .section-header > b {
  font-weight: bold;
}
.side-bar__section .section-header::before {
  content: '';
  display: inline-block;
  background: url('../img/---jobs_01.png') no-repeat;
  width: 6px;
  height: 10px;
  margin-right: 0.75rem;
}
.side-bar__section .section-content {
  padding-left: 1.125rem;
}
.section-content__login .login-form-item {
  display: flex;
  align-items: center;
  white-space: nowrap;
  margin-bottom: 0.75rem;
}
.section-content__login .login-form-item > input {
  width: calc(100% - 3em);
  flex: 1;
  line-height: 2;
  padding: 0 4px;
  border-radius: 3px;
}
.section-content__login .btn-group--right {
  display: flex;
  align-items: center;
  margin-top: 0.25rem;
}
.btn-group--right .btn-login {
  margin-left: auto;
  padding: 0.5rem 1.25rem;
  color: #e04547;
  border: 1px solid #e04547;
  border-radius: 3px;
  cursor: pointer;
}
.btn-group--right .btn-reg {
  padding-left: 1.25rem;
  color: #333;
}
.side-bar__section .section-content__filter {
  display: flex;
  flex-direction: column;
  padding-left: 1.125rem;
}
.section-content__filter .filter-item {
  border: 1px solid #cccccc;
  margin-bottom: 0.75rem;
  padding: 0.5rem 0.625rem;
}
.section-content__filter input.filter-item {
  color: #333;
}
.section-content__filter select.filter-item {
  color: #ccc;
}
.section-content__filter select.filter-item > option {
  color: #333;
}
.section-content__filter .filter-item::placeholder {
  color: #ccc;
}
.section-content__filter .filter-item:-ms-input-placeholder {
  color: #ccc;
}
.section-content__filter select.filter-item {
  padding: 0.5rem 0.625rem;
}
.btn-search,
.btn-reset {
  margin-left: auto;
  padding: 0.5rem 1.25rem;
  border-radius: 3px;
  cursor: pointer;
}
.btn-group--left .btn-search {
  color: #e04547;
  border: 1px solid #e04547;
  margin-right: 0.75rem;
}
.btn-group--left .btn-reset {
  color: #333333;
  border: 1px solid #999999;
}
.section-content__announce li {
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.section-content__announce li::before {
  content: '';
  display: inline-block;
  background: url('../img/---jobs_02.png') no-repeat;
  width: 18px;
  height: 16px;
  margin-right: 0.75rem;
}
.section-content__announce li > * {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #333;
}
.announce-item.active {
  color: #ba2d2e;
}
.main-container .job-detail-main {
  min-height: 35rem;
  flex: 1;
  background: #ffffff;
  margin-left: 2.5rem;
  position: relative;
  padding: 2.25rem 54px;
}
.job-detail-main__content .main-title {
  color: #333333;
  font-weight: bold;
  margin-bottom: 2rem;
}
.field-group {
  color: #333333;
  margin-bottom: 0.938rem;
  display: flex;
}
.field-group dt {
  display: inline-block;
  margin-right: 0.75rem;
  flex: 0 0 12.5rem;
  text-align: right;
  line-height: 1.5;
}
.field-group dd {
  line-height: 1.5;
  /* display: inline-block; */
}
/* .field-group dd:first-of-type ~ dd {
  display: block;
  margin-left: 13.5rem;
  margin-top: 0.75rem;
} */
.btn-apply {
  margin-left: 13.75rem;
  padding: 0.5rem 1.625rem;
  color: #bf3b3c;
  border: 1px solid #bf3b3c;
  border-radius: 3px;
  cursor: pointer;
}
/* 公告栏滚动效果 */
.side-bar__job .announce-item {
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
}
.announce-item .announce-words {
  position: relative;
  width: fit-content;
  animation: move 12s linear infinite;
  padding-left: 2rem;
}
.announce-item .announce-words:hover {
  color: #e04547;
}
.announce-words ::after {
  position: absolute;
  right: -100%;
  content: attr(text);
}
@keyframes move {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
