        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            color: #333;
        }

       
        .section {
            padding: 60px 20px;
            text-align: center;
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .fade-in.visible {
            opacity: 1;
            transform: none;
        }

        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            max-width: 1200px;
            margin: auto;
        }

        .card {
            background: #f9f9f9;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        }

       
        .jobs {
            max-width: 1000px;
            margin: auto;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 30px;
        }

        th,
        td {
            border: 1px solid #ccc;
            padding: 10px;
            text-align: center;
        }

        .joinus-title-ch {
            font-size: 18px;
        }

        .joinus-title-en {
            font-size: 50px;
            color: #285BA9;
            padding-bottom: 20px;
            padding-top: 20px;
        }

       

        .card h3 {
            padding-bottom: 15px;
            font-weight: normal;
        }

        .card p {
            font-size: 12px;
            padding-bottom: 15px;
        }
        .overlay-images-section {
            background: #f9f9f9;
            padding: 15px 0;
            text-align: center;
            padding-bottom: 10px;
        }

        .overlay-container {
            position: relative;
            display: inline-block;
            /* 让容器宽度由内容决定 */
            width: 200px;
            /* 可根据需要调整 */
            height: 200px;
            /* 可根据需要调整 */
        }

        .overlay-container img {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .overlay-bg {
            width: 200px;
            height: 200px;
            z-index: 1;
        }

        .overlay-fg {
            width: 35px;
            height: 35px;
            height: auto;
            z-index: 2;
        }

    .joinus-carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    overflow: hidden;
}

.joinus-carousel-wrapper {
    display: flex;
    align-items: center;
    position: relative;
  
    width: 100%;
}

.joinus-carousel {
    display: flex;
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.joinus-carousel-item {
    position: absolute;
    width: 50%; /* 左右图片显示一半 */
    height: 100%;
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
    opacity: 0;
    z-index: 1;
}

.joinus-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.joinus-carousel-item .joinus-caption {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 4px 8px;
    font-size: 14px;
    border-radius: 4px;
    z-index: 2;
}

.joinus-carousel-item.active {
    width: 40%; /* 中间图片显示完整 */
    opacity: 1;
    z-index: 2;
    left: 50%; /* 中间图片居中 */
    transform: translateX(-50%);
}

.joinus-carousel-item.prev {
    left: -25%; /* 前一张图片在左侧 */
    transform: translateX(0);
    opacity: 0.75;
}

.joinus-carousel-item.next {
    right: -25%; /* 后一张图片在右侧 */
    transform: translateX(0);
    opacity: 0.75;
}

.joinus-btn {
   
    color: #285BA9;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
 
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    margin: 0 10px;
    position: absolute;
    border: 1px solid #285BA9;
    
}
.joinus-btn.joinus-btn.prev{
    left:25%;
}
.joinus-btn.joinus-btn.next{
    right:25%;
}
.joinus-btn:hover {
    background-color: #0a67f3;
}

        .table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 20px;
        }

        .table thead {
            background: #285BA9;
            color: #fff;
        }

        .table th,
        .table td {
            padding: 12px;
            text-align: center;
            font-size: 12px;
        }

        .job-detail,
        .job-req {
            margin: 20px 0;
        }

        .job-content {
            text-align: center;
            padding-bottom: 28px;
        }

        .job-mail {
            color: #285BA9;
            /* 绿色 */
        }

        .job-title {
            font-size: 20px;
            padding-bottom: 10px;
        }

        .job-desc {
            font-size: 12px;
        }

        .job-detail,
        .job-req {
            text-align: left;
        }

        .job-detail h3,
        .job-req h3 {
            color: #000;
            margin-bottom: 10px;
            font-size: 14px;
        }

        .job-detail ul,
        .job-req ul {
            margin-left: 20px;
            font-size: 12px;
            line-height: 16px;
        }

        .job-detail-section {
            display: none;
            overflow: hidden;
            transition: max-height 0.4s ease-out;
            max-height: 0;
        }


        .job-row.active-row>.job-name,
        .job-row.active-row>.job-more {
            color: #285BA9;
        }

        .job-table {
            margin-bottom: 40px;
        }

        .job-detail-section.open {
            display: table-row;
            max-height: 200px;
            /* 根据内容调整 */
        }

        /* 基于 JS 添加的 odd/even 类设置样式 */
        .job-row.odd {
            background-color: #f3f7fb;
        }

        .job-row.even {
            background-color: #fff;
        }
        .job-row
{
    line-height: 18px;
}

        .job-detail-section.odd {
            background-color: #fff;
        }

        .job-detail-section.even {
            background-color: #f2fbf5;
        }

        .job-detail-section td {
            padding-left: 60px;
        }

        .job-detail-btn {
            padding-top: 10px;
            padding-bottom: 15px;
            text-align: left;
        }

        .job-detail-btn img
        {
            width: 120px;
            height:38px;;
        }

        .pagination {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }

        .pagination span,
        .pagination a {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: 32px;
            height: 32px;
            padding: 0;
            margin: 0 4px;
            border: 1px solid #ccc;
            border-radius: 50%;
            color: #333;
            font-size: 12px;
            text-align: center;
            line-height: 1;
            transition: all 0.3s ease;
        }

        .pagination .active {
            background: #00b050;
            color: #fff;
            border-color: #00b050;
        }
        .container
        {
            max-width: 1200px;
            margin: auto
        }




        @media (max-width: 768px) {
            nav ul {
                flex-direction: column;
                gap: 10px;
            }
        }

            .joinus-container
        {
            background-image: url(../images/joinus-body-bg.png);
            background-size: cover;
            background-position: 0 400px;  /* 水平位置 0，垂直位置 50px */
            background-repeat: no-repeat;
            padding-bottom: 60px;
            
            
        }
        .job-table>.table{
            margin-bottom: 40px;
            border-spacing: 0; /* 去除单元格间距 */
            overflow: hidden; /* 确保圆角不被内部元素遮挡 */
            border-radius: 15px 15px 0 0; /* 左上、右上圆角，左下、右下直角 */
        }

             body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  max-width: 80%;
  width: 80%;
  height: 700px;
  background-image: url("../images/joinus-body-bg0.png");
  background-position: 20% 10%;
  opacity: 0.3; 
  background-size: cover;
  z-index: 10; 
}