/* 发布信息页面 - 全新仪表盘双栏布局 */
:root {
    --pd-primary: #194292;
    --pd-primary-light: #2a5fb8;
    --pd-primary-dark: #0f2d6b;
    --pd-primary-bg: rgba(25, 66, 146, 0.06);
    --pd-accent: #3d6fd9;
    --pd-accent-light: #5b8def;
    --pd-success: #10b981;
    --pd-warning: #f59e0b;
    --pd-danger: #ef4444;
    --pd-info: #3b82f6;
    --pd-text: #1a1a2e;
    --pd-text-secondary: #6b7c93;
    --pd-text-light: #94a3b8;
    --pd-border: #e2e8f0;
    --pd-bg: #f0f4f8;
    --pd-card-bg: #ffffff;
    --pd-shadow-sm: 0 2px 8px rgba(25, 66, 146, 0.06);
    --pd-shadow-md: 0 8px 24px rgba(25, 66, 146, 0.1);
    --pd-shadow-lg: 0 20px 50px rgba(25, 66, 146, 0.15);
}

body.post-page {
    background: linear-gradient(160deg, #eaf0fa 0%, #f0f4f8 40%, #e8eef5 100%);
    min-height: 100vh;
}

.body1000 {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px 20px 60px;
    font-family: 'PingFang SC', 'Microsoft YaHei', -apple-system, sans-serif;
    color: var(--pd-text);
}

/* ===== 顶部导航栏 mheader 样式 ===== */
.mheader {
    background: #4576FF;
    border-radius: 18px;
    box-shadow: var(--pd-shadow-sm);
    border: 1px solid var(--pd-border);
    margin-bottom: 24px;
    overflow: hidden;
}

.mheader .mhead {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 14px 24px;
    gap: 20px;
}

.mheader .logo {
    flex-shrink: 0;
}

.mheader .logo img {
    height: 48px;
    width: auto;
    display: block;
}

.mheader .font {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
}

.mheader .font span {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: linear-gradient(135deg, var(--pd-primary) 0%, var(--pd-accent) 100%);
    color: #fff;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 4px 14px rgba(25, 66, 146, 0.25);
    position: relative;
}

.mheader .font span::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    margin-right: 10px;
}

/* bartop 顶栏样式 */
.bartop {
    background: linear-gradient(90deg, #0f2d6b 0%, #194292 50%, #1e4ea8 100%);
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 4px 14px rgba(15, 45, 107, 0.2);
    overflow: hidden;
}

.bartop .barcenter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 40px;
}

.bartop .barleft {
    display: flex;
    align-items: center;
    gap: 0;
}

.bartop .barleft ul {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.bartop .barleft ul li {
    display: inline-flex;
    align-items: center;
}

.bartop .barleft ul a,
.bartop .barleft ul span {
    display: inline-block;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 12.5px;
    padding: 0 14px;
    height: 40px;
    line-height: 40px;
    transition: all 0.25s ease;
    position: relative;
}

.bartop .barleft ul a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.bartop .barleft ul span {
    font-weight: 600;
    color: #fff;
}

.bartop .barleft ul.line {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.25);
    margin: 0 4px;
    padding: 0;
}

.bartop .barleft ul.line u {
    display: none;
}

.bartop .barright {
    color: #fff;
    font-size: 12.5px;
}

.bartop .barright a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.25s;
}

.bartop .barright a:hover {
    color: #fff;
}

.cleafix, .clearfix {
    clear: both;
}

/* 步骤指示器 - 横向仪表盘风格 */
.pd-steps-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 28px;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(25,66,146,0.04) 0%, rgba(61,111,217,0.03) 100%);
    border-radius: 18px;
    border: 1px solid rgba(25,66,146,0.08);
    position: relative;
}

.pd-steps-bar::before {
    content: '';
    position: absolute;
    top: 44px;
    left: 15%;
    right: 15%;
    height: 3px;
    background: var(--pd-border);
    border-radius: 2px;
    z-index: 0;
}

.pd-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    max-width: 280px;
    position: relative;
    z-index: 1;
}

