/* ============================================================
   新能源业务页面专用样式（手机端）
   ============================================================ */

/* ============================================================
   1. Hero 轮播区
============================================================ */
.m-ne-hero {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.m-ne-slider {
    position: relative;
    height: 100%;
}

.m-ne-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.m-ne-slide.active {
    opacity: 1;
    visibility: visible;
}

.m-ne-slide-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.m-ne-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 28, 71, 0.85) 0%, rgba(7, 28, 71, 0.2) 60%, transparent 100%);
}

.m-ne-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 80px 20px 70px;
    color: #fff;
    text-align: center;
}

.m-ne-slide-content h1 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.m-ne-slide-content p {
    font-size: 14px;
    line-height: 1.65;
    opacity: 0.92;
    max-width: 320px;
    margin: 0 auto;
}

/* 轮播箭头 */
.m-ne-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    border: none;
    color: var(--primary-color);
    font-size: 14px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.m-ne-prev {
    left: 10px;
}

.m-ne-next {
    right: 10px;
}

/* 轮播圆点 */
.m-ne-dots {
    position: absolute;
    bottom: 18px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

.m-ne-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
}

.m-ne-dot.active {
    background: #fff;
}

/* ============================================================
   2. 成功案例展示
============================================================ */
.m-ne-cases {
    background: #0b1f4d;
    color: #fff;
}

.m-ne-cases .m-section-head.light h2,
.m-ne-cases .m-section-head.light p {
    color: #fff;
}

.m-ne-cases-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 0 16px 30px;
}

.m-ne-case-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.m-ne-case-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.m-ne-case-title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(to top, rgba(7, 28, 71, 0.9), transparent);
}

/* ============================================================
   3. 新能源市场展望
============================================================ */
.m-ne-outlook {
    background: #f4f6fb;
    text-align: center;
}

.m-ne-empty {
    display: inline-block;
    background: #fff;
    color: var(--text-sub);
    font-size: 14px;
    padding: 18px 28px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(11, 42, 107, 0.05);
    border: 1px dashed rgba(11, 42, 107, 0.12);
    margin-bottom: 6px;
}

/* ============================================================
   4. 客户满意度
============================================================ */
.m-ne-satisfaction {
    background: #ffffff;
}

.m-ne-satisfaction-list {
    padding: 0 16px 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.m-ne-satisfaction-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(11, 42, 107, 0.08);
    border: 1px solid rgba(11, 42, 107, 0.05);
}

.m-ne-satisfaction-img {
    height: 170px;
    overflow: hidden;
}

.m-ne-satisfaction-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.m-ne-satisfaction-body {
    padding: 18px;
}

.m-ne-satisfaction-body h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.m-ne-satisfaction-body p {
    font-size: 13px;
    color: var(--text-sub);
    line-height: 1.65;
    margin-bottom: 14px;
}

.m-ne-btn {
    display: inline-block;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 16px;
}

/* 轮播图上的按钮：白色实心更醒目 */
.m-ne-slide-content .m-ne-btn {
    display: inline-block;
    margin-top: 14px;
    background: #ffffff;
    border: none;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 24px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ============================================================
   5. 滚动渐入动画
============================================================ */
.m-ne-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.m-ne-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* 减少动画偏好 */
@media (prefers-reduced-motion: reduce) {
    .m-ne-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
