
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        .who-we-are-wrap {
            display: flex;
            align-items: center;
            max-width: 100%;
            background: #ffffff;
        }
        .text-part {
            flex: 0.72;
            padding: 60px 80px;
            background:#ffffff;
        }
        .section-title {
            font-family:'Arial Black', Arial, Helvetica, sans-serif;
            font-size: 52px;
            font-weight: 900;
            color: #111111;
            margin-bottom:16px;
            white-space: nowrap;
        }
        .divider-line {
            width:70px;
            height:4px;
            background-color:#ff6600;
            margin-bottom:32px;
        }
        .desc-text p {
            font-size:18px;
            color:#333;
            line-height:1.7;
            margin-bottom:24px;
        }
        .btn-discover {
            display: inline-block;
            padding:14px 32px;
            background-color:#002b64;
            color:#ffffff;
            text-decoration: none;
            border-radius:8px;
            font-size:17px;
            transition: all 0.3s ease;
        }
        .btn-discover:hover {
            background-color:#003b88;
            box-shadow: 0 4px 12px rgba(0,43,100,0.25);
        }
        .image-part {
            flex:1.98;
            height: 560px;
        }
        .image-part img {
            width:100%;
            height:100%;
            object-fit: cover;
            display:block;
        }
        /* 移动端适配 */
        @media(max-width: 992px){
            .who-we-are-wrap{
                flex-direction: column;
                align-items: stretch;
            }
            .text-part{
                padding:40px 24px;
            }
            .section-title{
                font-size:36px;
                white-space: normal;
            }
            .image-part{
                width:100%;
                height:auto;
            }
            .image-part img {
                height:auto;
                object-fit: unset;
            }
        }
    