@charset "utf-8";

/* ========== 移动端顶部导航 ========== */
.m-top { display:none; }
@media screen and (max-width: 768px) {
    .m-top { display:block; }
    body { overflow-x: clip; overflow-x: hidden\9; }
    html { overflow-x: clip; overflow-x: hidden\9; }
}

.m-top-bar {
    position: fixed !important;
    top: 0; left: 0; right: 0;
    bottom: auto;
    width: 100%;
    z-index: 9999;
    background: #1a1a2e;
    box-shadow: 0 1px 6px rgba(0,0,0,.25);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 48px;
    padding: 0 14px;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: none !important;
    transform: none !important;
    animation: none !important;
}
.m-top-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
    white-space: nowrap;
}
.m-top-logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(102,126,234,.3);
    border-radius: 6px;
    font-family: "Arial Black", Arial, sans-serif;
    font-weight: 900;
    font-size: 12px;
    color: #667eea;
    padding: 3px 8px;
    letter-spacing: 0;
}
.m-top-logo-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    vertical-align: middle;
    position: relative;
    top: -1px;
}

.m-menu-check { display: none; }
.m-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    cursor: pointer;
    position: relative;
    z-index: 10000;
    -webkit-tap-highlight-color: transparent;
    flex-shrink: 0;
}
.m-menu-btn span,
.m-menu-btn span::before,
.m-menu-btn span::after {
    display: block;
    width: 24px;
    height: 3px;
    background: #667eea;
    border-radius: 2px;
    transition: all .25s ease;
}
.m-menu-btn span { position: relative; }
.m-menu-btn span::before,
.m-menu-btn span::after {
    content: '';
    position: absolute;
    left: 0;
}
.m-menu-btn span::before { top: -7px; }
.m-menu-btn span::after  { top: 7px; }

.m-menu-check:checked ~ .m-menu-btn span { background: transparent; }
.m-menu-check:checked ~ .m-menu-btn span::before {
    top: 0; transform: rotate(45deg);
}
.m-menu-check:checked ~ .m-menu-btn span::after {
    top: 0; transform: rotate(-45deg);
}

.m-menu-drop {
    position: fixed;
    top: 48px;
    left: 0; right: 0;
    background: rgba(26,26,46,.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9998;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
}
.m-menu-check:checked ~ .m-menu-drop {
    max-height: 420px;
    padding: 8px 0;
}
.m-menu-drop a {
    display: block;
    color: rgba(255,255,255,.9);
    text-decoration: none;
    font-size: 16px;
    letter-spacing: .03em;
    padding: 19px 28px;
    border-bottom: 1px solid rgba(255,255,255,.04);
    transition: background .2s, padding-left .2s;
}
.m-menu-drop a:last-child { border-bottom: none; }
.m-menu-drop a:hover { background: rgba(102,126,234,.08); }
.m-menu-drop a:active,
.m-menu-drop a:focus { background: rgba(102,126,234,.12); padding-left: 34px; }

.m-top-placeholder { display: none; }
@media screen and (max-width: 768px) {
    .m-top-placeholder { display: block; height: 48px; }
}

/* ========== 案例解析区域 ========== */
.case-analysis-wrap {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f8ff 0%, #f0e8ff 100%);
}
.case-analysis-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 案例解析头部 */
.case-analysis-header-box {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background: rgba(255,255,255,0.8);
    border-radius: 20px;
    box-shadow: 0 6px 30px rgba(102,126,234,0.12);
}
.case-analysis-header-title {
    font-size: 30px;
    color: #667eea;
    margin: 0 0 15px 0;
    font-weight: 700;
}
.case-analysis-header-desc {
    color: #764ba2;
    font-size: 20px;
    margin: 0;
}

/* 区块标题 */
.case-section-block {
    margin-bottom: 60px;
}
.case-section-title {
    font-size: 28px;
    color: #667eea;
    margin-bottom: 30px;
    padding-left: 25px;
    border-left: 5px solid #667eea;
}

/* 分析卡片网格 */
.analysis-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}
.analysis-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 6px 25px rgba(102,126,234,0.1);
    border: 2px solid rgba(102,126,234,0.15);
}
.analysis-card-title {
    font-size: 22px;
    color: #667eea;
    margin: 0 0 20px 0;
    font-weight: 700;
}
.analysis-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.analysis-list li {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.6;
    font-size: 17px;
}
.analysis-list li strong {
    color: #764ba2;
}
.analysis-insight {
    background: #f8f6ff;
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
}
.analysis-insight p {
    font-size: 16px;
    color: #764ba2;
    margin: 0;
    line-height: 1.6;
}

