/* ------------------------------------- */
/* 医疗保健页面样式                    */
/* ------------------------------------- */

/* 全屏页面设置 */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
/* 全局链接样式 - 保持原色，无下划线 */
a {

    text-decoration: none;
}

a:hover {

    text-decoration: none;
}

a:visited {

    text-decoration: none;
}

a:active {

    text-decoration: none;
}

main {
    width: 100vw;
    min-height: 100vh;
    margin: 0;
    background-color: #ffffff;
    padding-top: 0;
    padding-bottom: 5vh;
    padding-left: 3.5vw;
    padding-right: 4.2vw !important;/*logo 2.7*/
    margin-top: 120px;
    box-sizing: border-box;
}

/* 英雄区域样式 */
.hero-section {
    position: relative;
    width: 100%;
    height: 50vh;
    background-color: #3a3a3a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.hero-content {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    gap: 4rem;
}

.hero-text {
    flex: 3;
    color: white;
    padding-left: 7rem;
    max-width: 1200px;
    position: relative;
    z-index: 10;
    width: 80%;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0 0 1.5rem 0;
    color: white;
    line-height: 1.1;
}

.hero-text h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0 0 2rem 0;
    color: white;
    line-height: 1.3;
}

.hero-text p {
    font-size: 1.5rem;
    line-height: 1.8;
    margin: 0;
    color: white;
}

.hero-image {
    flex: 2;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
    margin-right: 0;
    z-index: 1;
}

.laptop-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.laptop-bg {
    width: auto;
    height: 80%;
    display: block;
    object-fit: contain;
    margin-right: 0;
    position: absolute;
    right: 0;
    bottom: 0;
}

.laptop-screen {
    position: absolute;
    top: 25%;
    left: 12%;
    width: 100%;
    height: 70%;
    background: transparent;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-sizing: border-box;
}

.screen-content {
    width: 60%;
    height: auto;
    max-height: 50%;
    object-fit: contain;
    margin: 0;
}

.download-btn {
    background-color: #F0602E;
    color: white;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
    margin-top: 3vh;
}

.download-btn:hover {
    background-color: #d54a1f;
    color: white;
}

/* Case展示区域样式 */
.case-section {
    width: 100%;
    background-color: #f1f1f1;
    padding: 2rem 0;
    margin-top: 5rem;
}

.case-container {
    margin: 0 auto;
    padding: 0 2rem;
}

.case-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 3rem 0;
    text-align: left;
}

.case-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.case-item {
    flex: 1;
    max-width: calc(20% - 0.8rem);
}

.case-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
}

.case-link:hover {
    text-decoration: none;
    color: inherit;
}

.case-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-thumbnail:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.case-img,
.case-img-hover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.case-img-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateY(30px);
}

.case-thumbnail:hover .case-img-hover {
    opacity: 1;
    transform: translateY(0);
}

.case-thumbnail:hover .case-img {
    opacity: 0;
    transform: translateY(-30px);
}

/* 相关见解/新闻/荣誉区块样式 */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.insight-item {
    background: white;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.insight-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.insight-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.3s ease;
}

.insight-item:hover .insight-img {
    transform: scale(1.05);
}

.insight-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.insight-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 1rem 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.insight-title a {
    color: inherit;
    text-decoration: none;
}
.insight-excerpt {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.insight-readmore {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    align-self: flex-start;
}

.insight-readmore:hover {
    text-decoration: underline;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .hero-content {
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-text h2 {
        font-size: 1.5rem;
    }

    .case-grid {
        gap: 0.8rem;
    }

    .case-item {
        max-width: calc(20% - 0.64rem);
    }

    .insights-grid {
        gap: 1.5rem;
    }

    .insight-content {
        padding: 1.25rem;
    }

    .insight-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 60vh;
        padding: 2rem 0;
    }

    .hero-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        margin-top: 20px;
        height: auto;
    }

    .hero-text {
        flex: 1;
        padding-left: 0;
        width: 95%;
    }

    .hero-image {
        flex: 1;
        height: auto;
        justify-content: center;
        align-items: center;
    }

    .laptop-container {
        height: auto;
        justify-content: center;
        align-items: center;
    }

    .laptop-bg {
        display: none;
    }

    .laptop-screen {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        height: auto;
        box-shadow: none;
    }

    .screen-content {
        width: 50%;
        max-height: none;
        margin-bottom: 1.5rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text h2 {
        font-size: 1.3rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .case-section {
        padding: 3rem 0;
        margin-top: 3rem;
    }

    .case-container {
        padding: 0 1rem;
    }

    .case-title {
        font-size: 2rem;
        margin-bottom: 2rem;
        text-align: center;
    }

    .case-grid {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem;
    }

    .case-item {
        flex: 0 0 calc(50% - 0.4rem);
        max-width: calc(50% - 0.4rem);
    }

    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .insight-content {
        padding: 1rem;
    }

    .insight-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .insight-excerpt {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .case-item {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .insights-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .insight-image {
        height: 180px;
    }

    .insight-content {
        padding: 1rem;
    }

    .insight-title {
        font-size: 1.1rem;
    }
}


