/* ========== 首页轮播增强 ========== */
.section-banner {
    padding-top: 0;
}

.banner-slider {
    height: 400px;
    background: var(--bg);
}

.banner-slide img {
    height: 400px;
}

/* ========== 区块增强 ========== */
.section-services,
.section-packages,
.section-articles,
.section-posts,
.section-consult {
    background: var(--white);
}

.section-promo {
    background: var(--bg);
}

/* ========== 社区交流模块 ========== */
.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.post-card {
    background: var(--white);
    border-radius: 8px;
    padding: 24px;
    border: 1px solid var(--border);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.post-type-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    margin-bottom: 12px;
    align-self: flex-start;
}

.post-type-tag.type-1 {
    background: #ffebee;
    color: #c62828;
}

.post-type-tag.type-2 {
    background: #e3f2fd;
    color: #1565c0;
}

.post-type-tag.type-3 {
    background: #fff3e0;
    color: #e65100;
}

.post-type-tag.type-4 {
    background: #f3e5f5;
    color: #6a1b9a;
}

.post-title {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--text);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-excerpt {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-meta {
    display: flex;
    gap: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border);
    color: var(--text-light);
    font-size: 12px;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ========== 社区列表页 ========== */
.post-list-page {
    padding: 40px 0;
}

.post-filter {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.post-filter-btn {
    padding: 8px 20px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--white);
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s;
}

.post-filter-btn:hover,
.post-filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.post-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.post-item {
    background: var(--white);
    border-radius: 8px;
    padding: 25px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.post-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.post-item-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.post-item-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
}

.post-item-info {
    flex: 1;
}

.post-item-author {
    font-weight: 600;
    color: var(--text);
}

.post-item-time {
    font-size: 12px;
    color: var(--text-light);
}

.post-item-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text);
}

.post-item-content {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.post-item-actions {
    display: flex;
    gap: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border);
    color: var(--text-light);
    font-size: 14px;
}

.post-item-actions span {
    cursor: pointer;
    transition: color 0.3s;
}

.post-item-actions span:hover {
    color: var(--primary);
}

/* ========== 帖子详情页 ========== */
.post-detail {
    padding: 40px 0;
}

.post-detail-card {
    background: var(--white);
    border-radius: 8px;
    padding: 40px;
    border: 1px solid var(--border);
    margin-bottom: 25px;
}

.post-detail-header {
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 25px;
}

.post-detail-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text);
}

.post-detail-meta {
    display: flex;
    gap: 20px;
    color: var(--text-light);
    font-size: 14px;
}

.post-detail-content {
    line-height: 1.8;
    color: var(--text);
    font-size: 15px;
}

.post-detail-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--border);
}

.post-detail-actions button {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 20px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--white);
    cursor: pointer;
    transition: all 0.3s;
}

.post-detail-actions button:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.comments-section {
    background: var(--white);
    border-radius: 8px;
    padding: 30px;
    border: 1px solid var(--border);
}

.comments-title {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--text);
}

.comment-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.comment-item:last-child {
    border-bottom: none;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.comment-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.comment-author {
    font-weight: 600;
}

.comment-time {
    color: var(--text-light);
    font-size: 12px;
}

.comment-content {
    color: var(--text);
    line-height: 1.7;
}

.comment-form {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--border);
}

.comment-form textarea {
    width: 100%;
    min-height: 100px;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 4px;
    resize: vertical;
    font-family: inherit;
    font-size: 14px;
}

.comment-form-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 15px;
}

/* ========== 发布帖子页 ========== */
.publish-page {
    padding: 40px 0;
}

.publish-card {
    background: var(--white);
    border-radius: 8px;
    padding: 40px;
    border: 1px solid var(--border);
    max-width: 800px;
    margin: 0 auto;
}

.publish-title {
    font-size: 22px;
    margin-bottom: 30px;
    color: var(--text);
}

.publish-form .form-group {
    margin-bottom: 25px;
}

.publish-form select,
.publish-form input[type="text"],
.publish-form textarea {
    width: 100%;
}

.publish-form textarea {
    min-height: 200px;
}

/* ========== 用户中心增强 ========== */
.user-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.user-menu-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.user-menu-item:hover,
.user-menu-item.active {
    border-color: var(--primary);
    color: var(--primary);
}

/* ========== 预约流程增强 ========== */
.booking-steps {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.booking-step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--white);
    border-radius: 25px;
    border: 2px solid var(--border);
}

.booking-step.active {
    border-color: var(--primary);
    background: rgba(46, 125, 50, 0.1);
    color: var(--primary);
}

