/* 左侧内容区 */
        .content-section {
            flex: 1;
            min-width: 400px;
        }

        .badge {
            background-color: #fdd835;
            color: #333;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: bold;
            display: inline-block;
            margin-bottom: 20px;
        }

        .main-title {
            font-size: 2.5rem;
            line-height: 1.1;
            margin-bottom: 20px;
            color: #1a1a1a;
        }

        .sub-description {
            color: #666;
            margin-bottom: 40px;
            line-height: 1.6;
            max-width: 500px;
        }

        /* 功能项列表 */
        .feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
        }

        .icon-box {
            background-color: #fdd835;
            min-width: 48px;
            height: 48px;
            border-radius: 8px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 20px;
        }

        .feature-text h3 {
            font-size: 18px;
            margin-bottom: 5px;
            color: #222222;
            font-family: 'Montserratb';
            font-weight: bold;
        }

        .feature-text p {
            font-size: 14px;
            color: #777;
            line-height: 1.5;
        }

        /* 右侧手机模型区 */
        .device-section {
            flex: 1;
            display: flex;
            justify-content: center;
            min-width: 350px;
        }

        .phone-mockup {
            width: 320px;
            height: 650px;
            background-color: #000;
            border-radius: 40px;
            border: 8px solid #333;
            position: relative;
            box-shadow: 0 50px 100px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        /* 手机屏幕内部模拟 */
        .screen {
            background-color: #f8f9fa;
            width: 100%;
            height: 100%;
            padding: 20px 15px;
            font-size: 12px;
        }

        .app-header {
            text-align: center;
            font-weight: bold;
            margin-bottom: 20px;
            padding-top: 10px;
        }

        .app-card {
            background: white;
            border-radius: 12px;
            padding: 15px;
            margin-bottom: 15px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }

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

        .status-box {
            background-color: #66bb6a;
            color: white;
            padding: 8px;
            border-radius: 6px;
            text-align: center;
            font-size: 10px;
        }

        /* 响应式适配 */
        @media (max-width: 850px) {
            .container {
                flex-direction: column;
                text-align: center;
            }
            .feature-item {
                text-align: left;
            }
            .main-title {
                font-size: 36px;
            }
        }
        /* 对比区域 */
        .comparison-wrapper {
            display: flex;
            align-items: stretch;
            justify-content: center;
            gap: 0;
            position: relative;
            margin-bottom: 60px;
            gap: 20px;
        }

        .application-card {
            background: #fff;
            border-radius: 12px;
            padding: 40px;
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            max-width: 480px;
            border: 2px solid transparent;
            box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25);
        }

        /* “我们的电池”卡片高亮 */
        .application-card:hover {
            border-color: #ffd700;
            z-index: 1;
            box-shadow: 6px 6px 6px 0px rgba(0,0,0,0.1);
        }

        .application-card h2 {
            font-size: 1.875rem;
            margin-bottom: 8px;
        }

        .application-card .subtitle {
            color: #666666;
            font-size: 1.0416667rem;
            margin-bottom: 30px;
        }

        .application-card img {
            width: 100%;
            max-width: 300px;
            height: auto;
            margin-bottom: 30px;
        }

        /* 列表样式 */
        .feature-list {
            list-style: none;
            text-align: left;
            width: 100%;
            padding-left: 20px;
        }

        .feature-list li {
            margin-bottom: 12px;
            font-size: 0.9375rem;
            position: relative;
            color: #444;
        }

        /* 列表的小圆点颜色 */
        .application-card:hover .feature-list li::before {
            content: " ";
            background-color: #ffd700;
        }

        .application-card .feature-list li::before {
            content: " ";
            background-color: #ccc;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            position: absolute;
            left: -20px;
            top: 4px;
        }
        .MyApplication .Application-footer{
            display: flex;
            align-items: center;
            /* justify-content: space-between; */
            gap: 50px;
        }
        .MyApplication .Application-footer li{
            width: calc(33.33% - 33.33px);
        }
        .MyApplication .Application-footer li h4{
            font-size: 1.666666rem;
            font-weight: bold;
            padding-bottom: 1.3541666666666667rem;
            border-bottom: 0.052083333333333336rem solid #DDDDDD;
            margin-bottom: 1.3020833333333335rem;
            font-family: 'Montserratb';
        }
        .MyApplication .Application-footer li p{
            color: #666666;
            font-weight: 400;
            font-size: 0.9375rem;
        }
        /* VS 标签 */
        .vs-divider {
            background: #ffd700;
            /* width: 40px;
            height: 30px; */
            padding: 5px 10px;
            font-weight: bold;
            font-family: 'Montserratb';
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 2.08333333333333rem;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 10;
            border-radius: 12px;
        }

        /* 底部三列特性 */
        .bottom-features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            text-align: left;
            border-top: 1px solid #eee;
            padding-top: 40px;
        }

        .f-item h3 {
            font-size: 24px;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .f-item p {
            font-size: 14px;
            color: #777;
            line-height: 1.6;
        }

        /* 模拟图片中的红色标注文字样式 */
        .highlight-team {
            background-color: rgba(255, 0, 0, 0.05);
            outline: 1px solid rgba(255, 0, 0, 0.3);
        }
        .MyApplication{
            padding: 5.208333333333rem 0;
        }
        .MyApplication h3{
            font-size: 2.5rem;
            font-weight: 700;
            color: #222222;
            text-align: center;
        }
        .MyApplication .hds p{
            color: #444;
            font-size: 0.83333333333333rem;
            text-align: center;
            margin-top: 10px;
        }
        .MyApplication .comparison-wrapper{
            margin: 2.5rem 0;
        }
        .MyApplication .application-card
        /* 响应式适配 */
        @media (max-width: 768px) {
            .comparison-wrapper {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }
            .vs-divider {
                position: static;
                transform: none;
                margin: 10px 0;
            }
            .bottom-features {
                grid-template-columns: 1fr;
            }
        }
        .section-title {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 40px;
            color: var(--text-dark);
            text-align: left;
        }
        .ApplicationNew{
            background-color: #ffffff;
            padding: 5.2083333333333rem 0;
        }
        /* 主容器：默认横向布局 */
        .main-content {
            display: flex;
            gap: 40px;
            align-items: flex-start;
        }

        /* --- 左侧图片拼贴 (Grid) --- */
        .image-gallery {
            flex: 1.0;
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr;
            grid-template-rows: repeat(11, 1fr);
            gap: 10px;
            height: 100%;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            background-color: #f0f0f0;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
            display: block;
        }

        /* 图片移入放大 */
        .gallery-item:hover img {
            transform: scale(1.15);
        }

        /* 拼贴位置定义 */
       /* 第一列：主水平线在第 13 刻度 */
.img-1 { grid-area: 1 / 1 / 15 / 2; } /* 从1行开始到13行结束 */
.img-6 { grid-area: 15 / 1 / 21 / 2; } /* 从13行开始到最后 */

/* 第二列：主水平线与第一列对齐，也在第 13 刻度 */
.img-2 { grid-area: 1 / 2 / 15 / 3; }
.img-4 { grid-area: 15 / 2 / 21 / 3; }

/* 第三列：实现交错 (Staggered) 效果 */
/* 我们让它的分割线避开 13，分别设在 8 和 16 刻度 */
.img-3 { grid-area: 1 / 3 / 8 / 4; }  /* 结束位置比左侧高 */
.img-5 { grid-area: 8 / 3 / 16 / 4; } /* 跨越了左侧的水平线，形成交错 */
.img-7 { grid-area: 16 / 3 / 21 / 4; } /* 底部收尾 */

        /* --- 右侧事件列表 --- */
        .events-list {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 16px;
            max-width: 510px;
        }

        .event-card {
            display: flex;
            align-items: center;
            padding: 24px 50px;
            border: 1px solid #eaeaea;
            border-radius: 12px;
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
            background: #fff;
        }

        .date-box {
            text-align: center;
            padding-right: 20px;
            margin-right: 20px;
            border-right: 1px solid #eee;
            min-width: 70px;
        }

        .date-box .day {
            font-size: 2.5rem;
            font-weight: 800;
            display: block;
            line-height: 1;
            font-family: 'Montserratb';
        }

        .date-box .month {
            font-size: 0.729166666667rem;
            font-weight: bold;
            text-transform: uppercase;
            color: #666666;
            margin-top: 4px;
            display: block;
        }

        .event-info h3 {
            font-size: 1.041666666667rem;
            margin-bottom: 6px;
            font-weight: 700;
            line-height: 1.3;
            font-family: Inter, Inter;
        }

        .event-info p {
            font-size: 0.729166666667rem;
            color: #666666;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* --- 交互效果：鼠标选中变黄 --- */
        .event-card:hover {
            background-color: #fDD000;
            border-color: #fdD000;
            transform: translateX(8px); /* 列表向右微动 */
            box-shadow: 6px 6px 6px 0px rgba(0,0,0,0.1);
        }

        .event-card:hover .month,
        .event-card:hover .event-info p {
            color: rgba(0,0,0,0.5);
        }

        /* =========================================
           移动端适配 (Breakpoints)
           ========================================= */

        /* 平板及小屏笔记本 */
        @media (max-width: 1024px) {
            .main-content {
                gap: 20px;
            }
            .image-gallery {
                grid-template-rows: repeat(3, 140px);
            }
        }

        /* 手机端 (小于 768px) */
        @media (max-width: 768px) {
            .section-title {
                font-size: 26px;
                margin-bottom: 25px;
                text-align: center;
            }

            .main-content {
                flex-direction: column; /* 垂直堆叠 */
            }

            /* 调整图片网格：手机上3列太拥挤，改为2列或保持高度缩小 */
            .image-gallery {
                width: 100%;
                grid-template-columns: repeat(2, 1fr); /* 改为2列 */
                grid-template-rows: auto;
                height: auto;
            }

            /* 重新分配手机端 Grid 布局 */
            .img-1, .img-2, .img-3, .img-4, .img-5, .img-6, .img-7 {
                grid-area: auto; /* 重置位置 */
                height: 150px;
            }

            .gallery-item {
                height: 150px; /* 统一手机端高度 */
            }

            /* 事件列表适配 */
            .events-list {
                width: 100%;
            }

            .event-card {
                padding: 15px;
            }

            .event-card:hover {
                transform: translateY(-5px); /* 手机端 hover 改为向上微动 */
                translateX: 0;
            }

            .date-box {
                min-width: 60px;
                padding-right: 15px;
                margin-right: 15px;
            }

            .date-box .day {
                font-size: 22px;
            }
        }