/* ============================================================
   合作伙伴详情页（移动端）
============================================================ */

/* Hero 小横幅 */
.mp-hero {
    position: relative;
    height: 210px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}
.mp-hero-bg {
    position: absolute;
    inset: 0;
}
.mp-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.mp-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 22, 52, .35) 0%, rgba(10, 22, 52, .55) 55%, rgba(10, 22, 52, .85) 100%);
}
.mp-hero-content {
    position: relative;
    z-index: 2;
    padding: 16px 18px 20px;
}
.mp-breadcrumb {
    font-size: 11px;
    color: rgba(255, 255, 255, .75);
    margin-bottom: 8px;
}
.mp-breadcrumb a {
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
}
.mp-hero-title {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.5;
}
.mp-hero-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, .85);
    letter-spacing: 3px;
    margin: 8px 0 0;
}
.mp-hero-sub::before {
    content: '';
    display: inline-block;
    width: 22px;
    height: 2px;
    background: #f5b800;
    vertical-align: middle;
    margin-right: 8px;
}

/* 图片轮播 */
.mp-slider {
    position: relative;
    background: #f5f7fa;
    overflow: hidden;
}
.mp-slider-track {
    display: flex;
    transition: transform .4s ease;
}
.mp-slider-img {
    flex: 0 0 100%;
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}
.mp-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: rgba(10, 22, 52, .4);
    color: #ffffff;
    font-size: 14px;
    line-height: 32px;
    text-align: center;
    z-index: 5;
    padding: 0;
}
.mp-slider-prev { left: 10px; }
.mp-slider-next { right: 10px; }
.mp-slider-dots {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 6px;
    z-index: 5;
}
.mp-slider-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .6);
    border: none;
    padding: 0;
    transition: all .3s;
}
.mp-slider-dot.active {
    background: #ffffff;
    width: 16px;
    border-radius: 4px;
}
.mp-slider-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
    color: #9aa4b5;
    font-size: 13px;
    background: linear-gradient(135deg, #f0f3f8, #e6ebf3);
}

/* 内容卡片 */
.mp-body {
    padding: 20px 16px 30px;
}
.mp-tag {
    display: inline-block;
    background: rgba(245, 184, 0, .14);
    color: #b38900;
    border: 1px solid rgba(245, 184, 0, .45);
    font-size: 11px;
    letter-spacing: 2px;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
}
.mp-title {
    font-size: 20px;
    color: #1a1a1f;
    margin: 0 0 12px;
    line-height: 1.5;
    font-weight: 600;
}
.mp-divider {
    width: 44px;
    height: 3px;
    border: none;
    background: linear-gradient(90deg, #f5b800, #ffd95e);
    margin: 0 0 16px;
}
.mp-content {
    font-size: 14px;
    line-height: 1.95;
    color: #4a5568;
    white-space: pre-wrap;
    word-break: break-word;
}
.mp-meta {
    margin-top: 22px;
    padding-top: 16px;
    border-top: 1px solid #eef1f6;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 12px;
    color: #8a94a6;
}
.mp-back-btn {
    display: block;
    text-align: center;
    margin: 22px auto 0;
    padding: 11px 0;
    width: 180px;
    background: #ffffff;
    border: 1px solid #d7dee9;
    border-radius: 30px;
    color: #1a1a1f;
    font-size: 14px;
    text-decoration: none;
    transition: all .3s;
}
.mp-back-btn:active {
    background: #0a1634;
    color: #ffffff;
}
