/* 步骤指示器 */
.steps-wrapper {
    /*margin-top: 60px;*/
}

.steps {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    padding: 20px 0;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.steps.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.steps-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    /*padding: 0 20px;*/
}


.steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    /*height: 2px;*/
    background-color: #e5e5e5;
    z-index: 1;
}

.steps-container {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #e5e5e5;
    z-index: 1;
}

.step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step.active::after {
    content: '';
    position: absolute;
    top: 30px;
    /*left: -100%;*/
    width: 100%;
    height: 2px;
    background-color: #e5e5e5;
    z-index: -1;
    transition: background-color 0.3s ease;
}

.step:first-child::after {
    left: 0;
    width: 100%;
}

.step:last-child::after {
    width: 100%;
    /*left: 0;*/
}

.step.active::after {
    background-color: #ff4400;
}

.step.active + .step::after {
    background-color: #ff4400;
}

.step-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #fff;
    margin-bottom: 10px;
}

.step.active .step-dot {
    background-color: #ff4400;
}

.step-label {
    font-size: 12px;
    color: #999;
    text-align: center;
}

.step.active .step-label {
    color: #333;
    font-weight: 500;
}

/* 选项卡容器 */
.tab-container {
    margin-bottom: 60px;
}

/* 选项卡部分 */
.tab-section {
    margin-bottom: 20px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
}

/* 选项卡头部 */
.tab-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #f9f9f9;
    cursor: pointer;
}

.tab-header:hover {
    background-color: #f5f5f5;
}

.section-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.section-title::before {
    content: '|';
    color: #ff4400;
    margin-right: 8px;
}

/* 折叠展开按钮 */
.toggle-btn {
    background: none;
    border: none;
    font-size: 12px;
    color: #999;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.toggle-btn.collapsed {
    transform: rotate(-90deg);
}

/* 选项卡内容 */
.tab-content {
    padding: 20px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.tab-content.collapsed {
    display: none;
}

/* 店铺类型选择 */
.store-types {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.store-type {
    padding: 15px 30px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.store-type:hover {
    border-color: #ff4400;
}

.store-type.active>.a1{
    display: none!important;
}
.store-type>.a2{
    display: none!important;
}
.store-type.active>.a2 {
    display: block!important;
}

.store-type.active{
    border-color: #ff4400;
}
.store-type.active{
    color: #ff4400;
    font-weight: bolder;
}

/* 店铺类型图标 */
.store-icon {
    width: 60px;
    height: 60px;
    background-color: #f9f9f9;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* 图标和文字之间的竖线 */
.store-divider {
    width: 1px;
    height: 40px;
    background-color: #e5e5e5;
    margin: 0 10px;
}

.store-type.active .store-divider {
    background-color: #ff4400;
}

/* 店铺类型文字 */
.store-text {
    font-size: 14px;
}

/* 添加类目和品牌 */
.category-info {
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}

.category-selector {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.category-label {
    display: inline-block;
    width: 100px;
    font-size: 14px;
    color: #333;
}

.select-btn {
    padding: 0 20px !important;
    background-color: #ff4400 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    font-size: 14px !important;
    display: inline-block!important;
    margin-left: 50px;
}

.select-btn:hover {
    background-color: #ff6600 !important;
}

/* 二级联动选择器 */
.category-dropdown {
    display: none;
    margin-top: 10px;
    padding: 20px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    background-color: #f9f9f9;
}

.category-dropdown.show {
    display: block;
}

.level1-select, .level2-select {
    padding: 8px 12px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    margin-right: 10px;
    font-size: 14px;
}

/* 上传框 */
.upload-section {
    display: none;
    margin-top: 20px;
    padding: 20px;
    border: 1px dashed #e5e5e5;
    border-radius: 4px;
    text-align: center;
}

.upload-section.show {
    display: block;
}

.upload-btn {
    padding: 8px 20px;
    background-color: #f0f0f0;
    color: #333;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.upload-btn:hover {
    background-color: #e0e0e0;
}

/* 方形上传按钮 */
.square-upload-btn {
    padding: 8px 15px;
    background-color: #ff4400;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

.square-upload-btn:hover {
    background-color: #ff6600;
}

/* 企业基础信息表单 */
.form-group {
    margin-top: 20px;
}

.form-control-feedback.form-control-feedback{
    top: 0!important;
    left: 300px!important;
}
#phoneCode + i, #code + i {
    left: 200px!important;
}


.form-row {
    display: flex;
    margin-bottom: 30px;
    /*align-items: center;*/
    flex-wrap: wrap;
}

.form-item {
    margin-right: 40px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    /*width: 400px!important;*/
}

.form-label {
    font-size: 14px;
    color: #333;
    margin-right: 10px;
    width: 120px!important;
}

.form-input {
    padding: 8px 12px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    font-size: 14px;
    width: 300px;
}

.form-input:focus {
    outline: none;
    border-color: #ff4400;
}

.upload-area {
    display: flex;
    align-items: center;
}

.upload-tip {
    margin-left: 10px;
    font-size: 12px;
    color: #999;
}

/* 品牌选择 */
.brand-selection {
    margin-top: 30px;
}

.brand-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.brand-options {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.brand-options .left-colum{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.brand-option {
    padding: 10px 20px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.brand-option:hover {
    border-color: #ff4400;
}

.brand-option.active {
    border-color: #ff4400;
    color: #ff4400;
}

/* 入驻须知 */
.notice-section {
    margin-top: 30px;
}

.notice-content {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.notice-item {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.notice-item input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 2px;
}

/* 下一步按钮 */
.action-section {
    text-align: center;
    margin-top: 40px;
}

.next-btn {
    padding: 12px 40px;
    background-color: #ff4400;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
}

.next-btn:hover {
    background-color: #ff6600;
}

.next-btn:disabled {
    background-color: #e5e5e5;
    cursor: not-allowed;
}

.rady-input.div-upload label{
    line-height: 80px!important;
}
/* 响应式设计 */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-item {
        margin-right: 0;
        width: 100%;
    }

    .form-input {
        width: 100%;
        max-width: 300px;
    }

    .store-types,
    .brand-options {
        flex-wrap: wrap;
    }

    .category-selector {
        flex-direction: column;
        align-items: flex-start;
    }

    .category-selector > * {
        margin-bottom: 10px;
    }
}