



/*列表*/
.three-list li{
	width: 30%;
	float: left;
	margin-left: 5%;
	background: #f9f9f9;
	margin-bottom: 55px;
}
.three-list li:nth-child(3n+1){
	margin-left: 0;
}
.three-list .list-img{
    height: 180px;
    overflow: hidden;
	position: relative;
}
.three-list .list-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.three-list .list-mask{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.3);
	opacity: 0;
	transition: 0.3s;
}
.three-list .icon-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-block;
    width: 40px;
    height: 40px;
    cursor: pointer;
    background: url(../images/icon-play2.png) no-repeat center;
    background-size: 100%;
    opacity: 0;
}
.three-list .list-text{
	padding: 10px 14px;
	line-height: 30px;
	/*border-bottom: 7px solid #f9f9f9;*/
	/*transition: 0.3s;*/
	position: relative;
}
.three-list .title{
	flex: 1;
	color: #555;
	font-size: 16px;
	/*margin-bottom: 10px;*/
	line-height: 28px;
	height: 56px;
}

.three-list .time {
	color: #b0b0b0;
	font-size: 12px;

}
.three-list .time img{
	width: 14px;
	margin-right: 10px;
}
.three-list .arrow{
	text-align: right;
}
.three-list  .icon-arrow{
	display: inline-block;
	width: 31px;
	height: 11px;
	background: url('../images/arrow.png') no-repeat;
	background-size: 31px;
}
.three-list  .icon-time{
	display: inline-block;
	margin-right: 10px;
	width: 14px;
	height: 14px;
	background: url('../images/icon-time1.png') no-repeat;
	background-size: 100%;
}
/*.three-list li:hover .list-text{
	border-bottom: 7px solid #128ce2;
}*/
.three-list .list-text:after{
    content: "";
    width: 100%;
    height: 4px;
    background: #128ce2;
    position: absolute;
    bottom: -4px;
    left: 0;

    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: color .2s,-webkit-transform .2s;
    transition: color .2s,-webkit-transform .2s;
    transition: transform .2s,color .2s;
    transition: transform .2s,color .2s,-webkit-transform .2s;
}
.three-list li:hover .list-text:after{
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
}






.three-list .item{
	margin-bottom: 40px;
}
.three-list .item:hover .title{
	color: #13499a;
}
.three-list .item:hover{
	box-shadow: 0 0 7px rgba(20,51,77,0.25);
}

















@media (max-width: 768px){
.three-list ul{
	/*display: flex;
	justify-content: space-between;
	flex-wrap: wrap;*/
}
.three-list li{
	/*width: 48%;*/
	width: 100%;
	margin-left: 0;
	margin-bottom: 30px;
}
.three-list .list-text {
    padding: 10px 15px;
    line-height: 24px;
}
.list-text .flex-between{
	width: 100%;
	display: inline-block;
}
.three-list .item{
	box-shadow: 0 0 10px rgba(0,0,0,0.08);
}







.three-list .list-img {
    height: auto;
    overflow: hidden;
    position: relative;
}









}