html body {
    background: #f5f9fd;
}
/*新闻列表*/
.news-list {
    margin: 0.6rem 0;
}
.news-list ul {
}
.news-list ul li {
    margin:0.5rem 0;

}
.news-list ul li .item {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.news-list ul li .time {
    width:12%;
    
}
.news-list ul li .time .day {
    font-size: 0.48rem;
    color:#000;
    font-family: "Futura-Light";
}
.news-list ul li .time .month {
    font-size: 0.24rem;
    color:#999;
    font-family: "Futura-Light";
}
.news-list ul li .photo {
    width:20%;
}
.news-list ul li .photo figure {
    position: relative;
    width: 100%;
    padding-top: 60.5%;
    border-radius: 0.1rem;
    overflow: hidden;
    box-shadow: 0 1.1458vw 2.8646vw 0 rgba(48, 70, 108, .16);
}
.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 .word {
    width:54%;
    padding:0.3rem 1.5rem;
    
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.news-list ul li:hover .word {
    *background:#fff;
    *box-shadow: 0 1.1458vw 2.8646vw 0 rgba(48, 70, 108, .26);
}
.news-list ul li .word h3 {
    font-size: 0.24rem;
    color:#000;
    line-height: 1.6;

    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-list ul li:hover  .word h3{
    color: #e4002b;
}
.news-list ul li .word p {
    font-size: 0.16rem;
    color: #777;
    line-height: 1.6;
    padding: 0.2rem 0 0.2rem 0;
}
.news-list ul li .word i {
    font-size:0.20rem;
    color:#12202e;
    font-style: normal;
}
.news-list ul li:hover  .word i {
    color: #e4002b;
}
@media screen and (max-width:1024px){
.news-list {
    margin: 0rem 0;
}
.news-list ul {
}
.news-list ul li {
    margin:0.5rem 0;
    /* padding: 0.1rem; */
    /* background: #fff; */
}
.news-list ul li .item {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.news-list ul li .time {
    width: 100%;
    margin: 0.2rem 0;
}
.news-list ul li .time .day {
    font-size: 0.48rem;
    color:#000;
    font-family: "Futura-Light";
}
.news-list ul li .time .month {
    font-size: 0.24rem;
    color:#999;
    font-family: "Futura-Light";
}
.news-list ul li .photo {
    width: 100%;
}
.news-list ul li .photo figure {
    position: relative;
    width: 100%;
    padding-top: 60.5%;
    border-radius: 0.1rem;
    overflow: hidden;
    box-shadow: 0 1.1458vw 2.8646vw 0 rgba(48, 70, 108, .0);
}
.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 .word {
    width: 100%;
    padding: 0.5rem 0rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.news-list ul li:hover .word {
    background:none;
    box-shadow: 0 1.1458vw 2.8646vw 0 rgba(48, 70, 108, 0);
}
.news-list ul li .word h3 {
    font-size: 0.24rem;
    color:#000;
    line-height: 1.6;

    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-list ul li:hover  .word h3{
    color: #e4002b;
}
.news-list ul li .word p {
    font-size: 0.16rem;
    color: #777;
    line-height: 1.8;
    padding: 0.2rem 0 0.2rem 0;
}
.news-list ul li .word i {
    font-size:0.14rem;
    color:#12202e;
    font-style: normal;
}
.news-list ul li:hover  .word i {
    color: #e4002b;
}
}

/*自适应样式 end*/



/*详情页*/
.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>p {
    padding: 0 0 1% 0;
    *text-indent: 2em;
}
.news-content>h2 {
    font-size: 20px;
    color: #e4002b;
    padding:20px 0 10px 0;
}
.news-content>h3 {
    font-size: 18px;
    color: #000;
    padding: 10px 0;
}
.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:0.1rem 0;
}

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