/* 公共样式 */
.over-hidden{
	overflow: hidden;
	
}
.cursor{
	cursor:pointer
}
.font12{
    font-size: 12px;
    line-height: 12px;
}
.font14{
    font-size: 14px;
    line-height: 14px;
}
.font16{
    font-size: 16px;
    line-height: 16px;
}
.font18{
    font-size: 18px;
    line-height: 18px;
}
.font20{
    font-size: 20px;
    line-height: 20px;
}
.font22{
    font-size: 22px;
    line-height: 30px;
}
.font24{
    font-size: 24px;
    line-height: 24px;
}
.font28{
    font-size: 28px;
    line-height: 28px;
}
.font32{
    font-size: 32px;
    line-height: 32px;
}
.font34{
    font-size: 34px;
    line-height: 34px;
}
.font42{
    font-size: 42px;
    line-height: 42px;
}
.font44{
    font-size: 44px;
    line-height: 44px;
}

.bold{
	font-weight: bold;
}

.radius{
	border-radius: 50%;
}

.text-over-one{
	overflow: hidden;
	text-overflow:ellipsis;
	white-space: nowrap;
}

.text-over-two{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.text-over-three{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

.flex{
	display: flex;
	flex-direction: row;
}

.flex1{
	flex: 1;
}

.basis-10{
	flex-basis: 10%;
}
.basis-20{
	flex-basis: 20%;
}
.basis-30{
	flex-basis: 30%;
}
.basis-40{
	flex-basis: 40%;
}
.basis-50{
	flex-basis: 50%;
}
.basis-60{
	flex-basis: 60%;
}
.basis-70{
	flex-basis: 70%;
}
.basis-80{
	flex-basis: 80%;
}
.basis-90{
	flex-basis: 90%;
}
@media only screen and (max-width:1200px) {
.font24 {
    font-size: 20px;
    line-height: 24px;
}
    .basis-80 {
        width: 88%;
    }
}
.flex-column{
	flex-direction: column;
}

.flex-wrap{
	flex-wrap: wrap;
}

.flex-nowrap{
	flex-wrap: nowrap;
}

.flex-grow{
	flex-grow: 1;
}

.flex-shink{
	flex-shrink: 0;
}

.justify-start{
	justify-content: flex-start;
}

.justify-end{
	justify-content: flex-end;
}

.justify-around{
	justify-content: space-around;
}

.justify-between{
	justify-content: space-between;
}

.justify-center{
	justify-content: center;
}

.align-start{
	align-items: flex-start;
}

.align-end{
	align-items: flex-end;
}

.align-center{
	align-items: center;
}

.align-baseline{
	align-items: baseline;
}

.align-stretch{
	align-items: stretch;
}

.line-height-fast{
	line-height: 1.2 !important;
}

.color-black{
	color: #333
}

.color-red{
	color: #f00
}

.colorccc{
	color: #ccc
}

.color-white{
	color: #fff;
}
.reserved_0{
    line-height: 1.42857143;
}
.color666{
	color: #666
}

.color999{
	color: #000
}

.color207deb{
    color: #207deb;
}



/* 面包屑 */
.navList{
	margin: 10px auto;
}
.navList a {
	position: relative;
	font-size: 16px;
	padding: 0px 15px;
	height: 60px;
	display: flex;
	align-items: center;
	transition: .3s ease 0s
}
/* 右侧线 */
.navList a:after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	width: 1px;
	height: 15px;
	background: #ccc;
	transform: translateY(-50%);
}
.navList a:hover {
	color: #207deb
}

.navList a:hover:before {
	width: 80%;
	background-color: #207deb
}
/* 底部线 */
.navList a:before {
	position: absolute;
	content: '';
	left: 50%;
	bottom: 0;
	width: 0;
	height: 3px;
	transform: translateX(-50%);
	background-color: #207deb;
	transition: all .3s
}
/* 选中的菜单 */
.navList .more{
	color: #207deb;
}
.navList .more:before{
	width: 80%;
	background-color: #207deb
}

/* banner */
.banner{
	position: relative;
	width: 100%;
}
.banner-content{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	color: #fff;
	background: rgba(0,0,0,0.3);
}
.banner-content h1{
	font-size: 25px;
}
.banner-content h4{
	font-size: 16px;
}
.banner-content h5{
	font-size: 20px;
}
.banner-content h1:after{
	content: '';
	width: 50px;
	height: 2px;
	background: #fff;
	margin: 16px auto;
}


@media only screen and (min-width:1201px) {
	.box-width{
		width: 1198px;
		-webkit-transition: all .5s ease;
		transition: all .5s ease;
	}
	.pagebox{
		padding-top: 90px;
		-webkit-transition: all .5s ease;
		transition: all .5s ease;
	} 
}

@media only screen and (max-width:1200px) {
.banner-content h1{
	font-size: 25px;
}
.banner-content h4{
	font-size: 16px;
}
	.box-width{
		width: 100%;
		-webkit-transition: all .5s ease;
		transition: all .5s ease;
	}
	.pagebox{
		padding-top: 60px;
		-webkit-transition: all .5s ease;
		transition: all .5s ease;
	} 
	/* 面包屑 */
	.navList a {
		height: 80px;
		-webkit-transition: all .5s ease;
		transition: all .5s ease;
	}
	.navList.box-width{
		width: 100%;
		padding: 0 10px;
		box-sizing: border-box;
		border-bottom: solid 1px #ccc;
	}
	.navList .more {
    color: #207deb;
    font-weight: bold;
}
}

@media only screen and (max-width:1024px) {
	.navList a {
		height: 80px;
		-webkit-transition: all .5s ease;
		transition: all .5s ease;
	}
}

@media only screen and (max-width:768px) {
	/* 面包屑 */
	.navList a {
		height: 62px;
		font-size: 14px;
		padding: 0 10px;
		-webkit-transition: all .5s ease;
		transition: all .5s ease;
	}
.reserved_1 {
	    display: none;
	}
	.reserved_2 {
	    display: none;
	}
}
.reserved_2{
    margin: 0 20px;
}
.reserved_2 p{
    margin-left: 5px;
}
.copyrighttow a{
    color: #fff;
}
.copyrighttow a:hover{
    color: #b3d4fc;
}
/* 解决底部小于一屏定位底部，否则顺延 */
body,html{
	height: 100%;
}
.main{
	width: 100%;
	height: auto;
	min-height: 100%;
	display: flex;
	flex-direction: column;
}