.booking-step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--border);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.booking-step.active .booking-step-num {
    background: var(--primary);
}

/* ========== 咨询模块增强 ========== */
.consult-detail-card {
    background: var(--white);
    border-radius: 8px;
    padding: 35px;
    border: 1px solid var(--border);
    margin-bottom: 25px;
}

.consult-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin-left: 10px;
}

/* ========== 登录注册增强 ========== */
.auth-page {
    padding: 60px 0;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

.auth-card {
    background: var(--white);
    border-radius: 12px;
    padding: 45px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    max-width: 450px;
    margin: 0 auto;
    width: 100%;
}

.auth-title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--text);
}

.auth-tabs {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--bg);
}

.auth-tab {
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-light);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.3s;
}

.auth-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

/* ========== 文章详情增强 ========== */
.article-detail {
    padding: 40px 0;
}

.article-detail-card {
    background: var(--white);
    border-radius: 8px;
    padding: 40px;
    border: 1px solid var(--border);
}

.article-detail-title {
    font-size: 28px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.article-detail-meta {
    display: flex;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 25px;
    color: var(--text-light);
}

.article-detail-content {
    line-height: 1.8;
    font-size: 16px;
}

.article-detail-content p {
    margin-bottom: 20px;
}

.article-detail-content h3 {
    margin: 30px 0 15px;
    font-size: 20px;
}

/* ========== 联系我们增强 ========== */
.contact-page {
    padding: 40px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-info-card {
    background: var(--white);
    border-radius: 8px;
    padding: 40px;
    border: 1px solid var(--border);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px dashed var(--border);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.contact-info-content h4 {
    font-size: 15px;
    margin-bottom: 5px;
    color: var(--text);
}

.contact-info-content p {
    color: var(--text-light);
}

/* ========== 关于我们增强 ========== */
.about-page {
    padding: 40px 0;
}

.about-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
    border-radius: 12px;
    margin-bottom: 40px;
}

.about-hero h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.about-hero p {
    font-size: 18px;
    opacity: 0.9;
}

.about-section {
    margin-bottom: 50px;
}

.about-section h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--text);
}

.about-section p {
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--border);
}

.stat-item-number {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary);
}

.stat-item-label {
    color: var(--text-light);
    margin-top: 5px;
}

/* ========== 会员页增强 ========== */
.member-page {
    padding: 40px 0;
}

.member-hero {
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    color: var(--white);
    padding: 50px 0;
    text-align: center;
    border-radius: 12px;
    margin-bottom: 40px;
}

.member-hero h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.member-hero p {
    opacity: 0.9;
    font-size: 16px;
}

/* ========== 成功页 ========== */
.success-page {
    padding: 80px 0;
    text-align: center;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: #e8f5e9;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    margin: 0 auto 30px;
}

.success-title {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--text);
}

.success-desc {
    color: var(--text-light);
    margin-bottom: 30px;
}

/* ========== 响应式增强 ========== */
@media (max-width: 768px) {
    .post-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .publish-card,
    .auth-card {
        padding: 25px;
        margin: 0 15px;
    }

    .post-detail-card,
    .comments-section {
        padding: 20px;
    }

    .booking-steps {
        flex-wrap: wrap;
        justify-content: center;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .create-layout {
        flex-direction: column;
    }

    .detail-layout {
        flex-direction: column;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .package-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== 分类信息发布页 ========== */
.create-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.create-main {
    flex: 1;
    min-width: 0;
}

.create-sidebar {
    width: 320px;
    flex-shrink: 0;
}

.form-card {
    background: var(--white);
    border-radius: 12px;
    padding: 40px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.form-card h2 {
    font-size: 22px;
    margin-bottom: 30px;
    color: var(--text);
    padding-bottom: 15px;
    border-bottom: 2px solid var(--bg);
}

.form-vertical .form-group {
    margin-bottom: 22px;
}

.form-vertical label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text);
    font-size: 14px;
}

.form-vertical .required {
    color: #e74c3c;
    margin-left: 2px;
}

.form-vertical select,
.form-vertical input[type="text"],
.form-vertical input[type="number"],
.form-vertical input[type="tel"],
.form-vertical input[type="email"],
.form-vertical textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text);
    background: var(--white);
    transition: all 0.3s;
    font-family: inherit;
}

