﻿.news {
    background: white;
    box-sizing: border-box;
    height: 100%;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

    .news .panel {
        padding: 0 0.6rem;
        box-sizing: border-box;
    }

    .news .news-top {
        border-radius: 0.5rem;
        box-shadow: 0 0.2rem 0.4rem 0 rgba(12,13,15,0.1);
        display: flex;
        flex-direction: column;
    }

        .news .news-top .news-top-img {
            width: 100%;
            border-top-left-radius: 0.5rem;
            border-top-right-radius: 0.5rem;
        }

        .news .news-top .news-top-title {
            padding: 0.5rem 0.8rem;
            box-sizing: border-box;
            color: #333333;
            font-size: 1.2rem;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 1;
            overflow: hidden;
        }

        .news .news-top .news-top-con {
            margin: 0.5rem 0;
            padding: 0 0.8rem;
            box-sizing: border-box;
            color: #333333;
            font-size: 0.75rem;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2;
            overflow: hidden;
        }

    .news .news-list {
        padding: 0.5rem 0;
        box-sizing: border-box;
    }

        .news .news-list .news-item {
            margin-top: 1rem;
            display: flex;
            flex-wrap: nowrap;
            padding: 0.25rem;
            box-sizing: border-box;
            align-items: center;
        }

            .news .news-list .news-item .item-left {
                flex: 1;
                flex-shrink: 0;
                margin-right: 0.5rem;
            }

                .news .news-list .news-item .item-left .title {
                    color: #333333;
                    font-size: 1.15rem;
                    display: -webkit-box;
                    -webkit-box-orient: vertical;
                    -webkit-line-clamp: 2;
                    overflow: hidden;
                    font-weight: bold;
                }

                .news .news-list .news-item .item-left .time {
                    color: #999999;
                    font-size: 0.75rem;
                    padding: 0.4rem 0;
                    box-sizing: border-box;
                }

            .news .news-list .news-item .item-right {
                width: 4.5rem;
                height: 4.5rem;
                flex-shrink: 0;
            }

                .news .news-list .news-item .item-right img {
                    height: 100%;
                    width: 100%;
                }
