@charset "UTF-8";
/**
 * 品牌服务特定样式
 * 依赖 main.css 中的 CSS 变量和公共组件
 *
 * @package RiaFlow_Theme
 * @version 2.0.0
 */



/* ==========================================
   品牌服务亮点区域
   ========================================== */
.bs-highlights-section {
    /* padding: var(--spacing-xl) 0 var(--spacing-lg); */
    padding: var(--spacing-3xl) var(--spacing-md) 80px;
}

.bs-highlights-inner {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

/* 定位说明横幅 */
.bs-notice-banner {
    position: relative;
    /* background: linear-gradient(180deg, #E2E9FF 0%, #F9F5FF 100%); */
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 20px 30px 20px 34px;
    overflow: hidden;
    max-width: 844px;
    margin: 0 auto;
}

.bs-notice-accent {
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #8032DB 0%, #175DFF 100%);
}

.bs-notice-text {
    color: var(--text-primary);
    font-size: 18px;
    line-height: 1.6;
}

/* 特色卡片网格 */
.bs-feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.bs-feature-card {
    position: relative;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    padding: var(--spacing-md) var(--spacing-md) var(--spacing-md) var(--spacing-md);
    min-height: 145px;
    overflow: hidden;
}


.bs-card-decor {
    position: absolute;
    right: 0;
    top: 0;
    width: 200px;
    height: 200px;
    overflow: hidden;
    pointer-events: none;
}

.bs-card-decor img {
    position: absolute;
    bottom: 0;
    right: -50px;
    width: 200px;
    height: 200px;
    object-fit: cover;
  
}


.bs-card-title {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.45px;
    margin-bottom: var(--spacing-xs);
    position: relative;
    z-index: 1;
 
}

.bs-card-desc {
    color: var(--text-primary);
    font-size: 16px;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

/* 响应式：平板 */
@media (max-width: 1024px) {
    .bs-highlights-section {
        padding: var(--spacing-lg) 0 var(--spacing-md);
    }

    .bs-highlights-inner {
        padding: 0 var(--spacing-md);
    }

    .bs-feature-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .bs-card-decor {
        width: 160px;
        height: 160px;
    }

    .bs-card-decor img {
        width: 160px;
        height: 160px;
    }
}

/* 响应式：手机 */
@media (max-width: 768px) {
    .bs-highlights-section {
        padding: var(--spacing-md) 0;
    }

    .bs-highlights-inner {
        padding: 0 var(--spacing-sm);
        gap: 48px;
    }

    /* 横幅 */
    .bs-notice-banner {
        padding: var(--spacing-sm) var(--spacing-sm) var(--spacing-sm) calc(var(--spacing-sm) + 12px);
        border-radius: var(--border-radius-sm);
    }

    .bs-notice-text {
        font-size: 14px;
        line-height: 1.5;
    }

    /* 卡片：单列 */
    .bs-feature-cards {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .bs-feature-card {
        min-height: 120px;
        padding: var(--spacing-sm);
    }

    .bs-card-title {
        font-size: 18px;
    }

    .bs-card-desc {
        font-size: 14px;
    }

    /* 装饰图在小屏缩小，避免遮挡文字 */
    .bs-card-decor {
        width: 110px;
        height: 110px;
        opacity: 0.7;
    }

    .bs-card-decor img
    {
        width: 110px;
        height: 110px;
    }
}

/* ==========================================
   6大核心服务区域（bs-core-services）
   ========================================== */
.bs-core-services-section {
    padding: var(--spacing-2xl) 0;
}

.bs-core-services-inner {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xl);
}

.bs-core-services-title {
    color: var(--text-primary);
    font-size: 56px;
    font-weight: 600;
    line-height: 74px;
    text-align: center;
}

/* Tab 导航 */
.bs-cs-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.bs-cs-tab {
    padding: 10px 24px;
    border-radius: var(--border-radius-pill);
    border: 1px solid transparent;
    background: var(--bg-primary);
    cursor: pointer;
    font-size: 18px;
    font-weight: 400;
    color: var(--text-primary);
    transition: all var(--transition-fast);
    white-space: nowrap;
    border: 1px solid var(--border-color);
}

.bs-cs-tab:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.bs-cs-tab.active {
    color: var(--accent-color);
    font-weight: 600;
    border: 1px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, #7D34DC 0%, #185CFF 100%) border-box;
}

/* 面板容器 */
.bs-cs-panels {
    width: 100%;
}

.bs-cs-panel {
    display: none;
}

.bs-cs-panel.active {
    display: block;
}

/* 卡片 */
.bs-cs-card {
    position: relative;
    min-height: 532px;
    overflow: hidden;
    background: linear-gradient(110deg, #ffffff 0%, #f8fbff 46%, #f3f0ff 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: 0 18px 42px rgba(5, 23, 62, 0.08);
}

.bs-cs-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 62%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 72%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

/* 左侧内容 */
.bs-cs-card-left {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    width: min(52%, 640px);
    min-height: inherit;
    padding: var(--spacing-xl) 0 var(--spacing-lg) var(--spacing-xl);
    box-sizing: border-box;
}

.bs-cs-card-title {
    color: var(--text-primary);
    font-size: 30px;
    font-weight: 600;
    line-height: 1.27;
}

.bs-cs-scenario,
.bs-cs-delivery-text {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm);
    background: var(--bg-overlay);
    border: 1px solid var(--border-color-light);
    border-radius: var(--border-radius-sm);
    font-size: 16px;
}

.bs-cs-help-label,
.bs-cs-delivery-label {
    display: block;
    width: fit-content;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.4px;
}



.bs-cs-value-prop {
    display: inline-block;
    font-size: 24px;
    font-weight: 500;
    width: fit-content;
    max-width: 100%;
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 特性列表 */
.bs-cs-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    margin-top: 4px;
    padding: var(--spacing-xs) 0 0;
    border-top: 1px solid var(--border-color-light);
}

.bs-cs-features li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-xs);
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 400;
}

