:root {
    --primary: #009A7E;
    /* PANTONE 325C */
    --primary-light: #4dc6ac;
    --primary-dark: #006e58;
    --secondary: #29b6f6;
    --accent: #ff9800;
    --light: #f8f9fa;
    --dark: #343a40;
    --success: #28a745;
    --text: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

body {
    color: var(--text);
    line-height: 1.6;
    background-color: #f9f9f9;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 页面标题区域 - 添加背景图 */
.page-header {
    padding: 100px 0 80px;
    text-align: center;
    background-image: url('https://t31.cngenial.cn/webfile/upload/2025/09-26/16-12-050190245196319.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 551px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    cursor: pointer;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.page-herder .page-bgimg {
    width: 100%;
    z-index: 5;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    color: var(--primary);
    font-size: 2.8rem;
    margin-bottom: 40px;
}

.page-header p {
    font-size: 1.2rem;
    line-height: 40px;
    max-width: 345px;
    opacity: 0.95;
}

/* .cta-button {
    background-color: var(--primary);
    color: white;
    padding: 10px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-block;
    font-size: 0.8rem;
    margin-top: 22vw;
    margin-left: 22vw;
}

.cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
} */

/* 应用介绍区域 */
.app-intro {
    padding: 10vw 0;
    background-color: white;
}

.intro-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.intro-text p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.feature-list {
    margin: 25px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-icon {
    color: var(--primary);
    font-size: 1.5rem;
    margin-right: 15px;
    width: 30px;
}

.intro-image {
    flex: 1;
    text-align: center;
}

.intro-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* 健康监测区域 */
.health-monitoring {
    padding: 90px 0;
    background-color: var(--light);
}

.monitoring-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.monitoring-text {
    flex: 1;
}

.monitoring-text h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.monitoring-text p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.monitoring-image {
    flex: 1;
    text-align: center;
    position: relative;
}

.monitoring-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* 功能特点区域 */
.features {
    padding: 90px 0;
    background-color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary);
}

.section-title p {
    color: #666;
    max-width: 700px;
    margin: 20px auto 0;
    font-size: 1.2rem;
    color: var(--dark);
    opacity: 0.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.feature-card .icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: inline-block;
    height: 80px;
    width: 80px;
    line-height: 80px;
    border-radius: 50%;
    background: rgba(0, 154, 126, 0.1);
}

.feature-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* T31专用功能区域 */
.t31-features {
    padding: 90px 0;
    background-color: var(--light);
}

.t31-feature-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.t31-feature-text {
    flex: 1;
}

.t31-feature-text h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.t31-feature-text p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.t31-feature-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* 新增的综合功能区域样式 */
.comprehensive-features {
    padding: 90px 0;
    background-color: white;
}

.comprehensive-title {
    text-align: center;
}

.comprehensive-title h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.comprehensive-title p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: var(--dark);
    opacity: 0.8;
    line-height: 1.8;
}

.comprehensive-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.comprehensive-text {
    flex: 1;
}

.comprehensive-image {
    flex: 1;
    text-align: center;
}

.comprehensive-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.comprehensive-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.comprehensive-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    min-height: 200px;
}

.comprehensive-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.comprehensive-icon {
    color: var(--primary);
    font-size: 1.8rem;
    width: 50px;
    flex-shrink: 0;
}

.comprehensive-desc h4 {
    color: var(--primary);
    margin-bottom: 25px;
    font-size: 1.4rem;
}

/* 应用截图区域 */
.screenshots {
    padding: 90px 0;
    background-color: #f7f8fd;
}

.screenshots-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.screenshot {
    width: 280px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
}

.screenshot:hover {
    transform: translateY(-10px);
}

.screenshot img {
    width: 100%;
    display: block;
}

.screenshot-caption {
    padding: 20px;
    background: white;
    text-align: center;
}

.screenshot-caption h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.screenshot-item {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
    position: relative;
}

.screenshot-item:nth-child(even) {
    flex-direction: row-reverse;
}

.screenshot-text {
    flex: 1;
    padding: 20px;
}

.screenshot-text h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.screenshot-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.screenshot-image {
    flex: 1;
    text-align: center;
    position: relative;
}

.screenshot-image img {
    width: 100%;
    max-width: 832px;
    /* 832/2=416，保持比例 */
    height: auto;
    border-radius: 15px;
    /*box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);*/
    transition: transform 0.3s ease;
    /*border: 1px solid rgba(0, 0, 0, 0.05);*/
}

.screenshot-image img:hover {
    transform: translateY(-5px) scale(1.02);
    /*box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);*/
}

/* 添加装饰元素增强视觉效果 */
.screenshot-item::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(0, 154, 126, 0.05);
    border-radius: 50%;
    z-index: -1;
}

