* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: #ededed;
    color: #000;
    font-size: 17px;
    line-height: 1.5;
    max-width: 480px;
    margin: 0 auto;
    min-height: 100vh;
}

/* 顶部导航 */
.header {
    background: #ededed;
    padding: 8px 16px;
    font-size: 14px;
    color: #888;
    position: relative;
}
.header-close {
    position: absolute;
    left: 16px;
    top: 12px;
    font-size: 22px;
    color: #000;
    text-decoration: none;
}
.header-title { text-align: center; font-size: 17px; color: #000; font-weight: 500; }

/* 页面标题 */
.page-title {
    padding: 24px 16px 12px;
    font-size: 14px;
    color: #888;
    background: #ededed;
}

/* 列表 */
.list {
    background: #fff;
    margin-bottom: 40px;
}
.list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    color: #000;
    font-size: 17px;
    background: #fff;
    cursor: pointer;
}
.list-item:last-child { border-bottom: none; }
.list-item:active { background: #e5e5e5; }
.arrow {
    color: #c5c5c5;
    font-size: 20px;
}

/* 投诉须知链接 */
.notice-link {
    text-align: center;
    padding: 20px 0 40px;
}
.notice-link a {
    color: #576b95;
    font-size: 14px;
    text-decoration: none;
}

/* 图3 提交给微信团队审核页面 */
.simple-page { background: #ededed; min-height: 100vh; }
.simple-page .page-title { background: #ededed; }
.simple-item {
    display: block;
    padding: 14px 16px;
    background: #fff;
    text-decoration: none;
    color: #000;
    font-size: 17px;
    border-bottom: 1px solid #f0f0f0;
}
.simple-item:active { background: #e5e5e5; }

/* 表单页面 */
.form-page { background: #ededed; min-height: 100vh; padding-top: 0; }
.form-group {
    background: #fff;
    margin-bottom: 0;
    padding: 12px 16px;
    border-bottom: 1px solid #e5e5e5;
}
.form-group:last-child {
    border-bottom: none;
}
.form-label {
    font-size: 17px;
    color: #000;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.form-label .sub { font-size: 14px; color: #888; }
.form-label .required { color: #000; }

.upload-box {
    width: 80px;
    height: 80px;
    border: 1px dashed #d9d9d9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #d9d9d9;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background: #fafafa;
}
.upload-box input[type="file"] {
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 100%;
    opacity: 0;
    cursor: pointer;
}
.img-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}
.img-preview img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}
.img-preview .upload-box { margin-top: 0; }

textarea {
    width: 100%;
    border: none;
    outline: none;
    font-size: 17px;
    resize: none;
    font-family: inherit;
    color: #000;
    min-height: 80px;
}
textarea::placeholder {
    color: #888;
    font-size: 17px;
}
.char-count {
    text-align: right;
    font-size: 14px;
    color: #888;
    margin-top: 4px;
}

/* 提交按钮 - 改短 */
.submit-btn {
    margin: 24px auto;
    padding: 10px 0;
    text-align: center;
    border-radius: 6px;
    font-size: 17px;
    border: none;
    width: 200px;
    display: block;
    cursor: pointer;
}
.submit-btn.disabled {
    background: #d9d9d9;
    color: #fff;
}
.submit-btn.active {
    background: #07c160;
    color: #fff;
}

/* 成功页面 */
.success-page {
    background: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
    text-align: center;
}
.success-icon {
    width: 64px;
    height: 64px;
    background: #07c160;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.success-icon::after {
    content: "";
    width: 24px;
    height: 14px;
    border-left: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: rotate(-45deg);
    margin-top: -4px;
}
.success-title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 16px;
    color: #000;
}
.success-desc {
    font-size: 16px;
    color: #000;
    line-height: 1.6;
    padding: 0 40px;
}
/* 关闭按钮 - 改短 */
.close-btn {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 0;
    background: #07c160;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    font-size: 17px;
    text-decoration: none;
    border: none;
    width: 200px;
    cursor: pointer;
}

/* 投诉须知 */
.notice-page {
    background: #fff;
    min-height: 100vh;
    padding: 16px;
}
.notice-title {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000;
}
.notice-content {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
}
.notice-content p {
    margin-bottom: 12px;
    text-align: justify;
}

/* 后台 */
.admin-body { background: #f2f2f2; max-width: 100%; }
.admin-header {
    background: #fff;
    padding: 16px;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.admin-title { font-size: 20px; font-weight: bold; }
.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    font-size: 14px;
}
.admin-table th, .admin-table td {
    border: 1px solid #e5e5e5;
    padding: 10px;
    text-align: left;
    vertical-align: top;
}
.admin-table th { background: #fafafa; }
.admin-table img { width: 60px; height: 60px; object-fit: cover; margin: 2px; border-radius: 4px; }
.badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    background: #e6f7ff;
    color: #1890ff;
    border: 1px solid #91d5ff;
}
.admin-search {
    padding: 16px;
    background: #fff;
    margin-bottom: 12px;
}
.admin-search input {
    padding: 8px 12px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    width: 200px;
    margin-right: 8px;
}
.admin-search button {
    padding: 8px 16px;
    background: #07c160;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.pagination {
    padding: 16px;
    text-align: center;
}
.pagination a, .pagination span {
    display: inline-block;
    padding: 6px 12px;
    margin: 0 4px;
    border: 1px solid #d9d9d9;
    text-decoration: none;
    color: #333;
    border-radius: 4px;
}
.pagination a:hover { background: #f5f5f5; }
.pagination .current { background: #07c160; color: #fff; border-color: #07c160; }
.login-box {
    max-width: 400px;
    margin: 100px auto;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.login-box h2 { margin-bottom: 24px; text-align: center; }
.login-box input {
    width: 100%;
    padding: 10px;
    margin-bottom: 16px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
}
.login-box button {
    width: 100%;
    padding: 12px;
    background: #07c160;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}