.form-vertical select:focus,
.form-vertical input:focus,
.form-vertical textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.form-vertical textarea {
    resize: vertical;
    min-height: 150px;
    line-height: 1.6;
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-half {
    flex: 1;
}

.form-checkbox {
    display: flex;
    align-items: center;
}

.form-checkbox label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: normal;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.form-divider {
    margin: 30px 0 25px;
    padding-top: 20px;
    border-top: 2px dashed var(--border);
}

.form-divider h3 {
    font-size: 16px;
    color: var(--text);
}

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--border);
}

.form-actions .btn {
    min-width: 140px;
}

.form-tip {
    margin-top: 20px;
    padding: 12px 16px;
    background: #fff9e6;
    border-left: 4px solid var(--accent);
    border-radius: 4px;
    color: #666;
    font-size: 13px;
}

/* 侧边栏卡片 */
.tip-card {
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid var(--border);
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.tip-card h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--text);
}

.tip-card ul {
    list-style: none;
    padding: 0;
}

.tip-card ul li {
    padding: 8px 0;
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.6;
    border-bottom: 1px dashed var(--border);
}

.tip-card ul li:last-child {
    border-bottom: none;
}

.tip-card p {
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 12px;
}

.tip-card.member-tip {
    background: linear-gradient(135deg, #fffbe6 0%, #fff5e6 100%);
    border: 1px solid #ffe58f;
}

.tip-card.member-tip h3 {
    color: #d48806;
}

.tip-card.member-tip .btn {
    margin-top: 15px;
}

/* ========== 分类信息详情页 ========== */
.detail-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.detail-main {
    flex: 1;
    min-width: 0;
}

.detail-sidebar {
    width: 340px;
    flex-shrink: 0;
}

.detail-card {
    background: var(--white);
    border-radius: 12px;
    padding: 40px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    margin-bottom: 24px;
}

.detail-header {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.detail-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.detail-title {
    font-size: 26px;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.4;
}

.detail-meta {
    display: flex;
    gap: 20px;
    color: var(--text-light);
    font-size: 13px;
    flex-wrap: wrap;
}

.detail-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.detail-price {
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    margin-bottom: 24px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.detail-price .price-value {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary);
}

.detail-price .price-unit {
    font-size: 16px;
    color: var(--text-light);
}

.detail-price .price-neg {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary);
}

.detail-content {
    margin-bottom: 24px;
}

.detail-content h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text);
}

.detail-content p {
    line-height: 1.8;
    color: var(--text);
    font-size: 15px;
    white-space: pre-wrap;
}

.detail-images {
    margin-bottom: 24px;
}

.detail-images h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text);
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.detail-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s;
}

.detail-image:hover {
    transform: scale(1.02);
}

.detail-tips {
    background: #e8f5e9;
    border-radius: 10px;
    padding: 20px 24px;
    border-left: 4px solid var(--primary);
}

.detail-tips h4 {
    font-size: 15px;
    margin-bottom: 12px;
    color: var(--primary);
}

.detail-tips ul {
    list-style: none;
    padding: 0;
}

.detail-tips li {
    padding: 6px 0;
    color: var(--text);
    font-size: 13px;
    line-height: 1.6;
}

/* 联系方式卡片 */
.contact-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    margin-bottom: 24px;
}

.contact-card h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text);
    padding-bottom: 15px;
    border-bottom: 2px solid var(--bg);
}

.contact-info p {
    padding: 10px 0;
    color: var(--text);
    font-size: 14px;
    line-height: 1.6;
}