.pd-step-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--pd-border);
    color: var(--pd-text-light);
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.pd-step.active .pd-step-circle {
    background: linear-gradient(135deg, var(--pd-primary) 0%, var(--pd-accent) 100%);
    border-color: var(--pd-primary);
    color: #fff;
    box-shadow: 0 8px 24px rgba(25, 66, 146, 0.4);
    transform: scale(1.1);
}

.pd-step-info {
    text-align: center;
}

.pd-step-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--pd-text-light);
    transition: color 0.3s;
}

.pd-step.active .pd-step-label {
    color: var(--pd-primary);
}

.pd-step-desc {
    font-size: 12px;
    color: var(--pd-text-light);
    margin-top: 2px;
}

.pd-step.active .pd-step-desc {
    color: var(--pd-accent);
}

/* ===== 主布局 - 左右分布 ===== */
.pd-layout {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 120px);
}

.pd-main {
    display: flex !important;
    gap: 24px;
    flex: 1;
    align-items: flex-start;
    width: 100%;
    float: none !important;
}

.pd-content {
    flex: 1 !important;
    min-width: 0;
    overflow: hidden;
    float: none !important;
    width: auto !important;
    margin-right: 0 !important;
}

.pd-sidebar {
    width: 280px !important;
    flex-shrink: 0;
    position: sticky;
    top: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    box-sizing: border-box;
    float: none !important;
}

/* ===== Hero 区域 ===== */
.pd-hero {
    background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 24px 28px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: var(--pd-shadow-sm);
    border: 1px solid var(--pd-border);
    position: relative;
    overflow: hidden;
}

.pd-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(25,66,146,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.pd-hero-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--pd-primary) 0%, var(--pd-accent) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(25,66,146,0.3);
}

.pd-hero-text {
    flex: 1;
    min-width: 0;
}

.pd-hero-text h2 {
    font-size: 19px;
    font-weight: 700;
    color: var(--pd-text);
    margin: 0 0 4px;
}

.pd-hero-text p {
    font-size: 13px;
    color: var(--pd-text-secondary);
    margin: 0;
}

.pd-hero-badges {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.pd-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: var(--pd-primary-bg);
    color: var(--pd-primary);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(25,66,146,0.12);
}

.pd-badge.green {
    background: rgba(16,185,129,0.08);
    color: var(--pd-success);
    border-color: rgba(16,185,129,0.15);
}

.pd-badge.orange {
    background: rgba(245,158,11,0.08);
    color: var(--pd-warning);
    border-color: rgba(245,158,11,0.15);
}

/* ===== 分类网格 ===== */
#fenlei2 {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--pd-shadow-sm);
    border: 1px solid var(--pd-border);
    position: relative;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    overflow: hidden;
}

#fenlei2 .publish-detail {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    overflow: hidden;
    float: none !important;
    display: block !important;
}

#fenlei2 .publish-detail .p-line {
    display: flex !important;
    align-items: flex-start;
    float: none !important;
}

#fenlei2 .publish-detail .publish-detail-item {
    display: block !important;
    width: auto !important;
    max-width: 100%;
    float: none !important;
}

#fenlei2 .publish-detail .swfu .publish-detail-item {
    width: auto !important;
    max-width: 100%;
}

#fenlei2 .publish-detail-item .units {
    float: none !important;
    display: inline-block !important;
    margin-left: 8px;
}

#fenlei2 .contentinner {
    float: none !important;
    display: block !important;
}

#fenlei2 .checkboxinner {
    float: none !important;
    display: block !important;
    max-width: 100% !important;
}

#fenlei2 .p-group {
    width: auto !important;
    max-width: 100%;
}

#fenlei2 .p-group .form-label {
    float: none !important;
    display: inline-block !important;
    width: auto !important;
    margin-right: 8px;
}

.pd-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
    margin-bottom: 24px;
}

.pd-cat-card {
    background: #fff;
    border: 2px solid var(--pd-border);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.pd-cat-card:hover {
    border-color: var(--pd-primary);
    box-shadow: 0 8px 24px rgba(25,66,146,0.15);
    transform: translateY(-3px);
}

.pd-cat-main {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 16px;
    text-decoration: none;
    color: var(--pd-text);
    position: relative;
}

.pd-cat-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--pd-primary-bg) 0%, rgba(61,111,217,0.1) 100%);
    color: var(--pd-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.3s;
}

