.hero-swiper-wrapper {
    width: 100%;
    /* max-width: 1200px; */
    /* border-radius: 20px; */
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
}

.swiper {
    width: 100%;
    height: 680px;
    border-radius: 20px;
}

/* ==================== 浅色幻灯片基底 ==================== */
.hero-slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #fefaf6;
}

/* 柔和光晕 */
.hero-slide .bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.hero-slide .bg-glow.glow-1 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(254, 99, 10, 0.25) 0%, transparent 70%);
    top: -130px;
    right: -90px;
}

.hero-slide .bg-glow.glow-2 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 150, 70, 0.2) 0%, transparent 70%);
    bottom: -110px;
    left: -70px;
}

/* 浅色几何装饰 */
.hero-slide .bg-geo {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.hero-slide .bg-geo.circle-large {
    width: 260px;
    height: 260px;
    border: 2px solid rgba(254, 99, 10, 0.12);
    border-radius: 50%;
    top: -70px;
    right: 8%;
}

.hero-slide .bg-geo.dots-pattern {
    width: 180px;
    height: 180px;
    background-image: radial-gradient(circle, rgba(254, 99, 10, 0.2) 1.5px, transparent 1.5px);
    background-size: 22px 22px;
    bottom: 25px;
    left: 6%;
    opacity: 0.5;
}

.hero-slide .bg-geo.line-accent {
    width: 120px;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(90deg, #fe630a, transparent);
    top: 18%;
    left: 10%;
    opacity: 0.25;
}

/* ==================== 内容区 ==================== */
.hero-slide .slide-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1000px;
    padding: 0 60px;
    gap: 40px;
}

.hero-slide .text-block {
    flex: 1;
    color: #1a1a1a;
    animation: fadeInUp 0.7s ease forwards;
}

/* 标签 */
.hero-slide .text-block .tag {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
    background: #fff1e8;
    color: #fe630a;
    border: 1px solid rgba(254, 99, 10, 0.2);
}

/* 标题 */
.hero-slide .text-block h2 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

.hero-slide .text-block h2 .highlight {
    background: linear-gradient(135deg, #fe630a, #ff8533);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 描述文字 */
.hero-slide .text-block p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 440px;
    color: #5c5c5c;
}

/* 按钮组 */
.hero-slide .btn-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-slide .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    letter-spacing: 0.3px;
}

/* 主按钮 - 橙色填充 */
.hero-slide .btn-primary {
    background: #fe630a;
    color: #fff;
    box-shadow: 0 6px 20px rgba(254, 99, 10, 0.3);
}

.hero-slide .btn-primary:hover {
    background: #e55c00;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(254, 99, 10, 0.4);
}

/* 描边按钮 */
.hero-slide .btn-outline {
    background: transparent;
    color: #fe630a;
    border: 2px solid #fe630a;
}

.hero-slide .btn-outline:hover {
    background: #fff1e8;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(254, 99, 10, 0.12);
}

/* 幽灵按钮 */
.hero-slide .btn-ghost {
    background: #fff1e8;
    color: #fe630a;
    border: 1px solid rgba(254, 99, 10, 0.25);
}

.hero-slide .btn-ghost:hover {
    background: #ffe4d4;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(254, 99, 10, 0.12);
}

/* 图片区域 */
.hero-slide .image-block {
    flex: 0 0 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.15s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-slide .image-block img {
    width: 100%;
    max-width: 380px;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hero-slide .image-block img:hover {
    transform: scale(1.03);
}

/* 浮动卡片 */
.hero-slide .floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 16px 20px;
    border: 1px solid rgba(254, 99, 10, 0.15);
    color: #1a1a1a;
    font-size: 13px;
    z-index: 3;
    pointer-events: none;
    animation: floatCard 5s ease-in-out infinite;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.hero-slide .floating-card.card-a {
    top: 14%;
    right: 6%;
    animation-delay: 0s;
}

.hero-slide .floating-card.card-b {
    bottom: 18%;
    right: 32%;
    animation-delay: 1.5s;
}

.hero-slide .floating-card .card-number {
    font-size: 28px;
    font-weight: 700;
    display: block;
    line-height: 1;
    color: #fe630a;
}

.hero-slide .floating-card .card-label {
    opacity: 0.6;
    font-size: 11px;
    letter-spacing: 0.5px;
    color: #5c5c5c;
}

/* ==================== 布局变体 ==================== */
.hero-slide.layout-centered .slide-content {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
}

.hero-slide.layout-centered .text-block p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-slide.layout-centered .btn-group {
    justify-content: center;
}

.hero-slide.layout-image-right .slide-content {
    flex-direction: row;
}

.hero-slide.layout-image-left .slide-content {
    flex-direction: row-reverse;
}

/* 信息条 */
.hero-slide .info-strip {
    display: flex;
    gap: 30px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.hero-slide .info-strip .info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #5c5c5c;
}

.hero-slide .info-strip .info-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.info-dot.green {
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
}

.info-dot.blue {
    background: #3b82f6;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
}

.info-dot.amber {
    background: #f59e0b;
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.4);
}

/* ==================== Swiper 导航按钮 ==================== */
.swiper-button-next,
.swiper-button-prev {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    color: #fe630a;
    transition: all 0.3s ease;
    border: 1px solid rgba(254, 99, 10, 0.2);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: scale(1.08);
    border-color: #fe630a;
    box-shadow: 0 4px 18px rgba(254, 99, 10, 0.15);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
    font-weight: 700;
}

/* ==================== 分页器 ==================== */
.swiper-pagination-bullet {
    transition: all 0.35s ease;
    width: 10px;
    height: 10px;
    background: #bbb;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    width: 32px;
    border-radius: 10px;
    background: #fe630a;
    opacity: 1;
    box-shadow: 0 0 10px rgba(254, 99, 10, 0.45);
}

/* ==================== 动画 ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

/* ==================== 响应式 ==================== */
@media (max-width: 900px) {
    .swiper {
        height: 480px;
    }

    .hero-slide .slide-content {
        flex-direction: column !important;
        padding: 30px 28px;
        gap: 24px;
        text-align: center;
    }

    .hero-slide .text-block h2 {
        font-size: 30px;
    }

    .hero-slide .text-block p {
        font-size: 14px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-slide .btn-group {
        justify-content: center;
    }

    .hero-slide .image-block {
        flex: 0 0 auto;
        width: 70%;
        max-width: 280px;
    }

    .hero-slide .image-block img {
        max-width: 100%;
    }

    .hero-slide .floating-card {
        display: none;
    }

    .hero-slide .info-strip {
        justify-content: center;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 38px;
        height: 38px;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .swiper {
        height: 420px;
    }

    .hero-slide .text-block h2 {
        font-size: 24px;
    }

    .hero-slide .text-block .tag {
        font-size: 11px;
        padding: 5px 14px;
    }

    .hero-slide .btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .hero-slide .image-block {
        width: 60%;
        max-width: 200px;
    }
}

/* ==================== 页面标题 ==================== */
.page-title {
    text-align: center;
    margin-bottom: 30px;
    color: #1e293b;
}

.page-title h1 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.page-title p {
    color: #64748b;
    font-size: 14px;
    margin-top: 6px;
}