@charset "utf-8";

.enterprise-wrapper {
    max-width: 800px;
    margin: 30px auto;
    padding: 0 15px 60px;
}

/* ===== 步骤进度条 ===== */
.enterprise-progress {
    margin-bottom: 40px;
}

.step-bar {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ddd;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    line-height: 36px;
    text-align: center;
    transition: background 0.3s;
}

.step-label {
    font-size: 12px;
    color: #999;
    margin-top: 6px;
    white-space: nowrap;
    transition: color 0.3s;
    text-align: center;
}

.step-line {
    flex: 1;
    height: 2px;
    background: #ddd;
    margin: 17px 4px 0;
    transition: background 0.3s;
    min-width: 30px;
}

.step-item.active .step-num {
    background: #337ab7;
}

.step-item.active .step-label {
    color: #337ab7;
    font-weight: bold;
}

.step-item.done .step-num {
    background: #5cb85c;
}

.step-item.done .step-label {
    color: #5cb85c;
}

.step-line.done {
    background: #5cb85c;
}

/* ===== 表单区域 ===== */
.enterprise-form {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 30px 40px;
}

.step-title {
    color: #333;
    font-size: 18px;
    margin: 0 0 24px;
    padding-bottom: 14px;
    border-bottom: 2px solid #337ab7;
}

.enterprise-form .form-group label.control-label {
    font-weight: bold;
    margin-bottom: 6px;
    display: block;
    color: #555;
}

.req {
    color: #e74c3c;
    margin-left: 2px;
}

.enterprise-form .form-control {
    border-radius: 3px;
}

.enterprise-form textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

/* ===== 底部操作按钮 ===== */
.enterprise-nav {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.enterprise-nav .btn {
    min-width: 110px;
    padding: 8px 24px;
}

/* ===== 须知区块 ===== */
.enterprise-form .alert ul {
    margin: 8px 0 0;
    padding-left: 20px;
}

.enterprise-form .alert ul li {
    margin-bottom: 4px;
    font-size: 13px;
}

/* ===== 协议勾选 ===== */
.enterprise-form .checkbox label {
    font-size: 14px;
    font-weight: normal;
}