.pd-cat-card:hover .pd-cat-icon {
    background: linear-gradient(135deg, var(--pd-primary) 0%, var(--pd-accent) 100%);
    color: #fff;
}

.pd-cat-name {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pd-cat-count {
    background: var(--pd-primary-bg);
    color: var(--pd-primary);
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
}

.pd-cat-card:hover .pd-cat-count {
    background: var(--pd-primary);
    color: #fff;
}

.pd-cat-sub {
    list-style: none;
    padding: 8px 12px 12px;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: #fafbfc;
    border-top: 1px solid var(--pd-border);
}

.pd-cat-sub li {
    display: block;
}

.pd-cat-sub a {
    display: block;
    padding: 8px 10px;
    font-size: 13px;
    color: var(--pd-text-secondary);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pd-cat-sub a::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--pd-text-light);
    margin-right: 8px;
    transition: all 0.2s;
}

.pd-cat-sub a:hover {
    background: var(--pd-primary-bg);
    color: var(--pd-primary);
    transform: translateX(3px);
}

.pd-cat-sub a:hover::before {
    background: var(--pd-primary);
}

.pd-reset {
    text-align: center;
    margin: 16px 0;
}

.pd-reset a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    background: var(--pd-primary-bg);
    color: var(--pd-primary);
    border-radius: 24px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid rgba(25,66,146,0.12);
    transition: all 0.3s;
}

.pd-reset a:hover {
    background: var(--pd-primary);
    color: #fff;
    border-color: var(--pd-primary);
    transform: translateY(-1px);
}

/* ===== 搜索框 ===== */
.pd-search-form {
    margin-top: 20px;
}

.psearch {
    background: linear-gradient(135deg, var(--pd-primary-bg) 0%, rgba(61,111,217,0.06) 100%);
    border: 1px solid rgba(25,66,146,0.12);
    border-radius: 14px;
    padding: 6px;
}

.psearch .pshead {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    height: auto;
    padding: 0 0 0 14px;
}

.psearch .pshead > i {
    color: var(--pd-text-light);
    font-size: 15px;
    margin-right: 8px;
}

.psearch .pshead em {
    display: none;
}

.psearch .pshead .pstxt {
    flex: 1;
    border: none;
    padding: 12px 14px;
    font-size: 14px;
    height: auto;
    line-height: normal;
    background: transparent;
    color: var(--pd-text);
    transition: all 0.3s;
    font-family: inherit;
    box-sizing: border-box;
    min-width: 0;
}

.psearch .pshead .pstxt:focus {
    outline: none;
}

.psearch .pshead .pstxt::placeholder {
    color: var(--pd-text-light);
}

.psearch .pshead .psbtn {
    background: linear-gradient(135deg, var(--pd-primary) 0%, var(--pd-accent) 100%);
    border: none;
    border-radius: 0 8px 8px 0;
    width: auto;
    height: auto;
    padding: 12px 24px;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    margin: 0;
    line-height: 1;
    font-family: inherit;
}

.psearch .pshead .psbtn:hover {
    background: linear-gradient(135deg, var(--pd-primary-dark) 0%, var(--pd-primary) 100%);
    box-shadow: 0 4px 14px rgba(25,66,146,0.3);
}

/* ===== 侧边栏卡片 ===== */
.pd-side-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--pd-shadow-sm);
    border: 1px solid var(--pd-border);
}

.pd-side-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: var(--pd-text);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--pd-border);
}

.pd-side-title i {
    color: var(--pd-primary);
}

.pd-side-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pd-side-card ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    font-size: 13px;
    color: var(--pd-text-secondary);
    border-bottom: 1px dashed #edf2f7;
}

.pd-side-card ul li:last-child {
    border-bottom: none;
}

.pd-side-card ul li i {
    color: var(--pd-success);
    font-size: 12px;
    flex-shrink: 0;
}

