/**
 * lists_single_sloution.htm
 */

/* 健身房方案顶部横幅板块样式 */

.gym-solutions-hero-section {
    position: relative;
    min-height: 105vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    font-family: 'Oswald', Helvetica, Arial, sans-serif;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    padding: 40px 0;
}


@keyframes badgeGlow {
    from { box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3); }
    to { box-shadow: 0 12px 35px rgba(255, 255, 255, 0.5); }
}

.badge-text {
    font-weight: 800;
    color: #000;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.badge-line {
    width: 30px;
    height: 2px;
    background: #000;
    border-radius: 1px;
}

.hero-title {
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--thm-base);
}

.feature-icon {
    flex-shrink: 0;
}

.feature-text {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary-hero {
    color: #000;
    border: 2px solid #000000;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-primary-hero:hover {
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.5);
    border: 2px solid var(--thm-base);
    color: #000;
}

.btn-outline-hero {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.btn-outline-hero:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    border: 2px solid var(--thm-base);
}

.btn-icon {
    transition: transform 0.3s ease;
}



@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .gym-solutions-hero-section {
        min-height: 50vh;
        align-items: flex-start;
        padding-top: 10vh;
    }
    .hero-features {
        gap: 18px;
    }
    
    .feature-item {
        padding: 14px 18px;
    }
}

