body , html {
	padding: 0;
	margin: 0;
}
.container {
    width: 1400px;
    margin: 0 auto;
}
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: 60vh;
	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: 60vh;
	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;
}

.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: 140px;
	    font-size: 56px;
	    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: 70px;
	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; */
	display: none;
	width: 100%;
}
.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 {
	padding: 20px;
	margin-top: 20px;
	/* height: 423px; */
	background: #f4f5f7;
	box-shadow: inset 0px 0px 10px rgba(0,0,0,.2);
	overflow: hidden;
}

.block-content.city-list {
    height: 423px;
}

.block-content.city-list li {
	display: block;
	float: left;
	width: 23.5%;
	margin-right: 2%;
	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;
}
.block-content.city-list li:nth-child(4n+4) {
    margin-right: 0;
}

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

.block-content.dept-list li {
	display: block;
	float: left;
	width: calc( 100%/5 - 80px/5 );
	margin-right: 20px;
	margin-bottom: 20px;
	padding: 20px 6px;
	/* 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;
}
.block-content.dept-list li:nth-child(5n+5) {
    margin-right: 0;
}
.block-content.dept-list li:nth-last-child(1),.block-content.dept-list li:nth-last-child(2) {
    margin-bottom: 0;
}

.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 );
}

.selected-block {display: flex;width: 100%;margin: 0 auto;text-align: center;justify-content: space-around;margin-top: 20px;}
.selected-block .block-title {
    padding-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
    color: #1557a7;
    text-shadow: 4px 4px 4px rgba(0, 0, 0, .2);
}

.selected-block .block-title:nth-child(2) {
    width: 192px;
}

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

.mlheader {
    padding-top: 45px !important;!i;!;
    padding-bottom: 35px !important;!i;!;
}
.header-middle input {
    font-size: 18px;
}
.search_select select {
    margin-top: 0px !important;!i;!;
    font-size: 16px;
}
.ml_nav>ul li a {
    font-size: 20px;
}
.head-link-box ul {
    float: right;
}
.head-link-box {
    margin-bottom: 15px;
}
.mainBox {
    width: auto !important;!i;!;
}
.main {
    /* zoom: 120%; */!;
}
.yqlj {
    zoom: 120%;
}
.footer-card {
    zoom: 120%;
}
#info_content p {
    margin: 0 0 1.6rem 0;
}

.am-container {
    width: 1083.33px;
    margin: 0 auto;
}

footer {
	padding: 35px 10px 45px 10px;
}

footer .info {
	padding-left: 80px;
	position: relative;
	width: 63%;
	float: left;
}

footer .link-img {
	vertical-align: top;
	width: 36%;
	float: right;
	padding-right: 15px;
	margin-top: 10px;
}

footer #_ideConac {
	position: absolute;
	left: 0px;
	top: -6px;
}

footer p {
	line-height: 25px;
	margin-top: 0px;
	margin-bottom: 0px;
	font-size: 13.33px;
}

footer p>img {
    margin-left: 5px;
}

footer p a {
	margin-left: 5px;
	font-size: 13.33px;
}

footer .link-img p:first-child {
	margin-bottom: 0px
}

footer .link-img a {
	display: inline-block;
}

footer .link-img #_span_jiucuo {
	display: inline-block;
  width: 80px;
    height: 40px;
    margin-left: 5px;
}

footer .link-img #_span_jiucuo img{
  width: 100%;
  height: 100%;
}
/*20190102友情链接样式*/
.gj ul{
      float: left;
     display: block;
     width: 14%;
    margin: 0px;
}
.gj ul li{
    float: none !important;
    line-height: 22px !important;
    font-size: 14px;
    list-style-type: none;
}

.fc2{
	z-index:99999;
}

.footer-card {
    background: #21518e;
}
footer {
    background: #21518e !important;
}
footer >div{color: #fff;}
footer p a {
    color: #fff;
}
footer .info {
    margin-top: 8px;
}
footer p a:hover {color: inherit;}

/* Float blocks*/
.am-cf:before,
.am-cf:after {
  content: " ";
  display: table;
}
.am-cf:after {
  clear: both;
}
.am-fl {
  float: left;
}
.am-fr {
  float: right;
}
.am-nbfc {
  overflow: hidden;
}
.am-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.yqljcon li a {
    color: #000;
}

table {
    margin: 0 auto;
}