        .job-header-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .job-count {
            font-size: 24px;
            font-weight: normal;
        }
        .view-more-btn {
            display: inline-block;
            background-color: #d7d7d7;
            color: #333;
			align-items: center;
            padding: 17px 70px 17px;
            border-radius: 0;
            cursor: pointer;
			width: 240px;
			font-size: 20px;
        }


        /* 英雄区域 */
        .hero {
            background-size: cover;
            background-position: center;
            height: 400px;
            display: flex;
            align-items: center;
            position: relative;
        }

        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(31, 44, 71, 0.7);
        }

        .hero-content {
            position: relative;
            z-index: 1;
            color: #fff;
            padding: 0 15px;
			width:100%;			
        }

        .hero-title {
            font-size: 64px;
            font-weight: 300;
            margin-top: 100px;
        }

        /* 主要内容区域 */
        .main-content {
            padding: 40px 10px;
            display: flex;
            flex-wrap: wrap;
        }

        /* 侧边栏 */
        .sidebar {
            width: 25%;
            padding-right: 30px;
        }

        .sidebar-title {
            font-size: 24px;
            margin-bottom: 20px;
            font-weight: 600;
			color: #000;
        }
        .sidebar-title1 {
            font-size: 20px;
            margin-bottom: 20px;
            font-weight: 400;
			color: #000;
        }

        .filter-group {
            margin-bottom: 30px;
        }

        .filter-item {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }

        .filter-checkbox {
            margin-right: 10px;
        }

        /* 职位列表 */
        .job-list {
            width: 75%;
        }

        .job-count {
            font-size: 24px;
            margin-bottom: 20px;
            font-weight: normal;
			color: #000;
        }

        .job-item {
            margin-bottom: 20px;
            background-color: #f9f9f9;
            border-radius: 4px;
            overflow: hidden;
        }

        .job-header {
            padding: 30px 50px 30px;
            cursor: pointer;
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .job-title {
            font-size: 24px;
            font-weight: normal;
			color: #333;
        }

        .job-meta {
            display: flex;
            margin-top: 10px;
            color: #333;
            font-size: 16px;
        }

        .job-location, .job-date {
            margin-right: 20px;
        }

        .job-toggle {
            font-size: 20px;
            transition: transform 0.3s;
        }

        .job-toggle.active {
            transform: rotate(180deg);
        }

        .job-content {
            display: none;
            padding: 0 50px 20px;
        }

        .job-section {
            margin-bottom: 20px;
        }

        .job-section-title {
            font-weight: 400;
            margin-bottom: 10px;
        }

        .job-description {
            margin-bottom: 10px;
        }

        .job-apply {
            display: inline-block;
            background-color: #1e2942;
            color: #fff;
            padding: 10px 70px 10px;
            margin-top: 10px;
            cursor: pointer;
        }

        /* 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: #fff;
            border: 1px solid #ddd;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 99;
        }


        /* 响应式设计 */
        @media (max-width: 992px) {
            .sidebar, .job-list {
                width: 100%;
            }
        .hero {
            background-image: url('/template/pc/image/job.png');
            background-size: cover;
            background-position: center;
            height: 400px;
            display: flex;
            align-items: center;
            position: relative;
        }

        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(52, 58, 74, 0.7);
        }

            .sidebar {
                padding-right: 0;
                margin-bottom: 30px;
            }

            .footer-left, .footer-center, .footer-right {
                width: 100%;
                padding-right: 0;
                margin-bottom: 30px;
            }

            .footer-nav {
                width: 100%;
                text-align: center;
            }

            .social-links {
            }

            .social-link {
                margin: 0 5px;
            }
        }

        @media (max-width: 768px) {
        .job-header-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .job-count {
            font-size: 16px;
            font-weight: normal;
        }
        .view-more-btn {
            display: inline-block;
            background-color: #d7d7d7;
            color: #333;
			align-items: center;
            padding: 5px 18px;
            border-radius: 0;
            cursor: pointer;
			width: 100px;
			font-size: 14px;
        }


        /* 英雄区域 */
        .hero {
            background-image: url('/template/pc/image/job.png');
            background-size: cover;
            background-position: center;
            height: 600px;
            display: flex;
            align-items: center;
            position: relative;
        }

        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(52, 58, 74, 0.7);
        }

        .hero-content {
            position: relative;
            z-index: 1;
            color: #fff;
            padding: 0 15px;
			width:100%;			
        }

        .hero-title {
            font-size: 32px;
            font-weight: normal;
            margin-bottom: 20px;
        }

        /* 主要内容区域 */
        .main-content {
            padding: 40px 10px;
            display: flex;
            flex-wrap: wrap;
        }


        .sidebar-title {
            font-size: 24px;
            margin-bottom: 20px;
            font-weight: normal;
			color: #333;
        }

        .filter-group {
            margin-bottom: 30px;
        }

        .filter-item {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }

        .filter-checkbox {
            margin-right: 10px;
        }

   

        .job-count {
            font-size: 16px;
            margin-bottom: 20px;
            font-weight: normal;
			color: #000;
        }

        .job-item {
            margin-bottom: 20px;
            background-color: #f9f9f9;
            border-radius: 4px;
            overflow: hidden;
        }

        .job-header {
            padding: 30px 50px 30px;
            cursor: pointer;
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .job-title {
            font-size: 16px;
            font-weight: normal;
			color: #333;
        }

        .job-meta {
            display: flex;
            margin-top: 10px;
            color: #666;
            font-size: 14px;
        }

        .job-location, .job-date {
            margin-right: 20px;
        }

        .job-toggle {
            font-size: 20px;
            transition: transform 0.3s;
        }

        .job-toggle.active {
            transform: rotate(180deg);
        }

        .job-content {
            display: none;
            padding: 0 50px 20px;
        }

        .job-section {
            margin-bottom: 20px;
        }

        .job-section-title {
            font-weight: 400;
            margin-bottom: 10px;
        }

        .job-description {
            margin-bottom: 10px;
        }

        .job-apply {
            display: inline-block;
            background-color: #1e2942;
            color: #fff;
            padding: 10px 70px 10px;
            margin-top: 10px;
            cursor: pointer;
        }

        /* 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;
            border-radius: 3px;
            font-size: 14px;
            color: #666;
            background-color: #fff;
            border: 1px solid #ddd;
        }
        
        .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;
        }					

            .nav-desktop {
                display: none;
            }
            .hero {
                height: auto;
                padding-bottom: 50px;
            }
            
            .stats-grid {
                grid-template-columns: 2fr;
            }
            
            .award-slide.active {
                flex-direction: column;
            }
            
            .award-card {
                width: 100%;
                margin-bottom: 20px;
            }
            
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .award-slide.active {
                flex-direction: column;
            }
            
            .award-card {
                width: 100%;
                margin-bottom: 20px;
            }		
        
	
        .hero-content {
            position: relative;
            z-index: 1;
            color: #fff;
            padding: 0 15px;
			margin-top: 200px;
        }



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

            .job-toggle {
                position: absolute;
                top: 15px;
                right: 15px;
            }
        }
