/* 基础样式重置和全局设置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', sans-serif;
    color: #333;
    background-color: #f5f5f5;
    line-height: 1.6;
}

/* 容器样式 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 图片自适应样式 */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 头部导航栏样式 */
.header {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 15px 0;
}

/* 让导航和联系电话部分靠右 */
.header-content > :not(.logo) {
    margin-left: auto;
}

/* 行业咨询独立页（作用域：industry-page） */
.industry-page {
    min-height: 100vh;
    background: #fff7ed;
    display: flex;
    flex-direction: column;
}

.industry-page .container {
    max-width: 1024px;
}

.industry-page .consult-topbar {
    background: #fff;
    border-bottom: 1px solid #f1f1f1;
    position: sticky;
    top: 0;
    z-index: 100;
}

.industry-page .consult-topbar-inner {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.industry-page .consult-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.industry-page .consult-brand-mark {
    width: 34px;
    height: 34px;
    background: #ea580c;
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    letter-spacing: 1px;
}

.industry-page .consult-brand-title {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
}

.industry-page .consult-brand-name {
    font-size: 18px;
    font-weight: 800;
    color: #111827;
    white-space: nowrap;
}

.industry-page .consult-badge {
    font-size: 12px;
    color: #6b7280;
    background: #f3f4f6;
    padding: 4px 10px;
    border-radius: 999px;
    white-space: nowrap;
}

.industry-page .consult-topbar-right {
    display: flex;
    align-items: center;
    gap: 28px;
}

.industry-page .consult-link {
    color: #4b5563;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.industry-page .consult-link:hover {
    color: #ea580c;
}

.industry-page .consult-avatar {
    width: 34px;
    height: 34px;
    background: #f3f4f6;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
}

.industry-page .consult-banner {
    background: #ea580c;
    color: #fff;
    padding: 44px 0;
}

.industry-page .consult-banner-title {
    font-size: 34px;
    line-height: 1.2;
    margin: 0 0 10px 0;
    font-weight: 900;
}

.industry-page .consult-banner-subtitle {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
}

.industry-page .industry-content {
    padding: 0;
    flex: 1;
}

.industry-page .consult-main {
    padding: 22px 20px 34px;
    margin-top: -18px;
}

.industry-page .consult-tabs {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    border: 1px solid #f3f4f6;
    padding: 8px;
    display: flex;
    gap: 10px;
    overflow-x: auto;
}

.industry-page .consult-tab {
    flex: 1;
    min-width: 140px;
    border: none;
    background: transparent;
    color: #6b7280;
    font-weight: 800;
    font-size: 14px;
    padding: 12px 14px;
    border-radius: 12px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
}

.industry-page .consult-tab:hover {
    background: #f9fafb;
    color: #374151;
}

.industry-page .consult-tab.active {
    background: #ea580c;
    color: #fff;
    box-shadow: 0 6px 14px rgba(234, 88, 12, 0.35);
}

.industry-page .consult-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 18px 0 14px;
}

.industry-page .consult-section-title {
    margin: 0;
    font-size: 18px;
    font-weight: 900;
    color: #374151;
    padding-left: 12px;
    border-left: 4px solid #ea580c;
}

.industry-page .consult-search {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    padding: 9px 14px;
    min-width: 260px;
    position: relative;
}

.industry-page .consult-search i {
    color: #9ca3af;
    font-size: 14px;
}

.industry-page .consult-search input {
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    font-size: 13px;
}

.industry-page .consult-search.is-disabled {
    opacity: 0.55;
    background: #f9fafb;
}

.industry-page .consult-search.is-disabled input {
    cursor: not-allowed;
}

.industry-page .consult-search-results {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    box-shadow: 0 14px 32px rgba(17, 24, 39, 0.12);
    overflow: hidden;
    z-index: 20;
}

.industry-page .consult-search-item {
    display: block;
    text-decoration: none;
    padding: 10px 12px;
    color: #111827;
    font-weight: 800;
    font-size: 13px;
    line-height: 1.4;
}

.industry-page .consult-search-item + .consult-search-item {
    border-top: 1px solid #f3f4f6;
}

.industry-page .consult-search-item:hover {
    background: #fff7ed;
    color: #ea580c;
}

