/* ============================================================
 *  Requirements Information - list page
 *  URL: /Requirement/lists
 * ========================================================== */

.mianbaoxie_box {
    width: 1059px;
    max-width: 95%;
    margin: 0 auto;
    line-height: 30px;
    height: 30px;
    font-size: 12px;
    color: #333;
}
.mianbaoxie_box .mianbaoxie {
    margin: 0;
    padding: 0;
}
.mianbaoxie_box .mianbaoxie a {
    color: #555;
    text-decoration: none;
    margin: 0 2px;
}
.mianbaoxie_box .mianbaoxie a:hover {
    color: #b48811;
}

/* 列表容器:固定宽度并居中,内容随之居中 */
.req-list-wrap {
    width: 880px;
    max-width: 95%;
    margin: 0 auto 30px;
    padding: 0;
}

/* 列表 */
.req-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* 单个需求卡片 */
.req-item {
    background: #f4f4f4;
    padding: 10px 14px;
    margin-bottom: 6px;
    position: relative;
    border: 1px solid #ececec;
    border-radius: 2px;
}

/* 头部:头像 + 昵称 + V10 徽章 */
.req-item-head {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}
.req-avatar {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: visible;
    margin-right: 8px;
    flex-shrink: 0;
}
.req-avatar > img:first-child {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
    display: block;
}
.req-avatar .v-badge {
    position: absolute;
    right: -4px;
    bottom: -2px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    padding: 1px;
    box-sizing: border-box;
}
.req-nickname {
    font-size: 12px;
    color: #333;
    font-weight: bold;
}

/* 主体行:左侧封面缩略图 + 右侧需求标题 */
.req-item-body {
    display: flex;
    align-items: center;
    background: #ececec;
    padding: 8px 12px;
    color: #333;
    text-decoration: none;
    margin-bottom: 6px;
}
.req-item-body:hover {
    background: #e2e2e2;
}
.req-cover {
    width: 42px;
    height: 42px;
    background: #fff;
    border-radius: 3px;
    margin-right: 12px;
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.req-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.req-cover-default {
    display: inline-block;
    line-height: 42px;
    text-align: center;
    color: #ff5252;
    font-size: 22px;
    transform: rotate(45deg);
}
.req-title-text {
    font-size: 13px;
    color: #333;
    line-height: 1.4;
    word-break: break-all;
}
.req-code-icon {
    display: inline-block;
    color: #b48811;
    font-family: Consolas, Monaco, monospace;
    margin-right: 4px;
    font-size: 12px;
}

/* 元数据:country / Date */
.req-item-meta {
    color: #555;
    font-size: 12px;
    margin-bottom: 4px;
    padding-left: 4px;
}
.req-item-meta span {
    margin-right: 20px;
}
.req-item-meta b {
    color: #222;
    font-weight: bold;
    margin-right: 3px;
}

/* 底部:时间戳 + 操作图标 */
.req-item-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #999;
    font-size: 11px;
    padding: 2px 4px 0;
}
.req-time {
    color: #999;
    font-size: 11px;
}
.req-actions {
    display: flex;
    align-items: center;
}
.req-act {
    color: #999;
    text-decoration: none;
    margin-left: 14px;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
}
.req-act:hover {
    color: #b48811;
}
.req-act .iconfont {
    font-size: 13px;
    margin-right: 3px;
}
.req-act i {
    font-style: normal;
    font-size: 11px;
}

/* 空状态 */
.req-empty {
    background: #f4f4f4;
    padding: 40px;
    text-align: center;
    color: #999;
    border: 1px solid #ececec;
}

/* 分页 */
.req-page {
    text-align: center;
    margin: 18px 0;
    font-size: 12px;
}
.req-page a,
.req-page span {
    display: inline-block;
    padding: 4px 9px;
    margin: 0 2px;
    border: 1px solid #ddd;
    background: #fff;
    color: #555;
    text-decoration: none;
    border-radius: 2px;
}
.req-page a:hover {
    color: #fff;
    background: #b48811;
    border-color: #b48811;
}
.req-page .current {
    background: #b48811;
    border-color: #b48811;
    color: #fff;
}
