/* 退休时间计算页专属样式 */

.ts-form {
    grid-template-columns: 1fr 1fr;
}

.ts-result {
    margin-top: 1.5rem;
}

/* 倒计时大字 */
.ts-countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: #eff6ff;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.ts-count-num {
    font-size: 3rem;
    font-weight: 700;
    color: #2563eb;
    font-family: 'Fira Code', monospace;
    line-height: 1;
}

.ts-count-label {
    font-size: 1rem;
    color: #666;
    margin-right: 0.8rem;
}

/* 详情行 */
.ts-info-rows {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.ts-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1.2rem;
    border-bottom: 1px solid #f0f0f0;
}

.ts-info-row:last-child { border-bottom: none; }

.ts-info-label {
    font-size: 0.88rem;
    color: #666;
}

.ts-info-val {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
}

/* 已退休提示 */
.ts-already {
    margin-top: 1.5rem;
    padding: 1.2rem;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    color: #166534;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
}

@media (max-width: 640px) {
    .ts-form { grid-template-columns: 1fr; }
    .ts-count-num { font-size: 2.2rem; }
}
