html body {
     background: #f9f9f9;
}
/*新闻列表*/
.news-list {
    padding:2% 0 5% 0;
}
.news-list ul {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2%;
}
.news-list ul li{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 32%;
    border-radius: 4px;
    margin-bottom: 2%;
    
}
.news-list ul li:hover{
    box-shadow: 0 0.2rem 0.3rem 0 rgb(0 0 0 / 5%);
}
.news-list ul li a {
    display: block;
    width: 100%;
    padding: 5%;
    background: #fff;
}
.news-list ul li .photo {
    width: 100%;
    overflow: hidden;
    position: relative;
}
.news-list ul li .photo figure {
    width: 100%;
    padding-top: 50%;
    overflow: hidden;
    position: relative;
}
.news-list ul li .photo figure img{
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: all 0.6s ease;
}
.news-list ul li:hover .photo figure img {
    opacity: 1;
    filter: alpha(opacity=80);
    transform: scale(1.1);
}
.news-list ul li .word {
    width: 100%;
}
.news-list ul li .word time {
    font-size: 0.16rem;
    color: #333;
    font-family: "Futura-Light";
}
.news-list ul li:hover .word time {
    color:#252525;
}
.news-list ul li .word time::before {
    content: "";
    width: 0.2rem;
    height: 0.2rem;
    background: url(../images/time.svg) no-repeat center center/0.16rem;
    margin: 0 0.1rem 0 0;
    transform: translate(0px,-2px);
    display: inline-block;
    vertical-align: middle;
}

.news-list ul li .word h3 {
    font-size: 0.20rem;
    color:#000;
    height:1.2rem;
    line-height: 1.6;
    padding:0.2rem 0 0.1rem 0;
}



.news-list ul li .word p {
    padding:0.05rem 0 0 0;
    font-size: 0.12rem;
    color: #fff;
}

.news-list ul li:hover .word h3 {
    position: relative;
}
.news-list ul li:hover .word h3::before{
    content: "";
    display: block;
    height: 1px;
    position: absolute;
    bottom: 0.1rem;
    background: #f4de26;
    transition: width 0.8s ease-in-out 1.2s;

    width: 110%;
    left: -5%;
    transform-origin: center center;
    transform: rotate(0.6deg);
}
.news-list ul li:hover .word h3::after {
    content: "";
    display: block;
    height: 1px;
    position: absolute;
    bottom: 0.1rem;
    background: #f4de26;
    transition: width 0.8s ease-in-out 1.2s;
    width: 108%;
    right: -4%;
    transform: rotate(-0.7deg);
}
 
@media screen and (max-width:1024px) {
.news-list {
    padding:2% 0 5% 0;
}
.news-list  ul li{
    width: 100%;
    margin-bottom:0.8rem;
}
.news-list ul li a {
    padding:5%;
}
.news-list ul li .photo {

}
.news-list ul li .photo figure {

}
.news-list ul li .photo figure img{

}
.news-list ul li:hover .photo figure img {
}
.news-list ul li .word {
    float: left;
    width: 100%;
    padding: 0.3rem 0 0.3rem 0;
}
.news-list ul li .word time {
    font-size: 0.14rem;
    color: #252525;
}
.news-list ul li:hover .word time {
    color:#252525;
}
.news-list ul li .word h3 {
    font-size: 0.16rem;
    color:#252525;
    height:1rem;
    line-height: 1.6;
}
.news-list ul li:hover .word h3 {
}
.news-list ul li .word p {
    padding:0.05rem 0 0 0;
    font-size: 0.12rem;
    color: #fff;
}
}
/*新闻列表*/

/*详情页*/
.news-artilce {
    padding:2% 0;
    overflow:hidden;
}
.news-box {
    width:70%;
    padding:4% 8%;
    background:#fff;
}
.news-title{
    padding-bottom:3%;
    border-bottom: 1px solid #e5e5e5;
}
.news-title h1 {
    line-height: 0.48rem;
    font-size: 0.28rem;
    color: #000;
    font-weight: bold;
    overflow: hidden;
}
.news-title p {
    padding:0.1rem 0;
    font-size:0.16rem;
    color:#333;
    font-family: "Raleway-Light";
}
.news-content {
    padding: 2.5% 0;
    max-width:1056px;
    margin: 0 auto;
    line-height: 0.3rem;
    font-size: 0.14rem;
    color: #666;
    overflow: hidden;
}
.news-content img {
    max-width:100% !important;
    height:auto !important;
}

/*推荐新闻*/
.hot-news-list {
    width: 24%;
    padding: 0 0.1rem;
    border-left: 1px solid #eee;
    background: #fff;
}
.hot-news-list h2 {
    font-size: 0.24rem;
    color: #333;
    font-weight: bold;
    padding: 5%;
}
.hot-news-list ul {
}
.hot-news-list ul li {
    float: left;
    width: 98%;
    margin: 5% 0;
    padding: 5% 5%;
    border-bottom: 1px solid #eee;
}

.hot-news-list ul li h3 {
    width:100%;
    font-size: 0.18rem;
    color: #333;
    line-height:1.6;
    padding:0.1rem 0;
    overflow: hidden;
}
.hot-news-list ul li time{
    font-size: 0.18rem;
    color: #666;
    font-family: "Futura-Light";
}
.hot-news-list ul li time::before {
    content: "";
    width: 0.2rem;
    height: 0.2rem;
    background: url(../images/time.svg) no-repeat center center/0.16rem;
    margin: 0 0.1rem 0 0;
    transform: translate(0px,-2px);
    display: inline-block;
    vertical-align: middle;
}


@media screen and (max-width:1024px){
.news-artilce {
    padding:2% 0;
}
.news-box {
    width:100%;
    padding:4% 0%;
}
.news-title{
    padding-bottom:3%;
}
.news-title h1 {
    font-size: 0.2rem;
    color: #000;
    line-height: 1.4;
    margin-bottom: 1%;
    overflow: hidden;
}
.news-title p {
    font-size:0.16rem;

}
.news-content {
    padding: 2.5% 0.25rem;
    max-width:100%;
    margin: 0 auto;
    line-height: 0.3rem;
    font-size: 0.14rem;
    color: #666;
    overflow: hidden;
}
.news-content img {
    max-width:100% !important;
    height:auto !important;
}

/*推荐新闻*/
.hot-news-list {
    width:100%;
    border-left: none;
}
.hot-news-list h2 {
    font-size: 0.2rem;
    color: #333;
    font-family: 'ChaoPai';
    padding: 5%;
}
.hot-news-list ul {
}
.hot-news-list ul li {
    width: 100%;
    margin: 3% 0;
    padding: 3% 0%;
    border-bottom: 1px solid #eee;
}

.hot-news-list ul li h3 {
    font-size: 0.18rem;
    padding:10px 0;
}

.hot-news-list ul li .item time {
    font-size:0.18rem;
}
}