body , html {
	padding: 0;
	margin: 0;
}

body {
	background: #f4f5f7;
}

* {
	position: relative;
	box-sizing: border-box;
	user-select: none;
	padding: 0;
	margin: 0;
}

li , ul {
	list-style: none;
}

.animate , .animate * , .animate *:before , .animate::before {
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-o-transition: all 0.4s;
	-ms-transition: all 0.4s;
}

body::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 50vh;
	background-image: url(../images/bg-1.jpg);
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
	left: 0;
	top: 0;
}

body::after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 50vh;
	background-color: rgba(0,0,0,.3);
}

#app {
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1;
	padding-bottom: 100px;
}

section {
	width: 1300px;
	margin: 0 auto;
}
section > a {
    display: block;
    padding-top: 20px;
}

.logo {
	width: 100%;
	height: 80px;
	margin-top: 60px;
	padding-left: 100px;
	line-height: 80px;
	background-image: url(../images/logo.png);
	background-position: left center;
	background-size: auto 100%;
	background-repeat: no-repeat;
	font-size: 38px;
	color: #fff;
	letter-spacing: 3px;
	-webkit-user-select: none;
	user-select: none;
	text-shadow: 2px 2px 5px #000;
}

.title {
	    width: 100%;
	    height: 60px;
	    margin-top: 60px;
	    font-size: 60px;
	    line-height: 1;
	    text-align: center;
	    color: #fff;
	    font-weight: 600;
	    letter-spacing: 5px;
	    text-shadow: 3px 3px 5px #000;
	    position: relative;
	    -webkit-user-select: none;
	    user-select: none;
}

.main {
	background: #fff;
	border-radius: 10px;
	margin-top: 100px;
	box-shadow: 3px 3px 15px #999;
	padding: 15px;
	overflow: hidden;
}

.selector {
	display: flex;
	justify-content: space-between;
	padding-top: 30px;
}

.selector .item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 180px;
	height: 100px;
	text-align: center;
	float: left;
	text-align: center;
	filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
	-webkit-filter: grayscale(100%);
	cursor: pointer;
}

.selector .item:hover , .selector .item.curr {
	filter: unset;
	-webkit-filter: unset;
}

.selector .item .img-box {
	display: flex;
	justify-content: center;
	height: 60px;
}

.selector .item .img-box img {
	height: 50px;
}

.selector .item .item-title {
	height: 40px;
	text-align: center;
	font-size: 18px;
	color: #1557a7;
	font-weight: 600;
}

.selector .item .item-title::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: -10px;
	width: 0;
	height: 5px;
	background: #1557a7;
}

.selector .item.curr .item-title::before , .selector .item:hover .item-title::before {
	width: calc( 100% + 20px );
}

.selected-content {
	padding: 20px 20px 0 20px;
	margin: 20px;
	background: #f4f5f7;
	border-radius: 20px;
	box-shadow: inset 0px 0px 10px rgba(0,0,0,.2);
	overflow: hidden;
}

.selected-title {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 40px 0 20px 0;
}

.selected-title::before {
	position: absolute;
	content: "";
	top: 50px;
	left: 50%;
	width: 0;
	height: 20px;
	border-radius: 10px;
	background: #1557a7;
}

.selected-title.curr::before {
	width: calc( 100% - 40px );
	left: 20px;
}

.selected-title .title-content {
	display: flex;
	background: #fff;
	padding: 0 30px;
	border-radius: 40px;
}

.selected-title img {
	height: 40px;
}

.selected-title label {
	height: 40px;
	display: flex;
	align-items: center;
	padding-left: 20px;
	font-size: 32px;
	font-weight: 600;
	color: #1557a7;
	text-shadow: 4px 4px 4px rgba(0,0,0,.2);
}

.selected-content label {
	display: block;
	float: left;
	width: calc( 100%/5 - 80px/5 );
	margin-right: 20px;
	margin-bottom: 20px;
	padding: 20px 15px;
	border-top-left-radius: 30px;
	border-bottom-right-radius: 30px;
	box-shadow: 0px 0px 10px rgba(0,0,0,.2);
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.selected-content label:nth-child(5n) {
	margin-right: unset;
}

.selected-content label:hover {
	background: #1557a7;
	color: #fff;
	box-shadow: 0px 0px 10px #1557a7;
}

.block {
	margin-top: 20px;
	width: 400px;
	min-height: 100px;
	float: left;
	background: #fff;
	padding: 15px;
	/* box-shadow: 3px 3px 15px #999; */
}
.block:last-child {
	margin-left: 20px;
	width: calc( 100% - 420px );
}

.block .block-title {
	padding-bottom: 20px;
	font-size: 24px;
	font-weight: 600;
	color: #1557a7;
	text-shadow: 4px 4px 4px rgba(0, 0, 0, .2);
}

.block .block-title::before {
	position: absolute;
	content: "";
	left: 0;
	bottom: 0;
	width: 100%;
	height: 4px;
	background: #1557a7;
	border-radius: 2px;
}

.block-content {
	margin-top: 20px;
	height: 233px;
	background: #f4f5f7;
	box-shadow: inset 0px 0px 10px rgba(0,0,0,.2);
	overflow-y: auto;
	/* scrollbar-width: none; */
	padding-bottom: 20px;
}

.block-content.city-list li {
	float: left;
	width: calc( 100%/3 - 80px/3 );
	background: #fff;
	padding: 15px 10px;
	box-shadow:  0px 0px 10px rgba(0,0,0,.2);
	margin-left: 20px;
	margin-top: 20px;
}

.block-content.dept-list {
	padding: 0 0 20px 0;
	overflow-x:hidden;
	overflow-y: auto;
	/* scrollbar-width: none; */ /* Firefox */
	-ms-overflow-style: none;
}

.block-content.dept-list li {
	width: calc( 100% - 40px );
	margin-left: 20px;
	background: #fff;
	padding: 15px 10px;
	margin-top: 20px;
	box-shadow:  0px 0px 10px rgba(0,0,0,.2);
}

.block-content li {
	cursor: pointer;
}

.block-content li::before {
	content: "";
	position: absolute;
	height: 2px;
	width: 0;
	left: 10px;
	bottom: 5px;
	background: #1557a7;
}

.block-content li:hover::before {
	width: calc( 100% - 20px );
}