		body {
            margin: 0;
            padding: 0;
            background-color: #fff;
            width: 100%;
            overflow-x: hidden;
            -webkit-overflow-scrolling: touch;
            direction: ltr;
            font-size: 16px;
        }

        .main-content {
            width: 100%;
            position: relative;
        }

        .sub-nav {
            width: 80%;
            background-color: #f5f5f5;
            z-index: 90;
			margin:50px auto 0 auto;
        }

        .sub-nav-container {
            width: 100%;
            max-width: 1520px;
            margin: 0 auto;
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            -webkit-box-pack: stretch;
            -moz-box-pack: stretch;
            -ms-flex-pack: stretch;
            -webkit-justify-content: stretch;
            justify-content: stretch;
            flex-direction: row;
            flex-wrap: nowrap;
        }

        .sub-nav-item {
            -webkit-box-flex: 1;
            -webkit-flex: 1;
            -ms-flex: 1;
            flex: 1;
            text-align: center;
            padding: 12px 0;
            text-decoration: none;
            color: #47d1c3;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s;
            border: none;
            border-right: 1px solid #e0e0e0;
            display: block;
            position: relative;
            zoom: 1;
            white-space: nowrap;
        }

        .sub-nav-item:last-child {
            border-right: none;
        }

        .sub-nav-item.active {
            color: #fff;
            background-color: #47d1c3;
        }

        .sub-nav-item:hover {
            color: #fff;
            background-color: #47d1c3;
        }

/* ---------------------- 管理团队样式 ---------------------- */
        .team-wrapper {
            max-width: 1520px;
            margin: 30px auto;
            padding: 20px 0;
            width: 80%;
        }

        /* 标题样式 */
        .team-title {
            margin-bottom: 30px;
            text-align: left;
        }
        .team-title .en {
            font-size: clamp(24px, 3vw, 36px);
            font-size: 36px;
            color: #47d1c3;
            font-weight: 500;
            letter-spacing: 1px;
        }
        .team-title .cn {
            font-size: clamp(18px, 2vw, 25px);
            font-size: 25px;
            color: #333;
            letter-spacing: 0.5px;
        }

        /* 详情容器 */
        .team-detail {
            display: none;
            margin-bottom: 40px;
            gap: 30px;
            align-items: flex-start;
            flex-wrap: wrap;
            max-width: 1520px;
            max-height: 900px;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
        }
        
        .team-detail.active {
            display: flex !important;
        }

        /* 左侧信息区 */
        .detail-info {
            width:68%;
            min-width: 300px;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
        }
        .detail-name {
            font-size: clamp(20px, 2.5vw, 24px);
			font-size:24px;
			color: #333;
            margin-bottom: 10px;
        }
        .detail-position {
            font-size: clamp(14px, 1.8vw, 16px);
            font-size: 16px;
            color: #333;
            padding-bottom: 15px;
            margin-bottom: 10px;
        }
        .detail-desc {
            font-size: clamp(12px, 1.6vw, 14px);
            font-size: 14px;
            color: #333;
            line-height: 2;
            text-align: justify;
            max-height: 750px;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
        }
        .detail-desc p {
            margin-bottom: 10px;
            text-align: justify;
        }

        /* 右侧图片区 */
        .detail-img {
            width:25%;
            min-width: 280px;
            height: 387px;
            position: relative;
            margin: 0 auto;
            overflow: hidden;
            max-height: 400px;
        }
        .detail-img img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            -webkit-object-fit: cover;
        }

        /* 成员卡片列表 */
        .member-list {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: flex-start;
        }

        /* 成员卡片 */
        .member-card {
            flex: 0 0 calc(25% - 15px);
            min-width: 150px;
            text-align: center;
            padding:0 40px 0 0;
            cursor: pointer;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        
        /* 卡片图片 */
        .member-card .card-img {
            width: 100%;
            height: 0;
            padding-top: 75%;
            position: relative;
            overflow: hidden;
            margin-bottom: 10px;
        }
        .member-card .card-img img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            -webkit-object-fit: cover;
        }

        /* 卡片文字 */
        .member-card .card-name {
            font-size: clamp(14px, 1.8vw, 16px);
			font-size:16px;
			color: #666;
            margin-bottom: 5px;
        }
        .member-card .card-position {
            font-size: clamp(8px, 1.6vw, 12px);
			font-size:12px;
            color: #666;
            line-height: 1.5;
        }