.contact-info a {
    color: var(--primary);
    font-weight: 500;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.contact-tip {
    margin-top: 16px;
    padding: 10px 14px;
    background: #fff9e6;
    border-radius: 6px;
    color: #8c6d1f;
    font-size: 12px;
    line-height: 1.5;
}

/* 联系方式脱敏样式 */
.phone-masked {
    display: inline-block;
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: 1px;
    background: #f5f5f5;
    padding: 2px 10px;
    border-radius: 4px;
    border: 1px dashed var(--border);
}

.contact-locked {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.contact-locked .locked-tip {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.contact-locked .locked-desc {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 18px;
}

.contact-locked .btn {
    margin-bottom: 10px;
}

.contact-locked .btn:last-child {
    margin-bottom: 0;
}

/* 相关信息 */
.related-card {
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.related-card h3 {
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--text);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--bg);
}

.related-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed var(--border);
    transition: all 0.3s;
}

.related-item:last-child {
    border-bottom: none;
}

.related-item:hover {
    background: var(--bg);
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 6px;
}

.related-title {
    color: var(--text);
    font-size: 14px;
    flex: 1;
    margin-right: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.related-meta {
    color: var(--primary);
    font-weight: 500;
    font-size: 13px;
    white-space: nowrap;
}

/* ========== 分类信息列表页 ========== */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.info-card {
    background: var(--white);
    border-radius: 10px;
    padding: 24px;
    border: 1px solid var(--border);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.info-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.info-header {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.info-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.info-title:hover {
    color: var(--primary);
}

.info-content {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.info-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.info-price {
    font-weight: 600;
    color: var(--primary);
    font-size: 15px;
}

.info-address {
    color: var(--text-light);
    font-size: 12px;
}

.info-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed var(--border);
    color: var(--text-light);
    font-size: 12px;
}

.info-footer span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* 标签样式 */
.tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.tag-top {
    background: #fff3e0;
    color: #e65100;
}

.tag-urgent {
    background: #ffebee;
    color: #c62828;
}

.tag-category {
    background: #e8f5e9;
    color: #2e7d32;
}

.tag-pending {
    background: #fff9e6;
    color: #d48806;
}

/* 分类卡片 */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
}

.category-card {
    background: var(--white);
    border-radius: 10px;
    padding: 24px 20px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.category-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(46, 125, 50, 0.12);
    transform: translateY(-2px);
}

.category-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    background: #f5f5f5;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.category-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-card:hover .category-icon {
    border-color: var(--primary);
    transform: scale(1.05);
}

.category-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}

.category-arrow {
    color: var(--text-light);
    font-size: 12px;
}

/* 会员套餐网格 */
.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.package-card {
    background: var(--white);
    border-radius: 12px;
    padding: 32px 24px;
    border: 2px solid var(--border);
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.package-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.package-card.package-hot {
    border-color: var(--primary);
    background: linear-gradient(135deg, #fff 0%, #f0f9f0 100%);
}

.package-card.package-hot:hover {
    transform: translateY(-4px);
}

.hot-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    background: var(--accent);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 0 0 6px 6px;
    font-size: 12px;
    font-weight: 500;
}

.package-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
}

.package-price {
    margin-bottom: 16px;
}

.package-price .price-symbol {
    font-size: 16px;
    color: var(--primary);
    vertical-align: top;
}

.package-price .price-value {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary);
}

.package-price .price-unit {
    font-size: 14px;
    color: var(--text-light);
}

.package-desc {
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.6;
    min-height: 42px;
}

.package-features {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
    text-align: left;
}

.package-features li {
    padding: 6px 0;
    color: var(--text);
    font-size: 13px;
    border-bottom: 1px dashed var(--border);
}

.package-features li:last-child {
    border-bottom: none;
}

/* 区块样式 */
.section {
    padding: 50px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 35px;
}

.section-title {
    font-size: 24px;
    color: var(--text);
    margin-bottom: 10px;
}

.section-desc {
    color: var(--text-light);
    font-size: 14px;
}

.section-more {
    color: var(--primary);
    font-size: 14px;
    margin-top: 15px;
    display: inline-block;
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.pagination a,
.pagination span {
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--white);
    color: var(--text);
    transition: all 0.3s;
}

.pagination .active,
.pagination a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* 空状态 */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.empty-state p {
    font-size: 15px;
}

/* 筛选栏 */
.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 16px;
}

.filter-group {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.filter-label {
    color: var(--text-light);
    font-size: 14px;
}

.filter-item {
    padding: 6px 16px;
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 13px;
    color: var(--text);
    background: var(--white);
    transition: all 0.3s;
}

.filter-item:hover,
.filter-item.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.filter-search {
    display: flex;
    gap: 8px;
}

.filter-search input {
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 13px;
    width: 220px;
}

.filter-search button {
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
}

/* 文章列表 */
.article-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.article-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s;
    display: block;
}

.article-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.article-cover {
    height: 180px;
    overflow: hidden;
}

.article-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.article-item:hover .article-cover img {
    transform: scale(1.05);
}

.article-info {
    padding: 20px;
}

.article-info h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--text);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-info p {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-meta {
    display: flex;
    gap: 12px;
    color: var(--text-light);
    font-size: 12px;
    align-items: center;
}

.type-tag {
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

.type-tag.type-1 {
    background: #e3f2fd;
    color: #1565c0;
}

.type-tag.type-2 {
    background: #f3e5f5;
    color: #7b1fa2;
}

.type-tag.type-3 {
    background: #fff3e0;
    color: #e65100;
}

.type-tag.type-4 {
    background: #e8f5e9;
    color: #2e7d32;
}

/* ========== 审核流程样式 ========== */
.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--bg);
}

