@import url("starStudent.css");
@import url("page_common.css");

.tabCont {
    display: flex;
    flex-wrap: wrap;
}
/* 导航图标 */
#centerNav ul li a.active2{
	color: #333333;
	font-weight: bold;
}

/* 教学部 */
#teachingDepartment{
	background: #e5e5e5;
}

#teachingDepartment .cont .tabTit{
	display: flex;
	justify-content: flex-start;
	position: relative;
}
#teachingDepartment .cont .tabTit li{
	font-size: 20px;
	color: #9b9b9b;
	line-height: 40px;
	padding: 0px 20px;
	border-bottom: 1px solid #9b9b9b;
	cursor: pointer;
}

#teachingDepartment .cont .tabTit li.hover{
	font-size: 20px;
	font-family: "SOURCEHANSANSCN-BOLD";
	color: #333333;
	border-top: 1px solid #9b9b9b;
	border-right: 1px solid #9b9b9b;
	border-left: 1px solid #9b9b9b;
	border-bottom: 0px;

}
#teachingDepartment .cont .tabTit li.hover:first-child{
	border-top: 1px solid #9b9b9b;
	border-right: 1px solid #9b9b9b;
	border-bottom: 0px;
	border-left: 0px;
}
#teachingDepartment .cont .tabTit .line{
	border-bottom: 1px solid #9b9b9b;
}

/* 教师动画效果 */
#teachingDepartment .cont .tabCont ul{
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}
#teachingDepartment .cont .tabCont ul.show{
	display: flex;
}
#teachingDepartment .cont .tabCont ul.hide{
	display: none;
}
#teachingDepartment .cont .tabCont ul li{
	width: 296px;
	height: 542px;
	position: relative;
	border: 1px solid #d8d8d8;
	margin-right: 20px;
	overflow: hidden;
	margin-bottom: 39px;

}
#teachingDepartment .cont .tabCont ul li:nth-child(4n){
	margin-right: 0px;
}
#teachingDepartment .cont .tabCont ul li .img-container{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0px;
	top: 0px;
	font-size: 0px;
	line-height: 0px;
	-webkit-transition: all 1.2s;
	-moz-transition: all 1.2s;
	-ms-transition: all 1.2s;
	-o-transition: all 1.2s;
	transition: all 1.2s;
	z-index: 3;
	overflow: hidden;
}
/*旧*/
#teachingDepartment .cont .tabCont ul li.active .img-container{
	left: 0px;
	top: 0px;
	width: 100%;
	height: 81px;
	z-index: 20;
}


#teachingDepartment .cont .tabCont ul li .img-container img{
	width: 330px;
	height: 460px;
}
#teachingDepartment .cont .tabCont ul li .titBox{
	position: absolute;
	bottom: 0px;
	left: 0px;
	width: calc(100% - 40px);
	padding: 0px 20px;
	overflow: hidden;
	height: 81px;
	background: #fff;
	-webkit-transition: all 1.2s;
	-moz-transition: all 1.2s;
	-ms-transition: all 1.2s;
	-o-transition: all 1.2s;
	transition: all 1.2s;
}
#teachingDepartment .cont .tabCont ul li .titBox h3{
	padding-top: 15px;
	padding-bottom: 9px;
	font-size: 27px;
	font-family: "SOURCEHANSANSCN-BOLD";
	line-height: 100%;
	color: #333333;
	letter-spacing:-1px;
	width:200px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	word-break: break-all;
	font-weight: bold;
}


#teachingDepartment .cont .tabCont ul li .titBox p{
	font-size: 16px;
	font-family: "SourceHanSansCN-Medium";
	color: #333333;
	line-height: 100%;
	letter-spacing:0px;
	width:200px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	word-break: break-all;
	font-weight: bold;
}

#teachingDepartment .cont .tabCont ul li.active .titBox h3 {
	color: #ffffff;
}

#teachingDepartment .cont .tabCont ul li.active .titBox p {
	color: #ffffff;
}


