@charset "UTF-8";

    .hero-section {
      background: linear-gradient(rgb(42 116 205 / 80%), rgb(56 145 199 / 90%)), 
                  url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="600" height="200" viewBox="0 0 600 200"><rect width="600" height="200" fill="%231e40af"/><circle cx="200" cy="200" r="60" fill="%233b82f6" opacity="1"/><circle cx="380" cy="150" r="60" fill="%233b82f6" opacity="1"/><circle cx="100" cy="100" r="40" fill="%233b82f6" opacity="1"/><circle cx="550" cy="10" r="75" fill="%233b82f6" opacity="1"/><circle cx="250" cy="80" r="20" fill="%233b82f6" opacity="1"/></svg>');
      background-size: cover;
      background-position: center;
      color: white;
      padding: 80px 0;
      margin-bottom: 40px;
    }

    .job-card {
      transition: all 0.3s ease;
      border-left: 4px solid #437fc720;
      cursor: pointer;
    }
    .job-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
      border-left: 4px solid #437fc7;
    }
    .job-tag {
      font-size: 0.85rem;
      padding: 0.25rem 0.75rem;
      border-radius: 20px;
      background-color: #e9f0f7;
      color: #437fc7;
    }
    .filter-active {
      background-color: #437fc7 !important;
      color: white !important;
    }
    .detail-panel {
      position: sticky;
      top: 100px;
      max-height: 80vh;
      overflow-y: auto;
    }
    .contact-card {
      background: linear-gradient(135deg, #1a3a5f, #0d2438);
      color: white;
      border-radius: 15px;
    }
	.card-header{
	  position: sticky;
	  top: 0;
	  z-index: 10;
	  color: aliceblue;
	  background-color: #2c74c6!important
	}
    .loading-spinner {
      display: none;
      width: 3rem;
      height: 3rem;
      border: 5px solid #f3f3f3;
      border-top: 5px solid #437fc7;
      border-radius: 50%;
      animation: spin 1s linear infinite;
      margin: 20px auto;
    }
    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }
    .job-title {
      color: #1a3a5f;
      font-weight: 600;
    }
    
    /* 移动端详情全屏覆盖样式 */
    .job-detail-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: white;
      z-index: 1050;
      overflow-y: auto;
      padding: 20px;
    }
    
    .close-btn {
      position: fixed;
      top: 20px;
      right: 20px;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: #437fc7;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1051;
      box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }
	
	
	/*招聘介绍*/
        .job-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        .job-header {
            text-align: center;
            margin-bottom: 40px;
            color: #2c3e50;
        }
        .job-tabs {
            margin-bottom: 30px;
        }
        .job-nav-tabs {
            border-bottom: 3px solid #e9ecef;
            justify-content: center;
        }
        .job-nav-link {
            font-size: 18px;
            font-weight: 500;
            padding: 15px 30px;
            color: #495057;
            transition: all 0.3s;
            border: none !important;
            border-radius: 5px 5px 0 0;
        }
        .job-nav-link:hover {
            color: #0d6efd;
            background-color: #f8f9fa;
        }
        .job-nav-link.active {
            color: #0d6efd;
            background-color: white;
            border-bottom: 3px solid #0d6efd !important;
        }
        .job-tab-content {
            padding: 30px 0;
            min-height: 500px;
        }
        .job-section {
            margin-bottom: 40px;
        }
        .job-section-title {
            color: #2c3e50;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e9ecef;
        }
        .job-img-container {
            margin-bottom: 25px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .job-img {
            width: 100%;
            height: auto;
            display: block;
        }
        .job-content {
            font-size: 17px;
            line-height: 1.8;
            color: #444;
        }
        .job-benefits-list {
            list-style-type: none;
            padding-left: 0;
        }
        .job-benefits-list li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
        }
        .job-benefits-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #28a745;
            font-weight: bold;
        }
        /* 瀑布流样式 */
        .job-masonry {
            column-count: 3;
            column-gap: 15px;
        }
        .job-masonry-item {
            break-inside: avoid;
            margin-bottom: 15px;
        }
        .job-masonry-img {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        .job-masonry-img:hover {
            transform: scale(1.02);
        }

        .job-highlight {
            background-color: #f8f9fa;
            padding: 30px;
            border-radius: 8px;
            margin: 25px 0;
            border-left: 4px solid #0d6efd;
        }
        .job-quote {
            font-style: italic;
            color: #6c757d;
            text-align: center;
            margin: 30px 0;
            padding: 20px;
            background-color: #f8f9fa;
            border-radius: 8px;
        }
		
    /* 桌面端样式 */
    @media (min-width: 992px) {
      .job-detail-overlay {
        display: none !important;
      }
	  
    }
    
    /* 移动端样式 */
    @media (max-width: 992px) {
      .detail-panel {
        display: none;
      }
            .job-masonry {
                column-count: 2;
            }
    }
	

        @media (max-width: 768px) {
            .job-nav-link {
                font-size: 16px;
                padding: 10px 15px;
            }
            .job-content {
                font-size: 16px;
            }
            .job-masonry {
                column-count: 1;
            }
        }