.bs-cs-features li span {
    display: block;
}

.bs-cs-features li strong {
    color: var(--text-primary);
    font-weight: 600;
}

.bs-cs-features li img {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* 交付形式 */
.bs-cs-delivery {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    margin-top: auto;
}

/* 了解详情链接 */
.bs-cs-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 500;
    width: fit-content;
    text-decoration: none;
    transition: gap var(--transition-fast);
}

.bs-cs-link:hover {
    opacity: 0.8;
}

/* 右侧装饰图区 */
.bs-cs-card-right {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    max-width: 750px;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bs-cs-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}




/* ==========================================
   6大核心服务 — 响应式
   ========================================== */
@media (max-width: 1024px) {
    .bs-core-services-inner {
        padding: 0 var(--spacing-md);
        gap: var(--spacing-lg);
    }

    .bs-core-services-title {
        font-size: 40px;
        line-height: 56px;
    }

    .bs-cs-card {
        min-height: 500px;
    }

    .bs-cs-card-left {
        width: min(58%, 560px);
        padding: var(--spacing-lg) 0 var(--spacing-lg) var(--spacing-lg);
        gap: var(--spacing-sm);
    }

    .bs-cs-card-title {
        font-size: 24px;
    }

    .bs-cs-scenario {
        max-width: 440px;
        padding: var(--spacing-sm);
    }

    .bs-cs-scenario-text {
        font-size: 20px;
        line-height: 1.5;
    }

    .bs-cs-value-prop {
        font-size: 16px;
        line-height: 1.5;
    }

    .bs-cs-features li {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .bs-core-services-section {
        padding: var(--spacing-lg) 0;
    }

    .bs-core-services-inner {
        padding: 0 var(--spacing-sm);
        gap: var(--spacing-md);
    }

    .bs-core-services-title {
        font-size: 28px;
        line-height: 38px;
    }

    /* 标签横向滚动 */
    .bs-cs-tabs {
        width: 100%;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .bs-cs-tabs::-webkit-scrollbar {
        display: none;
    }

    .bs-cs-tab {
        font-size: 14px;
        padding: 8px 16px;
        flex-shrink: 0;
    }

    /* 卡片改为静态流布局 */
    .bs-cs-card {
        min-height: auto;
        overflow: hidden;
    }

    .bs-cs-card::before {
        display: none;
    }

    .bs-cs-card-left {
        position: static;
        width: 100%;
        max-width: none;
        padding: var(--spacing-md) var(--spacing-sm);
        gap: var(--spacing-sm);
    }

    .bs-cs-card-title {
        font-size: 22px;
        line-height: 1.36;
    }

    .bs-cs-scenario {
        max-width: none;
        padding: var(--spacing-sm);
    }

    .bs-cs-scenario-text {
        font-size: 20px;
        line-height: 1.5;
    }

    .bs-cs-value-prop {
        font-size: 16px;
        line-height: 1.5;
    }

    .bs-cs-features li {
        font-size: 14px;
        line-height: 1.43;
    }

    .bs-cs-delivery {
        margin-top: var(--spacing-xs);
    }

    /* 移动端隐藏右侧装饰图 */
    .bs-cs-card-right {
        display: none;
    }
}

/* ==========================================
   服务流程区块（bs-service-flow）
   ========================================== */
.bs-service-flow-section {
    padding: var(--spacing-5xl) 0;
    background: var(--bg-primary);
}

.bs-service-flow-inner {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* 步骤列表 */
.bs-flow-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-top: 60px;
}

/* 单个步骤 */
.bs-flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 200px;
    width: 200px;
}

/* 步骤图片圆形 */
.bs-flow-img-wrap {
    width: 180px;
    height: 180px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.bs-flow-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 步骤序号标签 */
.bs-flow-step-label {
    margin-top: 24px;
    color: var(--text-primary);
    font-size: 22px;
    font-weight: 600;
    line-height: 29px;
    letter-spacing: -0.45px;
    text-align: center;
}

/* 步骤说明 */
.bs-flow-step-desc {
    margin-top: 8px;
    color: #62748E;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    max-width: 220px;
}

/* 步骤之间的连接箭头 */
.bs-flow-connector {
    flex: 1;
    min-width: 40px;
    display: flex;
    align-items: flex-start;
    padding: 219px 8px 0; /* 与标签行对齐：图片高160 + 标签margin-top24 + 偏移7 */
}

.bs-flow-connector-line {
    width: 100%;
    height: 4px;
    background: linear-gradient(270deg, #7D4FC0 0%, rgba(125, 79, 192, 0) 100%);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.bs-flow-connector-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, transparent 100%);
    border-radius: 2px;
    animation: connectorGlowRight 2s ease-in-out infinite;
}

@keyframes connectorGlowRight {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    100% {
        transform: translateX(350%);
        opacity: 0;
    }
}

/* ==========================================
   服务流程 — 响应式
   ========================================== */
@media (max-width: 1024px) {
    .bs-flow-steps {
        gap: 0;
    }

    .bs-flow-connector {
        width: 48px;
    }

    .bs-flow-img-wrap {
        width: 120px;
        height: 120px;
    }

    .bs-flow-step-label {
        font-size: 18px;
        margin-top: 16px;
    }

    .bs-flow-step-desc {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .bs-service-flow-section {
        padding: var(--spacing-lg) 0;
    }

    .bs-flow-steps {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px 16px;
        margin-top: 32px;
    }

    .bs-flow-step {
        max-width: 100%;
    }

    .bs-flow-connector {
        display: none;
    }

    .bs-flow-img-wrap {
        width: 100px;
        height: 100px;
    }

    .bs-flow-step-label {
        font-size: 16px;
        margin-top: 12px;
    }

    .bs-flow-step-desc {
        font-size: 14px;
        max-width: 160px;
    }
}

/* ==========================================
   客户证言区块（bs-testimonials）
   ========================================== */
.bs-testimonials-section {
    padding-top: var(--spacing-4xl);
}

.bs-testimonials-inner {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.bs-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
}

/* 单张证言卡片 */
.bs-testimonial-card {
    position: relative;
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0px 4px 4px 0px rgba(129, 133, 144, 0.12);
    overflow: hidden;
    padding: 50px 40px 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    min-height: 261px;
}

/* 右上角引号图标 */
.bs-testimonial-quote {
    position: absolute;
    top: 30px;
    right: 40px;
    width: 32px;
    height: 32px;
    opacity: 0.6;
}

/* 右上角装饰光晕 */
.bs-testimonial-glow {
    position: absolute;
    top: -50px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.25;
    pointer-events: none;
}
.bs-testimonials-grid .bs-testimonial-card:nth-child(1) .bs-testimonial-glow { background: #704FC0; }
.bs-testimonials-grid .bs-testimonial-card:nth-child(2) .bs-testimonial-glow { background: #FAAD14; }
.bs-testimonials-grid .bs-testimonial-card:nth-child(3) .bs-testimonial-glow { background: #3C6FDD; }

/* 引用文字 */
.bs-testimonial-text {
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 400;
    margin: 0;
    flex: 1;
}

/* 分隔线 */
.bs-testimonial-divider {
    height: 1px;
    background: var(--border-color);
    margin: 0;
}

/* 作者行 */
.bs-testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.bs-testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
    object-fit: cover;
}

.bs-testimonial-name {
    color: #0F172B;
    font-size: 16px;
    font-weight: 600;
    
    margin: 0;
}

/* ==========================================
   客户证言 — 响应式
   ========================================== */
@media (max-width: 1024px) {
    .bs-testimonials-grid {
        gap: 16px;
    }

    .bs-testimonial-card {
        padding: 40px 28px 28px;
    }

    .bs-testimonial-text {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .bs-testimonials-section {
        padding: var(--spacing-lg) 0;
    }

    .bs-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 32px;
    }

    .bs-testimonial-card {
        padding: 36px 24px 24px;
        min-height: auto;
    }

    .bs-testimonial-text {
        font-size: 16px;
        line-height: 24px;
    }
}