.pd-side-tip ul li i {
    color: var(--pd-primary);
}

/* 统计行 */
.pd-stat-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--pd-border);
}

.pd-stat-row:last-child {
    border-bottom: none;
}

.pd-stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--pd-primary-bg);
    color: var(--pd-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.pd-stat-icon.green {
    background: rgba(16,185,129,0.1);
    color: var(--pd-success);
}

.pd-stat-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.pd-stat-num {
    font-size: 16px;
    font-weight: 700;
    color: var(--pd-text);
}

.pd-stat-label {
    font-size: 12px;
    color: var(--pd-text-light);
}

/* 联系项 */
.pd-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--pd-border);
}

.pd-contact-item:last-child {
    border-bottom: none;
}

.pd-contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--pd-primary-bg);
    color: var(--pd-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.pd-contact-icon.orange {
    background: rgba(245,158,11,0.1);
    color: var(--pd-warning);
}

.pd-contact-label {
    font-size: 12px;
    color: var(--pd-text-light);
}

.pd-contact-val {
    font-size: 14px;
    font-weight: 600;
    color: var(--pd-text);
}

/* 审核流程 */
.pd-flow {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pd-flow-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pd-flow-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--pd-primary-bg);
    color: var(--pd-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.pd-flow-icon.blue {
    background: rgba(59,130,246,0.1);
    color: var(--pd-info);
}

.pd-flow-icon.orange {
    background: rgba(245,158,11,0.1);
    color: var(--pd-warning);
}

.pd-flow-icon.green {
    background: rgba(16,185,129,0.1);
    color: var(--pd-success);
}

.pd-flow-text {
    flex: 1;
    min-width: 0;
}

.pd-flow-text strong {
    display: block;
    font-size: 13px;
    color: var(--pd-text);
}

.pd-flow-text small {
    font-size: 12px;
    color: var(--pd-text-light);
}

.pd-flow-arrow {
    text-align: center;
    padding: 4px 0 4px 24px;
    color: var(--pd-text-light);
    font-size: 12px;
}

/* 注意事项 */
.pd-side-notice p {
    font-size: 13px;
    color: var(--pd-text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* 后续操作 */
.pd-action-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--pd-border);
}

.pd-action-item:last-child {
    border-bottom: none;
}

.pd-action-item strong {
    display: block;
    font-size: 13px;
    color: var(--pd-text);
}

.pd-action-item small {
    font-size: 12px;
    color: var(--pd-text-light);
}

/* ===== 发布表单 - 仪表盘风格 ===== */
.publish-detail {
    background: #fff;
    border-radius: 16px;
    padding: 28px 32px;
    box-shadow: var(--pd-shadow-sm);
    border: 1px solid var(--pd-border);
}

.publish-detail .p-line {
    padding: 14px 0;
    border-bottom: 1px dashed #edf2f7;
    display: flex;
    align-items: flex-start;
}

.publish-detail .p-line:last-child {
    border-bottom: none;
}

.publish-detail .p-label {
    display: inline-block;
    width: 130px;
    text-align: right;
    padding: 8px 16px 8px 0;
    font-weight: 600;
    color: var(--pd-text);
    font-size: 14px;
    flex-shrink: 0;
}

.publish-detail .required {
    color: var(--pd-danger);
    font-weight: 700;
    margin-right: 3px;
}

.publish-detail .publish-detail-item {
    flex: 1;
    min-width: 0;
    position: relative;
    display: block;
    vertical-align: middle;
}

.publish-detail input[type="text"],
.publish-detail input[type="password"],
.publish-detail select,
.publish-detail textarea {
    width: 100%;
    max-width: 480px;
    border: 2px solid var(--pd-border);
    border-radius: 10px;
    padding: 11px 15px;
    transition: all 0.3s ease;
    font-size: 14px;
    font-family: inherit;
    box-sizing: border-box;
    background: #fff;
    color: var(--pd-text);
}

.publish-detail input[type="text"]:focus,
.publish-detail input[type="password"]:focus,
.publish-detail select:focus,
.publish-detail textarea:focus {
    border-color: var(--pd-primary);
    outline: none;
    box-shadow: 0 0 0 4px rgba(25, 66, 146, 0.1);
}

.publish-detail textarea {
    width: 100%;
    max-width: 100%;
    min-height: 120px;
    resize: vertical;
    line-height: 1.7;
}

.publish-detail input.input-small {
    max-width: 200px;
}

.publish-detail input.input-large {
    max-width: 300px;
}

.publish-detail input.input-60 {
    max-width: 500px;
}

.publish-detail .publish-detail-item b {
    color: var(--pd-primary);
    font-weight: 600;
}

.publish-detail .publish-detail-item a {
    color: var(--pd-accent);
    text-decoration: none;
    font-size: 13px;
    margin-left: 10px;
    transition: color 0.2s;
}

.publish-detail .publish-detail-item a:hover {
    color: var(--pd-primary);
    text-decoration: underline;
}

.publish-detail .contact {
    background: linear-gradient(135deg, rgba(25,66,146,0.04) 0%, rgba(61,111,217,0.03) 100%);
    border: 1px solid rgba(25,66,146,0.1);
    border-radius: 14px;
    padding: 20px 24px;
    margin: 20px 0;
}

.publish-detail .mappoint {
    background: linear-gradient(135deg, var(--pd-primary) 0%, var(--pd-accent) 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(25,66,146,0.25);
}

.publish-detail .mappoint:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(25,66,146,0.35);
}

.publish-detail .authcode {
    border: 2px solid var(--pd-border);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 40px;
    vertical-align: middle;
}

.publish-detail .authcode:hover {
    border-color: var(--pd-primary);
    box-shadow: 0 0 0 3px rgba(25, 66, 146, 0.1);
}

.publish-detail .qfont {
    display: inline-block;
    padding: 8px 14px;
    background: linear-gradient(135deg, var(--pd-primary-bg) 0%, rgba(61,111,217,0.08) 100%);
    border: 1px solid rgba(25,66,146,0.15);
    border-radius: 10px;
    color: var(--pd-primary);
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.publish-detail .p-submit {
    text-align: center;
    padding: 30px 0 10px;
    margin-top: 20px;
    border-top: 1px solid #edf2f7;
}

.publish-detail .fabu1 {
    display: inline-block;
    width: auto;
    min-width: 220px;
    background: linear-gradient(135deg, var(--pd-primary) 0%, var(--pd-accent) 100%);
    color: #fff;
    border: none;
    border-radius: 14px;
    padding: 15px 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(25,66,146,0.3);
    margin: 0;
    letter-spacing: 2px;
    font-family: inherit;
}

.publish-detail .fabu1:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(25,66,146,0.4);
}

#formsubmittips {
    padding: 18px 20px 0;
    text-align: center;
    color: var(--pd-text-secondary);
    font-size: 13px;
    line-height: 1.8;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(251, 191, 36, 0.06) 100%);
    border: 1px dashed rgba(245, 158, 11, 0.3);
    border-radius: 12px;
    margin-top: 20px;
}