.form-header h2 {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    border-bottom: none !important;
}

.audit-notice {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: #e3f2fd;
    border-radius: 6px;
    color: #1565c0;
    font-size: 13px;
}

.audit-icon {
    font-size: 16px;
}

.input-hint {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: var(--text-light);
}

.checkbox-wrap {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-wrap em {
    color: var(--text-light);
    font-style: normal;
    font-size: 12px;
}

.audit-process {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 20px;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.step-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    flex-shrink: 0;
}

.step-text strong {
    display: block;
    font-size: 14px;
    color: var(--text);
    margin-bottom: 4px;
}

.step-text p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

.process-arrow {
    color: var(--text-light);
    font-size: 20px;
    margin: 0 10px;
}

/* 审核流程卡片 */
.audit-flow {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    border: 1px solid #bbdefb;
}

.audit-flow h3 {
    color: #1565c0 !important;
}

.flow-item {
    text-align: center;
    padding: 12px 0;
}

.flow-item p {
    margin: 6px 0 0;
    font-size: 12px;
}

.flow-status {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.flow-status.pending {
    background: #fff3e0;
    color: #e65100;
}

.flow-status.reviewing {
    background: #e3f2fd;
    color: #1565c0;
}

.flow-status.approved {
    background: #e8f5e9;
    color: #2e7d32;
}

.flow-status.rejected {
    background: #ffebee;
    color: #c62828;
}

.flow-arrow {
    text-align: center;
    color: var(--text-light);
    font-size: 16px;
}

.flow-item.success p {
    color: #2e7d32;
}

.flow-item.rejected p {
    color: #c62828;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .audit-process {
        flex-direction: column;
        gap: 20px;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
    
    .form-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .audit-notice {
        width: 100%;
    }
}

/* ========== 分类信息列表页布局 ========== */
.classified-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 30px;
    align-items: flex-start;
}

.classified-sidebar {
    position: sticky;
    top: 20px;
}

.sidebar-card {
    background: var(--white);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid var(--border);
    margin-bottom: 20px;
}

.sidebar-card h3 {
    font-size: 16px;
    color: var(--text);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 4px;
}

.category-list a {
    display: block;
    padding: 10px 14px;
    color: var(--text);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s;
    font-size: 14px;
}

.category-list a:hover {
    background: #f0f9f0;
    color: var(--primary);
}

.category-list a.active {
    background: var(--primary);
    color: var(--white);
}

.classified-content {
    min-width: 0;
}

.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 16px;
}

.search-box form {
    display: flex;
    gap: 8px;
}

.search-box input {
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 14px;
    width: 280px;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary);
}

.sort-options {
    display: flex;
    gap: 20px;
}

.sort-options a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
}

.sort-options a.active,
.sort-options a:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* ========== 列表式信息项样式 ========== */
.info-list {
    display: flex;
    flex-direction: column;
}

.info-item {
    display: flex;
    background: var(--white);
    border-radius: 10px;
    padding: 20px 24px;
    border: 1px solid var(--border);
    margin-bottom: 16px;
    transition: all 0.3s;
    gap: 24px;
}

.info-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.info-main {
    flex: 1;
    min-width: 0;
}

.info-badges {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.info-badges .tag {
    font-size: 11px;
    padding: 2px 8px;
}

.info-item .info-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
    display: block;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.2s;
}

.info-item .info-title:hover {
    color: var(--primary);
}

.info-desc {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.info-tags {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--text-light);
}

.info-category,
.info-address {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.info-side {
    width: 180px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    padding-left: 20px;
    border-left: 1px dashed var(--border);
}

.info-price {
    text-align: right;
}

.info-price strong {
    font-size: 20px;
    color: var(--primary);
    font-weight: 700;
}

.info-price span {
    font-size: 12px;
    color: var(--text-light);
    margin-left: 4px;
}

.info-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    font-size: 12px;
    color: var(--text-light);
    margin: 12px 0;
}

.info-meta span {
    display: flex;
    align-items: center;
    gap: 3px;
}

.info-side .btn-sm {
    padding: 6px 16px;
    font-size: 13px;
    text-decoration: none;
}

/* 列表视图模式 */
.info-list-view {
    display: flex;
    flex-direction: column;
}

