        /* 面包屑导航 */
        .breadcrumb {
            padding: 30px 0;
            font-size: 16px;
            color: #666;
        }
        
        .breadcrumb a:hover {
            color: #1a3263;
        }
        
        /* 筛选区域 */
        .filter-section {
            padding: 0px 0 40px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 15px;
        }
        
        .filter-dropdown {
            position: relative;
            min-width: 120px;
        }
        
        .filter-btn {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 15px;
            border: 1px solid #ccc;
            background-color: white;
            cursor: pointer;
            width: 190px;
			align-items: center;
        }
        
        .filter-options {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border-radius: 4px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 100;
        }
        
        .filter-dropdown:hover .filter-options {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .filter-option {
            padding: 8px 15px;
            cursor: pointer;
            border-bottom: 1px solid #f5f5f5;
        }
        
        .filter-option:hover {
            background-color: #1e2b49;
			color: #ffffff;
        }
        
        .search-box {
            flex-grow: 1;
            display: flex;
            max-width: 430px;
            margin-left: 405px;
        }
        
        .search-input {
            flex-grow: 1;
            padding: 20px;
            border: 1px solid #ddd;
            border-right: none;
            outline: none;
			width: 360px;
        }
        
        .search-btn {
            padding: 20px 25px;
            background-color: #ccc;
            border: none;
            cursor: pointer;
        }
        
        /* 团队成员卡片 */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .team-card {
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .team-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .team-img {
            width: 100%;
            height: 440px;
            object-fit: cover;
        }
        
        .team-info {
            padding: 15px;
        }
        
        .team-name {
            font-size: 28px;
            font-weight: 400;
            margin-bottom: 5px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .team-name i {
            color: #1a3263;
        }
        
        .team-title {
            font-size: 20px;
            color: #333;
        }
        
        /* 团队介绍 - 更新位置 */
        .team-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }
        /* 团队介绍 - 更新位置 */
        .team-row1 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);			
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .team-intro {
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 100%;
			width:100%;
        }
        
        .intro-title {
            font-size: 38px;
			font-weight: 600;
            margin-bottom: 15px;
            text-align: right;
        }
        
        .intro-subtitle {
            font-size: 24px;
			font-weight: 600;
            color: #333;
            margin-bottom: 20px;
            text-align: right;
        }
        
        .intro-btn {
            display: inline-block;
            padding: 10px 30px ;
            background-color: #d7d7d7;
            transition: background-color 0.3s ease;
            align-self: flex-end;
			width: 178px;
			align-items: center;
        }
        
        .intro-btn:hover {
            background-color: #e0e0e0;
        }
        
        /* 分页 - 更新样式 */
        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 40px;
        }
        
        .page-item {
            margin: 0 5px;
        }
        
        .page-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            height: 30px;
            font-size: 14px;
            color: #1a2b47;
            background-color: #fff;
        }
        
        .page-link.active {
            background-color: #1a2b47;
            color: #fff;
            border-color: #1a2b47;
        }
        
        .page-link:hover:not(.active) {
            background-color: #f5f5f5;
        }
        
        .page-prev, .page-next {
            width: auto;
            padding: 0 10px;
        }
        
        
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 40px;
            height: 40px;
            background-color: #fff;
            border-radius: 3px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-size: 20px;
            cursor: pointer;
            z-index: 99;
        }
        
        /* 返回顶部按钮 */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 40px;
            height: 40px;
            background-color: #1a3263;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        

        
        .contact-info {
            display: flex;
            justify-content: flex-end;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-left: 20px;
            font-size: 14px;
            color: #666;
        }
			.footer-bottom1 {
				display: none;
			}
        
        .contact-item i {
            margin-right: 5px;
        }
        
        /* 响应式设计 */
        @media (max-width: 1024px) {
            .team-grid, .team-row {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .footer-nav {
                flex-wrap: wrap;
            }
            
            .footer-nav-group {
                margin-bottom: 20px;
            }
        }
        /* Responsive */
        @media (max-width: 992px) {
            .stats-container, .awards-container, .why-container {
                flex-direction: column;
            }
            
            .company-intro, .awards-intro, .stats-grid, .awards-slider, .why-title-container, .accordion-container {
                width: 100%;
            }
            
            .company-intro, .awards-intro, .why-title-container {
                margin-bottom: 40px;
            }
            
            .partners-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-container {
                flex-direction: column;
            }
            
            .footer-links {
                margin-top: 30px;
                margin-left: 0;
            }
            
            .footer-qrcode {
                margin-top: 10px;
				margin-left: 1px;
            }
        }
        
        @media (max-width: 768px) {
        /* 面包屑导航 */
        .breadcrumb {
            padding: 20px 0;
            font-size: 14px;
            color: #666;
        }
        
        .breadcrumb a:hover {
            color: #1a3263;
        }
		
        /* 团队成员卡片 */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }
        
	        .footer-bottom1 {
				display: block;
			}
			.footer-bottom {
				display: none;
			}
        
        
        .team-img {
            width: 100%;
            height: 240px;
            object-fit: cover;
        }
        
        .team-info {
            padding: 15px;
        }
        
        .team-name {
            font-size: 18px;
            font-weight: 400;
            margin-bottom: 5px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .team-name i {
            color: #1a3263;
        }
        
        .team-title {
            font-size: 14px;
            color: #333;
        }
        
        /* 团队介绍 - 更新位置 */
        .team-row {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }
        /* 团队介绍 - 更新位置 */
        .team-row1 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);			
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .team-intro {
            padding: 5px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 100%;
			width:100%;
        }
        
        .intro-title {
            font-size: 20px;
			font-weight: 400;
            margin-bottom: 15px;
            text-align: right;
        }
        
        .intro-subtitle {
            font-size: 12px;
			font-weight: 400;
            color: #333;
            margin-bottom: 20px;
            text-align: right;
        }
        
        .intro-btn {
            display: inline-block;
            padding: 8px;
			font-size: 12px;
            background-color: #d7d7d7;
            transition: background-color 0.3s ease;
            align-self: flex-end;
			width: 60%;
			align-items: center;
        }
        
        .intro-btn:hover {
            background-color: #e0e0e0;
        }
        		
        .service-hero {
            height: 816px;
			background-image: url('template/pc/image/fwly.jpg');
            display: flex;
            position: relative;
            overflow: hidden;
        }
        /* 筛选区域 */
        .filter-section {
            padding: 20px 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 15px;
        }
        
        .filter-dropdown {
            position: relative;
        	width: 100%;
		}
        
        .filter-btn {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 15px;
            border: 1px solid #ccc;
            background-color: white;
            cursor: pointer;
            width: 100%;
			align-items: center;
        }
        
        .filter-options {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border-radius: 4px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 100;
        }
        
        .filter-dropdown:hover .filter-options {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .filter-option {
            padding: 8px 15px;
            cursor: pointer;
            border-bottom: 1px solid #f5f5f5;
        }
        
        .filter-option:hover {
            background-color: #f9f9f9;
        }
        
        .search-box {
            flex-grow: 1;
            display: flex;
            max-width: 100%;
            margin-left: auto;
        }
        
        .search-input {
            flex-grow: 1;
            padding: 20px;
            border: 1px solid #ddd;
            border-right: none;
            outline: none;
			width: 80%;
        }
        
        .search-btn {
            padding: 20px 25px;
            background-color: #ccc;
            border: none;
            cursor: pointer;
        }
        		
            .nav-list {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            .language-selector {
                display: none;
            }
           
            .service-hero, .service-section {
                flex-direction: column;
                min-height: auto;
            }
            
            .service-hero-image, .service-image {
                height: 300px;
				width:100%;
            }
            
            .service-hero-content, .service-content {
                padding: 200px 30px 40px;
				width: 100%;
            }
            
            .service-section:nth-child(even) {
                flex-direction: column;
            }
            
            .footer-left, .footer-nav, .footer-right {
                flex: 0 0 100%;
                margin-bottom: 30px;
            }
            
            .footer-right {
                align-items: flex-start;
            }
            
            .footer-nav-column {
                flex: 0 0 50%;
            }
	        .footer-bottom1 {
				display: block;
			}
			.footer-bottom {
				display: none;
			}
            .header-container {
                flex-wrap: wrap;
            }
			.header-container {
				border-bottom: solid 0px #d8d7d8;
				padding: 0 0 10px;
				margin: 10px;
			}
			.logo {
				display: flex;
				align-items: center;
			}
        
			.logo img {
				width: 130px;
			}
			
            .mobile-menu-btn {
                display: block;
            }

            .nav-menu {
                display:none; 
            }
            
            .nav-list {
                display:none; 
            }
            .language-select {
                display:none; 
            }
			
            .hero {
                height: auto;
                padding-bottom: 50px;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .award-slide.active {
                flex-direction: column;
            }
            
            .award-card {
                width: 100%;
                margin-bottom: 20px;
            }
            
            .footer-links {
                flex-wrap: wrap;
            }
            
            .footer-column {
                width: 50%;
                margin-bottom: 20px;
            }		
            .nav-desktop {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }
		
            .header-container {
                flex-wrap: wrap;
            }
			
            .mobile-menu-btn {
                display: block;
            }

            .nav-menu {
                display:none; 
            }
            
            .nav-list {
                display:none; 
            }
            .language-select {
                display:none; 
            }
			
            .hero {
                height: auto;
                padding-bottom: 50px;
            }
            .office-item {
                width: 100%;
            }

            .job-header {
                flex-direction: column;
                align-items: flex-start;
            }

            .job-toggle {
                position: absolute;
                top: 15px;
                right: 15px;
            }			
            .nav-list {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            .nav-menu {
                display:none; 
            }
            
            .language-select {
                display:none; 
            }
			
            
            .team-grid, .team-row {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .copyright-container {
                flex-direction: column;
            }
        }
        
        @media (max-width: 576px) {
            .team-grid, .team-row {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .filter-section {
                grid-template-columns: repeat(2, 1fr);
				
                flex-direction: column;
                align-items: stretch;
				width:100%;
            }
            
            .search-box {
                width: 100%;
            }
            
            .contact-info {
                flex-direction: column;
            }
            
            .contact-item {
                margin: 5px 0;
            }
            
            .footer-nav-group {
                flex-direction: column;
            }
            
            .footer-nav-separator {
                width: 100%;
                height: 1px;
                margin: 20px 0;
            }
        }
        
        
/* 顶部搜索框弹出 */
.header-search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.header-search-popup.active {
    opacity: 1;
    visibility: visible;
}

.header-search-container {
    width: 80%;
    max-width: 600px;
    position: relative;
}

.header-search-input {
    width: 100%;
    padding: 15px 20px;
    font-size: 18px;
    border: none;
    border-radius: 0;
    outline: none;
    background-color: transparent;
    border-bottom: 1px solid #fff;
    color: #fff;
}

.header-search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.header-search-btn {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    padding: 0 20px;
    background-color: transparent;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 18px;
}

.header-search-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}
