/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', sans-serif;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1200px;
}

/* 导航栏样式 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0); /* 默认透明度 0% */
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    height: 30px;
    margin-bottom: 0;
}

/* 移动端样式调整 */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        padding: 10px 0;
    }

    .logo {
        margin-bottom: 0px;
    }
}

.logo img {
    height: 30px;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* 移动端样式调整 */
@media (max-width: 768px) {
    .nav-links {
        flex-wrap: nowrap;
    }

    .nav-links li {
        margin-left: 15px;
        margin-right: 15px;
    }
}

.nav-links li {
    margin-left: 60px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.navbar.scrolled .nav-links a {
    color: #333;
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #7143ab;
    transition: width 0.3s ease;
}

.nav-links a:hover:after,
.nav-links a.active:after {
    width: 100%;
}

.mobile_nav {
    display: none;
}
.mobile_banner {
    display: none;
}

.hamburger {
    display: none;
    cursor: pointer;
    color: #fff;
    font-size: 24px;
}

.navbar.scrolled .hamburger {
    color: #333;
}

/* Banner 区域样式 */
.banner {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.banner.mobile-device {
    height: 24vh;
}
@media screen and (max-width: 768px) {
    .banner {
        margin-top: 0;
        height: auto;
    }
    .banner.mobile-device {
        height: auto;
    }
}
.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-content {
    text-align: center;
    color: #fff;
    z-index: 1;
    animation: fadeInUp 1.5s ease;
}

.banner-content h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* 区块通用样式 */
.section {
    padding: 80px 0;
}

.section h2 {
    text-align: center;
    margin-bottom: 80px;
    font-size: 1.8rem;
    color: #7143ab;
    position: relative;
}
@media (max-width: 768px) {
.section h2 {
    margin-bottom: 40px;
}}
.section h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #7143ab;
}

/* 企业介绍板块样式 */
.about {
    background-color: #f9f9f9;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center; 
}
.about-container .div_swiper {
    position: relative;
}
.about-container .swiper_about {
    position: relative;
    width: 560px;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
    margin-top: 8px;
}
.about-container .swiper_about .swiper-slide {
    width: 100%;
    height: 100%;
}
.about-container .swiper_about .swiper-slide > div {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.about-container .swiper-button-prev, .swiper-container-rtl .swiper-button-next,
.about-container .swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    top: 50%;
}


/* 图片轮播样式 */
.about-carousel {
    flex: 1;
    min-width: 300px;
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}
@media (max-width: 768px) {
.about-carousel {
    height: 200px;
}

}
.carousel-slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: column;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    text-align: center;
    font-size: 1.1rem;
}

/* 轮播控制按钮 - 默认隐藏，鼠标悬停在轮播区域时显示 */
.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.7);
    color: #333;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0; /* 默认隐藏 */
    visibility: hidden;
}

/* 当鼠标悬停在轮播容器上时显示箭头按钮 */
.about-carousel:hover .carousel-prev,
.about-carousel:hover .carousel-next {
    opacity: 1;
    visibility: visible;
}

.carousel-prev:hover,
.carousel-next:hover {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.carousel-prev {
    left: 15px;
}

.carousel-next {
    right: 15px;
}

/* 轮播指示器 */
.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.carousel-dot.active {
    background-color: white;
    transform: scale(1.2);
}

/* 文字内容样式 */
.about-content {
    flex: 1;
    min-width: 300px;
}
.about_content_mobile {
    display: none;
}

.about-content p {
    /* margin-bottom: 20px; */
    font-size: 1.1rem;
    line-height: 1.8;
    text-indent: 2em;
    text-align: justify;
}


/* 多图片轮播样式 */
.team-carousel-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.multi-carousel {
    position: relative;
    margin-top: 30px;
}
.swiper_nav {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
    margin-bottom: 30px;
}
.swiper_nav a {
    display: inline-block;
    text-align: center;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    border-radius: 4px;
    background: linear-gradient(to right, #7143ab, #5056c2);
    line-height: 36px;
}

.multi-carousel .div_swiper {
    width: 100%;
    overflow: hidden;
}
.multi-carousel .swiper_brand {
    height: 200px;
}
.multi-carousel .div_swiper .swiper-slide {
    height: 100%;
}
.multi-carousel .div_swiper .swiper-slide > div {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}
.multi-carousel .div_swiper .swiper-slide > div p {
    position: absolute;
    bottom: 0;
    width: 100%;
    line-height: 40px;
    text-align: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    font-size: 12px;
}
.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination2 {
    bottom: -30px;
}
.swiper-button-prev, .swiper-container-rtl .swiper-button-next,
.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    top: 60%;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 100%;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23555555'%2F%3E%3C%2Fsvg%3E");
    background-size: 20px 15px;
    background-position: center;
}
.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    transform: rotate(180deg);
}



