  /* =========================================
           全局 & 基础变量 (加 abt- 前缀避免冲突)
           ========================================= */
		   :root {
            --abt-primary-blue: #001880;
            --abt-text-dark: #040404;
            --abt-text-light: #ffffff;
            --abt-bg-overlay: rgba(33, 30, 18, 0.85);
            /* 用于团队成员底部的渐变遮罩 */
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: "Microsoft YaHei", "Microsoft YaHei UI", sans-serif;
        }

        body {
            background-color: #fff;
            color: var(--abt-text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* 核心中心容器：1440px 居中 */
        .abt-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* =========================================
           第一部分：关于我们 (About Us)
           ========================================= */
        .abt-about-section {
            background-image: url('../static/picture/aboutbg.png');
            background-size: cover;
            background-position: center;
            padding: 100px 0;
            color: var(--abt-text-light);
        }

        .abt-about-content {
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
            align-items: flex-start;
        }

        .abt-about-text-col {
            flex: 1;
            min-width: 320px;
        }

        .abt-about-title {
            font-size: 36px;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .abt-about-subtitle {
            font-size: 18px;
            line-height: 1.5;
            margin-bottom: 40px;
            opacity: 0.9;
            max-width: 400px;
        }

        .abt-about-card {
            flex: 1.2;
            min-width: 320px;
            background-color: rgba(255, 255, 255, 0.95);
            /* 浅色卡片承载深色文字 */
            padding: 40px;
            border-radius: 20px;
            color: var(--abt-text-dark);
           
        }

        .abt-about-card p {
            font-size: 18px;
            line-height: 1.75;
            margin-bottom: 20px;
        }

        .abt-about-card img {
            width: 100%;
            border-radius: 10px;
            margin-top: 20px;
        }

        .abouus-img{
            position: relative;
            top: -100px;
        }

        /* =========================================
           第二部分：创始人 (Founder)
           ========================================= */
        .abt-founder-section {
            background-image: url('../static/picture/EGybzRDYAK8qwyUdUpAYercsg.png');
            background-size: cover;
            background-position: center;
            padding: 120px 0;
            color: var(--abt-text-light);
        }

        .abt-founder-wrapper {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 60px;
        }

        .abt-founder-img-col {
            flex: 1;
            min-width: 320px;
            display: flex;
            justify-content: center;
        }

        .abt-founder-img-col img {
            max-width: 100%;
            max-height: 600px;
            border-radius: 20px;
            object-fit: cover;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .abt-founder-text-col {
            flex: 1.2;
            min-width: 320px;
        }

        .abt-founder-title {
            font-size: 36px;
            font-weight: bold;
            margin-bottom: 30px;
        }

        .abt-founder-desc {
            font-size: 18px;
            line-height: 1.75;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .abt-founder-name {
            font-size: 24px;
            font-weight: bold;
            color: var(--abt-text-light);
            border-left: 4px solid #0AFFAB;
            padding-left: 15px;
        }

        /* =========================================
           第三部分：管理团队 (Team Management)
           ========================================= */
        .abt-team-section {
            background-image: url('../static/picture/RJv6kr9YJbzNBMnJ6veYNM4hR44.png');
            background-size: cover;
            background-position: center;
            padding: 100px 0;
            position: relative;
        }

        /* 团队标题横幅区 */
        .abt-team-header {
            text-align: center;
            margin-bottom: 60px;
            background-color: rgba(255, 255, 255, 0.9);
            padding: 30px 20px;
            border-radius: 20px;
        }

        .abt-team-title {
            font-size: 48px;
            color: var(--abt-primary-blue);
            font-weight: bold;
        }

        /* 团队成员网格 */
        .abt-team-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }

        .abt-team-card {
            flex: 1;
            min-width: 240px;
            max-width: 300px;
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s;
        }

        .abt-team-card:hover {
            transform: translateY(-10px);
        }

        .abt-team-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            min-height: 350px;
        }

        /* 底部信息遮罩 (使用 CSS 渐变替代原 Framer 的 SVG) */
        .abt-team-info {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 40px 20px 20px;
            background: linear-gradient(to top, var(--abt-bg-overlay) 0%, rgba(33, 30, 18, 0) 100%);
            color: var(--abt-text-light);
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .abt-team-role {
            font-size: 14px;
            opacity: 0.9;
        }

        .abt-team-name {
            font-size: 18px;
            font-weight: bold;
        }

        /* 底部装饰横幅 */
        .abt-bottom-banner {
            width: 100%;
            margin-top: 80px;
            display: flex;
            justify-content: center;
        }

        .abt-bottom-banner img {
            width: 100%;
            max-width: 1200px;
            border-radius: 10px;
        }

        /* 响应式调整 */
        @media (max-width: 992px) {
            .abt-team-card {
                width: calc(33.333% - 20px);
                max-width: none;
            }

            .abt-founder-wrapper {
                flex-direction: column-reverse;
                text-align: center;
            }

            .abt-founder-name {
                border-left: none;
                border-bottom: 4px solid #0AFFAB;
                display: inline-block;
                padding: 0 0 10px;
            }
        }

        @media (max-width: 768px) {
            .abt-about-content {
                flex-direction: column;
            }

            .abt-team-card {
                width: calc(50% - 15px);
            }

            .abt-about-title,
            .abt-founder-title {
                font-size: 30px;
            }

            .abt-team-title {
                font-size: 36px;
            }
        }

        @media (max-width: 480px) {
            .abt-team-card {
                width: 100%;
            }
        }