.news_bg {
    width: 100%;
    height: 15rem;
    /*750/50*/
    background: url(../images/news/news_bg.jpg) center no-repeat;
    background-size: cover;
}

.newsNav {
    width: 100%;
    margin: 1rem auto;
    overflow: hidden;
    text-align: center;
}

.newsNav>span {
    display: inline-block;
    /* float: left; */
    /* width: 2.4rem; */
    /*120/50*/
    height: 0.8rem;
    padding: 0 16px;
    /*40/50*/
    border: 1px solid white;
    color: #555555;
    line-height: 0.8rem;
    text-align: center;
    font-size: 0.36rem;
    /*18/50*/
    box-sizing: border-box;
    border-radius: 0.4rem;
    cursor: pointer;
    font-weight: bold;
}

.newsNav>.cur_newsNav {
    border-color: #58b4e7;
    color: #58b4e7;
}


/*列表*/

.list {
    overflow: hidden;
    padding-bottom: 1rem;
}

.list ul {
    width: 30.33%;
    margin: 0 1.5% 0.6rem;
    /*30/50*/
    float: left;
    overflow: hidden;
}

.list_img {
    width: 100%;
    height: 4rem;
    /*250/50*/
    overflow: hidden;
}

.list_img>img {
    width: 100%;
    height: 100%;
}

.list_txt {
    width: 94%;
    padding: 0 3%;
    height: 1rem;
    background-color: #dfdfdf;
    color: #555555;
    font-size: 0.32rem;
    /*16/50*/
    line-height: 1rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    transition: all ease-in-out 0.3s;
    -moz-transition: all ease-in-out 0.3s;
    -ms-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
    -webkit-transition: all ease-in-out 0.3s;
}

.list ul:hover .list_txt {
    background-color: #4baee5;
    color: white;
}

.list>.more {
    clear: both;
    font-size: 0.28rem;
    /*14/50*/
    line-height: 0.6rem;
    height: 0.6rem;
    margin: auto;
    text-align: center;
    width: 2.2rem;
    box-sizing: border-box;
    border: 1px solid #00a2e9;
    color: #00a2e9;
    cursor: pointer;
    transition: all ease-in-out 0.3s;
    -moz-transition: all ease-in-out 0.3s;
    -ms-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
    -webkit-transition: all ease-in-out 0.3s;
}

.list>.more:hover {
    background-color: #00a2e9;
    color: white;
}

#content img {
    display: inline;
}

.newsNav a:hover {
    color: #58b4e7;
}