/* 申请单通知条样式 */
.oa-banner {
    background-color: #fffbe6;
    border: 1px solid #ffe58f;
    padding: 10px 20px;
    margin-bottom: 15px;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.85);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.oa-banner-left {
    display: flex;
    align-items: center;
}

.oa-banner-icon {
    color: #faad14;
    margin-right: 10px;
    font-size: 18px;
}

.oa-banner-text b {
    color: #1890ff;
    margin: 0 5px;
}

.oa-banner-action {
    color: #1890ff;
    cursor: pointer;
    text-decoration: none;
    font-weight: 500;
}

.oa-banner-action:hover {
    text-decoration: underline;
}

/* 申请单列表样式 */
.oa-request-item {
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.oa-request-item:hover {
    border-color: #1890ff;
    background-color: #f0f7ff;
    box-shadow: 0 2px 8px rgba(24, 144, 255, 0.15);
}

.oa-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.oa-item-no {
    font-weight: bold;
    font-size: 16px;
    color: #333;
}

.oa-item-badge {
    background: #e6f7ff;
    color: #1890ff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.oa-item-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.oa-item-field {
    font-size: 13px;
    color: #666;
}

.oa-item-field span {
    color: #333;
}

.oa-item-amount {
    color: #ff4d4f !important;
    font-weight: bold;
}

#oaRequestList {
    max-height: 500px;
    overflow-y: auto;
    padding-right: 5px;
}

.oa-loading {
    text-align: center;
    padding: 30px;
    color: #999;
}