/* ===== 成功页面 ===== */
.pd-success-page {
    background: #fff;
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow: var(--pd-shadow-md);
    border: 1px solid var(--pd-border);
    text-align: center;
    animation: pdFadeInUp 0.6s ease-out;
}

.pd-success-icon {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 40px;
    color: #fff;
    animation: pdBounceIn 0.6s ease-out;
}

.pd-success-icon.success {
    background: linear-gradient(135deg, var(--pd-success) 0%, #059669 100%);
    box-shadow: 0 16px 40px rgba(16, 185, 129, 0.35);
}

.pd-success-icon.pending {
    background: linear-gradient(135deg, var(--pd-warning) 0%, #d97706 100%);
    box-shadow: 0 16px 40px rgba(245, 158, 11, 0.35);
}

.pd-success-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--pd-text);
    margin: 0 0 12px;
}

.pd-success-desc {
    font-size: 15px;
    color: var(--pd-text-secondary);
    line-height: 1.7;
    margin: 0 0 24px;
}

.pd-pending {
    color: var(--pd-warning);
    font-weight: 700;
}

.pd-success-text {
    color: var(--pd-success);
    font-weight: 700;
}

.pd-success-link {
    color: var(--pd-primary);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px dashed var(--pd-primary);
    padding-bottom: 1px;
}

