
.banner-child-news{
    height: 500px;
    background: url("../images/banner-news.jpg") center no-repeat;
    background-size: cover;
}

.news-container .news-tab{
    box-shadow: 1px 1px 5px #ccc;
    position:relative;
    z-index: 10;
}

.news-container .news-tab .news-tab-item{
    float: left;
    width: 50%;
    position: relative;
}
.news-container .news-tab .news-tab-item:nth-child(1):after{
    content: "";
    width: 1px;
    height: 60%;
    position: absolute;
    top: 20%;
    right: 0;
    background: #ccc;
}

.news-container .news-tab .news-tab-item .tab-item-style{
    width: 240px;
    margin: 0 auto;
    padding: 15px 0;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    color: #999;
}

.news-container .news-tab .news-tab-item .tab-item-style .iconfont{
    font-size: 30px;
    font-weight: normal;
}

.news-container .news-tab .news-tab-item.cur .tab-item-style{
    border-bottom: 3px solid #148799;
    color: #148799;
}

.news-container .news-list{
    background-color: #f5f5f5;
    padding: 40px 0;
}

.news-list .list-item{
    display: block;
    text-decoration: none;
    width: 100%;
    height: 120px;
    padding: 20px;
    background-color: white;
    margin-bottom: 40px;
    transition: all 0.5s;
}

.news-list .list-item .list-item-img{
    width: 180px;
    height: 120px;
    overflow: hidden;
    float: left;
    text-align: center;
}

.news-list .list-item .list-item-img img{
    width: 100%;
    height: auto;
    transition: all 0.5s;
}

.news-list .list-item .list-item-text{
    width: 100%;
    box-sizing: border-box;
    padding-left: 210px;
}

.news-list .list-item .list-item-text .list-title .title-content{
    font-size: 20px;
    font-weight: bold;
}

.news-list .list-item .list-item-text .list-title .title-time{
    font-size: 18px;
    color: #999;
    float: right;
}

.news-list .list-item .list-item-text .list-new-describe{
    font-size: 16px;
    line-height: 24px;
    margin-top: 10px;
    max-height: 72px;
    overflow: hidden;
}

.news-list .list-item:hover{
    box-shadow: 3px 5px 30px #b3b3b3;
}
.news-list .list-item:hover .list-item-img img{
    transform: scale(1.1);
}

.news-container .news-detail{
    padding: 30px 0;
}

.news-container .news-detail .detail-container{
    width: 960px;
    box-sizing: border-box;
    float: left;
    box-shadow: 0 2px 10px 0 rgba(180, 180, 180, 0.45);
    padding: 40px;
}

.news-container .news-detail .detail-container .detail-title{
    font-size: 20px;
    text-align: center;
    color: #0099e6;
}

.news-container .news-detail .detail-container .detail-time{
    font-size: 16px;
    text-align: center;
    color: #999;
    margin-bottom: 20px;
}

.news-container .news-detail .detail-container .detail-text{
    text-align: center;
}

.news-container .news-detail .detail-container .detail-turning{
    margin-top: 60px;
}

.news-container .news-detail .detail-container .detail-turning p{
    line-height: 24px;
}

.news-container .news-detail .detail-container .detail-turning p .turning-click:hover{
    color: #0099e6;
}

.news-container .news-detail .news-recommend{
    float: right;
    width: 200px;
}

.news-container .news-detail .recommend-item{
    margin-bottom: 10px;
    cursor: pointer;
}

.news-container .news-detail .recommend-item .recommend-img{
    width: 100%;
    height: 120px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-container .news-detail .recommend-item .recommend-img img{
    width: 100%;
    height: auto;
}

.news-container .news-detail .recommend-item .recommend-title{
    width: 100%;
    overflow: hidden;
    text-overflow:ellipsis;
    white-space: nowrap;
    line-height: 36px;
}

.news-container .news-detail .recommend-item:hover .recommend-title{
    color: #0099e6;
}

