html body {
    background: #fff;
}
html body .header::after {
    opacity: 0;
}
/*新闻列表*/
.news-list {
    margin:2% 0;
}
.news-list ul {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-words: flex-start;
    gap:0.3rem 2%;
}

.news-list ul li {
    display: flex;
    width: 49%;
    background: #f9f9f9;
    border-radius: 4px;
    padding:2%;
    box-shadow: 30px 30px 40px -10px rgba(0, 0, 0, 0.05);
}
.news-list ul li:hover {
    box-shadow: 30px 30px 40px -10px rgba(0, 0, 0, 0.1);
}
.news-list ul li a {
    display: block;
    width: 100%;
}
.news-list ul li .photo {
    float: left;
    width: 40%;
    height: 0;
    padding-top: 28%;
    overflow: hidden;
    position: relative;
}
.news-list ul li .photo figure {
	position: absolute;
    top: 0%;
    left: 0%;
	width:100%;
	height:100%;
}
.news-list ul li .photo figure img {
    display: block;
    width: 100%;
	height:100%;
	border-radius: 4px;
    object-fit: cover;
    transition: all 0.6s ease;
}
.news-list ul li .photo figure:after {
    opacity: 0;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 1;
    transition: all 0.3s;
}
.news-list ul li .photo time {
    opacity: 1;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    padding:0.1rem;
    border-radius:0 0 10px 0;
    background: #fff;
    transition: all 0.6s ease;
}
.news-list ul li:hover .photo time {
    opacity: 1;
    padding:0.2rem;
}
.news-list ul li .photo time h5 {
    font-size:var(--fs48);
    color: #000;
}
.news-list ul li .photo time h6 {
    font-size:var(--fs16);
    color: #b2b2b2;
    margin:0.1rem 0 0 0;
}


.news-list ul li .word {
    float: right;
    width: 60%;
    padding:0 5%;
}
.news-list ul li .word h3 {
    width: 100%;
    height: 70px;
    font-size:var(--fs20);
    color: #333;
    line-height: 1.4;
    font-family: "MiSans-Medium";
}

.news-list ul li .word p {
    width:100%;
    height: 90px;
    margin: 1% 0 1%;
    font-size: 0.12rem;
    color: #999;
    line-height:1.8;
    font-family: "MiSans-Light";
    overflow: hidden;
}

.news-list ul li .word .info {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}
.news-list ul li .word .info .go {
    font-size:var(--fs14);
    color: #999;
}
.news-list ul li:hover .word .info .go {
    color: #e4002b;
}
.news-list ul li .word .info .time {
    font-size:var(--fs14);
    color: #999;
}



/*特效*/
.news-list ul li:hover {
}
.news-list ul li:hover .word h3 {
    color: #e4002b;
}
.news-list ul li:hover .photo .link {
    transform: translate(-50%,-50%);
    opacity: 1;
    filter: alpha(opacity=100);
}
.news-list ul li:hover .photo img {
    opacity: 1;
    filter: alpha(opacity=80);
    transform: scale(1.01);
}
.news-list ul li:hover .word .more span {
    color: #e4002b;
}
@media screen and (max-width:1024px){
.news-list {
}
.news-list ul {
}
.news-list ul li {
    width:100%;
}

.news-list ul li .photo {
    width: 100%;
    padding-top: 60%;
}
.news-list ul li .photo figure {
}

.news-list ul li .photo .link {
	display:none;
}
.news-list ul li .photo img {
}

.news-list ul li .photo time {
    padding:0.1rem;

}
.news-list ul li:hover .photo time {
    opacity: 1;
    padding:0.2rem;
}
.news-list ul li .photo time h5 {
    font-size:var(--fs24);
}
.news-list ul li .photo time h6 {
    font-size:var(--fs14);
    margin:0.1rem 0 0 0;
}

.news-list ul li .word {
    width: 100%;
    padding: 8% 5% 5%;
    background: #fff;
}
.news-list ul li .word h3 {
    font-size:var(--fs18);
	height: auto;
}
.news-list ul li .word p {
    width:100%;
    height: 95px;
    line-height:1.6;
    font-size:var(--fs14);
    margin: 3% 0 10%;
}
}
/*新闻列表*/