@charset "utf-8"; /* 최근게시물 공지 스킨 (latest) */

/* 清除浮动 */
.notice:after {
    display: block;
    visibility: hidden;
    clear: both;
    content: ""
}

/* 公告容器 */
.notice {
    clear: both;
    position: relative;
    overflow: hidden;
    border: 1px solid #3a3c42; /* 深灰边框 */
    background: #1a1c20; /* 深色背景 */
}

/* 标题 */
.notice h2 {
    font-size: 1.2em;
    padding: 20px 20px 0;
    color: #e0e0e0; /* 浅灰文字 */
}

/* 标题链接 */
.notice h2 a {
    color: #c1c4c6; /* 浅灰链接 */
    text-decoration: none;
}

.notice h2 a:hover {
    color: #8e74ef; /* 紫色 hover 效果 */
}

/* 标题图标 */
.notice h2 i {
    display: inline-block;
    margin-left: 5px;
    color: #c1c4c6; /* 浅灰图标 */
}

/* 列表容器 */
.notice ul {
    clear: both;
    padding: 0 20px 20px;
}

/* 列表项 */
.notice li {
    position: relative;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-size: 1.2em;
    border-bottom: 1px solid #3a3c42; /* 深灰分隔线 */
    padding: 5px 0 5px 10px;
    line-height: 30px;
    color: #c1c4c6; /* 浅灰文字 */
}

/* 最后一条无边框 */
.notice li:last-child {
    border: 0;
}

/* 列表项前的小点 */
.notice li:after {
    position: absolute;
    top: 20px;
    left: 0;
    content: "";
    width: 3px;
    height: 3px;
    border-radius: 5px;
    background: #8e74ef; /* 紫色小点 */
}

/* 列表项链接 */
.notice li a {
    float: left;
    color: #c1c4c6; /* 浅灰链接 */
    text-decoration: none;
}

.notice li a:hover {
    color: #8e74ef; /* 紫色 hover 效果 */
}

/* 锁定图标 */
.notice li .lock_icon {
    display: inline-block;
    line-height: 14px;
    width: 16px;
    font-size: 0.833em;
    color: #c1c4c6; /* 浅灰文字 */
    background: #2a2c32; /* 深色背景 */
    text-align: center;
    border-radius: 2px;
    border: 1px solid #3a3c42; /* 深灰边框 */
    vertical-align: top;
}

/* 新帖图标 */
.notice li .new_icon {
    line-height: 16px;
    background: #8e74ef; /* 紫色背景 */
    border: 1px solid #7b61d6; /* 稍深的紫色边框 */
    font-size: 0.833em;
    color: #fff; /* 白色文字 */
    padding: 0 5px;
    width: 16px;
    height: 16px;
    border-radius: 3px;
    margin-left: 5px;
    text-align: center;
    vertical-align: middle;
}

/* 评论计数 */
.notice li .cnt_cmt {
    line-height: 16px;
    background: #2a2c32; /* 深色背景 */
    border: 1px solid #3a3c42; /* 深灰边框 */
    font-size: 0.833em;
    color: #8e74ef; /* 紫色文字 */
    padding: 0 5px;
    width: 16px;
    height: 16px;
    border-radius: 10px;
    margin-left: 5px;
    text-align: center;
    vertical-align: middle;
}