/* 列表页 */
.bar1{
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	
}
.xueyuan{
	padding-top: 80px;
	padding-bottom: 150px;
}
.xueyuan_biaoti {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 55px;
}

.xueyuan_biaoti h1 {
	display: flex;
	align-items: baseline;
	font-weight: 500;
	font-size: 56px;
	color: #333740;
}

.xueyuan_biaoti h1 span {
	font-weight: 500;
	font-size: 26px;
	color: #C5C6CC;
}
.xueyuan img{
    width: auto;
    max-width: 100%;
    height: auto;

}
.list{
	border-top: 1px solid #C5C6CC;
}
.list ul li{
	position: relative;
}
.list ul li::after{
	content: "";
	position: absolute;
	width: 0%;
	height: 6px;
	top: 0;
	left: 0;
	background: #1B4499;
	transition: all 0.5s;
}
.list ul li::before{
    content: "";
    position: absolute;
    width: 0%;
    height: 100%;
    top: 0;
    left: 0;
    background: #fdfcfc;
    transition: all 0.6s;
}
.list ul li:hover::after{
	width: 100%;
}
.list ul li:hover::before{
	width: 100%;
}
.list ul li a{
	height: 120px;
	border-bottom: 1px solid #C5C6CC;
	position: relative;
	z-index: 2;
	
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.list ul li p{
	width: 85%;
	display: block;
	font-weight: 500;
	font-size: 24px;
	color: #333740;
}
.list ul li span{
	width: 15%;
	display: block;
	font-weight: 500;
	font-size: 16px;
	color: #787B80;
	text-align: right;
}
.list ul li:hover p{
	color: #1B4499;
}
/* 内页 */
.bar2{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}
.biaoti{
	width: 100%;
	height: 288px;
	background: url(../image/nybj.png);
	background-size: 100% 100%;
}
.biaoti h1{
	font-weight: 500;
	font-size: 40px;
	color: #333740;
	line-height: 45px;
	padding-top: 60px;
	padding-bottom: 40px;
}
.biaoti span{
	display: flex;
	align-items: center;
	font-weight: 500;
	font-size: 16px;
	color: #787B80;
}
.biaoti span img{
	width: 16px;
	height: 16px;
	margin-right: 5px;
	margin-top: 2px;
}
.content{
	padding-top: 60px;
	padding-bottom: 120px;
}
.content img{
	width: auto !important;
	height: auto !important;
	max-width: 100% !important;
}
@media screen and (max-width:1400px) {
	.bar1{
		padding: 0 3%;
		
	}
}
@media screen and (max-width:1200px) {
	.bar2{
		padding: 0 3%;
		
	}
}
@media screen and (max-width:768px) {
	.xueyuan_biaoti h1 {
		font-size: 25px;
	}
	
	.xueyuan_biaoti h1 span {
		font-size: 14px;
	}
	
	.xueyuan_biaoti p img {
		width: 20px;
		height: 20px;
	}
	
	.xueyuan_biaoti {
		padding-bottom: 20px;
	}
	.list ul li a {
	    height: 100px;
	   flex-wrap: wrap;
	}
	.list ul li p {
	    width: 100%;	    
	    font-size: 18px;
	   display: -webkit-box;
	   /* 使用旧版弹性盒子模型 */
	   -webkit-box-orient: vertical;
	   /* 内容垂直排列 */
	   -webkit-line-clamp: 2;
	   /* 限制显示行数 */
	   overflow: hidden;
	}
	.list ul li span {
	    width: 100%;
	   
	    text-align:left;
	}
	.xueyuan {
	    padding-top: 15px;
	}
	.biaoti h1 {
	    font-weight: 500;
	    font-size: 20px;
	    color: #333740;
	    line-height: 30px;
	    padding-top: 20px;
	    padding-bottom: 13px;
	}
	.biaoti {
	    width: 100%;
	    height: auto;
	    min-height: 180px;
	}
	.content {
	    padding-top: 25px;
	}
}