
.text-list {
    margin-bottom: 40px;
}

.text-list ul li {
    float: left;
    width: 880px; margin-right:10px;
    border: 1px solid #e4e4e4;
    border-bottom: 1px solid #e4e4e4;
    position: relative;
    margin-bottom: 10px;
    z-index: 9;
}

.text-list ul li:hover {
    z-index: 999;
}

.text-list ul li .border-top,
.text-list ul li .border-bottom {
    display: block;
    width: 0;
    height: 1px;
    position: absolute;
    background-color: #f00;
    -webkit-transition: all .8s ease-out;
    transition: all .8s ease-out;
}

.text-list ul li .border-top {
    left: 0;
    top: -1px;
}

.text-list ul li:hover .border-top {
    width: 100%;
}

.text-list ul li .border-bottom {
    left: 0;
    bottom: -1px;
}

.text-list ul li:hover .border-bottom {
    width: 100%;
}

.text-list dl dt {
    float: left;
    width: 310px;
    height: 250px;
    background-color: #f8f8f8;
    border-right: 1px solid #e4e4e4;
    color: #999;
    position: relative;
}

.text-list dl dt i {
    display: block;
    width: 100%;
    height: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.text-list ul li:hover dl dt i {
    height: 100%;
}

.text-list dl dt .date {
    position: absolute;
    z-index: 99;
    width: 308px;
    height: 245px;
	padding:1px; padding-top:10px;
}

.text-list ul li:hover .date {
    color: #fff;
}

.text-list dl dt .date span {
    font-size: 32px;
    display: block;
}

.text-list dl dt .date em {
    font-size: 16px;
}

.text-list dl dd {
    float: left;text-align:left;
    width: 550px;
    padding: 30px 0 0 20px;
}

.text-list dl dd a {
    display: block;
    font-size: 20px;
	font-weight:bold;
    margin-bottom: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.text-list ul li:hover dd a {
    color: #151515;
}

.text-list dl dd p {
    color: #000;
    line-height: 35px;
    height: 100%;
    text-align:left;
}