/* checkin.css —— 打卡查询页面专属样式，不影响 app.css */

.checkin-query-page {
    background: #f7f8fa;
    min-height: 100vh;
    padding-bottom: 30px;
}

.checkin-section {
    background: #fff;
    border-radius: 12px;
    margin: 12px 16px;
    padding: 16px;
}

.checkin-section-title {
    font-size: 15px;
    font-weight: 600;
    color: #323233;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.checkin-search-row {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.checkin-search-label {
    width: 85px;
    font-size: 14px;
    color: #646566;
    flex-shrink: 0;
}

.checkin-search-input {
    flex: 1;
    height: 38px;
    border: 1px solid #ebedf0;
    border-radius: 6px;
    padding: 0 10px;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
    background: #fff;
}

.checkin-search-input:focus {
    border-color: #1989fa;
}

.checkin-search-btn-wrap {
    margin-top: 12px;
}

.checkin-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 16px 16px;
    color: #999;
    font-size: 13px;
}

.checkin-divider::before,
.checkin-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #ebedf0;
}

.checkin-divider::before {
    margin-right: 12px;
}

.checkin-divider::after {
    margin-left: 12px;
}

.checkin-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    background: #fff;
    border-bottom: 1px solid #f7f8fa;
}

.checkin-list-item:last-child {
    border-bottom: none;
}

.checkin-date {
    font-size: 15px;
    color: #323233;
}

.checkin-count {
    font-size: 15px;
    color: #07c160;
    font-weight: 600;
}

.checkin-load-more {
    text-align: center;
    padding: 16px;
    color: #1989fa;
    font-size: 14px;
    cursor: pointer;
    user-select: none;
}

.checkin-load-more:active {
    opacity: 0.7;
}

.checkin-empty {
    text-align: center;
    padding: 40px 16px;
    color: #999;
    font-size: 14px;
}

.checkin-searched-user {
    background: #f0f9eb;
    border-radius: 8px;
    padding: 10px 14px;
    margin: 0 16px 12px;
    font-size: 14px;
    color: #323233;
}