.screenshot-item:nth-child(odd)::before {
    top: -20px;
    left: -20px;
}

.screenshot-item:nth-child(even)::before {
    bottom: -20px;
    right: -20px;
}

/* 应用场景区域 */
.applications {
    padding: 90px 0;
    background-color: white;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.application-item {
    display: flex;
    gap: 25px;
}

.app-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.app-content h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* 下载区域 */
.download {
    padding: 90px 0;
    background: url('https://t31.cngenial.cn/webfile/upload/2025/09-23/17-42-370298-5907730.jpg') no-repeat center center;
    background-size: cover;
    text-align: center;
    position: relative;
    min-height: 387px;
    /* 保持图片高度 */
    display: flex;
    align-items: center;
    justify-content: center;
}

.download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.download .container {
    position: relative;
    z-index: 2;
}

.download h2 {
    color: var(--primary);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.download p {
    font-size: 1.1rem;
    max-width: 755px;
    margin: 0 auto;
    opacity: 0.9;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.download-btn {
    background: var(--primary);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.download-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* 响应式设计 平板设备调整高度 */
@media (max-width: 992px) {
    .page-header {
        min-height: 400px;
        padding: 80px 0 60px;
    }

    .page-header h1 {
        font-size: 2.4rem;
    }

    .intro-content,
    .monitoring-content,
    .t31-feature-content,
    .comprehensive-content {
        flex-direction: column;
        gap: 40px;
    }

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

    .applications-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .screenshots-container {
        gap: 20px;
    }

    .screenshot {
        width: 230px;
    }

    .screenshot-item {
        flex-direction: column !important;
        gap: 30px;
        margin-bottom: 60px;
        text-align: center;
    }

    .screenshot-text h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .screenshot-image img {
        max-width: 100%;
    }

    .screenshot-item::before {
        display: none;
        /* 移动端隐藏装饰元素 */
    }

    .comprehensive-grid {
        grid-template-columns: 1fr;
    }

    .download {
        min-height: 300px;
        padding: 70px 0;
    }
}

@media (max-width: 768px) {
    .page-header {
        min-height: 300px;
        /* 手机设备调整高度 */
        padding: 60px 0 40px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1.1rem;
    }

    /* .cta-button {
        padding: 8px 12px;
        font-size: 0.7rem;
        margin-top: 15vh;
        margin-left: 8vw;
    } */

    .intro-text h2 {
        font-size: 1.8rem;
    }

    .t31-feature-text h2 {
        font-size: 1.8rem;
    }

    .features {
        padding: 60px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .comprehensive-features {
        padding: 60px 0;
    }

    .comprehensive-title h2 {
        font-size: 1.8rem;
    }

    .applications {
        padding: 0 0 60px 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .application-item {
        flex-direction: column;
        text-align: center;
    }

    .app-icon {
        margin: 0 auto;
    }

    .screenshot {
        width: 100%;
        max-width: 280px;
    }

    .comprehensive-item {
        flex-direction: column;
        text-align: center;
    }

    .comprehensive-icon {
        margin: 0 auto;
    }

    .download {
        min-height: 250px;
        padding: 50px 0;
    }

    .download h2 {
        font-size: 1.8rem;
    }

    .download p {
        font-size: 1rem;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .page-header {
        background: url('https://t31.cngenial.cn/webfile/upload/2025/09-27/10-12-0306141749100989.jpg');
        background-size: contain;
        background-repeat: no-repeat;
        min-height: 59vw;
        padding: 50px 0 30px;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .page-header p {
        max-width: 245px;
    }

    .download {
        min-height: 200px;
        padding: 40px 0;
    }

    .download h2 {
        font-size: 1.6rem;
    }
}