/* ========== 会员等级体系卡片 ========== */
.membership-tier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.membership-tier-card {
    border-radius: 20px;
    padding: 30px;
    color: #fff;
}
.membership-tier-card h4 {
    font-size: 20px;
    margin: 0 0 15px 0;
}
.membership-tier-card p {
    font-size: 16px;
    opacity: 0.95;
    line-height: 1.6;
    margin: 0;
}
.membership-tier-card p strong {
    opacity: 1;
    font-weight: 700;
    color: inherit;
}

.tier-default {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.tier-silver {
    background: linear-gradient(135deg, #909090 0%, #b8b8b8 100%);
    color: #333;
}
.tier-gold {
    background: linear-gradient(135deg, #f5a623 0%, #f7c948 100%);
    color: #333;
}
.tier-diamond {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* ========== 积分规则卡片 - 左侧彩色边框 ========== */
.points-rule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
}
.points-rule-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(102,126,234,0.1);
    border-left: 4px solid #667eea;
}
.points-rule-card h4 {
    font-size: 20px;
    color: #667eea;
    margin: 0 0 12px 0;
}
.points-rule-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}
.points-rule-card p strong {
    font-weight: 700;
}

.rule-get {
    border-left-color: #27ae60;
}
.rule-get h4 {
    color: #27ae60;
}
.rule-use {
    border-left-color: #667eea;
}
.rule-level {
    border-left-color: #f5a623;
}
.rule-level h4 {
    color: #f5a623;
}
.rule-security {
    border-left-color: #e74c3c;
}
.rule-security h4 {
    color: #e74c3c;
}

/* 技术亮点徽章 */
.tech-badge-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.tech-badge {
    background: #fff;
    border-radius: 35px;
    padding: 20px 35px;
    box-shadow: 0 6px 20px rgba(102,126,234,0.12);
    border: 2px solid rgba(102,126,234,0.2);
}
.tech-badge span {
    font-size: 18px;
    color: #667eea;
}

/* 总结区域 */
.case-summary-wrap {
    background: linear-gradient(135deg, #f8f6ff 0%, #f0e8ff 100%);
    border-radius: 24px;
    padding: 50px;
    text-align: center;
    border: 3px solid rgba(102,126,234,0.3);
}
.case-summary-title {
    font-size: 30px;
    color: #667eea;
    margin: 0 0 25px 0;
    font-weight: 700;
}
.case-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    text-align: left;
}
.case-summary-card {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
}
.case-summary-card h4 {
    color: #667eea;
    margin: 0 0 12px 0;
    font-size: 18px;
    font-weight: 700;
}
.case-summary-card p {
    color: #666;
    font-size: 16px;
    margin: 0;
    line-height: 1.6;
}

/* 服务理念框 */
.case-philosophy-box {
    margin-top: 40px;
    padding: 30px;
    background: #fff;
    border-radius: 16px;
}
.case-philosophy-main {
    font-size: 22px;
    color: #667eea;
    margin: 0;
    font-weight: 600;
}
.case-philosophy-sub {
    font-size: 18px;
    color: #666;
    margin: 15px 0 0 0;
    line-height: 1.6;
}

/* ========== 响应式 ========== */
@media screen and (max-width: 768px) {
    .case-analysis-wrap {
        padding: 50px 0;
    }
    .case-analysis-header-box {
        padding: 20px;
        margin-bottom: 30px;
    }
    .case-analysis-header-title {
        font-size: 22px;
    }
    .case-analysis-header-desc {
        font-size: 16px;
    }
    .case-section-title {
        font-size: 22px;
        padding-left: 15px;
        border-left-width: 4px;
    }
    .analysis-card-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .analysis-card {
        padding: 20px;
    }
    .analysis-card-title {
        font-size: 18px;
    }
    .membership-tier-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    .membership-tier-card {
        padding: 20px;
    }
    .points-rule-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .tech-badge-wrap {
        gap: 12px;
    }
    .tech-badge {
        padding: 15px 25px;
    }
    .case-summary-wrap {
        padding: 30px 20px;
    }
    .case-summary-title {
        font-size: 22px;
    }
    .case-summary-grid {
        grid-template-columns: 1fr;
    }
    .case-philosophy-main {
        font-size: 18px;
    }
    .case-philosophy-sub {
        font-size: 15px;
    }
}

@media screen and (max-width: 420px) {
    .membership-tier-grid {
        grid-template-columns: 1fr;
    }
}