/* 自定义样式 */

/* 全局样式 */
body {
    background-color: #f8f9fa;
}

/* 卡片样式 */
.card {
    box-shadow: 0 2px 4px rgba(0,0,0,.05);
    margin-bottom: 20px;
}

.card-title {
    color: #495057;
    font-weight: 500;
}

/* 登录页面样式 */
.login-container {
    max-width: 450px;
    margin: 0 auto;
    padding-top: 100px;
}

.login-logo {
    text-align: center;
    margin-bottom: 30px;
}

.login-logo img {
    max-width: 150px;
}

/* 仪表盘统计卡片样式 */
.stat-card {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,.05);
    padding: 20px;
    margin-bottom: 20px;
}

.stat-card h2 {
    color: #3273dc;
    font-weight: 700;
    margin-bottom: 0;
}

/* 表格样式重写 */
.table-action {
    white-space: nowrap;
    width: 1%;
}

/* 安装页样式 */
.install-steps {
    counter-reset: step;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.install-steps li {
    list-style: none;
    position: relative;
    width: 25%;
    text-align: center;
    color: #999;
}

.install-steps li.active {
    color: #007bff;
}

.install-steps li::before {
    counter-increment: step;
    content: counter(step);
    display: block;
    width: 30px;
    height: 30px;
    background-color: white;
    border: 2px solid #ddd;
    text-align: center;
    line-height: 26px;
    border-radius: 50%;
    margin: 0 auto 10px;
}

.install-steps li.active::before {
    border-color: #007bff;
}

.install-steps li.completed::before {
    background-color: #007bff;
    border-color: #007bff;
    color: white;
}

.install-steps li::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #ddd;
    top: 15px;
    left: 50%;
    z-index: -1;
}

.install-steps li:last-child::after {
    display: none;
}

.install-steps li.completed::after {
    background-color: #007bff;
} 