.pd-success-link:hover {
    color: var(--pd-accent);
    border-color: var(--pd-accent);
}

.pd-title-cut {
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pd-meta-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 28px 0;
    padding: 24px;
    background: linear-gradient(135deg, var(--pd-primary-bg) 0%, rgba(61,111,217,0.04) 100%);
    border-radius: 16px;
    border: 1px solid rgba(25,66,146,0.1);
}

.pd-meta-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.pd-meta-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #fff;
    color: var(--pd-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: var(--pd-shadow-sm);
}

.pd-meta-icon.green {
    color: var(--pd-success);
}

.pd-meta-icon.orange {
    color: var(--pd-warning);
}

.pd-meta-icon.blue {
    color: var(--pd-info);
}

.pd-meta-label {
    font-size: 12px;
    color: var(--pd-text-light);
}

.pd-meta-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--pd-text);
}

.pd-tip-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(245,158,11,0.08) 0%, rgba(251,191,36,0.06) 100%);
    border: 1px solid rgba(245,158,11,0.25);
    border-radius: 12px;
    font-size: 14px;
    color: var(--pd-text-secondary);
    margin-bottom: 24px;
}

.pd-tip-card i {
    color: var(--pd-warning);
    font-size: 18px;
    flex-shrink: 0;
}

.pd-success-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.pd-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.pd-btn-primary {
    background: linear-gradient(135deg, var(--pd-primary) 0%, var(--pd-accent) 100%);
    color: #fff;
    box-shadow: 0 6px 20px rgba(25,66,146,0.3);
}

.pd-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(25,66,146,0.4);
}

.pd-btn-gold {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
    box-shadow: 0 6px 20px rgba(245,158,11,0.3);
}

.pd-btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245,158,11,0.4);
}

.pd-btn-ghost {
    background: #fff;
    color: var(--pd-text);
    border: 2px solid var(--pd-border);
}

.pd-btn-ghost:hover {
    background: var(--pd-primary-bg);
    border-color: var(--pd-primary);
    color: var(--pd-primary);
    transform: translateY(-2px);
}

