

.news-container{
    width: 1240px;
    margin: 0 auto;
    margin-top: 60px;
}
    .news-top{
        width: 100%;
        height: 300px;
        background: #f6f6f6;
        margin-bottom: 48px;
    }
        .top-img{
            display: inline-block;
            height: 100%;
            width: 480px;
            overflow: hidden;
        }
        .top-img a,.top-img img{
                display: inline-block;
                height: 100%;
                width: 100%;
                transition: 1s;
                -webkit-transition: 1s;
                -moz-transition: 1s;
                -ms-transition: 1s;
                -o-transition: 1s;
}

    .top-right{
        display: inline-block;
        height: 100%;
        width: 655px;
        vertical-align: top;
        margin-left: 60px;
    }
        .news-title a{
            display: block;
            font-size: 22px;
            line-height: 22px;
            color: #666;
            margin-top: 40px;
            margin-bottom: 35px;
            overflow: hidden;
            text-overflow:ellipsis;
            white-space: nowrap;
            transition: 1s;
            -webkit-transition: 1s;
            -moz-transition: 1s;
            -ms-transition: 1s;
            -o-transition: 1s;
}
        .news-text{
            font-size: 16px;
            color: #999999;
            line-height: 28px;
        }
        .view-more{
            display: block;
            width: 130px;
            height: 45px;
            line-height: 45px;
            text-align: center;
            font-size: 16px;
            color: #999;
            border: 1px solid #999;
            border-radius: 4px;
            -webkit-border-radius: 4px;
            -moz-border-radius: 4px;
            -ms-border-radius: 4px;
            -o-border-radius: 4px;
            margin-top: 30px;
            transition: 1s;
            -webkit-transition: 1s;
            -moz-transition: 1s;
            -ms-transition: 1s;
            -o-transition: 1s;
}

    .news-top:hover .top-img img{
        transform: scale(1.2);
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
    }
    .news-top:hover .news-title a{
        color: #df8f4f;
    }
    .news-top:hover .view-more{
        border: 1px solid #df8f4f;
        color: #df8f4f;
    }



    /* 下半部分 */

    .news-items{
        width: 570px;
        height: 110px;
        margin-bottom: 20px;
        padding-top: 20px;
    }
        .items-left{
            width: 98px;
            height: 98px;
            background: #d8d8d8;
            color: #333;
            text-align: center;
            transition: 0.5s;
            -webkit-transition: 0.5s;
            -moz-transition: 0.5s;
            -ms-transition: 0.5s;
            -o-transition: 0.5s;
}
        .items-left p a{
            display: inline-block;
            width: 100%;
            height: 98px;
            transition: 0.5s;
            -webkit-transition: 0.5s;
            -moz-transition: 0.5s;
            -ms-transition: 0.5s;
            -o-transition: 0.5s;
}
        .items-left p span:nth-child(1){
            display: inline-block;
            font-size: 36px;
            line-height: 36px;
            margin-top: 15px;
            margin-bottom: 10px;
        }
        .items-left p span:nth-child(2){
            display: inline-block;
            font-size: 18px;
            line-height: 18px;
        }


    .item-right{
        width: 454px;
    }
        .item-title a{
            display: inline-block;
            font-size: 18px;
            color: #666666;
            margin-bottom: 12px;
            overflow: hidden;
            text-overflow:ellipsis;
            white-space: nowrap;
        }
        .item-text{
            font-size: 14px;
            color: #999999;
            line-height: 24px;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2;
            overflow: hidden;
        }
        .item-more{
            text-align: right;
            font-size: 16px;
            color: #666;
            line-height: 16px;
        }

    .news-items:hover .items-left,.news-items:hover .items-left a{
        color: white;
        background: #e79359;
    }
    .news-items:hover .item-title a,.news-items:hover .item-more a{
        color: #df8f4f;
    }