* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft Yahei", sans-serif;
}
body {
    background: #eef5ff;
    padding: 0;
    margin: 0;
}
.page-wrap {
    max-width: 750px;
    margin: 20px auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0,136,238,0.15);
}
/* 顶部横幅：纯背景图，无内置文字叠加 */
.top-banner {
    width: 100%;
    height: auto;
    min-height: 360px;
    background: url("/upload/banner-top.jpg") no-repeat center center;
    background-size: cover;
    border-radius: 20px 20px 0 0;
    position: relative;
    overflow: hidden;
}
/* 白色表单卡片容器 */
.white-form-box {
    background: #ffffff;
    padding: 32px 26px 60px;
    border-radius: 0 0 20px 20px;
}
h2 {
    color: #0099ff;
    font-size: 28px;
    margin-bottom: 26px;
    font-weight: 600;
}
.form-item {
    margin-bottom: 24px;
}
label {
    display: block;
    font-weight: 600;
    color: #111;
    margin-bottom: 10px;
    font-size: 18px;
}
label span {
    color: #f00;
}
input[type="text"],
input[type="tel"],
select {
    width: 100%;
    height: 54px;
    padding: 0 18px;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    font-size: 17px;
    background: #fff;
    transition: border 0.2s ease;
}
input[type="text"]:focus,
input[type="tel"]:focus,
select:focus {
    outline: none;
    border-color: #0099ff;
}
.address-row {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
}
.address-row select {
    flex: 1;
}
/* ========== 上传模块完整优化（解决图片歪斜、点击失效、美化样式） ========== */
.upload-wrap h3 {
    color: #0099ff;
    font-size: 24px;
    margin: 36px 0 22px;
    text-align: left;
}
.upload-box {
    border: 1px dashed #0099ff;
    border-radius: 10px;
    padding: 40px 10px;
    text-align: center;
    margin-bottom: 16px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: background-color 0.25s ease;
}
/* 悬浮浅蓝底色美化 */
.upload-box:hover {
    background-color: #f5fbff;
}
/* 文件输入框铺满整个虚线框，任意位置点击生效 */
.upload-box input {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 9;
}
/* 文字、加号禁止拦截点击事件 */
.upload-box .plus {
    font-size: 36px;
    color: #0099ff;
    line-height: 1;
    position: relative;
    z-index: 1;
    pointer-events: none;
    margin-bottom: 12px;
}
.upload-box .text {
    font-size: 19px;
    color: #333;
    position: relative;
    z-index: 1;
    pointer-events: none;
}
/* 图片预览容器，强制居中、固定比例，杜绝歪斜拉伸 */
.preview-wrap {
    width: 100%;
    min-height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 16px;
}
.preview-img {
    max-width: 92%;
    max-height: 180px;
    display: none;
    border-radius: 8px;
    position: relative;
    z-index: 1;
    pointer-events: none;
    object-fit: contain;
    object-position: center;
    box-shadow: 0 2px 8px rgba(0,153,255,0.15);
}
/* 注意事项提示框 */
.tips-box {
    background: #e8f4ff;
    border-left: 5px solid #0099ff;
    padding: 18px;
    margin: 32px 0 26px;
    font-size: 17px;
    line-height: 1.7;
    color: #222;
    border-radius: 0 8px 8px 0;
}
/* 底部提交按钮 */
.btn-submit {
    width: 100%;
    height: 64px;
    border: none;
    border-radius: 10px;
    font-size: 24px;
    font-weight: 600;
    cursor: pointer;
    background: #0099ff;
    color: #fff;
    transition: background 0.2s ease;
}
.btn-submit:hover {
    background: #0088e6;
}
.desc-text {
    text-align: center;
    color: #888;
    margin: 18px 0;
    font-size: 16px;
}
.link-text {
    text-align: center;
    display: block;
    color: #0099ff;
    font-size: 19px;
    margin: 12px 0;
    text-decoration: none;
}
/* 底部加急电话模块 */
.phone-box {
    background: #f6f7f9;
    border-radius: 14px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    margin-top: 34px;
}
.phone-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #0099ff;
    color: #fff;
    text-align: center;
    line-height: 52px;
    font-size: 24px;
    margin-right: 16px;
}
.phone-text h4 {
    font-size: 24px;
    color: #111;
}
.phone-text p {
    color: #666;
    font-size: 17px;
    margin-top: 6px;
}
/* 后台页面表格样式 */
.table-wrap {
    margin-top: 20px;
    overflow-x: auto;
}
table {
    width: 100%;
    border-collapse: collapse;
}
th,td {
    border: 1px solid #eee;
    padding: 10px;
    font-size: 13px;
}
th {
    background: #f8f9fa;
}
.status-wait {color:#ff9500;}
.status-pass {color:#00b42a;}
.status-refuse {color:#f53f3f;}
.back-link {
    display: inline-block;
    margin-bottom: 20px;
    color: #0099ff;
    text-decoration: none;
}
.msg {
    padding:12px;
    border-radius:6px;
    margin-bottom:15px;
}
.success {background:#d4edda;color:#155724;border:1px solid #c3e6cb;}
.error {background:#f8d7da;color:#721c24;border:1px solid #f5c6cb;}
.btn-audit {
    background: #28a745;
    color: #fff;
    padding: 6px 12px;
    width: auto;
    height: auto;
    border:none;
    border-radius:4px;
    cursor:pointer;
}
.btn-reject {
    background: #dc3545;
    color: #fff;
    padding: 6px 12px;
    width: auto;
    height: auto;
    border:none;
    border-radius:4px;
    cursor:pointer;
}
/* 手机端自适应 */
@media (max-width: 640px) {
    .top-banner {
        min-height: 300px;
    }
    .white-form-box {
        padding: 24px 20px 40px;
    }
    .page-wrap {
        margin: 0 auto;
    }
    .address-row {
        flex-direction: column;
        gap:12px;
    }
}