/* ===== 动画 ===== */
@keyframes pdFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pdBounceIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    60% {
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== 响应式 ===== */
@media (max-width: 1024px) {
    .pd-main {
        flex-direction: column;
    }
    
    .pd-content {
        flex: none;
        width: 100%;
    }
    
    .pd-sidebar {
        position: static;
        width: 100%;
        max-height: none;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .pd-side-card {
        flex: 1;
        min-width: 240px;
    }
    
    .pd-category-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .body1000 {
        padding: 14px 12px 40px;
    }
    
    .mheader .mhead {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 16px;
    }
    
    .mheader .logo img {
        height: 40px;
    }
    
    .bartop .barcenter {
        height: auto;
        flex-direction: column;
        padding: 10px 14px;
        gap: 8px;
    }
    
    .bartop .barleft {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .bartop .barleft ul {
        flex-wrap: wrap;
    }
    
    .bartop .barleft ul a,
    .bartop .barleft ul span {
        padding: 4px 10px;
        height: auto;
        line-height: 1.5;
    }
    
    .bartop .barleft ul.line {
        display: none;
    }
    
    .pd-sidebar {
        flex-direction: column;
        flex-wrap: nowrap;
    }
    
    .pd-side-card {
        min-width: 100%;
    }
    
    .pd-steps-bar {
        padding: 16px 12px;
        gap: 8px;
    }
    
    .pd-steps-bar::before {
        left: 12%;
        right: 12%;
        top: 36px;
    }
    
    .pd-step-circle {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
    
    .pd-step-label {
        font-size: 12px;
    }
    
    .pd-step-desc {
        display: none;
    }
    
    .pd-hero {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 20px;
    }
    
    .pd-hero-badges {
        justify-content: center;
    }
    
    .pd-category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .pd-cat-sub {
        grid-template-columns: 1fr;
    }
    
    .pd-meta-card {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .publish-detail {
        padding: 20px 16px;
    }
    
    .publish-detail .p-line {
        flex-direction: column;
        gap: 6px;
    }
    
    .publish-detail .p-label {
        width: auto;
        text-align: left;
        padding: 0;
    }
    
    .pd-success-page {
        padding: 32px 20px;
    }
    
    .pd-success-title {
        font-size: 22px;
    }
    
    .pd-sidebar {
        flex-direction: column;
    }
    
    .pd-side-card {
        min-width: 100%;
    }
    
    .psearch .pshead .psbtn {
        padding: 12px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .pd-category-grid {
        grid-template-columns: 1fr;
    }
    
    .pd-hero-badges {
        flex-direction: column;
        width: 100%;
    }
    
    .pd-badge {
        justify-content: center;
    }
    
    .pd-success-actions {
        flex-direction: column;
    }
    
    .pd-btn {
        justify-content: center;
    }
    
    .pd-meta-card {
        padding: 18px;
    }
}

/* ===== 兼容原有样式 ===== */
span.no, span.yes {
    background-image: url(../images/yesno.gif);
    background-repeat: no-repeat;
    height: 29px;
    width: 287px;
    line-height: 29px;
    margin-top: 2px;
    margin-left: 5px;
    float: left;
}

span.yes {
    background-position: 0 -29px;
    display: block;
}

span.no {
    background-position: 0 0;
    color: #000;
    display: block;
    padding-left: 40px;
}

input.gray {
    border: 1px solid;
    cursor: pointer;
    border-color: #fff #848484 #848484 #fff !important;
    background: #f0f0f0 !important;
    color: #333 !important;
}

.white { color: #fff; }
.noime { ime-mode: disabled; }
.f12 { font-size: 12px; }
.f14 { font-size: 14px; }
.fb { font-weight: 700; }
.fl { float: left; }
.fr { float: right; }

.upload_img { width: auto; height: auto; padding: 20px 0; }
.upload_img input { margin-top: 5px; }
.upload_img ul { float: left; margin: 10px; text-align: left; }
.upload_img .preview { height: 125px; border: 1px #d4d4d4 solid; width: 125px; }
.upload_img .preview img { width: 125px !important; }
.upload_img li { margin: 0 0 10px 0; }
.upload_img .img_input { width: 130px; height: 22px; }

.postimg { width: 780px; display: none; }
.postimg-item-success { background: 0; }
.postimg-item-img { display: block; border: 1px solid #f8f8f8; width: 180px; height: 180px; }
.postimg-item-status { background: #eee; display: block; width: 182px; padding: 5px 0; text-align: center; font-size: 12px; }

.swfu { position: relative; }
.swfu .publish-detail-item { width: 780px; }
.swfu .p-note { display: inline; float: left; position: relative; top: 3px; }
.swfu .alert-swfu { width: 734px; margin-bottom: 10px; }

.publish-detail-item .units { float: left; display: block; line-height: 32px; margin-left: 5px; margin-right: 10px; }
.publish-detail-item table td { vertical-align: top; }

.contentinner { float: left; display: block; }
.checkboxinner { max-width: 450px; white-space: nowrap; display: block; float: left; }
.publish-detail-item-top, .swfu .publish-detail-item { vertical-align: top; }
.publish-detail-item span.unit { display: inline-block; margin-left: 5px; }

.p-group { width: 600px; }
.p-group .form-label { display: block; width: 140px; float: left; }

.publish-detail .form-checkbox, .publish-detail .form-radio { margin-right: 2px; position: relative; top: -1px; }

.p-error, .p-error-empty, .p-note { display: none; font-size: 12px; padding-left: 5px; }
.p-error, .p-error-empty { color: #f30; }
.p-note-show { display: inline; }

.curren .ym-submnu { display: block; }
.catid { padding-bottom: 10px; }
.catid label { display: inline-block; float: left; width: 120px; height: 25px; }
.catid label input { margin-right: 5px; }

.helper { color: var(--pd-text-light); font-size: 12px; margin-top: 6px; }
.clear { clear: both; }
