*{
	padding: 0;
	margin: 0;
}
html,body{
	height: 100%;
	width: 100%;
	min-width: 1200px;
}
[v-cloak]{
	display: none !important;
}
div{
	box-sizing: border-box;
}
.main_body{
	width: 1200px;
	margin:30px auto;
}
/* 标题 */
.title{
	width: 100%;
	display: flex;
	justify-content: space-between;
	border-bottom:2px solid;
	line-height: 66px;
	height: 54px;
	color: #1C1C1C;
	border-image: linear-gradient(90deg, #AC050C -5%, #FF4E55 100%) 1;
}
.title_left{
	position: relative;
	margin-left: -2px;
	height: 100%;
	padding-left: 44px;
	font-size: 22px;
	letter-spacing: 4px;
	font-weight: bold;
	background: url(../home/title_bg.png) no-repeat;
	background-size: 150px 100%;
}
.home_more{
	font-size: 14px;
}
/* 推荐课程 */
.resource_box{
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}
.resource_item{
	width: 288px;
	margin-right: 16px;
	margin-top: 16px;
	border-radius: 6px;
	overflow: hidden;
}
.resource_item:nth-child(4n){
	margin-right: 0 !important;
}
.resource_item .resource_img{
	width: 100%;
	height: 167px;
	background-color: #ededed;
}
.resource_img>img{
	width: 100%;
	height: 100%;
}
.resource_text{
	padding: 12px 16px;
	border: 0.6px solid #DCDCDC;
	border-top: none;
	border-bottom-right-radius: inherit;
	border-bottom-left-radius: inherit;
}
.content{
	margin-top: 6px;
}
.resource_text>p:nth-child(1){
	font-size: 18px;
	color: #000;
}
.resource_text>p:nth-child(2){
	margin-top: 10px;
	font-size: 14px;
	color: #999;
}
.resource_text>p:nth-child(2)>span{
	margin-right: 10px;
}
.model{
	display: flex;
	flex-wrap: wrap;
	margin-top: 24px;
}
.model_item{
	width: 288px;
	height: 183px;
	margin-bottom: 16px;
	margin-right: 16px;
	background-color: #ededed;
}
.model_item:nth-child(4){
	margin-right: 0 !important;
}
.model_item:nth-child(n+5){
	width: 384px;
	height: 217px;
	margin-right: 24px;
}
.model_item:last-child{
	margin-right: 0 !important;
}
.model_item>img{
	height: 100%;
	width: 100%;
}
.marginTop{
	margin-top: 30px;
}

.models{
	display: flex;
	flex-wrap: wrap;
}
.models_item{
	width: 384px;
	border-radius: 6px;
	height: 222px;
	margin-top: 24px;
	margin-right: 24px;
	background-color: #ededed;
}
.models_item:nth-child(3n){
	margin-right: 0 !important;
}
.models_item>img{
	height: 100%;
	width: 100%;
	border-radius: inherit;
}
/* 悬浮样式 */
.hoverClass:hover{
	cursor: pointer;
	opacity: .8;
}
/* 超出显示... */
.line-1{
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}
.line-2{
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.line-3{
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
.line-4{
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
}