
	.jobs {
	
	}
	
	.search-bar {
		
		margin: 0 auto;
		border-radius: 20px;
		overflow: hidden;
		position: relative;
		display: flex;
		width: 80%;
		justify-content: space-between;
		align-items: center;
		top: -2rem;
		box-shadow: 0 0 24px 0 rgba(187, 191, 196, 0.4);
		font-size: 1rem;
	}
	
	.search-input {
		flex: 1;
		border: none;
		outline: none;
		padding: 0 2rem;
		line-height: 3rem;
		font-size: 1rem;
	}
	
	.search-button {
		background-color: #2867f2;
		color: white;
		border: none;
		padding: 0 2rem;
		line-height: 3rem;
		cursor: pointer;
		border-radius: 0 20px 20px 0;
		font-size: 1rem;
	}
	
	.filter-section {
		width: 25%;
		padding-right: 40px;
		font-size: 1rem;
		border-right: 1px solid #ddd;
	}
	
	.filter-section li {
		list-style: none;
		margin-top: 1rem;
		font-size: 1rem;
		
	}
	
	.filter-section li input {
		width: 16px;
		height: 16px;
		background-color: #fff;
		border: 1px solid #8f959e;
		border-radius: 2px;
		border-collapse: separate;
		transition: all 0.3s;
		margin-right: 0.25rem;
		vertical-align: middle;
	}
	
	.flex {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin: 2rem auto;
	}
	
	.flex a {
		background-color: #eaeaea;
		padding: 5px 10px;
		border: none;
		border-radius: 5px;
	}
	
	.job-container {
		display: flex;
		justify-content: space-between;
	}
	
	.job-container h4 {
		margin-top: 3rem;
	}
	
	.job-list {
		 width: 75%;
         padding: 40px;
	}
	
	.job-item {
		border-bottom: 1px solid #ddd;
		padding: 20px 0;
	}
	.job-info{
		margin-top: 16px;
	}
	.job-info span {
	    padding: 2px 8px;
	    background: #f5f5f5;
	    border-radius: 4px;
	    
	}
	.job-title {
		font-size: 18px;
		font-weight: bold;
		margin-bottom: 10px;
	}
	
	.job-details {
		color: #666;
		font-size: 1rem;
		margin: 1rem auto;
	}
	.job-details span{
		 padding: 2px 8px;
	    background: #f5f5f5;
	    border-radius: 4px;
	}
	
	.job-content {
		color: #666;
		font-size: 0.875rem;
		margin: 1rem auto;
		line-height: 2em;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		text-overflow: ellipsis;
		overflow: hidden;
	}
	
	.caret-down {
		width: 10px;
		height: 10px;
		background: url("http://www.fywlcn.com/static/open.png") no-repeat center center;
		display: inline-block;
		background-size: cover;
		transition: 0.5s;
	}
	
	.caret-down.rotate {
		transform: rotate(90deg);
	}
	
	.research-menu {
		margin-top: 1rem;
		margin-left: 2rem;
	}
	
	.load-more {
		max-width: 160px;
		height: 42px;
		line-height: 42px;
		padding: 0;
		font-size: 0.875rem;
		border-radius: 2px;
		margin: 3rem auto;
		display: block;
		border: 1px solid #ddd;
		text-align: center;
		
	}