* {
	margin: 0;
	padding: 0;
	font-family: Arial;
	font-size: 13px;
	box-sizing: border-box;
}

body {
	background: #f9f9f9;
}

a {
	text-decoration: none;
}

.wrapper {
	position: relative;
	overflow: hidden;
}

.container {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 15px;
	overflow: hidden;
}

.header {
	width: 100%;
	height: 70px;
	position: fixed;
	background: #333;
	overflow: hidden;
	top: 0;
	left: 0;
	z-index: 99;
}

.header .container {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header h1 {
	font-weight: normal;
	font-size: 28px;
	color: white;
}

.header form {
	display: flex;
}

.header input, .header select {
	width: 400px;
	border-radius: 4px;
	border: none;
	height: 44px;
	padding-left: 10px;
	margin-right: 10px;
}
.header select {
	width: auto;
	padding-right: 10px;
}

.header button {
	border-radius: 4px;
	border: none;
	height: 44px;
	padding: 0 15px;
}

.work {
	position: relative;
	margin-top: 70px;
	padding: 15px 0;
	overflow: hidden;
}

table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 1px;
}

table thead td {
	background: #5591a9;
	text-align: center;
	color: white;
	height: 60px;
	vertical-align: middle;
	padding: 0 15px;
}

table tbody tr td {
	background: white;
	height: 130px;
	text-align: center;
	vertical-align: middle;
	padding: 10px;
}

table tbody tr:nth-child(even) td {
	background: #d7e4e8;
	border-bottom: 1px solid #ededed;
}

.nav {
	display: flex;
	list-style: none;
	margin: 15px 0;
	padding: 0;
	overflow-x: scroll;
	overflow-y: hidden;
}

.nav li {
	width: 40px;
	height: 40px;
	margin-right: 3px;
}

.nav li a {
	display: block;
	width: 100%;
	height: 100%;
	text-align: center;
	line-height: 40px;
	background: white;  
	border: 1px solid #cdcdcd;
	text-decoration: none;
	color: #333;
	padding: 0 8px;
}

.nav li a.active {
	background: #5591a9;
}

.bottom {
	display: flex;
	align-items: center;
	height: 80px;
	justify-content: space-between;
}
.bottom input, .bottom select {
	width: 300px;
	border-radius: 4px;
	border: 1px solid #cdcdcd;
	height: 44px;
	padding-left: 10px;
}
.bottom select {
	width: auto;
	padding-right: 10px;
	margin:0 0 10px 30px;
}