/* 智能穿戴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;
    }
}

/* HryFine 应用展示样式 */
.section-title {
    font-family: PingFang SC;
    font-weight: 500;
    font-style: Heavy;
    font-size: 1.75rem;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: rgba(51, 51, 51, 1);
}

.section-subtitle {
    font-family: PingFang SC;
    font-weight: 400;
    margin: 1rem;
    font-style: Medium;
    font-size: 0.875rem;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    color: rgba(153, 153, 153, 1);
}

/* 应用轮播图样式 */
.apps-carousel-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
    width: 100%;
    margin: 0 auto;
}

.apps-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    cursor: grab;
    user-select: none; /* 防止文本选择 */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.apps-carousel:active {
    cursor: grabbing;
}

.apps-slide {
    display: none;
    width: 100%;
    height: auto;
}

.apps-slide.active {
    display: block;
}

.apps-image {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

/* 轮播按钮样式 */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(3, 102, 255, 0.8);
    color: white;
    border: none;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: rgba(3, 102, 255, 1);
    transform: translateY(-50%);
}

.carousel-prev {
    left: 1rem;
}

.carousel-next {
    right: 1rem;
}

.carousel-btn:disabled {
    background: rgba(153, 153, 153, 0.5);
    cursor: not-allowed;
    transform: translateY(-50%);
}

.carousel-btn:disabled:hover {
    transform: translateY(-50%);
    background: rgba(153, 153, 153, 0.5);
}


