﻿.notice {
    background: white;
    box-sizing: border-box;
    height: 100%;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

    .notice .panel {
        padding: 0 0.6rem;
        box-sizing: border-box;
    }

    .notice .notice-list {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

        .notice .notice-list .notice-item {
            display: flex;
            padding: 0.75rem 0;
            box-sizing: border-box;
            align-items: center;
        }

            .notice .notice-list .notice-item .item-left {
                height: 3rem;
                width: 3rem;
                background-color: #ffbe3d;
                color: white;
                display: flex;
                justify-content: center;
                align-items: center;
                flex-shrink: 0;
                margin-right: 0.5rem;
            }

            .notice .notice-list .notice-item .item-right {
                flex: 1;
            }

                .notice .notice-list .notice-item .item-right .title {
                    font-size: 0.9rem;
                    color: #333333;
                    display: -webkit-box;
                    -webkit-box-orient: vertical;
                    -webkit-line-clamp: 2;
                    overflow: hidden;
                }

                .notice .notice-list .notice-item .item-right .time {
                    display: flex;
                }

                    .notice .notice-list .notice-item .item-right .time span:nth-of-type(1) {
                        color: #999999;
                        font-size: 0.75rem;
                        flex: 1;
                    }

                    .notice .notice-list .notice-item .item-right .time span:nth-of-type(2) {
                        background:red;
                        color: white;
                        border-radius: 0.5rem;
                        border-bottom-left-radius: 0rem;
                        font-size: 0.5rem;
                        padding: 0 0.3rem;
                        box-sizing: border-box;
                        margin-right: 0.5rem;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                    }