.industry-page .consult-search-item-title {
    display: -webkit-box;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.industry-page .consult-empty {
    padding: 18px 0 0;
}

.industry-page .consult-empty-card {
    background: #fff;
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    padding: 28px 22px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    display: grid;
    gap: 10px;
    justify-items: start;
}

.industry-page .consult-empty-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff7ed;
    border: 1px solid #ffedd5;
    color: #ea580c;
    font-size: 18px;
}

.industry-page .consult-empty-title {
    font-size: 18px;
    font-weight: 900;
    color: #111827;
}

.industry-page .consult-empty-desc {
    color: #6b7280;
    font-size: 13px;
    line-height: 1.6;
}

.industry-page .consult-empty-tip {
    margin-top: 6px;
    padding: 10px 12px;
    border-radius: 12px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    color: #374151;
    font-size: 13px;
    line-height: 1.6;
    font-weight: 700;
}

.industry-page .consult-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.industry-page .consult-card {
    display: grid;
    grid-template-columns: 160px 1fr auto;
    gap: 16px;
    align-items: center;
    text-decoration: none;
    background: #fff;
    border: 1px solid #f3f4f6;
    border-radius: 14px;
    padding: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.industry-page .consult-card:hover {
    transform: translateY(-2px);
    border-color: #fed7aa;
    box-shadow: 0 10px 22px rgba(0,0,0,0.10);
}

.industry-page .consult-card-thumb {
    height: 96px;
    border-radius: 12px;
    background:
      linear-gradient(135deg, rgba(234, 88, 12, 0.18) 0%, rgba(249, 115, 22, 0.08) 100%),
      url('https://picsum.photos/seed/chicken1/800/600');
    background-size: cover;
    background-position: center;
    border: 1px solid #f3f4f6;
}

.industry-page .consult-card-body {
    min-width: 0;
}

.industry-page .consult-card-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}

.industry-page .consult-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 800;
    color: #ea580c;
    background: #fff7ed;
    border: 1px solid #ffedd5;
    padding: 4px 10px;
    border-radius: 999px;
    white-space: nowrap;
}

.industry-page .consult-card-title {
    font-weight: 900;
    color: #111827;
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 6px;
}

.industry-page .consult-card-desc {
    color: #6b7280;
    font-size: 13px;
    line-height: 1.6;
}

.industry-page .consult-card-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 10px;
    color: #9ca3af;
    font-size: 12px;
}

.industry-page .consult-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.industry-page .consult-card-action {
    color: #ea580c;
    font-weight: 900;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    padding-right: 6px;
}

.industry-page .consult-card:hover .consult-card-action {
    color: #c2410c;
}

@media (max-width: 768px) {
    .industry-page .consult-card {
        grid-template-columns: 112px 1fr;
        grid-template-rows: auto auto;
        align-items: start;
    }
    .industry-page .consult-card-action {
        grid-column: 2 / 3;
        justify-self: start;
        padding-right: 0;
        margin-top: 8px;
    }
    .industry-page .consult-card-thumb {
        height: 86px;
    }
    .industry-page .consult-card-meta {
        flex-wrap: wrap;
        row-gap: 6px;
    }
}

.industry-page .consult-banner-compact {
    padding: 28px 0;
}

.industry-page .consult-banner.consult-banner-compact {
    background: transparent;
    padding: 18px 0 0;
}

.industry-page .case-hero {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0,0,0,0.18);
    border: 1px solid rgba(255,255,255,0.55);
    background-image: url('https://picsum.photos/seed/chicken1/800/600');
    background-size: cover;
    background-position: center;
    min-height: 220px;
}

.industry-page .case-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 55%, rgba(0,0,0,0.10) 100%);
}

.industry-page .case-hero-inner {
    position: relative;
    padding: 44px 22px 22px;
    color: #fff;
}

.industry-page .case-hero-title {
    margin: 0 0 14px 0;
    font-size: 30px;
    line-height: 1.25;
    font-weight: 900;
}

.industry-page .case-hero-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.industry-page .case-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.22);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    font-size: 12px;
    font-weight: 800;
    color: #fff;
}

.industry-page .case-hero-pill i {
    opacity: 0.95;
}

@media (max-width: 768px) {
    .industry-page .consult-banner.consult-banner-compact { padding: 14px 0 0; }
    .industry-page .case-hero { min-height: 200px; }
    .industry-page .case-hero-inner { padding: 36px 16px 18px; }
    .industry-page .case-hero-title { font-size: 24px; }
}

