/* user_center 页面特有样式 */
body {
    background: url(../../images/bodybg.jpg) repeat;
    background-position: 0 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
/* ===== 主内容 ===== */
.page-main { flex: 1; }
.center-container {
    max-width: 1200px;
    margin: 24px auto;
    padding: 0 20px;
}
/* ===== 验证卡片 ===== */
.verify-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    padding: 32px 28px;
    margin-bottom: 20px;
}
/* ===== 已验证手机号提示条 ===== */
.verified-bar {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    padding: 14px 28px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: #555;
}
.verified-bar b { color: #00A5FF; }
.verified-bar a {
    color: #00A5FF;
    text-decoration: none;
}
.verified-bar a:hover { text-decoration: underline; }
/* ===== 图形验证码 ===== */
.captcha-img {
    width: 120px;
    height: 38px;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    cursor: pointer;
    flex-shrink: 0;
}
.captcha-refresh {
    font-size: 12px;
    color: #00A5FF;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    align-self: center;
}
.captcha-refresh:hover { text-decoration: underline; }
.verify-card .verify-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 6px;
}
.verify-card .verify-tip {
    font-size: 13px;
    color: #888;
    margin-bottom: 24px;
}
.verify-form { max-width: 560px; }
.form-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}
.form-row .form-label {
    width: 100px;
    padding-top: 8px;
    font-size: 14px;
    color: #666;
    flex-shrink: 0;
    text-align: right;
    padding-right: 14px;
}
.form-row .form-label .required { color: #ff4d4f; margin-right: 2px; }
.form-row .form-control {
    flex: 1;
    display: flex;
    gap: 10px;
}
.form-row .form-control input {
    flex: 1;
    height: 38px;
    padding: 0 12px;
    border: 1px solid #d0dce8;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    box-sizing: border-box;
    transition: border-color 0.2s;
}
.form-row .form-control input:focus {
    outline: none;
    border-color: #00A5FF;
    box-shadow: 0 0 0 3px rgba(0,165,255,0.1);
}
.form-actions {
    margin-top: 8px;
    padding-left: 114px;
    display: flex;
    gap: 12px;
}
.btn {
    height: 38px;
    padding: 0 28px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}
.btn-primary:hover { background: #0090e0; }
.btn-primary:active { background: #0077cc; }
.btn-default {
    background: #f5f7fa;
    color: #666;
    border: 1px solid #d0dce8;
}
.btn-default:hover:not(:disabled) { border-color: #00A5FF; color: #00A5FF; }
.btn:disabled { cursor: not-allowed; opacity: 0.6; }
/* ===== 业务列表 ===== */
.list-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    overflow: hidden;
    padding: 20px 0 0;
}
.list-subnav {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 20px 14px;
}
.sub-tab {
    font-size: 13px;
    color: #888;
    cursor: pointer;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}
.sub-tab:hover { color: #00A5FF; }
.sub-tab.active {
    color: #00A5FF;
    border-bottom-color: #00A5FF;
    font-weight: bold;
}
.table-header {
    display: flex;
    height: 44px;
    line-height: 44px;
    background: rgba(2, 105, 184, 0.10);
    padding: 0 20px;
    font-size: 14px;
    font-weight: bold;
    color: #1a4a80;
    margin: 0 20px;
    border-radius: 6px 6px 0 0;
}
.table-header .col-no    { width: 60px;  text-align: center; flex-shrink: 0; }
.table-header .col-type   { width: 100px; text-align: center; flex-shrink: 0; }
.table-body { padding: 0 20px; }
.table-row {
    display: flex;
    align-items: center;
    height: 48px;
    line-height: 48px;
    font-size: 14px;
    border-bottom: 1px solid #f0f4f8;
    transition: background 0.15s;
    cursor: pointer;
}
.table-row:hover { background: #f7fbff; }
.table-row .col-no    { width: 60px;  text-align: center; flex-shrink: 0; color: #888; font-size: 13px; }
.table-row .col-title a:hover { color: #00A5FF; }
.table-row .col-type  { width: 100px; text-align: center; flex-shrink: 0; color: #555; font-size: 13px; }
.status-dot::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FA5E5E;
    flex-shrink: 0;
}
/* 分页 */
.pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-top: 1px solid #f0f4f8;
}
.page-btn:hover:not(:disabled) { border-color: #00A5FF; color: #00A5FF; }
.page-btn.active { background: #00A5FF; border-color: #00A5FF; color: #fff; }
.empty-tip {
    text-align: center;
    padding: 50px 0;
    color: #aaa;
    font-size: 15px;
}