#teachingDepartment .cont .tabCont ul li .titBox .icon{
	display: block;
	cursor: pointer;
	width: 50px;
	height: 50px;
	border-radius: 25px;
	position: absolute;
	right: 20px;
	top: 50%;
	margin-top: -25px;
	overflow: hidden;
	opacity: 1;
	filter: alpha(opacity=1);
	-webkit-transition: all 1.2s;
	-moz-transition: all 1.2s;
	-ms-transition: all 1.2s;
	-o-transition: all 1.2s;
	transition: all 1.2s;
}
#teachingDepartment .cont .tabCont ul li .titBox .icon img{
	width: 100%;
	height: auto;
}
#teachingDepartment .cont .tabCont ul li.active .titBox{
	background: #267737;
}
#teachingDepartment .cont .tabCont ul li .mc-description{
	position: absolute;
	background: #fff;
	width: 100%;
	height: 100%;
	top: 100%;
	right: 0;
	left: 0;
	bottom: 0;
	overflow: hidden;
	opacity: 0;
	filter: alpha(opacity=0);
	-webkit-transition: all 1.2s;
	-moz-transition: all 1.2s;
	-ms-transition: all 1.2s;
	-o-transition: all 1.2s;
	transition: all 1.2s;
}
#teachingDepartment .cont .tabCont ul li.active .mc-description{
	top: 0px;
	opacity: 1;
	filter: alpha(opacity=100);
}
#teachingDepartment .cont .tabCont ul li .mc-description .descBox{
	margin-top: 27px;
	width: calc(100% - 44px);
	padding: 0px 22px;
}
#teachingDepartment .cont .tabCont ul li .mc-description .descBox p{
	font-size: 15px;
	line-height: 24px;
	margin-bottom: 20px;
}
#teachingDepartment .cont .tabCont ul li .mc-description .descBox p:last-child{
	margin-bottom: 0px;
}
#teachingDepartment .cont .tabCont ul li .mc-description .btnBox{
	width: calc(100% - 44px);
	position: absolute;
	left: 22px;
	right:22px;
	bottom: 23px;
	display: flex;
	justify-content: space-between;
}
#teachingDepartment .cont .tabCont ul li .mc-description .btnBox a{
	font-size: 15px;
	color: #333333;
	line-height: 25px;
	display: block;
	background: #cfcfcf;
	padding: 0px 10px;
}
#teachingDepartment .cont .tabCont ul li .mc-description .btnBox a.more{
	padding: 0px 20px;
}
#teachingDepartment .cont .tabCont ul li .mc-description .btnBox a:hover{
	background: #267737;
	color: #fff;
}
#teachingDepartment .cont .tabCont ul li .mc-description .btnBox a i{
	margin-left: 6px;
}
/* 新样式动画 */
#teachingDepartment .cont .tabCont ul li .img-container .imgBox{
	width: 296px;
	height: 460px;
	overflow: hidden;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
#teachingDepartment .cont .tabCont ul li .img-container .imgBox img{
	width: 100%;
	height: 100%;
}

#teachingDepartment .cont .tabCont ul li.active .img-container .imgBox{
	width: 50px;
	height: 50px;
	border-radius: 50%;
	position: absolute;
	z-index: 1;
	right: 20px;
	top: 50%;
	margin-top: -25px;
	cursor: pointer;
}
#teachingDepartment .cont .tabCont ul li.active .img-container .imgBox img{
	height: auto;
}

#teachingDepartment .cont .tabCont ul li.active .titBox .icon{
	opacity: 0;
	filter: alpha(opacity=0);
}



/*右侧视频新样式*/
#videoIntroduction .fr .tit{
	font-family: "SourceHanSansCN-Medium";
	height: 48px;
	background: #808080;
	width: calc(100% - 70px);
	padding: 0px 35px;
	line-height: 48px;
	font-size: 22px;
	color: #fff;
}
#videoIntroduction .likeVideoSwiper{
	margin-top: 13px;
	height: 489px;
}
#videoIntroduction .likeVideoSwiper .swiper-slide{
	width: 100%;
	height: 208px;
	position: relative;
}
#videoIntroduction .likeVideoSwiper .swiper-slide .imgBox{
	width: 100%;
	height: 208px;
	position: relative;
	overflow: hidden;
}
#videoIntroduction .likeVideoSwiper .swiper-slide .imgBox img{
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 0;
	transition: all 500ms;
}
#videoIntroduction .likeVideoSwiper .swiper-slide:hover .imgBox img{
	transform: scale(1.1);
}
#videoIntroduction .likeVideoSwiper .swiper-slide .imgBox a{
	position: absolute;
	z-index: 1;
	left: 0px;
	top: 0px;
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .3);
}
#videoIntroduction .likeVideoSwiper .swiper-slide .imgBox a img{
	width: 40px;
	height: 40px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-top: -20px;
	margin-left: -20px;
}
#videoIntroduction .likeVideoSwiper .swiper-slide:hover .imgBox a img{
	transform: scale(1);
}
#videoIntroduction .likeVideoSwiper .swiper-slide .txtBox{
	width: calc(100% - 40px);
	padding: 0px 20px;
	height: 30px;
	line-height: 30px;
}
#videoIntroduction .likeVideoSwiper .swiper-slide .txtBox h2{
	font-size: 16px;
	font-family: "SourceHanSansCN-Regular";
	line-height: 30px;
	/*width: 60%;*/
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
#videoIntroduction .likeVideoSwiper .swiper-slide .txtBox .r span{
	font-size: 14px;
	line-height: 30px;
}
#videoIntroduction .likeVideoSwiper .swiper-slide .txtBox .r span.see{
	background-size: 14px;
	text-indent: 20px;
	margin-left: 10px;
}
