/* 全局样式 */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimHei, Arial, Helvetica, sans-serif;
    color: #000000;
    background-color: #ffffff;
    line-height: 1.5;
}

/* 颜色变量 */
:root {
    --primary-color: #0057ff;
    --secondary-color: #082676;
    --text-color: #0b0b0b;
    --text-secondary: #6d7278;
    --text-light: #b8c4cd;
    --background-light: #f6f8ff;
    --background-dark: #131b2a;
}

/* 通用样式 */
.section-title {
    font-size: 36px;
    font-weight: 600;
    line-height: 50px;
    margin-left: 28px;
    margin-right: 28px;
    color: var(--text-color);
}

.section-divider {
    margin-top: 16px;
    width: 200px;
    height: 11px;
}

.btn {
    display: inline-block;
    padding: 15px 80px;
    font-size: 24px;
    line-height: 34px;
    text-decoration: none;
    border-radius: 4px;
    font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimHei, Arial, Helvetica, sans-serif;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-outline-dark {
    background-color: transparent;
    color: #1d1d1d;
    border: 1px solid #1d1d1d;
    padding: 12px 39px;
    font-size: 20px;
    line-height: 28px;
}

/* 头部导航 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 1920px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    z-index: 1200;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 280px;
    height: 100%;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    width: 270px;
}

.logo-img {
    width: 38px;
    height: 54px;
}

.logo-text {
    margin-left: 10px;
}

.company-name {
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    color: #1a1919;
}

.company-english {
    font-size: 12px;
    font-weight: 500;
    line-height: 17px;
    color: #1a1919;
    letter-spacing: 0.48px;
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: 50px;
}

.nav-item:first-child {
    margin-left: 0;
}

.nav-item a {
    text-decoration: none;
    font-size: 16px;
    line-height: 22px;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.nav-item.active>a {
    color: var(--primary-color);
}

/* 下拉菜单 */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .dropdown-menu {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    display: none;
    flex-direction: column;
    text-align: center;
    min-width: 280px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 0;
}

/* 移除hover效果，改为点击触发 */
/* .nav-dropdown:hover .dropdown-menu {
    display: flex;
    opacity: 1;
    visibility: visible;
} */

.dropdown-item {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: white;
    white-space: nowrap;
}

.dropdown-item:hover {
    color: var(--primary-color);
}

.dropdown-item.active {
    background-color: #ffffff;
    color: var(--primary-color);
    font-weight: 600;
}

/* 英雄区域 */
.hero {
    position: relative;
    width: 100%;
    max-width: 1920px;
    min-height: 1200px;
    padding-top: 60px;
    margin: 0 auto;
}

.hero-main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 280px 400px 252px;
    width: 100%;
    min-height: 800px;
    overflow: hidden;
    background-image: url(assets/image/mn87l602-3dnc795.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-title {
    margin: 0 0 0 28px;
    line-height: 80px;
    letter-spacing: 0;
    color: #000000;
    font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimHei, Arial, Helvetica, sans-serif;
    font-size: 57px;
    font-weight: 500;
}

.hero-subtitle {
    margin: 1px 0 0 28px;
    line-height: 62px;
    letter-spacing: 0;
    color: #000000;
    font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimHei, Arial, Helvetica, sans-serif;
    font-size: 44px;
}

.hero-tagline {
    margin: 27px 0 0 28px;
    line-height: 34px;
    letter-spacing: 0;
    color: var(--primary-color);
    font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimHei, Arial, Helvetica, sans-serif;
    font-size: 24px;
}

/* 产品介绍 */
.product-title {
    margin-top: 60px;
    margin-left: 28px;
    margin-right: 28px;
}

.index-business {
    position: relative;
    top: -140px;
    padding-left: 630px;
    z-index: 3
}


/* 产品卡片通用样式 */
.product-card {
    /* background: #ffffff;
    border: 2px solid #ffffff;
    box-shadow: inset 0px 0px 30px 0px rgba(226, 241, 255, 0.5), 0px 4px 10px 0px rgba(194, 198, 221, 0.3);
    padding: 30px 46px;
    border-radius: 8px;
    height: 610px;
    align-items: center;
    overflow: hidden;
    transition: all 0.3s ease;
    position: absolute;
    top: 138px;
    left: 0;
    z-index: 1; */
    background: #ffffff;
    width: 570px;
    height: 480px;
    border: 2px solid #ffffff;
    box-shadow: inset 0px 0px 30px 0px rgba(226, 241, 255, 0.5), 0px 4px 10px 0px rgba(194, 198, 221, 0.3);
    box-sizing: border-box;
    padding: 54px;
    color: #fff;
    position: relative;
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    transition: all .25s ease
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: inset 0px 0px 30px 0px rgba(226, 241, 255, 0.5), 0px 8px 20px 0px rgba(194, 198, 221, 0.5);
}

/* 产品卡片hover时按钮变色效果 - 尔思数字科教系统和AI智慧运动技能平台 */
.product-card.edu-system:hover .btn-outline,
.product-card.ai-platform:hover .btn-outline ,
.product-card.sports-platform:hover .btn-outline {
    background-color: var(--primary-color);
    color: #ffffff;
    border: 1px solid var(--primary-color);
}

/* 竞技体育运动平台hover时按钮不变色 - 因为"了解更多"功能尚未实现 */
/* .product-card.sports-platform:hover .btn-outline {
    background-color: var(--primary-color);
    color: #ffffff;
    border: 1px solid var(--primary-color);
} */

.card-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.card-title {
    line-height: 49px;
    letter-spacing: 0;
    color: #000000;
    font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimHei, Arial, Helvetica, sans-serif;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 12px;
}

.card-description {
    margin: 8px 0 24px;
    line-height: 36px;
    letter-spacing: 0.6px;
    color: #000000;
    font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimHei, Arial, Helvetica, sans-serif;
    font-size: 18px;
}

.card-button {
    display: inline-block;
    margin-top: 60px;
}

.card-button .btn {
    padding: 15px 80px;
    font-size: 24px;
    line-height: 34px;
    border-radius: 4px;
}

.card-image {
    height: 300px;
    object-fit: contain;
    z-index: 1;
    margin-left: 40px;
}

.index-business .product-card .icon {
    position: absolute;
    bottom: -0px;
    right: -60px;
    width: 260px;
    height: 440px;
    background-size: auto 440px !important
}

.index-business .product-card .icon1 {
    position: absolute;
    bottom: 100px;
    right: -60px;
    width: 350px;
    height: 300px;
    background-size: auto 300px !important
}

/* 尔思数字科教系统 */
.edu-system {
    position: absolute;
    top: 138px;
    left: 0;
    z-index: 1
}

.edu-system .card-button .btn-primary {
    background: var(--primary-color);
    color: #ffffff;
}

.edu-system .card-image {
    height: 250px;
}

/* AI智慧运动技能平台 */
.ai-platform {
    z-index: 2;
}

/* 竞技体育运动平台 */
.sports-platform {
    z-index: 3;
    margin-top: 50px;
}

/* 关于我们 */
.about {
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin-top: 100px;
    margin-left: auto;
    margin-right: auto;
    /* background: var(--background-light); */
    padding: 60px 280px;
}

.about-header {
    display: flex;
    flex-direction: column;
    /* padding: 60px 280px; */

    align-items: flex-start;
    margin-bottom: 20px;
    width: fit-content;
}

.about-content {
    background: #ffffff;
    box-shadow: 0px 1px 8px 0px rgba(220, 228, 230, 0.5);
    padding: 57px 88px 60px 138px;
    width: 100%;
    min-height: 591px;
    margin-top: 10px;
}

.about-text {
    width: 100%;
    min-height: 304px;
}

.about-text p {
    line-height: 22px;
    letter-spacing: 0.47px;
    color: var(--secondary-color);
    font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimHei, Arial, Helvetica, sans-serif;
    font-size: 16px;
    margin-bottom: 15px;
}

.about-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    padding: 20px;
    border-radius: 4px;
    background: #ffffff;
    flex: 1;
    min-width: 250px;
    text-align: left;
}

.stat-number {
    display: inline;
    letter-spacing: 1.76px;
    color: var(--primary-color);
    font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimHei, Arial, Helvetica, sans-serif;
    font-size: 60px;
    font-weight: 600;
    line-height: 1;
}

.stat-label {
    display: inline;
    margin-left: 10px;
    line-height: 25px;
    letter-spacing: 0.53px;
    color: #000000;
    font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimHei, Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 500;
}

.stat-description {
    margin: 20px 0 0;
    line-height: 20px;
    letter-spacing: 0.41px;
    color: var(--secondary-color);
    font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimHei, Arial, Helvetica, sans-serif;
    font-size: 14px;
}

/* 解决方案banner */
.solutions-banner {
    position: relative;
    width: 100%;
    max-width: 1920px;
    min-height: 712px;
    margin: 0 auto;
    padding: 90px 280px 189px;
    display: flex;
    align-items: center;
    gap: 60px;
    background-image: url(assets/image/plan1.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}
.athletics-solutions{

 background-image: url(assets/image/plan3.png);

}
.solutions-banner-home {
    background-image: url(assets/image/mni7s88u-hbvj4sm.png);
    padding: 90px 280px 316px;
}

/* 功能切换tab栏 */
.solutions-tabs {
    position: sticky;
    top: 60px;
    z-index: 1100;
    background: #ffffff;
    border-top: 1px solid rgba(0, 87, 255, 0.2);
    border-bottom: 1px solid rgba(0, 87, 255, 0.2);
}

.tabs-container {
    display: flex;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 280px;
    width: 100%;
    box-sizing: border-box;
}

.tab-item {
    flex: 1;
    /* max-width: 450px; */
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    color: #0057ff;
    transition: all 0.3s ease;
    border-right: 1px solid rgba(0, 87, 255, 0.2);
}

.tab-item:last-child {
    border-right: none;
}

.tab-item.active {
    background: #0057ff;
    color: #ffffff;
}

.tab-item:hover:not(.active) {
    background: rgba(0, 87, 255, 0.05);
}

.banner-content {
    flex: 1;
}

.solutions-banner-home .banner-content {
    max-width: 1085px;
}

.banner-title {
    line-height: 80px;
    font-size: 57px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 52px;
    font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimHei, Arial, Helvetica, sans-serif;
}

.banner-text {
    font-size: 26px;
    line-height: 36px;
    color: #1d1d1d;
    margin-bottom: 20px;
    font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimHei, Arial, Helvetica, sans-serif;
}

.banner-text {
    font-size: 20px;
    color: #1d1d1d;
    margin-bottom: 20px;
    font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimHei, Arial, Helvetica, sans-serif;
}

.banner-image {
    flex: 1;
    max-width: 500px;
}

.banner-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* 解决方案 */
.solutions {
    position: relative;
    margin-top: 100px;
    width: 100%;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    padding: 60px 280px;
}

.solutions-page {
    position: relative;
    margin-top: 0;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}

/* 场景、功能、价值部分的容器 */
.scenarios-section {
    /* padding: 60px 280px; */
    max-width: 1920px;
    margin: 0 auto;
}

/* 全宽图片容器 */
.full-width-images {}

/* 响应式调整 */
@media (max-width: 1200px) {
    .scenarios-section {
        padding: 60px 100px;
    }

    .full-width-images {
        margin: 0 -100px;
        width: calc(100% + 200px);
    }
}

@media (max-width: 480px) {
    .scenarios-section {
        padding: 60px 20px;
    }

    .full-width-images {
        margin: 0 -20px;
        width: calc(100% + 40px);
    }
}

.solutions-home-page {
    position: relative;
    margin-top: 0;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}

.solutions-header {
    text-align: center;
    margin-bottom: 40px;
}

.solutions-header .section-title {
    font-size: 32px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 20px;

}

/* 解决方案导航 */
.solutions-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.solutions-nav-item {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.solutions-nav-item:hover {
    color: var(--primary-color);
    background: rgba(0, 87, 255, 0.1);
}

.solutions-nav-item.active {
    color: var(--primary-color);
    background: rgba(0, 87, 255, 0.1);
    font-weight: 600;
}

.solutions-intro {
    max-width: 1000px;
    margin: 0 auto 60px;
    text-align: center;
}

.solutions-desc {
    font-size: 18px;
    line-height: 32px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.solutions-section-title {
    text-align: center;
    margin: 60px 0 40px;
}

.solutions-section-title h4 {
    font-size: 28px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 15px;
}

.section-divider-small {
    width: 120px;
    height: 11px;
}

/* 解决方案项目 */
.solution-item {
    display: flex;
    align-items: center;
    /* padding: 60px 280px; */
    justify-content: space-between;
    margin-bottom: 60px;
    gap: 60px;
}

.solution-item-reverse {
    flex-direction: row-reverse;
}

.solution-image-only {
    display: block;
    width: 100%;
    text-align: center;
    margin: 40px 0;
}

.solution-image-only img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.video-container {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

.image-grid {
    display: flex;
    /* padding: 60px 280px; */
    gap: 20px;
    margin: 40px 0;
    width: 100%;
}

.image-grid img {
    flex: 1;
    width: 48%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .image-grid {
        flex-direction: column;
    }

    .image-grid img {
        width: 100%;
        margin-bottom: 20px;
    }
}

.solution-content {
    flex: 1;
    max-width: 500px;
}

.solution-title {
    font-size: 36px;
    font-weight: 500;
    color: #1d1d1d;
    margin-bottom: 20px;
}

.solution-line {
    width: 107px;
    height: 2px;
    background: #0057ff;
    margin-bottom: 30px;
}

.solution-points {
    display: flex;
    flex-direction: column;
    gap: 45px;
    margin-bottom: 20px;
}

.solution-dot {
    width: 6px;
    height: 6px;
    background: #666666;
    border-radius: 50%;
}

.solution-texts {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.solution-texts p {
    font-size: 20px;
    line-height: 30px;
    color: #1d1d1d;
}

.solution-image {
    flex: 1;
    max-width: 700px;
}

.solution-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* 系统功能 */
.system-functions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.function-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0px 1px 8px 0px rgba(220, 228, 230, 0.5);
}

.function-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.function-header h5 {
    font-size: 24px;
    font-weight: 500;
    color: #1d1d1d;
}

.function-tag {
    font-size: 14px;
    color: var(--primary-color);
    background: rgba(0, 87, 255, 0.1);
    padding: 5px 10px;
    border-radius: 4px;
}

.function-desc {
    font-size: 16px;
    line-height: 26px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.function-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: #1d1d1d;
    margin-bottom: 20px;
}

.function-content {
    display: flex;
    gap: 20px;
    align-items: center;
}

.function-content img {
    width: 120px;
    height: auto;
}

.function-content p {
    font-size: 16px;
    line-height: 26px;
    color: var(--text-secondary);
}

/* 大数据中心 */
.big-data-center {
    /* background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); */
    border-radius: 8px;
    /* padding: 40px; */
    /* padding: 60px 280px; */
    text-align: center;
    margin-bottom: 60px;
}

.big-data-center h5 {
    font-size: 24px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 20px;
}

.big-data-center p {
    font-size: 16px;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.big-data-center1 {
    width: 100vw;
    text-align: center;
    margin: 40px 0;
}

.big-data-center1 img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
}


.big-data-center img {
    width: 100%;
    /* max-width: 900px; */
    height: auto;
    border-radius: 8px;
}

/* 方案价值 */
.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.value-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0px 1px 8px 0px rgba(220, 228, 230, 0.5);
    display: flex;
    flex-direction: column;
}

.value-card h5 {
    font-size: 20px;
    font-weight: 500;
    color: #1d1d1d;
    margin-bottom: 15px;
    line-height: 28px;
}

.value-card p {
    font-size: 16px;
    line-height: 26px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    flex: 1;
}

.value-card img {
    width: 100%;
    max-width: 200px;
    height: auto;
    align-self: flex-end;
}

/* AI智能居家运动方案页面 */
.solutions-home-page {
    position: relative;
    margin-top: 100px;
    width: 100%;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.solutions-home-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f9ff 0%, #e6f0ff 100%);
    border-radius: 12px;
}

.solutions-home-header .section-title {
    font-size: 36px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 30px;
}

.solutions-home-desc {
    font-size: 18px;
    line-height: 32px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.solutions-home-section-title {
    text-align: center;
    margin: 80px 0 40px;
}

.solutions-home-section-title h4 {
    font-size: 28px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 15px;
}

/* 课程体系 */
.course-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.course-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.12);
}

.course-item img {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
}

.course-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
    line-height: 26px;
}

/* 方案价值 */
.value-grid-home {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.value-item-home {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);
}

.value-item-home img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.value-content-home {
    flex: 1;
}

.value-content-home h5 {
    font-size: 22px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 15px;
}

.value-content-home p {
    font-size: 16px;
    line-height: 26px;
    color: var(--text-secondary);
}

/* 公司资质 */
.certificates {
    position: relative;
    margin-top: 100px;
    width: 100%;
    max-width: 1360px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.certificates-header {
    position: relative;
    width: 100%;
    height: 45px;
    overflow: hidden;
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certificates-header .section-title {
    position: relative;
    height: 45px;
    line-height: 45px;
    letter-spacing: 0;
    color: var(--text-color);
    font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimHei, Arial, Helvetica, sans-serif;
    font-size: 32px;
    font-weight: 500;
    margin: 0;
    background: #ffffff;
    padding: 0 30px;
    z-index: 10;
}

.certificates-header .section-divider {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    margin: 0;
    transform: translateY(-50%);
    z-index: 5;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 10px;
    margin: 38px 0 0;
    width: 100%;
}

.certificate-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 1px 8px 0px rgba(220, 228, 230, 0.5);
    /* border: 2px solid #FFD700; */
}

.certificate-image {
    width: 250px;
    height: 180px;
    object-fit: contain;
}

.certificate-title {
    margin: 14px 0 0;
    line-height: 22px;
    letter-spacing: 0;
    color: #515151;
    font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimHei, Arial, Helvetica, sans-serif;
    font-size: 16px;
    text-align: center;
    width: 240px;
}

/* 新闻动态 */
.news {
    position: relative;
    margin-top: 100px;
    width: 100%;
    max-width: 1920px;
    min-height: 343px;
    margin-left: auto;
    margin-right: auto;
    background: var(--background-light);
    padding: 60px 280px;
}

.news-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}

.news-header .section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.news-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
}

.news-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 33%;
    min-height: 352px;
    overflow: hidden;
    background: #ffffff;
    text-decoration: none;
    /* 核心代码：去掉下划线 */
    box-shadow: 0px 1px 8px 0px rgba(220, 228, 230, 0.5);
    padding: 20px;
    border-radius: 8px;
    justify-content: space-between;
}