/* 响应式 - 列表项和分类布局 */
@media (max-width: 768px) {
    .classified-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .classified-sidebar {
        position: static;
    }
    
    .search-box input {
        width: 100%;
    }
    
    .content-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .info-item {
        flex-direction: column;
        gap: 16px;
    }
    
    .info-side {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding-left: 0;
        border-left: none;
        border-top: 1px dashed var(--border);
        padding-top: 16px;
    }
    
    .info-price {
        text-align: left;
    }
    
    .info-meta {
        flex-direction: row;
        align-items: center;
    }
}

/* ========== 关于页面标签页样式 ========== */
.about-tabs {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.about-tabs .tab-nav {
    display: flex;
    background: #f8f9fa;
    border-bottom: 1px solid var(--border);
}

.about-tabs .tab-item {
    padding: 16px 28px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 3px solid transparent;
    text-decoration: none;
    display: inline-block;
}

.about-tabs .tab-item:hover {
    color: var(--primary);
    background: rgba(76, 175, 80, 0.05);
}

.about-tabs .tab-item.active {
    color: var(--primary);
    background: var(--white);
    border-bottom-color: var(--primary);
}

.about-tabs .tab-content {
    padding: 32px;
    display: none;
    animation: fadeIn 0.3s ease;
}

.about-tabs .tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 关于内容样式 */
.about-content h2 {
    font-size: 22px;
    color: var(--text);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--bg);
}

.about-content h3 {
    font-size: 18px;
    color: var(--text);
    margin: 24px 0 12px;
}

.about-content p {
    color: var(--text);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 14px;
}

.about-content ul {
    padding-left: 0;
    margin-bottom: 16px;
}

.about-content ul li {
    list-style: none;
    padding: 8px 0;
    color: var(--text);
    font-size: 14px;
    line-height: 1.6;
}

.about-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.about-list li {
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid var(--primary);
}

/* 资质证书展示 */
.credentials-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.credential-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.credential-card:hover {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.credential-preview {
    font-size: 48px;
    margin-bottom: 12px;
}

.credential-card h4 {
    font-size: 15px;
    color: var(--text);
    margin-bottom: 6px;
}

.credential-card p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

/* 服务承诺 */
.service-commitments {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.commitment-item {
    position: relative;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
}

.commitment-item:hover {
    background: var(--white);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.commitment-num {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: 8px;
}

.commitment-item h4 {
    font-size: 16px;
    color: var(--text);
    margin-bottom: 8px;
}

.commitment-item p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

/* 加入我们 */
.join-info h3 {
    font-size: 20px;
    color: var(--text);
    margin-bottom: 16px;
}

.join-info h4 {
    font-size: 16px;
    color: var(--text);
    margin: 20px 0 10px;
}

.join-info p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 12px;
}

.join-info ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.join-info ul li {
    list-style: disc;
    padding: 6px 0;
    color: var(--text);
    font-size: 14px;
}

.join-contact {
    margin-top: 24px !important;
    padding: 16px 20px;
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    border-radius: 8px;
    color: var(--primary) !important;
    font-weight: 500;
    text-align: center;
}

/* 响应式 - 标签页 */
@media (max-width: 768px) {
    .about-tabs .tab-nav {
        flex-wrap: wrap;
    }
    
    .about-tabs .tab-item {
        flex: 1;
        text-align: center;
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .about-tabs .tab-content {
        padding: 24px 20px;
    }
    
    .about-list {
        grid-template-columns: 1fr;
    }
    
    .credentials-gallery,
    .service-commitments {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* ========== 我的发布列表样式 ========== */
.my-list { display: flex; flex-direction: column; gap: 16px; }

.my-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 18px 20px;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.my-item:hover { box-shadow: 0 2px 12px rgba(0,0,0,0.08); border-color: var(--primary); }

.my-item-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 10px; gap: 12px;
}
.my-item-title {
    font-size: 16px; font-weight: 600; color: var(--text);
    text-decoration: none; flex: 1;
}
.my-item-title:hover { color: var(--primary); }

.my-item-meta {
    display: flex; flex-wrap: wrap; gap: 14px;
    font-size: 13px; color: var(--text-light); margin-bottom: 8px;
}
.my-item-meta .price { color: #e74c3c; font-weight: 600; }

.my-item-desc {
    font-size: 14px; color: var(--text-light); line-height: 1.6;
    margin-bottom: 12px;
}

.my-item-footer {
    display: flex; gap: 10px;
}

.btn-sm {
    padding: 4px 12px; font-size: 13px; border-radius: 4px;
}
.btn-danger {
    background: #e74c3c; color: #fff; border: none;
}
.btn-danger:hover { background: #c0392b; }