.industry-page .case-detail {
    padding-top: 6px;
}

.industry-page .case-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 18px;
    align-items: start;
}

.industry-page .case-detail-aside {
    position: sticky;
    top: 86px;
}

.industry-page .case-ops {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(243, 244, 246, 0.9);
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(17, 24, 39, 0.10);
    padding: 18px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.industry-page .case-ops-title {
    font-size: 22px;
    font-weight: 900;
    color: #111827;
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.industry-page .case-ops-btn {
    width: 100%;
    border-radius: 14px;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    background: #fff;
    color: #111827;
    font-weight: 900;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease, background .2s ease;
}

.industry-page .case-ops-btn i {
    font-size: 18px;
}

.industry-page .case-ops-btn.primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-color: rgba(37, 99, 235, 0.25);
    color: #fff;
    box-shadow: 0 10px 22px rgba(37, 99, 235, 0.25);
}

.industry-page .case-ops-btn.primary:hover {
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.30);
}

.industry-page .case-ops-btn.primary i {
    color: rgba(255, 255, 255, 0.95);
}

.industry-page .case-ops-btn + .case-ops-btn {
    margin-top: 12px;
}

.industry-page .case-ops-btn:hover {
    transform: translateY(-1px);
    border-color: #93c5fd;
    box-shadow: 0 10px 22px rgba(0,0,0,0.10);
}

.industry-page .case-ops-btn:active {
    transform: translateY(0);
}

.industry-page .case-section-title {
    font-size: 18px;
    font-weight: 900;
    color: #374151;
    padding-left: 12px;
    border-left: 4px solid #ea580c;
    margin: 2px 0 12px;
}

.industry-page .case-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
}

.industry-page .case-modal.is-open {
    display: block;
}

.industry-page .case-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.industry-page .case-modal-panel {
    position: relative;
    width: min(560px, calc(100vw - 32px));
    margin: 14vh auto 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    overflow: hidden;
}

.industry-page .case-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid #f3f4f6;
}

.industry-page .case-modal-title {
    font-weight: 900;
    color: #111827;
    font-size: 16px;
}

.industry-page .case-modal-close {
    border: none;
    background: transparent;
    cursor: pointer;
    color: #6b7280;
    width: 36px;
    height: 36px;
    border-radius: 10px;
}

.industry-page .case-modal-close:hover {
    background: #f3f4f6;
}

.industry-page .case-modal-body {
    padding: 16px;
}

.industry-page .case-share-row {
    display: grid;
    grid-template-columns: 1fr 96px;
    gap: 10px;
}

.industry-page .case-share-row input {
    width: 100%;
    padding: 12px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font-size: 13px;
    outline: none;
}

.industry-page .case-share-copy {
    border: none;
    border-radius: 12px;
    background: #ea580c;
    color: #fff;
    font-weight: 900;
    cursor: pointer;
}

.industry-page .case-share-copy:hover {
    background: #c2410c;
}

.industry-page .case-share-copy.is-success {
    background: #16a34a;
}

.industry-page .case-share-copy.is-error {
    background: #dc2626;
}

.industry-page .case-share-hint {
    margin-top: 10px;
    color: #6b7280;
    font-size: 12px;
}

.industry-page .case-share-hint.is-success {
    color: #16a34a;
    font-weight: 800;
}

.industry-page .case-share-hint.is-error {
    color: #dc2626;
    font-weight: 800;
}

@media (max-width: 992px) {
    .industry-page .case-detail-layout {
        grid-template-columns: 1fr;
    }
    .industry-page .case-detail-aside {
        position: static;
    }
}

.industry-page .case-detail-card {
    background: #fff;
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    padding: 18px;
}

.industry-page .case-detail-summary {
    background: #fff7ed;
    border: 1px solid #ffedd5;
    border-left: 4px solid #ea580c;
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 14px;
    color: #374151;
    font-size: 14px;
    line-height: 1.8;
}

.industry-page .case-detail-summary p {
    margin: 0;
}

.industry-page .case-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.industry-page .case-metric-card {
    background: #f9fafb;
    border: 1px solid #f3f4f6;
    border-radius: 14px;
    padding: 14px;
    position: relative;
    overflow: hidden;
}

.industry-page .case-metric-card-after {
    background: #fff7ed;
    border-color: #ffedd5;
}

