.banner {
    background-size: 100% 100%;
    padding-top: 27.71%;
}

/* 列表页 */
.txt-list ul {
	margin-top: 30px;
}

.txt-list ul li a {
	display: block;
	overflow: hidden;
	padding: 15px;
	position: relative;
	z-index: 1;
	transition: all 0.3s;
}

.txt-list ul li a::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 100%;
	background: #00561f;
	transition: all 0.3s;
	z-index: -1;
}

.txt-list ul li a:hover::before {
	width: 100%;
}

.txt-list ul li a:hover .tx-date {
	background-color: #016a27;
}

.txt-list ul li a:hover .tx-date b {
	color: #fff;
}

.txt-list ul li a:hover .tx-date span {
	color: #fff;
}

.txt-list ul li a:hover h3 {
	color: #fff;
}

.txt-list ul li a:hover p {
	color: #fff;
}



.tx-date {
	float: left;
	width: 92px;
	height: 100px;
	margin-right: 25px;
	padding-left: 16px;
	padding-top: 16px;
	background-color: #f5f5f5;
	transition: all 0.3s;
}

.tx-date b {
	font-size: 14px;
	font-weight: normal;
	color: #1a3163;
	display: block;
	margin-top: 5px;
	transition: all 0.3s;
}

.tx-date span {
	font-size: 24px;
	color: #1a3163;
	transition: all 0.3s;
}

.tx-info {
	overflow: hidden;
}

.tx-info h3 {
	font-size: 18px;
	font-weight: bold;
	line-height: 30px;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	transition: all 0.3s;
}

.tx-info p {
	font-size: 14px;
	color: #999;
	line-height: 30px;
	height: 60px;
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	margin-top: 10px;
	transition: all 0.3s;
}

@media screen and (max-width: 1024px) {

    .txt-list ul {
        margin-top: 15px;
    }    .txt-list ul li a {
        padding: 10px;
    }    .tx-date {
        margin-right: 20px;
        width: 72px;
        height: 80px;
        padding-left: 10px;
        padding-top: 10px;
    }    .tx-date span {
        font-size: 20px;
    }.tx-info h3 {
        font-size: 16px;
        line-height: 26px;
    }    .tx-info p {
        line-height: 24px;
        height: 48px;
        margin-top: 6px;
    }
}