﻿
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
    word-wrap: break-word;
    word-break: break-all;
    white-space: normal;
    overflow-wrap: break-word;
}

body {
    background: #fff;

}
/* 顶部红色头部 */
.top-header {
    width: 100%;
    height: 44px;
    background-color: #e62129; /* 红色 */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    position: relative;
}
/* 返回按钮 */
.back-btn {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

    .back-btn::before {
        content: "<";
        margin-right: 4px;
        font-size: 18px;
    }



/* 最外层容器 */
.storeInfo {
    width: 100%;
    max-width: 100%;
    padding: 16px;
}
/* 店铺头部 */
.shop-header h1 {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 12px;
}

.img-tab-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.img-item p {
    text-align: center;
    color: #666;
    font-size: 15px;
    margin-bottom: 8px;
}

.img-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 6px;
}
/* 店铺信息区 */
.info-wrap {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 30px;
}

.info-row {
    display: flex;
    align-items: flex-start;
    margin: 14px 0;
    font-size: 16px;
}

    .info-row i {
        width: 26px;
        margin-right: 8px;
        padding-top: 2px;
        color: #555;
    }
/* 合伙人申请 */
.apply-title {
    display: flex;
    align-items: center;
    font-size: 22px;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 20px;
}

    .apply-title::before {
        content: "👥";
        margin-right: 6px;
    }

.form-item {
    margin-bottom: 18px;
}

    .form-item label {
        display: block;
        font-size: 16px;
        color: #333;
        margin-bottom: 8px;
    }

    .form-item input {
        width: 100%;
        height: 50px;
        border: 1px solid #ddd;
        border-radius: 6px;
        padding: 0 12px;
        font-size: 16px;
    }
/* 上传框 */
.upload-box {
    width: 100%;
    height: 120px;
    border: 1px dashed #ccc;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
    cursor: pointer;
}

    .upload-box span:first-child {
        font-size: 32px;
        margin-bottom: 6px;
    }

#file-input {
    display: none;
}
/* 提交按钮 */
.submit-btn {
    width: 100%;
    height: 54px;
    background: #3b7cf7;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
}