/* 招聘岗位板块样式 */
.jobs {
    background-color: #fff;
}

.jobs-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.jobs-table th,
.jobs-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

/* 网申通道按钮样式 */
.apply-button {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(to right, #7143ab, #5056c2);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* 鼠标悬停效果 */
.apply-button:hover {
    background: linear-gradient(to right, #955ed9, #8288ff);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(106, 34, 230, 0.3);
}

/* 点击效果 */
.apply-button:active {
    background-color: #c0392b;
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(230, 126, 34, 0.2);
}

.jobs-table th {
    background-color: #f2f2f2;
    font-weight: 600;
}

.jobs-table tr:hover {
    background-color: #f9f9f9;
    transition: background-color 0.3s ease;
}

.jobs_title {
    display: grid;
    grid-template-columns: 150px 1fr 100px;
    gap: 10px;
    text-align: center;
}
.jobs_title span:nth-child(2) {
    text-align: left;
    padding-left: 10px;
}
.jobs_title span:last-child {
    padding-right: 10px;
}
/* .jobs-content {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 40px;
} */
ul, li {
    list-style: none;
}
.job_item {
    display: grid;
    grid-template-columns: 150px auto;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.job_list li { 
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0 20px;
    line-height: 40px;
}
.job_list li:last-child { 
    border-bottom: none;
}
.job_type {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(113 67 171 / 12%);
}
.job_name {
    display: grid;
    grid-template-columns: auto 100px;
    padding: 10px;
    cursor: pointer;
}
.job_info {
    display: none;
    background-color: rgba(0, 0, 0, 0.04);
    padding: 20px;
    margin-bottom: 20px;
}
.job_list a {
    display: inline-block;
    background: linear-gradient(to right, #7143ab, #5056c2);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    height: 30px;
    line-height: 30px;
    font-size: 12px;
    margin-top: 5px;
    width: 100px;
}

/* 鼠标悬停效果 */
.job_list a:hover {
    background: linear-gradient(to right, #955ed9, #8288ff);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(106, 34, 230, 0.3);
}

/* 点击效果 */
.job_list a:active {
    background-color: #c0392b;
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(230, 126, 34, 0.2);
}


/* 员工福利板块样式 */
.benefits {
    background-color: #f9f9f9;
}

.benefits-content {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}
.benefits-content .benefit-card:nth-child(1),
.benefits-content .benefit-card:nth-child(2),
.benefits-content .benefit-card:nth-child(3) {
    grid-column: span 2;
}

.benefits-content .benefit-card:nth-child(4),
.benefits-content .benefit-card:nth-child(5) {
    grid-column: span 3;
}

.benefit-card {
    background: linear-gradient(to top, #ffffff, #f0ecff);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit-card h3 {
    margin-bottom: 15px;
    color: #7143ab;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(to right, #7143ab, #5056c2);
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.benefit-icon img {
    width: 20px;
}
.benefit-card p {
    display: flex;
    font-size: 16px;
}
.benefit-card .note {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #777;
}

/* 联系我们板块样式 */
.contact {
    background-color: #fff;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h3 {
    margin-bottom: 15px;
    color: #7143ab;
    font-size: 1.4rem;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info a {
    color: #7143ab;
    text-decoration: none;
}

.qrcode {
    flex: 0 0 200px;
    height: 200px;
    margin-top: 20px;
}

.qrcode-placeholder {
    width: 100%;
    height: 100%;
    border: 1px dashed #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #777;
}

/* 页脚样式 */
.footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-logo img {
    height: 50px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    margin: 20px 0;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin-right: 20px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #7143ab;
}

.footer-copyright {
    width: 100%;
    text-align: center;
}

.visible-xs {
    display: none;
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    /* 表格响应式样式 */
    .jobs-content {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .jobs-table {
       /*  min-width: 400px; 调整最小宽度，因为隐藏了一列 */
    }
    
    .jobs-table th,
    .jobs-table td {
        padding: 12px 10px; /* 调整移动设备上的内边距 */
        font-size: 0.85rem; /* 稍微缩小字体 */
    }
    
    /* 隐藏移动端的任职要求列 */
    .jobs-table th:nth-child(2),
    .jobs-table td:nth-child(2) {
        display: none;
    }
    /* 导航栏响应式 */
    .navbar {
        background-color: #fff; /* 移动端默认背景透明度 100% */
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .web_nav {
        display: none;
    }
    .mobile_nav {
        position: relative;
        display: block;
    }
    .mobile_nav_fiexd {
        position: fixed;
    }
    .web_banner {
        display: none;
    }
    .mobile_banner {
        display: block;
    }
    .banner-image {
        position: relative;
    }

    .nav-links {
        position: relative;
        right: 0;
        width: 100%;
        height: auto;
        background-color: transparent;
        display: flex;
        box-shadow: none;
        margin-top: 0;
        justify-content: space-around;
    }

    .nav-links li {
        margin: 8px 0;
    }

    .nav-links a {
        color: #333;
        font-size: 1rem;
    }

    .hamburger {
        display: none;
    }

    /* Banner 响应式 */
    .banner-content h1 {
        font-size: 2.5rem;
    }

    /* 板块标题响应式 */
    .section h2 {
        font-size: 1.8rem;
    }

    /* 联系我们响应式 */
    .contact-content {
        flex-direction: column;
    }

    .qrcode {
        margin-top: 30px;
    }
    .about-container {
        gap: 10px;
    }
    .about-content p {
        font-size: 0.85rem;
    }
    .about_content_mobile {
        display: block
    }
    .about_content_web {
        display: none;
    }
    .nav-links a:hover:after {
        width: 0;
    }
    .nav-links a.active:after {
        width: 100%;
    }

    .div_swiper {
        width: 100%;
    }
    .about-container .swiper_about {
        width: 100%;
        height: 260px;
    }
    .swiper-button-prev, .swiper-container-rtl .swiper-button-next, .swiper-button-next, .swiper-container-rtl .swiper-button-prev {
        display: none;
    }
    .benefits-content {
        grid-template-columns: 1fr;
    }
    .benefit-card p {
        font-size: 0.85rem;
    }
    .swiper_nav {
        gap: 5px;
        margin-bottom: 12px;
    }
    .swiper_nav a {
        font-size: 12px;
        white-space: nowrap;
    }
    .job_item {
        grid-template-columns: 1fr;
        line-height: 40px;
    }
    .job_list li {
        line-height: 34px;
        font-size: 0.85rem;
    }
    .job_list a {
        margin-top: 2px;
    }
    .job_info {
        font-size: 0.85rem;
    }
    .contact-info p {
        font-size: 0.85rem;
    }
    .footer {
        font-size: 0.85rem;
    }
    .benefits-content .benefit-card:nth-child(1),
    .benefits-content .benefit-card:nth-child(2),
    .benefits-content .benefit-card:nth-child(3) {
        grid-column: span 3;
    }

    .visible-xs {
        display: block;
    }
    .hidden-xs {
        display: none;
    }
}

@media (max-width: 480px) {
    .banner-content h1 {
        font-size: 2rem;
    }

    .banner-content p {
        font-size: 1rem;
    }

    .section {
        padding: 30px 0;
    }

    .section h2 {
        font-size: 1.2rem;
    }
}