@charset "utf-8";

/* ===== 人力资源关于我们页面样式 ===== */
#container {
    padding-top: 80px; /* 为固定头部留出空间 */
    background: #f9f9f9;
}

/* ===== Banner区域 ===== */
.we-ban {
    width: 100%;
    height: 400px; /* 增加高度 */
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #009B96 0%, #006B66 100%);
}

.we-ban img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8; /* 添加透明度让文字更清晰 */
}

/* Banner文字内容 */
.ban-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.ban-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.ban-content h2 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    opacity: 0.9;
}

.ban-content p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.8;
}

/* ===== 通用容器 ===== */
.con-center {
    width: 1200px;
    margin: 0 auto;
    /* padding: 50px 0; */
}

/* ===== 标题样式 ===== */
.we-text {
    text-align: center;
    margin-bottom: 40px;
}

.we-text h2 {
    font-size: 34px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.we-text h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #009B96;
}

.we-text p {
    font-size: 16px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===== 关于我们内容区域 ===== */
.we-content {
    overflow: hidden;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    padding: 40px;
}

.we-image {
    width: 45%;
    float: left;
    overflow: hidden;
    border-radius: 8px;
}

.we-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.we-image img:hover {
    transform: scale(1.02);
}

.we-con-ul {
    width: 50%;
    float: right;
    list-style: none;
    margin: 0;
    padding: 20px 0;
}

.we-con-ul li:first-child {
    font-size: 28px;
    font-weight: 600;
    color: #009B96;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #009B96;
}

.we-con-li {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    text-align: justify;
}

/* ===== 合作客户区域 ===== */
.we-text2 {
    margin-top: 20px;
}

.we-cooperation {
    list-style: none;
    margin: 0 -15px;
    padding: 0;
    overflow: hidden;
    text-align: center;
}

.we-cooperation li {
    width: 25%;
    float: left;
    padding: 0 15px;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.we-cooperation li img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    padding: 15px;
    box-sizing: border-box;
}

.we-cooperation li img:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,155,150,0.1);
}

/* ===== 荣誉资质区域 ===== */
.we-honor {
    background: #f0f5f5;
    padding: 50px 0;
    margin-top: 20px;
    position: relative;
}

.we-honor-div {
    position: relative;
    padding: 0 50px;
}

.we-honor-ul {
    list-style: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.we-honor-ul li {
    float: left;
    width: 33.333%;
    padding: 0 15px;
    box-sizing: border-box;
}

.we-honor-img {
    width: 100%;
    height: 180px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.we-honor-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,155,150,0.15);
}

.we-honor-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* 轮播箭头 */
.we-le,
.we-ri {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    margin: 0;
}

.we-le:hover,
.we-ri:hover {
    background: #009B96;
}

.we-le img,
.we-ri img {
    width: 20px;
    height: 20px;
    transition: all 0.3s;
}

.we-le:hover img,
.we-ri:hover img {
    filter: brightness(0) invert(1);
}

.we-le {
    left: 0;
}

.we-ri {
    right: 0;
}

/* ===== 清除浮动 ===== */
.clearfloat {
    clear: both;
}

/* ===== 响应式设计 ===== */
@media (max-width: 1200px) {
    .con-center {
        width: 100%;
        padding: 40px 20px;
    }
    
    .we-content {
        padding: 30px;
    }
    
    .ban-content h1 {
        font-size: 42px;
    }
}

@media (max-width: 992px) {
    .we-ban {
        height: 350px;
    }
    
    .ban-content h1 {
        font-size: 36px;
    }
    
    .ban-content h2 {
        font-size: 20px;
    }
    
    .we-image,
    .we-con-ul {
        width: 100%;
        float: none;
    }
    
    .we-image {
        margin-bottom: 30px;
    }
    
    .we-con-ul {
        padding: 0;
    }
    
    .we-cooperation li {
        width: 50%;
    }
    
    .we-honor-ul li {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .we-ban {
        height: 300px;
    }
    
    .ban-content h1 {
        font-size: 30px;
    }
    
    .ban-content h2 {
        font-size: 18px;
    }
    
    .ban-content p {
        font-size: 14px;
    }
    
    .we-text h2 {
        font-size: 28px;
    }
    
    .we-con-ul li:first-child {
        font-size: 24px;
    }
    
    .we-cooperation li {
        width: 100%;
        max-width: 300px;
        margin: 0 auto 20px;
        float: none;
    }
    
    .we-honor-ul li {
        width: 100%;
        max-width: 300px;
        margin: 0 auto 20px;
        float: none;
    }
    
    .we-le,
    .we-ri {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .we-ban {
        height: 250px;
    }
    
    .ban-content h1 {
        font-size: 24px;
    }
    
    .ban-content h2 {
        font-size: 16px;
    }
    
    .we-content {
        padding: 20px;
    }
    
    .we-con-li {
        font-size: 14px;
    }
    
    .we-honor-img {
        height: 150px;
    }
}