        /* 页面容器 */
        .team-service-container {
            max-width: 1420px;
            margin: 40px auto;
            padding: 0 15px;
			padding-top: 115px;
        }

        /* 标题样式 */
        .team-service-title {
            font-size: 32px;
            color: #333;
            text-align: center;
            margin-bottom: 40px;
            font-weight: bold;
            border-bottom: 3px solid #c00;
            padding-bottom: 10px;
        }

        /* 每个服务部分的样式 */
        .team-service-section {
            background: linear-gradient(135deg, #f9f9f9, #e3e3e3); /* 渐变背景 */
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            padding: 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            margin-bottom: 30px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .team-service-section:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }

        .team-service-section .icon {
            font-size: 50px;
            color: #c00;
            margin-bottom: 20px;
        }

        .team-service-section h3 {
            font-size: 24px;
            color: #333;
            margin-bottom: 20px;
        }

        .team-service-section .section-content {
            font-size: 16px;
            color: #666;
            line-height: 1.8;
            max-width: 500px;
            margin: 0 auto;
        }

        /* Flex 布局，三列展示，每行3个 */
        .team-service-sections {
            display: grid;
            grid-template-columns: repeat(3, 1fr); /* 每行3个 */
            gap: 30px;
        }

        /* 响应式设计：适配移动端 */
        @media (max-width: 768px) {
            .team-service-title {
                font-size: 28px;
            }

            .team-service-section .section-content {
                font-size: 14px;
                line-height: 1.6;
            }

            .team-service-sections {
                grid-template-columns: 1fr; /* 每行1个版块 */
            }

            .team-service-section {
                margin-bottom: 20px;
            }
        }