.news-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 4px;
}

.news-title {
    margin: 20px 0 0;
    width: 100%;
    letter-spacing: 0;
    color: var(--text-color);
    font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimHei, Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-align: left;
    height: 80px;
    display: flex;
    align-items: flex-start;
}

.news-date {
    margin: 14px 0 0;
    width: 100%;
    letter-spacing: 0;
    color: var(--text-color);
    font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimHei, Arial, Helvetica, sans-serif;
    font-size: 16px;
    text-align: left;
    margin-top: auto;
}

/* 页脚 */
.footer {
    position: relative;
    margin-top: 100px;
    width: 100%;
    max-width: 1920px;
    min-height: 320px;
    background-image: url(assets/image/mn87km4w-wlnj28h.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-left: auto;
    margin-right: auto;
    /* padding-bottom: 120px; */
}

.footer-content {
    padding: 36px 280px;
    height: 100%;
}

.footer-info {
    display: flex;
    position: relative;
    left: 0;
    align-items: flex-start;
    width: 100%;
    min-height: 188px;
    gap: 40px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-top: 17px;
    width: 328px;
    min-width: 328px;
    height: 74px;
    overflow: hidden;
}

.footer-logo-img {
    width: 52px;
    height: 74px;
    margin-right: 5px;
}

/* .footer-logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
} */

.footer-company-name {
    line-height: 34px;
    letter-spacing: 0.36px;
    color: #fff;
    font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimHei, Arial, Helvetica, sans-serif;
    font-size: 24px;
    font-weight: 500;
}

.footer-company-english {
    margin: 3px 0 0;
    line-height: 21px;
    letter-spacing: 0.23px;
    color: #fff;
    font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimHei, Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 500;
}

.footer-divider {
    margin-top: 4px;
    width: 1px;
    height: 130px;
    background: rgba(255, 255, 255, 0.3);
}

.footer-social {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    margin-top: 2px;
}

.social-image {
    width: 130px;
    height: 128px;
}

.social-text {
    margin: 16px 0 0;
    line-height: 20px;
    letter-spacing: 0;
    color: #ffffff;
    font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimHei, Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 300;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 17px;
}

.contact-item {
    line-height: 22px;
    letter-spacing: 0;
    color: #ffffff;
    font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimHei, Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 30px;
}

.footer-bottom {
    display: flex;
    position: relative;
    align-items: center;
    background: #131b2a;
    /* padding: 34px 280px 26px; */
    width: 100%;
    min-height: 100px;
    justify-content: space-between;
    margin-top: 20px;
}

.footer-legal {
    display: flex;
    align-items: center;
}

.legal-image {
    margin-top: 6px;
    width: 20px;
    height: 20px;
}

.legal-text {
    margin: 8px 0 0 11px;
    line-height: 20px;
    letter-spacing: 0;
    color: var(--text-light);
    font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimHei, Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.footer-certs {
    display: flex;
    align-items: center;
    gap: 40px;
}

.cert-item {
    margin-left: 0;
}

.cert-text {
    line-height: 20px;
    letter-spacing: 0;
    color: var(--text-light);
    font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimHei, Arial, Helvetica, sans-serif;
    font-size: 14px;
    text-align: center;
}

/* 响应式设计 */
@media (max-width: 1200px) {

    .header-container,
    .hero-main,
    .product-section,
    .about,
    .news,
    .footer-content,
    .footer-bottom {
        padding: 0 100px;
    }

    .product-card {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .card-content {
        max-width: 100%;
    }

    .card-image {
        max-width: 80%;
    }

    .ai-platform,
    .sports-platform {
        flex-direction: column;
    }

    .news-grid {
        flex-direction: column;
        align-items: center;
    }

    .news-item {
        width: 100%;
        max-width: 430px;
        text-decoration: none;
        /* 核心代码：去掉下划线 */
    }

    .certificates-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-contact {
        align-items: center;
    }
}

@media (max-width: 768px) {

    .header-container,
    .hero-main,
    .product-section,
    .about,
    .news,
    .footer-content,
    .footer-bottom {
        padding: 0 50px;
    }

    .hero-title {
        font-size: 36px;
        line-height: 48px;
    }

    .hero-subtitle {
        font-size: 24px;
        line-height: 36px;
    }

    .hero-tagline {
        font-size: 18px;
        line-height: 24px;
    }

    .section-title {
        font-size: 28px;
        line-height: 36px;
    }

    .about-content {
        padding: 30px;
    }

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

    .nav-list {
        display: none;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    /* 解决方案响应式 */
    .solution-item {
        flex-direction: column;
        gap: 30px;
    }

    .solution-item-reverse {
        flex-direction: column;
    }

    .solution-content {
        max-width: 100%;
    }

    .solution-title {
        font-size: 28px;
    }

    .solution-texts p {
        font-size: 18px;
    }

    .system-functions {
        grid-template-columns: 1fr;
    }

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

    /* AI智能居家运动方案响应式 */
    .course-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .value-grid-home {
        grid-template-columns: 1fr;
    }

    .value-item-home {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {

    .header-container,
    .hero-main,
    .product-section,
    .about,
    .news,
    .footer-content,
    .footer-bottom {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 36px;
        margin-left: 0;
    }

    .hero-subtitle {
        font-size: 20px;
        line-height: 28px;
        margin-left: 0;
    }

    .hero-tagline {
        font-size: 16px;
        line-height: 20px;
        margin-left: 0;
    }

    .section-title {
        font-size: 24px;
        line-height: 32px;
    }

    .card-description {
        font-size: 16px;
        line-height: 24px;
    }

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

    .btn {
        padding: 10px 40px;
        font-size: 18px;
        line-height: 24px;
    }

    /* 解决方案小屏幕响应式 */
    .solutions,
    .solutions-page,
    .solutions-home-page {
        padding: 60px 100px;
    }

    .tabs-container {
        padding: 0 100px;
    }

    .solutions-header .section-title {
        font-size: 24px;
    }

    .solutions-desc {
        font-size: 16px;
        line-height: 28px;
    }

    .solutions-section-title h4 {
        font-size: 22px;
    }

    .solution-title {
        font-size: 24px;
    }

    .solution-texts p {
        font-size: 16px;
        line-height: 26px;
    }

    .function-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .function-content {
        flex-direction: column;
    }

    .big-data-center {
        padding: 20px;
    }

    .big-data-center h5 {
        font-size: 20px;
    }

    /* AI智能居家运动方案小屏幕响应式 */
    .solutions-home-header .section-title {
        font-size: 24px;
    }

    .solutions-home-desc {
        font-size: 16px;
        line-height: 28px;
    }

    .solutions-home-section-title h4 {
        font-size: 22px;
    }

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

    .course-item img {
        max-width: 250px;
    }

    .course-title {
        font-size: 16px;
    }

    .value-item-home {
        padding: 20px;
    }

    .value-item-home img {
        width: 100px;
        height: 100px;
    }

    .value-content-home h5 {
        font-size: 20px;
    }

    /* 解决方案banner响应式 */
    .solutions-banner {
        flex-direction: column;
        padding: 60px 20px 120px;
        text-align: center;
    }

    .solutions-banner-home {
        padding: 60px 20px 180px;
    }

    .banner-title {
        font-size: 36px;
        line-height: 48px;
        margin-bottom: 30px;
    }

    .banner-text {
        font-size: 18px;
        line-height: 28px;
    }

    .banner-content {
        max-width: 100%;
    }

    .banner-image {
        max-width: 100%;
    }

    /* 解决方案页面小屏幕响应式 */
    .solutions,
    .solutions-page,
    .solutions-home-page {
        padding: 60px 20px;
    }

    .tabs-container {
        flex-direction: column;
        padding: 0 20px;
    }

    .tab-item {
        max-width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(0, 87, 255, 0.2);
    }

    .tab-item:last-child {
        border-bottom: none;
    }


}