@media (max-width: 768px) {
    .gym-solutions-hero-section {
        min-height: 50vh;
        align-items: flex-start;
        padding-top: 10vh;
    }
    
    .hero-content {
        text-align: center;
        padding: 20px;
        width: 100%;
    }
    
    .hero-title {
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        margin-bottom: 25px;
    }
    
    .hero-features {
        gap: 15px;
        margin-bottom: 25px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .feature-item {
        padding: 12px 16px;
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
        gap: 15px;
    }
    
    .btn-hero {
        padding: 16px 30px;
    }
}

@media (max-width: 480px) {
    .gym-solutions-hero-section {
        min-height: 70vh;
        padding-top: 8vh;
    }
    
    .hero-content {
        padding: 15px;
        width: 100%;
    }
    
    .hero-title {
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        margin-bottom: 20px;
    }
    
    .hero-features {
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .feature-item {
        padding: 10px 14px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .btn-hero {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 14px 25px;
    }
}

/* Fixed #premiumHeader overlaps hero on mobile — reserve header + safe area */
@media (max-width: 991px) {
    .gym-solutions-hero-section {
        padding-top: calc(env(safe-area-inset-top, 0px) + max(clamp(142px, 35vw, 200px), 5vh)) !important;
    }
}

/* -------- */

.services-cards-section {
    padding: 100px 100px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    font-family: 'Oswald', Helvetica, Arial, sans-serif;
}

.section-header {
    margin-bottom: 80px;
}

.section-title {
    font-weight: 800;
    margin-bottom: 25px;
    color: #000;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    border-radius: 2px;
}

.section-subtitle {
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 25px 20px;
    height: 100%;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #fb5b21;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
    background: #fb5b21;
}

.service-card:hover {
    border-color: #fb5b21;
}

.card-icon {
    margin-bottom: 20px;
    color: #000;
}



.card-title {
    font-weight: 700;
    margin-bottom: 12px;
    color: #000;
    line-height: 1.2;
}

.card-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 18px;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.feature-tag {
    background: #f8f9fa;
    color: #333;
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.service-card:hover .feature-tag {
    background: #000;
    color: white;
}

.card-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #e9ecef;
}

.action-text {
    font-weight: 700;
    color: #000;
    transition: color 0.3s ease;
}

.action-arrow {
    font-size: 1.2rem;
    color: #000;
    transition: transform 0.3s ease;
}



/* 响应式设计 */
@media (max-width: 1024px) {
    .services-cards-section {
        padding: 60px 60px;
    }
    
    .section-header {
        margin-bottom: 45px;
    }
    
    .service-card {
        padding: 22px 18px;
    }
}

@media (max-width: 768px) {
    .services-cards-section {
        padding: 45px 45px;
    }
    
    .section-header {
        margin-bottom: 35px;
    }
    
    .section-title {
        margin-bottom: 18px;
    }
    
    .section-subtitle {
        margin-bottom: 0;
    }
    
    .service-card {
        padding: 20px 16px;
    }
    
    .card-features {
        gap: 6px;
        margin-bottom: 18px;
    }
    
    .feature-tag {
        padding: 4px 8px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .services-cards-section {
        padding: 35px 10px;
    }
    
    .section-header {
        margin-bottom: 25px;
    }
    
    .service-card {
        padding: 18px 14px;
    }
    
    .card-icon {
        margin-bottom: 18px;
    }
    
    .card-title {
        margin-bottom: 10px;
    }
    
    .card-description {
        margin-bottom: 16px;
    }
    
    .card-features {
        margin-bottom: 16px;
    }
}

/* -------- */

.company-capabilities-section {
    padding: 80px;
    background: #fff;
    font-family: 'Oswald', Helvetica, Arial, sans-serif;
}

.capability-item {
    margin-bottom: 80px;
}

.capability-item:last-child {
    margin-bottom: 0;
}

.capability-title {
    font-weight: 800;
    margin-bottom: 20px;
    color: #000;
    line-height: 1.2;
}

.capability-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.capability-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.capability-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 500;
}

.capability-features li:last-child {
    margin-bottom: 0;
}

.feature-check {
    width: 18px;
    height: 18px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-check::after {
    content: '\2713';
    color: white;
    font-size: 11px;
    font-weight: bold;
}

.capability-image {
    height: 500px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    padding: 0;
    overflow: hidden;
}

.capability-image img.capability-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .company-capabilities-section {
        padding: 60px;
    }
    
    .capability-item {
        margin-bottom: 60px;
    }
    
    .capability-image {
        height: 250px;
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .company-capabilities-section {
        padding: 50px;
    }
    
    .capability-item {
        margin-bottom: 50px;
    }
    
    .capability-image {
        height: 220px;
        margin-bottom: 25px;
        padding: 15px;
    }
    
    .capability-title {
        margin-bottom: 18px;
    }
    
    .capability-description {
        margin-bottom: 22px;
    }
    
    .capability-features li {
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .company-capabilities-section {
        padding: 40px;
    }
    
    .capability-item {
        margin-bottom: 40px;
    }
    
    .capability-image {
        height: 180px;
        margin-bottom: 20px;
        padding: 10px;
    }
    
    .capability-title {
        margin-bottom: 15px;
    }
    
    .capability-description {
        margin-bottom: 20px;
    }
    
    .capability-features li {
        margin-bottom: 10px;
        gap: 10px;
    }
    
    .feature-check {
        width: 16px;
        height: 16px;
    }
    
    .feature-check::after {
        font-size: 10px;
    }
}

/* -------- */

.gym-building-section {
    padding: 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    font-family: 'Oswald', Helvetica, Arial, sans-serif;
}

.section-header {
    margin-bottom: 60px;
    text-align: center;
}

.section-title {
    font-weight: 800;
    margin-bottom: 20px;
    color: #000;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    border-radius: 2px;
}

.section-subtitle {
    color: #666;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* 整体介绍部分 - 左右分格布局 */
.gym-intro-section {
    margin-bottom: 80px;
}

.intro-image {
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    margin-bottom: 30px;
    padding: 20px;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}



.intro-text {
    padding: 0 15px;
}

/* 移动端图片在上，文字在下 */
@media (max-width: 768px) {
    .intro-image {
        order: -1;
    }
    
    .intro-text {
        order: 1;
    }
}

.intro-main-title {
    font-weight: 800;
    margin-bottom: 25px;
    color: #000;
    font-size: 2rem;
    line-height: 1.2;
}

.intro-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.stat-number {
    font-weight: 800;
    color: #000;
    font-size: 2.5rem;
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    color: #666;
    font-size: 0.95rem;
    font-weight: 600;
}

/* 案例展示部分 - 标签卡形式 */
.cases-section {
    margin-bottom: 80px;
}

.cases-header {
    text-align: center;
    margin-bottom: 50px;
}

.cases-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.case-tab {
    padding: 15px 30px;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    background: white;
    color: #666;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.case-tab.active {
    background: #000;
    color: white;
    border-color: #000;
}

.case-tab:hover {
    border-color: var(--thm-base);
    color: var(--thm-base);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.case-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.case-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border: 2px solid var(--thm-base);
}

.case-image {
    height: 300px;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    position: relative;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}



.case-title {
    padding: 20px;
    font-weight: 700;
    color: #000;
    font-size: 1rem;
    text-align: center;
    margin: 0;
}

/* 客户反馈部分 - 轮播效果 */
.testimonials-section {
    margin-bottom: 0;
}

.testimonials-carousel {
    position: relative;
    margin: 0 auto;
}

.testimonial-slide {
    background: white;
    border-radius: 15px;
    padding: 40px 35px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    text-align: center;
    position: relative;
}

.testimonials-carousel > .testimonial-slide {
    display: none;
}

.testimonials-carousel > .testimonial-slide.active {
    display: block;
}

.testimonial-content {
    margin-bottom: 30px;
    color: #666;
    line-height: 1.7;
    font-style: italic;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.author-info h4 {
    font-weight: 700;
    color: #000;
    margin: 0 0 5px 0;
    font-size: 1.1rem;
}

.author-info p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #e9ecef;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .gym-building-section {
        padding: 60px;
    }
    
    .intro-image {
        height: 300px;
        padding: 15px;
    }
    
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .gym-building-section {
        padding: 50px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .intro-text {
        text-align: center;
    }
    
    .intro-image {
        height: 250px;
        margin-bottom: 25px;
        padding: 15px;
    }
    
    .intro-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-card {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .cases-tabs {
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .case-tab {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .case-image {
        height: 150px;
    }
    
    .case-title {
        padding: 15px;
        font-size: 0.9rem;
    }
    
    .testimonial-slide {
        padding: 30px 25px;
    }
    
    .testimonial-content {
        font-size: 1rem;
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .gym-building-section {
        padding: 40px;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .intro-image {
        height: 200px;
        margin-bottom: 20px;
        padding: 10px;
    }
    
    .intro-main-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .intro-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .intro-stats {
        gap: 15px;
    }
    
    .stat-card {
        padding: 18px 12px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .cases-tabs {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .case-tab {
        width: 100%;
        max-width: 200px;
        text-align: center;
    }
    
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .case-image {
        height: 150px;
    }
    
    .case-title {
        padding: 12px;
        font-size: 0.85rem;
    }
    
    .testimonial-slide {
        padding: 25px 20px;
    }
    
    .testimonial-content {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
    }
}

/* -------- */

.banner-divider-section {
        width: 100%;
        height: 200px;
        overflow: hidden;
        position: relative;
    }
    
    .banner-divider-image {
        width: 100%;
        height: 100%;
    }
    
    .banner-divider-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .banner-divider-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.55));
        pointer-events: none;
    }

    .banner-divider-content {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 30px 15px;
        color: #fff;
        text-align: center;
    }

    .divider-eyebrow {
        letter-spacing: .12em;
        text-transform: uppercase;
        font-weight: 800;
        opacity: .9;
        margin-bottom: 10px;
    }

    .divider-title {
        font-weight: 800;
        color: #fff;
        margin-bottom: 12px;
    }

    .divider-desc {
        color: rgba(255,255,255,0.9);
        margin: 0 auto 18px;
        max-width: 860px;
    }

    .divider-actions {
        display: flex;
        gap: 12px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .divider-actions .btn-outline-hero {
        border-color: rgba(255,255,255,0.9);
        color: #fff;
    }

    .divider-actions .btn-outline-hero:hover {
        background: rgba(255,255,255,0.1);
        border-color: #fff;
        border: 2px solid var(--thm-base);
        color: #fff;
    }
    
    @media (max-width: 768px) {
        .banner-divider-section {
            height: 50vh;
        }
        .divider-desc {
            max-width: 640px;
        }
    }

/* -------- */

.oem-odm-section {
    padding: 80px;
    background: #fff;
    font-family: 'Oswald', Helvetica, Arial, sans-serif;
}

.oem-intro-section {
    margin-bottom: 80px;
}

.oem-intro-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.oem-intro-text {
    flex: 1;
    padding: 0 15px;
}

.oem-intro-image {
    flex: 1;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    padding: 20px;
}

.oem-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}



.oem-main-title {
    font-weight: 800;
    margin-bottom: 25px;
    color: #000;
    font-size: 2rem;
    line-height: 1.2;
}

.oem-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.oem-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.oem-stat-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.oem-stat-number {
    font-weight: 800;
    color: #000;
    font-size: 2.5rem;
    display: block;
    margin-bottom: 8px;
}

.oem-stat-label {
    color: #666;
    font-size: 0.95rem;
    font-weight: 600;
}

/* 定制能力展示 */
.customization-section {
    margin-bottom: 80px;
}

.customization-header {
    text-align: center;
    margin-bottom: 50px;
}

.customization-header h3 {
    font-weight: 800;
    margin-bottom: 15px;
    color: #000;
    font-size: 1.8rem;
}

.customization-header p {
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.customization-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.customization-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.customization-item:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border: 2px solid var(--thm-base);
}

.customization-image {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.customization-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}



.customization-content {
    padding: 25px;
    text-align: center;
}

.customization-title {
    font-weight: 700;
    color: #000;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.customization-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* 服务范围 */
.services-scope-section {
    margin-bottom: 80px;
}

.services-scope-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-scope-header h3 {
    font-weight: 800;
    margin-bottom: 15px;
    color: #000;
    font-size: 1.8rem;
}

.services-scope-header p {
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.services-scope-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.scope-item {
    background: white;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.scope-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border: 2px solid var(--thm-base);
}

.scope-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
}

.scope-title {
    font-weight: 700;
    color: #000;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.scope-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* 客户评价轮播 */
.oem-testimonials-section {
    margin-bottom: 0;
}

.oem-testimonials-carousel {
    position: relative;
    max-width: 80%;
    margin: 0 auto;
}

.oem-testimonial-slide {
    background: white;
    border-radius: 15px;
    padding: 40px 35px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    text-align: center;
    position: relative;
}

.oem-testimonial-content {
    margin-bottom: 30px;
    color: #666;
    line-height: 1.7;
    font-style: italic;
    font-size: 1.1rem;
}

.oem-testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.oem-author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.oem-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.oem-author-info h4 {
    font-weight: 700;
    color: #000;
    margin: 0 0 5px 0;
    font-size: 1.1rem;
}

.oem-author-info p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

.oem-carousel-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.oem-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e9ecef;
    cursor: pointer;
    transition: all 0.3s ease;
}

.oem-carousel-dot.active {
    background: #000;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .oem-odm-section {
        padding: 60px;
    }
    
    .oem-intro-content {
        gap: 40px;
    }
    
    .oem-intro-image {
        height: 350px;
    }
    
    .customization-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .services-scope-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .oem-odm-section {
        padding: 50px 0;
    }
    
    .oem-intro-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .oem-intro-image {
        height: 300px;
        order: -1;
    }
    
    .oem-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .oem-stat-card {
        padding: 20px 15px;
    }
    
    .oem-stat-number {
        font-size: 2rem;
    }
    
    .customization-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .services-scope-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .scope-item {
        padding: 25px 15px;
    }
}

@media (max-width: 480px) {
    .oem-odm-section {
        padding: 40px;
    }
    
    .oem-intro-image {
        height: 250px;
    }
    
    .oem-main-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .oem-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .oem-stats {
        gap: 15px;
    }
    
    .oem-stat-card {
        padding: 18px 12px;
    }
    
    .oem-stat-number {
        font-size: 1.8rem;
    }
    
    .customization-grid {
        gap: 15px;
    }
    
    .customization-item {
        border-radius: 12px;
    }
    
    .customization-image {
        height: 180px;
    }
    
    .customization-content {
        padding: 20px;
    }
    
    .services-scope-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .scope-item {
        padding: 20px 15px;
    }
}

/* OEM testimonial slides: visibility (JS toggles .active) */
.oem-testimonials-carousel > .oem-testimonial-slide {
    display: none;
}

.oem-testimonials-carousel > .oem-testimonial-slide.active {
    display: block;
}

/* Solutions 页 PC：页底联系表单（contact_2.htm #contact）版心 1400px */
@media (min-width: 992px) {
    body.page-solutions form#contact.contact-form {
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }
}