.industry-page .case-metric-badge {
    position: absolute;
    top: 0;
    right: 0;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 800;
    background: #e5e7eb;
    color: #374151;
    border-bottom-left-radius: 14px;
}

.industry-page .case-metric-badge-after {
    background: #22c55e;
    color: #fff;
}

.industry-page .case-metric-title {
    color: #6b7280;
    font-size: 13px;
    margin-bottom: 10px;
}

.industry-page .case-metric-main {
    font-size: 28px;
    font-weight: 900;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.industry-page .case-metric-tip {
    font-size: 12px;
    font-weight: 800;
    background: #dcfce7;
    color: #166534;
    padding: 3px 8px;
    border-radius: 999px;
}

.industry-page .case-metric-sub {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    color: #6b7280;
    font-size: 12px;
}

.industry-page .case-metric-sub strong {
    font-size: 20px;
    color: #ea580c;
}

.industry-page .case-metric-up {
    color: #16a34a;
}

.industry-page .case-detail-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.industry-page .case-detail-point {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.industry-page .case-detail-point-index {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: #ea580c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    flex: 0 0 auto;
    margin-top: 2px;
}

.industry-page .case-detail-point-title {
    font-weight: 900;
    color: #111827;
    margin-bottom: 4px;
}

.industry-page .case-detail-point-desc {
    color: #4b5563;
    font-size: 13px;
    line-height: 1.8;
}

.industry-page .case-detail-actions {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #f3f4f6;
    display: flex;
    justify-content: flex-start;
}

.industry-page .case-detail-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #ea580c;
    font-weight: 800;
    font-size: 14px;
}

.industry-page .case-detail-back:hover {
    color: #c2410c;
}

.industry-page .case-list h2 {
    display: none;
}

.industry-page .case-item.featured {
    border-left: none;
    overflow: hidden;
}

.industry-page .case-header {
    padding: 16px 18px;
    margin: -25px -25px 18px -25px;
    background: linear-gradient(90deg, #ea580c 0%, #f97316 100%);
    color: #fff;
}

.industry-page .case-header h3 {
    color: #fff;
}

.industry-page .pin-icon {
    color: #fde68a;
}

.industry-page .case-date {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.industry-page .comparison-item {
    border: 1px solid #f3f4f6;
}

.industry-page .comparison-item:nth-child(2) {
    background: #fff7ed;
    border-color: #ffedd5;
}

.industry-page .status.after {
    background: #22c55e;
    color: #fff;
}

.industry-page .consult-footer {
    background: #fff;
    color: #6b7280;
    border-top: 1px solid #f1f1f1;
    padding: 18px 0;
}

.industry-page .consult-footer p {
    margin: 0;
    text-align: center;
    font-size: 12px;
}

/* 行业咨询页面样式 */
.industry-banner {
    background-color: #ff6b00;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.industry-banner h1 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: bold;
}

.industry-banner p {
    font-size: 18px;
    margin: 0;
}

.industry-content {
    padding: 40px 0;
}

/* 导航标签样式 */
.industry-tabs {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.tab-btn {
    background-color: transparent;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    color: #666;
    cursor: pointer;
    margin-right: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    color: #ff6b00;
}

.tab-btn.active {
    color: #ff6b00;
    font-weight: bold;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ff6b00;
}

/* 搜索框样式 */
.search-container {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 30px;
}

.search-box {
    display: flex;
    width: 300px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.search-box input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    outline: none;
    font-size: 14px;
}

.search-btn {
    background-color: #ff6b00;
    color: white;
    border: none;
    padding: 0 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-btn:hover {
    background-color: #e65e00;
}

/* 案例列表样式 */
.case-list h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.case-item {
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.case-item.featured {
    border-left: 4px solid #ff6b00;
}

.case-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.pin-icon {
    color: #ff6b00;
    margin-right: 10px;
    font-size: 14px;
}

.case-header h3 {
    font-size: 18px;
    margin: 0;
    flex: 1;
    color: #333;
}

.case-date {
    background-color: #f5f5f5;
    color: #666;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
}

/* 对比表格样式 */
.comparison-grid {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.comparison-item {
    flex: 1;
    background-color: #fafafa;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #e0e0e0;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.item-header h4 {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.status {
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 10px;
}

.status.before {
    background-color: #f0f0f0;
    color: #666;
}

.status.after {
    background-color: #e6f7ff;
    color: #1890ff;
}

.item-value {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.cost-down {
    font-size: 14px;
    color: #52c41a;
    margin-left: 10px;
}

.item-metric {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.metric-label {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.metric-value {
    font-size: 24px;
    font-weight: bold;
    color: #ff6b00;
}

.metric-value.increase {
    color: #52c41a;
    display: flex;
    align-items: center;
}

.metric-value.increase::before {
    content: '↑';
    margin-right: 5px;
    font-size: 18px;
}

/* 成效总结样式 */
.case-summary {
    background-color: #fff8f0;
    border: 1px solid #ffe6cc;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.case-summary h4 {
    margin: 0 0 10px 0;
    color: #ff6b00;
    font-size: 16px;
}

.case-summary p {
    margin: 0;
    line-height: 1.6;
    color: #333;
}

.logo img {
    max-height: 90px;
}

/* 活动页面特定样式 */
.activities-page .page-header .logo-area .logo {
    max-height: 120px;
    width: auto;
}

/* 导航菜单样式 */
.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: 20px;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: #ff6b35;
}

/* 移动端菜单按钮 */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
}

/* 联系电话 */
.phone-number {
    display: flex;
    align-items: center;
    color: #ff6b35;
    font-size: 18px;
    font-weight: bold;
    margin-left: 30px;
}

.phone-number i {
    margin-right: 8px;
}

/* 轮播图样式 */
.banner {
    margin-top: 90px; /* 为固定头部留出空间 */
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 500px;
    height: 500px; /* 确保有明确的高度 */
    background-color: #f5f5f5; /* 添加背景色，防止图片未加载时完全空白 */
}

.banner-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.banner-item {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-item.active {
    opacity: 1;
    z-index: 10;
}

.banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; /* 确保图片不会有额外的空白 */
}

/* 轮播指示器 */
.banner-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
    display: flex;
    gap: 10px;
}

.banner-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-dots span.active {
    background-color: #ff6b35;
    width: 30px;
    border-radius: 6px;
}

/* 品牌优势部分 */
.advantages {
    padding: 80px 0;
    background-color: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    color: #333;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #ff6b35;
}

.advantages-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.advantage-item {
    width: 23%;
    text-align: center;
    padding: 30px 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
    font-size: 48px;
    color: #ff6b35;
    margin-bottom: 20px;
}

.advantage-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

/* 产品展示部分 */
.products {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.products-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 -15px;
}

.product-item {
    width: calc(33.333% - 30px);
    margin: 0 15px 30px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-img {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-item:hover .product-img img {
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-name {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.product-desc {
    color: #666;
    font-size: 14px;
}

/* 面包屑导航 */
.breadcrumb {
    padding: 20px 0;
    background-color: #f5f5f5;
    margin-top: 90px; /* Adjust for fixed header */
    font-size: 14px;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #ff6b35;
}

.breadcrumb span {
    color: #999;
}

/* 产品特性 */
.product-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.product-features span {
    font-size: 12px;
    color: #ff6b35;
    background-color: rgba(255, 107, 53, 0.1);
    padding: 4px 10px;
    border-radius: 12px;
}

/* 加盟优势部分 */
.join-advantage {
    padding: 80px 0;
    background-color: #fff;
}

.join-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.join-text {
    width: 50%;
    padding-right: 60px;
}

.join-image {
    width: 50%;
}

.join-image img {
    border-radius: 8px;
}

.join-list {
    margin-top: 30px;
}

.join-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    list-style: none;
}

.join-list li i {
    color: #ff6b35;
    font-size: 20px;
    margin-right: 15px;
    margin-top: 3px;
}

/* 门店展示部分 */
.stores {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.store-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.store-img {
    height: 300px;
    overflow: hidden;
}

.store-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-info {
    padding: 20px;
}

.store-name {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

/* 联系表单部分 */
.contact {
    padding: 80px 0;
    background-color: #fff;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
}

.contact-info {
    width: 40%;
    padding-right: 60px;
}

.contact-form {
    width: 60%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-item i {
    color: #ff6b35;
    font-size: 20px;
    margin-right: 15px;
    margin-top: 3px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.submit-btn {
    background-color: #ff6b35;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #e55a28;
}

/* 页脚样式 */
.footer {
    background-color: #333;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-column {
    width: 25%;
    padding: 0 20px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-height: 80px;
}

.footer-links h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #ff6b35;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b35;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    color: #ff6b35;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 14px;
    color: #999;
}

/* 活动列表样式 */
.activities .section-title h2 {
    color: #333;
}

.activity-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.activity-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    padding: 18px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.activity-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.activity-name {
    font-size: 18px;
    color: #222;
}

.level-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
}

.level-high { background: #ffe5e5; color: #d7263d; }
.level-medium { background: #fff3e0; color: #ff8f00; }
.level-low { background: #e6f4ea; color: #2e7d32; }

.activity-link {
    display: inline-block;
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
}

.activity-link:hover { color: #e55a28; }

.state-tip { color: #666; text-align: center; margin: 20px 0; }
.state-tip.error { color: #d7263d; }

/* 响应式布局 */
@media (max-width: 1200px) {
    .advantage-item {
        width: 48%;
        margin-bottom: 30px;
    }
    
    .join-text,
    .join-image,
    .contact-info,
    .contact-form {
        width: 100%;
        padding-right: 0;
    }
    
    .join-text {
        margin-bottom: 40px;
    }
    
    .contact-info {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
    }
    
    .nav.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-item {
        margin: 10px 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .phone-number {
        display: none;
    }
    
    .banner {
        min-height: 300px;
    }
    
    .product-item {
        width: calc(50% - 30px);
    }
    
    .stores-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-column {
        width: 50%;
        margin-bottom: 40px;
    }

    .activity-list { grid-template-columns: 1fr; }
}

/* Activities 页面定制：隐藏导航并压缩上下空白 */
.activities-page .nav,
.activities-page .menu-toggle,
.activities-page .phone-number { display: none !important; }

.activities-page { min-height: 100vh; display: flex; flex-direction: column; }
.activities-page .activities { flex: 1; margin-top: 72px; padding: 24px 0 24px; }
.activities-page .footer { padding: 12px 0; }
.activities-page .copyright { padding-top: 0; border-top: none; }

/* Activities 页面全新UI样式（作用域到 activities-page） */
.activities-page {
  --color-primary: #E94C3D;
  --color-text-dark: #333;
  --color-text-light: #666;
  --color-bg-light: #f7f9fc;
  --color-card-bg: #fff;
  --color-shadow: rgba(0,0,0,0.1);
  --tag-urgent: #E94C3D;
  --tag-required: #FFC107;
  --tag-optional: #4CAF50;
  --tag-disabled: #9e9e9e;
  --tag-new: #03A9F4;
  --theme-red: #FA8072;
  --theme-orange: #FFCC80;
  --theme-green: #A5D6A7;
  --theme-blue: #81D4FA;
  --theme-grey: #e0e0e0;
}

.activities-page { background-color: var(--color-bg-light); }
.activities-page .page-header { text-align: center; padding: 40px 20px 20px; background: var(--color-card-bg); border-bottom: 1px solid #eee; margin-bottom: 30px; }
.activities-page .logo { width: 150px; }
.activities-page .page-title { font-size: 2.2em; font-weight: 700; color: var(--color-text-dark); margin: 0; padding-bottom: 10px; position: relative; display: inline-block; }
.activities-page .page-title::after { content: ''; display: block; width: 60px; height: 4px; background: var(--color-primary); margin: 10px auto 0; border-radius: 2px; }

.activities-page .activity-container { max-width: 1200px; margin: 0 auto; padding: 0 20px 50px; display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; }
.activities-page .activity-card { background: var(--color-card-bg); border-radius: 12px; box-shadow: 0 6px 16px var(--color-shadow); transition: transform .3s ease, box-shadow .3s ease; display: flex; flex-direction: column; overflow: hidden; }
.activities-page .activity-card:not(.is-disabled):hover { transform: translateY(-8px); box-shadow: 0 12px 25px rgba(0,0,0,0.2); }
/* 删除图片相关样式 */
.activities-page .card-image-placeholder { display: none; }
.activities-page .card-image { display: none; }

/* 新的顶部标题布局 */
.activities-page .card-header-top {
    padding: 20px 25px 15px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #D64132 100%);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    min-height: 80px;
}

.activities-page .activity-title {
    font-size: 1.5em;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    flex-grow: 1;
    padding-right: 15px;
    color: white;
}

.activities-page .activity-tag {
    font-size: 0.8em;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 15px;
    white-space: nowrap;
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.activities-page .activity-tag i {
    margin-right: 5px;
}

/* 活动时间显示 */
.activities-page .activity-time {
    padding: 20px 25px;
    background: var(--color-bg-light);
    border-left: 4px solid var(--color-primary);
}

.activities-page .time-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.95em;
    color: var(--color-text-light);
}

.activities-page .time-item:last-child {
    margin-bottom: 0;
}

.activities-page .time-item i {
    margin-right: 10px;
    width: 16px;
    color: var(--color-primary);
}

.activities-page .card-content {
    padding: 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.activities-page .card-action {
    padding: 20px 25px;
    text-align: right;
    background: white;
    border-top: 1px solid #f0f0f0;
}
.activities-page .theme-red { background-color: var(--theme-red); }
.activities-page .theme-orange { background-color: var(--theme-orange); }
.activities-page .theme-green { background-color: var(--theme-green); }
.activities-page .theme-blue { background-color: var(--theme-blue); }
.activities-page .theme-grey { background-color: var(--theme-grey); }
.activities-page .card-content { padding: 20px 25px 25px; display: flex; flex-direction: column; flex-grow: 1; }
.activities-page .card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
.activities-page .activity-title { font-size: 1.4em; font-weight: 700; color: var(--color-text-dark); margin: 0; line-height: 1.2; flex-grow: 1; padding-right: 10px; }
.activities-page .activity-tag { font-size: .8em; font-weight: 600; padding: 3px 8px; border-radius: 4px; white-space: nowrap; align-self: flex-start; }
.activities-page .activity-tag i { margin-right: 5px; }
.activities-page .tag-urgent { background: var(--tag-urgent); color: #fff; }
.activities-page .tag-required { background: var(--tag-required); color: var(--color-text-dark); }
.activities-page .tag-optional { background: var(--tag-optional); color: #fff; }
.activities-page .tag-new { background: var(--tag-new); color: #fff; }
.activities-page .tag-disabled-icon { background: var(--tag-disabled); color: #fff; }
.activities-page .card-action { border-top: 1px solid #f0f0f0; padding-top: 20px; text-align: right; }
.activities-page .action-link { text-decoration: none; font-weight: 600; font-size: 1em; padding: 8px 15px; border-radius: 8px; transition: all .3s ease; display: inline-flex; align-items: center; justify-content: center; }
.activities-page .action-link i { margin-right: 8px; font-size: .9em; }
.activities-page .primary-button { background: var(--color-primary); color: #fff; box-shadow: 0 4px 8px rgba(233,76,61,.4); }
.activities-page .primary-button:hover { background: #D64132; box-shadow: 0 6px 12px rgba(233,76,61,.6); }
.activities-page .is-featured { box-shadow: 0 8px 20px rgba(233,76,61,.3); }

@media (max-width: 768px) {
  .activities-page .activity-container { grid-template-columns: 1fr; padding: 0 15px 30px; }
  .activities-page .page-title { font-size: 1.8em; }
  .activities-page .card-action { text-align: center; }
}

@media (max-width: 480px) {
    .section-title h2 {
        font-size: 28px;
    }
    
    .advantage-item {
        width: 100%;
    }
    
    .product-item {
        width: calc(100% - 30px);
    }
    
    .footer-column {
        width: 100%;
    }
}

/* 关于我们页面样式 */
.about-content {
    padding: 60px 0;
    background-color: #fff;
}

.about-intro {
    margin-bottom: 60px;
    line-height: 1.8;
}

.about-intro h2,
.about-advantages h2,
.about-history h2 {
    font-size: 28px;
    margin-bottom: 30px;
    position: relative;
    padding-left: 15px;
    border-left: 4px solid #ff6b35;
}

.about-intro p {
    margin-bottom: 20px;
    color: #555;
    text-indent: 2em;
}

/* 核心优势 */
.about-advantages {
    margin-bottom: 60px;
}

.advantages-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.about-advantages .advantage-item {
    flex: 1;
    width: auto;
    padding: 40px 20px;
}

/* 发展历程 - 时间轴 */
.about-history {
    margin-bottom: 40px;
}

.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #ff6b35;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-date {
    width: 45%;
    text-align: right;
    font-size: 24px;
    font-weight: bold;
    color: #ff6b35;
    padding-right: 40px;
    position: relative;
}

.timeline-item:nth-child(even) .timeline-date {
    text-align: left;
    padding-right: 0;
    padding-left: 40px;
}

.timeline-date::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -46px;
    width: 14px;
    height: 14px;
    background-color: #fff;
    border: 3px solid #ff6b35;
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.timeline-item:nth-child(even) .timeline-date::after {
    right: auto;
    left: -46px;
}

.timeline-content {
    width: 45%;
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    position: relative;
}

.timeline-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.timeline-content p {
    color: #666;
    font-size: 14px;
}

@media (max-width: 768px) {
    .advantages-grid {
        flex-direction: column;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
        margin-left: 40px;
    }
    
    .timeline-date,
    .timeline-item:nth-child(even) .timeline-date {
        width: 100%;
        text-align: left;
        padding: 0;
        margin-bottom: 10px;
        font-size: 20px;
    }
    
    .timeline-date::after,
    .timeline-item:nth-child(even) .timeline-date::after {
        left: -27px;
        right: auto;
    }
    
    .timeline-content {
        width: 100%;
    }
}

/* 加盟流程样式 */
.join-process {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 50px;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50px;
    right: 50px;
    height: 2px;
    background-color: #ddd;
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 14%;
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: #fff;
    border: 2px solid #ff6b35;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: #ff6b35;
    transition: all 0.3s ease;
}

.process-step:hover .step-icon {
    background-color: #ff6b35;
    color: #fff;
    transform: scale(1.1);
}

.step-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.step-desc {
    font-size: 14px;
    color: #666;
}

/* 加盟条件 */
.join-requirements {
    padding: 60px 0;
    background-color: #fff;
}

.requirements-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.requirement-item {
    width: calc(33.333% - 20px);
    background-color: #fff;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
}

.requirement-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: #ff6b35;
}

.requirement-icon {
    font-size: 40px;
    color: #ff6b35;
    margin-bottom: 20px;
}

.requirement-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.requirement-item p {
    color: #666;
}

@media (max-width: 992px) {
    .process-steps {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .process-step {
        width: 30%;
        margin-bottom: 30px;
    }
    
    .requirement-item {
        width: calc(50% - 15px);
    }
}

@media (max-width: 576px) {
    .process-step {
        width: 100%;
    }
    
    .requirement-item {
        width: 100%;
    }
}

/* 门店经营分页面样式 */
.store-management-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

.store-management-section .section-title {
    text-align: center;
    font-size: 2.5em;
    color: #333;
    margin-bottom: 40px;
    font-weight: 700;
    padding-top: 20px;
}

.management-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.score-overview {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.score-overview h2 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-size: 1.8em;
}

.score-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.score-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transition: transform 0.3s ease;
}

.score-card:hover {
    transform: translateY(-5px);
}

.score-card h3 {
    font-size: 1.1em;
    margin-bottom: 15px;
    opacity: 0.9;
}

.score-number {
    font-size: 3em;
    font-weight: bold;
    margin-bottom: 10px;
}

.score-label {
    font-size: 1em;
    opacity: 0.8;
}

.management-tips {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.management-tips h2 {
    color: #333;
    margin-bottom: 25px;
    font-size: 1.8em;
}

.tips-list {
    display: grid;
    gap: 20px;
}

.tip-item {
    padding: 25px;
    border-left: 4px solid #667eea;
    background: #f8f9ff;
    border-radius: 8px;
}

.tip-item h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.tip-item p {
    color: #666;
    line-height: 1.6;
}

.performance-metrics {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.performance-metrics h2 {
    color: #333;
    margin-bottom: 30px;
    font-size: 1.8em;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.metric-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #f8f9ff;
    border-radius: 10px;
    border: 2px solid #e3e8ff;
}

.metric-label {
    font-weight: 600;
    color: #555;
}

.metric-value {
    font-size: 1.3em;
    font-weight: bold;
    color: #667eea;
}

@media (max-width: 768px) {
    .store-management-section {
        padding: 60px 0;
    }
    
    .store-management-section .section-title {
        font-size: 2em;
    }
    
    .score-cards {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .score-card {
        padding: 20px 15px;
    }
    
    .score-number {
        font-size: 2.5em;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
}
