.notice-container {
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;

    display: flex;
    border: 2px solid #3b3a40;
    width: 900px;
    height: 600px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);

    background-size: cover;
}
.notice-list {
    flex: 1;
    padding: 10px;
    border-right: 1px solid #eee;
    overflow-y: auto;
}
.notice-content {
    flex: 2;
    padding: 10px;
    overflow-y: auto;
}
.notice-content img {
    max-width: 100%;
    height: auto;
}
.notice-list-item {
    padding: 8px;
    font-size: 1.1em;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
}
.notice-list-item:nth-child(odd) {
    background-color: rgba(240, 240, 240, 0.7);
}
.notice-list-item:nth-child(even) {
    background-color: rgba(210, 210, 210, 0.7);
}
.notice-list-item.active {
    background-color: rgba(100, 100, 100, 0.8);
    color: #fff;
    font-weight: bold;
}
#notice-detail-title {
    padding: 10px;
    text-align: center;
    font-size: 1.7em;
    font-weight: bold;
    cursor: pointer;
}
.notice-footer {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: grey;
    width: 100%;
    box-sizing: border-box;
    text-align: right;
    color: #fff;
}
.notice-footer label {
    float: left;
    margin-top: 5px;
    margin-left: 3px;
    color: #fff;
    font-weight: bold;
    vertical-align: middle;
}
.notice-footer button {
    padding: 5px 10px;
    cursor: pointer;
    font-weight: bold;
    color: #fff;
}
.notice-footer input {
    vertical-align: middle;
}