| 
					
				 | 
			
			
				@@ -4,7 +4,6 @@ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       <div 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         class="sub-li" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         v-for="(item, index) in props.items" :key="index" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-        :class="{'elevation-6': item.active}" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         :style="{'height': tab === 3 && item.hire ? '180px' : '149px'}" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         @mouseenter="item.active = true" @mouseleave="item.active = false" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         @click.stop="handlePosition(item)" 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -121,9 +120,14 @@ const handlePosition = (item) => { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   cursor: pointer; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   transition: all .2s linear; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   background-color: #fff; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  border: 1px solid #fff; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   &:nth-child(3n) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     margin-right: 0; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  &:hover { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    box-shadow: 5px 9px 12px 1px rgba(0, 183, 96, 0.17); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    border-color: #00B760; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 .job-info { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   position: relative; 
			 |