/* 智能耳机APP页面专用样式 */

/* 首页横幅样式 */
.product-hero-section {
    background: url('../assets/images/product_watch/cp1440.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height:25rem;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    width: 100%;
    display: flex;
    align-items: center;
}

.hero-title {
    font-family: PingFang SC;
    font-weight: 500;
    font-style: Heavy;
    font-size: 2rem;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: center;
}

.hero-description {
    font-size: var(--font-weight-mini-medium);
    font-family: PingFang SC;
    font-weight: 400;
    font-style: Medium;
    font-size: 1rem;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: center;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .product-hero-section {
        min-height: 15.625rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .product-hero-section {
        min-height: 12.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }
}

/* 通用样式 */
.section-title {
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #333;
}

.section-subtitle {
    font-size: .875rem;
    color: #666;
    max-width: 880px;
    margin: 0 auto;
}

.section-description {
    font-size: .875rem;
    color: #666;
    line-height: 1.6;
    font-weight: var(--font-weight-mini-medium);
}

/* Podsfine 应用展示样式 */
.app-showcase-container {
    margin-top: 2rem;
}

.app-showcase-container img {
    max-width: 100%;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.app-showcase-container img:hover {
    transform: scale(1.02);
}

/* 无订阅费样式 */
.subscription-content {
    padding-right: 0;
}

.subscription-features {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.feature-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.7rem;
    margin-top: 0;
    height: 100%;
    align-items: center;
}

.feature-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.feature-highlight:hover {
    transform: translateY(-2px);
}

.feature-highlight i {
    font-size: 1.5rem;
    color: #007bff;
    margin-right: 0.8rem;
}

.feature-icon-img {
    width: 1.75rem;
    height: 1.75rem;
    margin-bottom: 0.5rem;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.feature-icon-img:hover {
    transform: scale(1.1);
}

.feature-highlight span {
    font-family: PingFang SC;
    font-weight: 400;
    font-style: Medium;
    font-size: 0.75rem;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: rgba(51, 51, 51, 1);
}

.subscription-image {
    text-align: center;
}

.subscription-image img {
    max-width: 100%;
    border-radius: 0;
    box-shadow: none;
}

/* 智能健康监测样式 */
.health-monitoring-section {
    background: url('../assets/images/product_earpod/jkjc.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 25rem;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
}

.health-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    align-items: center;
}

/* 专业功能设置样式 */
.feature-card {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: none;
}

.feature-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    height: 100%;
}

.feature-text {
    flex: 1;
    text-align: left;
  
}

.feature-icon {
    margin-bottom: 1rem;
}

.feature-icon i {
    font-size: 2.5rem;
    color: #007bff;
}

.feature-card h4 {
    font-family: PingFang SC;
        font-weight: 500;
        font-style: Bold;
        font-size: 1rem;
        line-height: 120%;
        letter-spacing: 0%;
        color: rgba(51, 51, 51, 1);
}

.feature-card p {
    font-family: PingFang SC;
    font-weight: 400;
    font-style: Medium;
    font-size: 0.875rem;
    line-height: 120%;
    letter-spacing: 0%;
    color: rgba(153, 153, 153, 1);
}

.feature-screenshot {
    flex: 1;
    text-align: center;
}

.feature-screenshot img {
    width: 5.5rem;
    height: 11.9375rem;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-screenshot img:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* 响应式适配 */
@media (max-width: 768px) {
    .feature-screenshot img {
        width: 4.375rem;
        height: 9.5rem;
    }
}

@media (max-width: 576px) {
    .feature-screenshot img {
        width: 3.75rem;
        height: 8.125rem;
    }
}

@media (max-width: 480px) {
    .feature-screenshot img {
        width: 3.125rem;
        height: 6.75rem;
    }
}

/* 大屏幕适配 - 27寸及以上 */


/* 超大屏幕适配 - 29寸及以上 */


/* 联系我们样式 */
.contact-hero-section {
    background: url('../assets/images/product_earpod/lxwm.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 12.5rem;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    width: 100%;
    display: flex;
    align-items: center;
}

/* 确保文字在背景图上清晰可见 */
#contact .about-company-name,
#contact .about-description {
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .subscription-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .subscription-features {
        margin-top: 2rem;
    }

    .feature-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 0;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .feature-text {
        text-align: center;
    }

    .feature-icon i {
        font-size: 2rem;
    }

    .feature-icon-img {
        width: 1.25rem;
        height: 1.25rem;
        margin-bottom: 0.4rem;
    }

    .feature-screenshot img {
        max-height: 6.25rem;
    }

    .health-monitoring-section {
        min-height: 15.625rem;
    }

    .contact-hero-section {
        min-height: 11.25rem;
    }

    .about-company-name {
        font-size: 1.8rem;
    }

    .about-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .feature-card {
        padding: 1rem;
    }

    .feature-content {
        gap: 0.8rem;
    }

    .feature-icon i {
        font-size: 1.8rem;
    }

    .feature-icon-img {
        width: 1.125rem;
        height: 1.125rem;
        margin-bottom: 0.3rem;
    }

    .feature-highlights {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }

    .feature-screenshot img {
        max-height: 5rem;
    }

    .health-monitoring-section {
        min-height: 12.5rem;
    }

    .contact-hero-section {
        min-height: 10rem   ;
    }

    .about-company-name {
        font-size: 1.6rem;
    }

    .about-description {
        font-size: 0.85rem;
    }
}