.app-showcase-card {
    background: white;
    border-radius: 0.9375rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    width: 100%;
    margin: 0 auto;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.app-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.app-screenshot {
    width: 100%;
    height: 25rem;
    object-fit: cover;
    background: #f8f9fa;
    transition: transform 0.3s ease;
}

.app-screenshot:hover {
    transform: scale(1.02);
}




/* 动态文字样式 */
.dynamic-text-container {
    text-align: center;
    margin-top: 2rem;
    transition: all 0.5s ease;
}

.dynamic-app-title {
    font-family: PingFang SC;
    font-weight: 500;
    font-style: Heavy;
    font-size: 1.75rem;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: rgba(51, 51, 51, 1);
    transition: opacity 0.5s ease;
}

.dynamic-app-description {
    font-family: PingFang SC;
    font-weight: 400;
    font-style: Medium;
    font-size: 0.875rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: rgba(153, 153, 153, 1);
}

/* 动态文字下方横线样式 */
.dynamic-text-divider {
    width: 5rem;
    height: .125rem;
    background: linear-gradient(90deg, #007bff, #0056b3);
    margin: 0rem auto 0;
    border-radius: 0.125rem;
}

/* 超人气，超给力样式 */
.popular-content {
    padding-right: 2rem;
}

.section-description {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 2rem;
    color: rgba(153, 153, 153, 1);
}

.section-description-a {
    max-width: 50%;
    margin: 1rem auto;
    text-align: center;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-family: PingFang SC;
    font-weight: 400;
    font-style: Medium;
    font-size: 0.875rem;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: center;
    color: rgba(153, 153, 153, 1);
}

.app-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

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

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

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

.feature-item span {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #333;
}

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

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

/* 运动好搭档，健康好伙伴样式 */
.exercise-carousel-container {
    position: relative;
    padding: 2rem 0;
    width: 100%;
    margin: 0 auto;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.exercise-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    width: 100%;
    display: flex;
    cursor: grab;
    user-select: none; /* 防止文本选择 */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.exercise-carousel:active {
    cursor: grabbing;
}

.exercise-slide {
    flex: 0 0 calc(25% - 0.75rem);
    width: calc(25% - 0.75rem);
    height: auto;
    display: block;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.exercise-slide.active {
    display: block;
}

/* 图片轮播样式 */
.image-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 22rem;
    padding: 1rem;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.exercise-image {
    max-width: 100%;
    max-height: 20rem;
    width: auto;
    height: auto;
    border-radius: 12px;
    transition: transform 0.3s ease;
    object-fit: contain;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.exercise-image:hover {
    transform: none;
}

.health-card {
    background: white;
    border-radius: 0;
    box-shadow: none;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

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

.health-icon {
    margin-bottom: 1.5rem;
}

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

.health-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.health-data {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.health-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 1.5rem;
}

/* 进度环样式 */
.progress-ring {
    width: 5rem;
    height: 5rem;
    margin: 0 auto;
    position: relative;
}

.progress-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(#007bff var(--progress), #e9ecef 0deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.progress-circle::before {
    content: '';
    position: absolute;
    width: 3.75rem;
    height: 3.75rem;
    background: white;
    border-radius: 50%;
}

/* 心率图表样式 */
.heart-rate-graph {
    width: 100%;
    height: 2.34375rem;
    position: relative;
    overflow: hidden;
}

.pulse-line {
    width: 100%;
    height: 0.125rem;
    background: linear-gradient(90deg, #007bff 0%, #ff6b6b 50%, #007bff 100%);
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

.pulse-line::before {
    content: '';
    position: absolute;
    top: -0.625rem;
    left: 0;
    width: 100%;
    height: 1.25rem;
    background: linear-gradient(90deg, transparent 0%, #ff6b6b 50%, transparent 100%);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

/* 睡眠图表样式 */
.sleep-graph {
    width: 100%;
    height: 3.75rem;
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 0.5rem;
}

.sleep-bars {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    height: 100%;
}

.sleep-bar {
    width: 0.75rem;
    background: linear-gradient(to top, #6c5ce7, #a29bfe);
    border-radius: 0.375rem;
    transition: height 0.3s ease;
}

/* 血氧图表样式 */
.oxygen-graph {
    width: 100%;
    height: 3.75rem;
    position: relative;
    overflow: hidden;
}

.oxygen-line {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #00b894 0%, #00cec9 50%, #00b894 100%);
    position: relative;
    animation: oxygen 3s ease-in-out infinite;
}

@keyframes oxygen {

    0%,
    100% {
        transform: scaleX(0.8);
    }

    50% {
        transform: scaleX(1);
    }
}

/* 血压图表样式 */
.blood-pressure-graph {
    width: 100%;
    height: 3.75rem;
    position: relative;
    overflow: hidden;
}

.pressure-line {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #e74c3c 0%, #f39c12 50%, #e74c3c 100%);
    position: relative;
    animation: pressure 2.5s ease-in-out infinite;
}

@keyframes pressure {

    0%,
    100% {
        transform: scaleX(0.7);
        opacity: 0.6;
    }

    50% {
        transform: scaleX(1);
        opacity: 1;
    }
}

/* 体温图表样式 */
.temperature-graph {
    width: 100%;
    height: 3.75rem;
    position: relative;
    overflow: hidden;
}

.temp-line {
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b 0%, #ffa726 50%, #ff6b6b 100%);
    position: relative;
    animation: temperature 3s ease-in-out infinite;
}

@keyframes temperature {

    0%,
    100% {
        transform: scaleX(0.6);
        opacity: 0.5;
    }

    50% {
        transform: scaleX(1.1);
        opacity: 1;
    }
}

/* 运动轮播图按钮容器样式 */
.exercise-buttons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 1.5rem;
}

/* 运动轮播图按钮样式 */
.exercise-buttons-container .carousel-btn {
    position: relative;
    background: rgba(3, 102, 255, 0.8);
    color: white;
    border: none;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: top;
    margin: 0;
    padding: 0;
}

.exercise-buttons-container .carousel-btn:hover {
    background: rgba(3, 102, 255, 1);
}

.exercise-buttons-container .carousel-btn:disabled {
    background: rgba(153, 153, 153, 0.5);
    cursor: not-allowed;
}

.exercise-buttons-container .carousel-btn:disabled:hover {
    background: rgba(153, 153, 153, 0.5);
}

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


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


/* 联系我们样式 */
.contact-hero-section {
    background: url('../assets/images/1456_zu0p_4893.jpg');
    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);
}

/* iPad 响应式设计 */
@media (max-width: 1024px) and (min-width: 768px) {
    /* iPad端轮播图布局 - 显示4个图片 */
    .exercise-carousel {
        gap: 0.75rem;
        justify-content: center;
    }
    
    .exercise-slide {
        flex: 0 0 calc(25% - 0.75rem);
        width: calc(25% - 0.75rem);
    }
    
    .image-slide {
        height: 20rem;
    }
    
    .exercise-image {
        max-height: 18rem;
    }
}

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

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

    .apps-carousel-container {
        width: 100%;
    }
    
    .carousel-btn {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }
    
    .carousel-prev {
        left: 0.5rem;
    }
    
    .carousel-next {
        right: 0.5rem;
    }

    .app-screenshot {
        height: 18.75rem;
    }


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

    .app-features {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .health-card {
        padding: 1.5rem;
    }

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

    .health-value {
        font-size: 1.3rem;
    }

    .contact-hero-section {
        min-height: 180px;
    }

    .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;
    }

    .app-screenshot {
        height: 250px;
    }

    .apps-carousel-container {
        width: 100%;
        padding: 1rem 0;
    }
    
    .carousel-btn {
        width: 2rem;
        height: 2rem;
        font-size: 0.9rem;
    }
    
    .carousel-prev {
        left: 0.25rem;
    }
    
    .carousel-next {
        right: 0.25rem;
    }

    .app-showcase-card {
        width: 100%;
    }
    
    /* 小屏幕轮播图布局 - 显示3个图片 */
    .exercise-carousel {
        gap: 0.5rem;
        justify-content: center;
    }
    
    .exercise-slide {
        flex: 0 0 calc(33.333% - 0.5rem);
        width: calc(33.333% - 0.5rem);
    }
    
    .image-slide {
        height: 16rem;
    }
    
    .exercise-image {
        max-height: 14rem;
    }
    
    .exercise-buttons-container {
        gap: 1.5rem;
        margin-top: 0.75rem;
    }
    
    .exercise-buttons-container .carousel-btn {
        width: 2rem;
        height: 2rem;
        font-size: 0.9rem;
    }




    .health-card {
        padding: 1rem;
    }

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

    .health-value {
        font-size: 1.2rem;
    }

    /* 移动端图片轮播样式 */
    .swiper-image {
        max-height: 300px;
        border-radius: 8px;
    }

    .image-slide {
        padding: 0.5rem;
        height: 18rem;
    }
    
    .exercise-image {
        max-height: 16rem;
    }

    /* 移动端按钮样式 */
    .exercise-buttons-container {
        gap: 2rem;
        margin-top: 1rem;
    }
    
    .exercise-buttons-container .carousel-btn {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }
    
    /* 移动端轮播图布局 - 显示1个图片居中 */
    .exercise-carousel {
        gap: 0.5rem;
        justify-content: center;
    }
    
    .exercise-slide {
        flex: 0 0 calc(100% - 0.5rem);
        width: calc(100% - 0.5rem);
        max-width: 300px;
    }

    .contact-hero-section {
        min-height: 160px;
    }

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

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

/* 更多功能，更多乐趣样式 */
.more-features-image {
    margin-top: 2rem;
}

.more-features-image img {
    max-width: 100%;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.more-features-image img:hover {
    transform: scale(1.02);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .more-features-image {
        margin-top: 1.5rem;
    }
}

@media (max-width: 576px) {
    .more-features-image {
        margin-top: 1rem;
    }
}


/* APP特性模块样式 */
#app-features {
    position: relative;
    overflow: hidden;
}

#app-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
    z-index: 1;
}

#app-features .container {
    position: relative;
    z-index: 2;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    height: 100%;
}



.feature-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-image {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.feature-image:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.2));
}

.feature-title {
    font-family: PingFang SC;
    font-weight: 500;
    font-style: Medium;
    font-size: 1rem;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
}

.feature-description {
    font-family: PingFang SC;
    font-weight: 400;
    font-style: Medium;
    font-size: 0.75rem;
    line-height: 120%;
    letter-spacing: 0%;
    margin-top: 1.5rem;
    text-align: center;
    color: rgba(153, 153, 153, 1);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .feature-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }

    .feature-image {
        width: 60px;
        height: 60px;
    }

    .feature-title {
        font-size: 1.3rem;
    }

    .section-description-a {
        max-width: 70%;
    }
}

@media (max-width: 576px) {
    .feature-card {
        padding: 1.5rem 1rem;
    }

    .feature-image {
        width: 50px;
        height: 50px;
    }

    .feature-title {
        font-size: 1.2rem;
    }

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

    .section-description-a {
        max-width: 85%;
    }
}