html,body {
    background-color: #f6f6f6;
	line-height: 1.7;
}

a,
a:active,
a:link,
a:visited{
	color: #262626;
	text-decoration: none;
}

a:hover {
	color: #367eb3;
	/* text-decoration: underline; */
}

/* 头部 */
.header-wrapper {
	position: fixed;
	width: 100%;
	z-index: 100;
	top: 0;
}

.header-height {
	height: 100px;
}

@media screen and (max-width:640px) {
	.header-wrapper {
		position: relative;
	}

	.header-height {
		display: none;
	}
}

.header-nav {
	background-color: #ffffff;
}

.header-nav .nav {
	position: relative;
	margin: 0 auto;
	display: flex;
}

.header-nav .nav .nav-right {
	flex: 1;
	height: 93px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.header-nav .nav .nav-right .top {
	display: flex;
	justify-content: right;
}

.header-nav .nav .search-icon {
	width: 28px;
	height: 28px;
	background: url(../image/search.jpg) right top no-repeat;
}

.header-nav .nav .hotline {
	margin-left: 10px;
	font-size: 16px;
	font-weight: 700;
	display: flex;
	justify-content: center;
	align-items: center;
}

.header-nav .nav .hotline span.hot1 {
	margin-right: 10px;
}

.header-nav .nav .menu {
	display: flex;
}

.header-nav .nav .menu .parent {
	padding-left: 50px;
	position: default;
}

.header-nav .nav .menu .parent > a {
	display: inline-block;
	color: #232323;
	text-align: center;
	padding: 5px 0;
}

.header-nav .nav .menu .parent > a:hover {
	color: #367eb3;
}

.header-nav .nav .menu .parent.drop > a {
    background: url(/upload/webpage/icon_arrow_down.png) right 13px no-repeat;
    background-size: 9px 7px;
    padding-right: 16px;
}

.header-nav .nav .menu .parent .child {
	width: 100%;
	background: #ffffff;
	border-top: 1px solid #eeeeee;
	border-bottom: 1px solid #eeeeee;
	position: absolute;
	z-index: 10;
	top: 92px;
	left: 0;
	display: none;
}

.header-nav .nav .menu .parent .child-list {
	display: flex;
	flex-wrap: wrap;
	padding: 40px 0 20px 0;
}

.header-nav .nav .menu .parent .child-list .child-item {
	width: 200px;
}

.header-nav .nav .menu .parent .child-list .child-item a {
	display: block;
	color: #7f7e7f;
	margin-bottom: 15px;
}

.header-nav .nav .menu .parent .child-list .child-item a:hover {
	color: #367eb3;
}

.header-search {
	display: none;
	position: absolute;
	top: 121px;
	width: 100%;
	height: 99px;
	border-top: 1px solid #e5e5e5;
	border-bottom: 1px solid #e5e5e5;
	background-color: #fff;
	z-index: 9999;
}

.header-search .panel {
	position: relative;
	margin: 0 auto;
	width: 940px;
	height: 99px;
}

.header-search .bar {
	position: relative;
	margin: 0 auto;
	top: 25px;
	width: 500px;
	height: 50px;
	border: 1px solid #e5e5e5;
	border-radius: 5px;
	background-color: #f5f5f5
}

.header-search input {
	position: absolute;
	padding: 3px 21px;
	top: 0;
	left: 0;
	*top: 16px;
	width: 400px;
	height: 44px;
	border: none;
	background-color: transparent;
	color: #898989;
	font-family: "Microsoft YaHei";
	font-size: 13px;
	line-height: 13px;
}

.header-search .icon {
	position: absolute;
	top: 17px;
	right: 15px;
	width: 20px;
	height: 20px;
	/* background: url(../image/search.png) 0 0 no-repeat; */
	cursor: pointer;
}

.header-search .history {
	display: none;
	position: absolute;
	left: 694px;
	margin: 62px auto 0;
	width: 370px;
	border: 1px solid #e5e5e5;
	border-radius: 5px;
	background-color: #ffffff;
	z-index: 9999;
	font-size: 13px;
	line-height: 13px;
}

.header-mobile {
	display: none;
}

@media screen and (max-width:640px) {
	.header-nav .nav {
		padding: 3px 20px;
	}

	.header-nav .nav .logo img {
		width: 180px;
	}

	.header-nav .nav .nav-right {
		display: none;
	}
	
	.header-search {
		top: 90px;
	}
	.header-search .panel {
		width: auto;
	}
	.header-search .bar {
		width: 80%;
	}
	.header-search input {
		width: 100%;
	}
	
	.header-mobile {
		display: block;
		position: absolute;
		z-index: 9;
		top: 0;
		right: 0;
		display: flex;
	}
	
	.header-mobile .search-icon {
		width: 71px;
		height: 71px;
		background: #212121 url(/upload/webpage/head_icon_search_gray.png) center center no-repeat;
		text-indent: -1000px;
		overflow: hidden;
	}
	
	.header-mobile .menu-icon {
	    box-sizing: border-box;
	    padding: 20px 20px 0 20px;
	    width: 71px;
	    height: 71px;
		background-color: #22439c;
	}
	
	.header-mobile .menu-icon span {
	    display: block;
	    background: #fff;
	    height: 4px;
	    margin-top: 5px;
	}
	
	.header-mobile .menu-nav {
	    position: fixed;
		z-index: 10;
		top: 78px;
		left: 0;
		right: 0;
		background-color: rgba(255, 255, 255, 0.9);
		display: none;
	}
	.header-mobile .menu-nav li {
		padding: 0 15px;
		position: relative;
		z-index: 9;
		border-bottom: 1px solid #eeeeee;
	}
	.header-mobile .menu-nav li > a {
		display: inline-block;
		line-height: 50px;
		/* font-size: 16px; */
		font-weight: 700;
	}
	.header-mobile .menu-nav .child{
		display: none;
	}
	.header-mobile .menu-nav .menu-expand {
		position: absolute;
		z-index: 10;
		top: 0;
		left: 0;
		right: 0;
		height: 50px;
		background: url(/upload/webpage/icon_spmenu_open.png) right 20px center no-repeat transparent !important;
		background-size: 14px 14px !important;
		text-indent: -1000px;
		overflow: hidden;
	}
	.header-mobile .menu-nav .menu-close {
	    background-image: url(/upload/webpage/icon_spmenu_close.png) !important;
	}
	.header-mobile .menu-nav .child-list {
		display: flex;
	}
	.header-mobile .menu-nav .child-item {
		display: flex;
		flex-direction: column;
		width: 50%;
	}
	.header-mobile .menu-nav .child-item a {
		display: block;
		padding: 10px 0 10px 20px;
		color: #666666;
		position: relative;
	}
	.header-mobile .menu-nav .child-item a::before {
		margin-top: -0.5em;
		width: 1em;
		display: block;
		position: absolute;
		top: 50%;
		left: 0;
		line-height: 1em;
		text-align: center;
		content: "+";
	}
	.header-mobile .menu-nav {}
}

/* 底部 */
.footer-wrapper {
	background: #000000;
	color: #fff;
}

.footer-wrapper .inner {
	padding-top: 35px;
	padding-bottom: 50px;
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.footer-wrapper .inner .copy {
	color: #838383;
	width: 70%;
	text-align: center;
}

.footer-wrapper .inner .copy a {
	color: #f9f9f9;
}

@media screen and (max-width:640px) {
	.footer-wrapper .inner {
		flex-direction: column;
	}

	.footer-wrapper .inner .logo {
		margin-bottom: 10px;
	}
}

/* 分页 */
.pagination {
	display: inline-block;
	padding-left: 0;
	margin: 20px auto;
	border-radius: 4px
}

.pagination>li {
	display: inline
}

.pagination>li>a,
.pagination>li>span {
	position: relative;
	float: left;
	padding: 6px 12px;
	margin-left: -1px;
	line-height: 1.42857143;
	color: #337ab7;
	text-decoration: none;
	background-color: #fff;
	border: 1px solid #ddd
}

.pagination>li:first-child>a,
.pagination>li:first-child>span {
	margin-left: 0;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px
}

.pagination>li:last-child>a,
.pagination>li:last-child>span {
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px
}

.pagination>li>a:focus,
.pagination>li>a:hover,
.pagination>li>span:focus,
.pagination>li>span:hover {
	z-index: 3;
	color: #23527c;
	background-color: #eee;
	border-color: #ddd
}

.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span,
.pagination>.active>span:focus,
.pagination>.active>span:hover {
	z-index: 2;
	color: #fff;
	cursor: default;
	background-color: #337ab7;
	border-color: #337ab7
}

.pagination>.disabled>a,
.pagination>.disabled>a:focus,
.pagination>.disabled>a:hover,
.pagination>.disabled>span,
.pagination>.disabled>span:focus,
.pagination>.disabled>span:hover {
	color: #777;
	cursor: not-allowed;
	background-color: #fff;
	border-color: #ddd
}

.pagination-lg>li>a,
.pagination-lg>li>span {
	padding: 10px 16px;
	font-size: 18px;
	line-height: 1.3333333
}

.pagination-lg>li:first-child>a,
.pagination-lg>li:first-child>span {
	border-top-left-radius: 6px;
	border-bottom-left-radius: 6px
}

.pagination-lg>li:last-child>a,
.pagination-lg>li:last-child>span {
	border-top-right-radius: 6px;
	border-bottom-right-radius: 6px
}

.pagination-sm>li>a,
.pagination-sm>li>span {
	padding: 5px 10px;
	font-size: 12px;
	line-height: 1.5
}

.pagination-sm>li:first-child>a,
.pagination-sm>li:first-child>span {
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px
}

.pagination-sm>li:last-child>a,
.pagination-sm>li:last-child>span {
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px
}

.table{
	width: 100%;margin: 1vw 0;
	border-top: 1px solid #000;
    border-left: 1px solid #000;
}
.table td{    
	border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    text-align: center;
    padding: 4px;
    vertical-align: middle;
}

.table thead td{
    background-color: #000;color: #fff
}

.flex {
	display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}

.imgBig {
	width: 100%;
}