* {
	box-sizing: border-box;
}

html,
body {
	position: relative;
	height: 100%;
  
}

body {
	background-color: #F7F0FD;
	font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
	font-size: 16px;
	color: #333;
	margin: 0;
	padding: 0;
	min-width: 1200px;
	/* white-space: nowrap; */
}
a{
	text-decoration:none;
	color: #333;
}

/* 导航栏 */
.nav-wrapper, .theme-nav-bar {
	position: fixed;
	z-index: 999;
	height: 4rem;
	width: 100%;
	/* background-color: rgba(255, 255, 255, 0.7); */
	/* box-shadow: 0 2px 4px #C2C2C2; */
	min-width: 1200px;
  background: transparent;
}

.nav-content {
	width: 70.333333%;
	margin: 0 auto;
	/* border: 1px red solid; */
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.nav-left{
  display: flex;
  align-items: center;
}
.nav-left span{
  font-size: 20px;
  padding-left: 20px;
  font-weight: bold;
}
.nav-wrapper .nav-left span{
  color: #fff;
}
.nav-logo {
	width: 3rem;
  overflow: hidden;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
	width: 100%;
  object-fit: contain;
}

.bar-text {
	margin: 2rem;
	color: rgba(255, 255, 255, 0.7);
	padding: 1rem 0;
	position: relative;
}

.bar-text:hover {
	cursor: pointer;
	color: #fff;
}

.bar-text::after {
	content: '';
	width: 0;
	height: 0;
	border-bottom: 3px solid #fff;
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	transition: .3s;
}

.active-bar {
	color: #fff;
}

.active-bar::after {
	width: 100%;
}

.theme-nav-bar{
  
}
.grey{
  color: #312E33;
}
.active-theme-bar{
  color: #8272EF;
}
.active-theme-bar::after{
  width: 100%;
}
.grey::after{
  border-bottom: 3px solid #8272EF;
}
.grey:hover {
	cursor: pointer;
	color: #8272EF;
}

/* 内容 */
.main-content{
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-top: 11.1vh;
}
.title{
  color: #312E33;
  font-size: 1.875vw;
  font-weight: bold;
  margin-bottom: 2.08vw;
  text-align: center;
}
.content-container{
  width: 73%;
  margin: 0 auto;
  max-width: 1000px;
}
.apply-wrapper{
  display: flex;
  justify-content: space-between;
  
}
.filter-wrapper{
  width: 24.5%;
  min-width: 240px;
  background-color: #fff;
  height: 240px;
  border-radius: 12px;
}
.position-list{
  width: 75.5%;
  margin-left: 20px;
  min-width: 720px;
  background-color: #fff;
  max-height: 61.11vh;
  border-radius: 12px;
}
.filter-title{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #e5e5e5;
}
.title-left{
  font-size: 16px ;
  font-weight: bold;
}
.clear{
  color: #288DF0;
  font-size: 14px;
  cursor: pointer;
}
.filter-content{
  padding: 10px 20px;
}
.select-item{
  height: 40px; 
  border-radius: 20px;
  border: 1px solid #eee;
  padding: 0 15px;
  margin: 10px 0; 
  display: flex;
  align-items: center;
  overflow: hidden;
  justify-content: space-between;
}
.select-item input{
  border: none;
  outline: none;
  width: 7.7vw;
}
.select-item img{
  width: 30px;
  height: 30px;
}
.sect{
  width: 100%; 
  border: none;
  margin: 0;
  outline: none;
  background: none;
}


.position-title{
  font-size: 18px;
  font-weight: bold;
  padding: 15px 20px;
  border: 1px solid #eee;
}
.position-item{
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border-radius: 4px;
}
.position-item:hover{
  background-color: #D9D4FA;
}
.position-name{
  font-size: 16px;
  font-weight: bold;
  padding-bottom: 4px;
}
.position-desc{
  font-size: 12px;
  color: #928A99;
}
.h-line{
  padding: 0 10px;
}
.position-date{
  font-size: 12px;
  color: #928A99;
}
.position-hover{
    color: #8272EF;
  }
.position-date-hover{
  color: #A79DF3;
}
.pagination-wrapper{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 15px 20px;
}
.pa-item{
  width: 26px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  border: 1px solid #DDDDDD; 
  border-radius: 4px;
  margin: 0 4px;
  cursor: pointer;
}
.pa-item:hover{
  background-color: #8272EF;
  border: none;
  color: #fff;
}

.prev:hover, .next:hover{
  background-color: transparent;
  border: 1px solid #8272EF;
  color: #8272EF;
}
.pa-item-active{
  background-color: #8272EF;
  border: none;
  color: #fff;
}




.footer{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: #fff;
  background-color: #8A6FFF;
  padding: 40px 0;
}
.link-wrapper{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  margin-bottom: 20px;
}
.link{
  color: #fff;
  margin: 0 12px;
}
.link:hover{
  text-decoration: underline;
}
.no-link{
  cursor: default;
}
.no-link:hover{
  text-decoration: none;
}
.bei{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  color: #C9D4F9;
}






















