   
   .swiper-container {
       height: 100%;
   }

   .rencaiConMain {
       width: 100%;
       padding: 60px 0;
   }

   .rencaiConNei {
       width: 90%;
       max-width: 1500px;
       min-height: 510px;
       margin: 0 auto;
       display: flex;
       justify-content: space-between;
   }

   .textContent {
       padding-top: 60px;
       width: 40%;
   }

   .rencaiT {
       margin-left: 70px;
       margin-bottom: 20px;
   }

   .rencaiT1 {
       position: relative;
       font-size: 32px;
   }

   .rencaiT2 {
       font-size: 26px;
       color: #E6212B;
   }

   .rencaiT3 {
       font-size: 18px;
       color: #595959;
   }

   .rencaiT1 img {
       position: absolute;
       width: 46px;
       height: 46px;
       top: 0;
       left: -70px;
   }


   .imgContent {
       width: 40%;
   }

   .imgContent img {
       width: 100%;
   }


   .rencaiConMainTwo {
       background: #E6F0FB;
       padding: 60px 0;
       display: flex;
       flex-direction: column;
       align-items: center;
   }


   .rencaiConMainThree {
       background: #f7f8fa;
       padding: 60px 0;
   }

   .rencaiConThreeMain {
       display: flex;
       justify-content: space-evenly;
       width: 96%;
       margin: 30px auto;
       max-width: 1500px;

   }

   .rencai-slide {
       width: 28%;
   }

   .rencai-card {
       width: 100%;
       border-top-left-radius: 60px;
       border-bottom-right-radius: 60px;
       overflow: hidden;
       height: 100%;
       transition: transform 0.3s;
   }

   .rencai-card:hover {
       transform: translateY(-10px);
   }

   /* 图片区域 */
   .card-img-box {
       width: 100%;
       height: 240px;
       overflow: hidden;
   }

   .card-img-box img {
       width: 100%;
       height: 100%;
       object-fit: cover;
       transition: transform 0.5s;
   }

   .rencai-card:hover .card-img-box img {
       transform: scale(1.05);
   }

   .card-img-box img {
       width: 100%;
       height: 100%;
       object-fit: cover;
       transition: transform 0.5s;
   }

   .rencai-card:hover .card-img-box img {
       transform: scale(1.05);
   }

   /* 内容区域 */
   .card-content-box {
       padding: 30px;
       min-height: 150px;
       position: relative;
       background: url('../images/talent/b.png') no-repeat;
       background-size: 100% 100%;
   }

   /* 标题 */
   .card-title {
       font-size: 24px;
       font-weight: bold;
       color: #003B8E;
       margin-bottom: 20px;
   }

   /* 描述 */
   .card-desc {
       font-size: 14px;
       color: #666;
       line-height: 1.8;
       text-align: justify;
   }
   /* =========================================
   人才招聘 (卡片列表样式)
   ========================================= */
#zhaopin .textContent {
    width: 100%;
}
/* 列表容器：Grid 布局，三列 */
.position-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 40px 0;
    max-width: 1400px;
    margin: 0 auto;
}

/* 单个职位卡片 */
.position-card {
    background: #fff;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); /* 淡淡的阴影 */
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.position-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 59, 142, 0.1);
    border-color: #003B8E;
}

/* 职位名称 */
.pos-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    font-family: "Alibaba PuHuiTi 3.0", sans-serif;
}

/* 标签栏 (地点、学历) */
.pos-tags {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}

.tag-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.tag-item i {
    color: #E60012; /* 红色图标 */
}

/* 职位描述/要求 */
.pos-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    flex: 1; /* 撑开中间区域 */
    margin-bottom: 20px;
    overflow: auto;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 8; /* 显示8行 */
    -webkit-box-orient: vertical;
}

/* 强制覆盖接口返回的 HTML 样式 */
.pos-desc p, .pos-desc span, .pos-desc ul, .pos-desc li {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 14px !important;
    color: #666 !important;
    background: transparent !important;
    list-style: none !important; /* 去除列表点 */
}
/* 给段落之间加一点间距 */
.pos-desc p {
    margin-bottom: 8px !important;
}

/* 底部蓝线 */
.pos-line {
    width: 100%;
    height: 4px;
    background-color: #003B8E; /* 深蓝 */
    margin-bottom: 15px;
}

/* 底部邮箱 */
.pos-footer {
    font-size: 14px;
    color: #333;
}

.pos-footer a {
    color: #003B8E;
    text-decoration: none;
    font-weight: bold;
}

/* 响应式适配 */
@media screen and (max-width: 1000px) {
    .position-list {
        grid-template-columns: repeat(2, 1fr); /* 平板两列 */
        padding: 20px;
    }
}

@media screen and (max-width: 600px) {
    .position-list {
        grid-template-columns: 1fr; /* 手机单列 */
    }
}


   @media screen and (max-width: 1000px) {
       .rencaiConNei {
           flex-direction: column;
           align-items: center;
           height: 100%;
       }

       .rencaiNeiImg {
           width: 100%;
       }

       .rencaiHint {
           width: 100%;
           padding: 50px;
       }

       .rencaiConMainTwo img {
           width: 90%;
           height: auto;
       }

       .rencaiConThreeMain {
           flex-direction: column;
           align-items: center;
           width: 90%;
           margin: 0 auto;
       }

       .rencaiConThreeItem {
           width: 80%;
           margin-top: 30px
       }

       .rencaiConThreeMain .swiper-container img {
           width: 100%;
           height: 100%;
       }
       .textContent,.imgContent{
        width: 100%;
       }
   }