/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: #007bff;
}

a:hover {
    color: #0056b3;
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 15px;
    color: #2c3e50;
}

p {
    margin-bottom: 15px;
}

img {
    max-width: 100%;
}

/* 头部样式 */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h1 {
    color: #007bff;
    margin-bottom: 5px;
}

.logo p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: #333;
    font-weight: 500;
    font-size: 18px;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
    color: #007bff;
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #007bff;
}

/* 面包屑导航 */
.breadcrumb {
    background-color: #e9ecef;
    padding: 10px 0;
    font-size: 14px;
}

.breadcrumb a {
    color: #007bff;
}

/* 页面头部 */
.page-header {
    background: linear-gradient(135deg, #007bff, #00bfff);
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}

.page-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 0;
}

/* 首页英雄区域 */
.hero {
    background: linear-gradient(135deg, #007bff, #00bfff);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* 按钮样式 */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #fff;
    color: #007bff;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid #fff;
}

.btn:hover {
    background-color: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    display: inline-block;
    padding: 10px 25px;
    background-color: transparent;
    color: #007bff;
    border: 2px solid #007bff;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline:hover {
    background-color: #007bff;
    color: #fff;
}

/* 首页简介 */
.intro {
    padding: 80px 0;
}

.intro-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.intro-text {
    flex: 1;
}

.intro-image {
    flex: 1;
    text-align: center;
    color: #007bff;
}

/* 首页宣传文案 */
.slogan {
    padding: 80px 0;
    background-color: #f1f8ff;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 30px 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

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

.feature i {
    color: #007bff;
    margin-bottom: 20px;
}

/* 首页新闻 */
.news {
    padding: 80px 0;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.news-item:hover {
    transform: translateY(-5px);
}

.news-item .date {
    color: #007bff;
    font-weight: 600;
}

.news-item h3 {
    margin: 10px 0;
}

.news-item h3 a {
    color: #2c3e50;
}

.news-item h3 a:hover {
    color: #007bff;
}

.text-center {
    text-align: center;
    margin-top: 30px;
}

.btn-more {
    display: inline-block;
    padding: 10px 25px;
    border: 2px solid #007bff;
    color: #007bff;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-more:hover {
    background-color: #007bff;
    color: #fff;
}

/* 首页服务 */
.services {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s;
}

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

.service-card i {
    color: #007bff;
    margin-bottom: 20px;
}

/* 首页案例 */
.cases {
    padding: 80px 0;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.case-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s;
}

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

.case-icon {
    color: #007bff;
    margin-bottom: 20px;
}

/* 首页人才发展 */
.talent {
    padding: 80px 0;
    background-color: #f1f8ff;
}

.talent-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.talent-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s;
}

.talent-item:hover {
    transform: translateY(-10px);
}

.talent-item i {
    color: #007bff;
    margin-bottom: 20px;
}

/* 首页联系预览 */
.contact-preview {
    padding: 80px 0;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.contact-item {
    text-align: center;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-item i {
    color: #007bff;
    margin-bottom: 20px;
}

/* 页脚 */
footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer-column h4 {
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #007bff;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #bbb;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #fff;
}

/* 公司简介页面 */
.about-content {
    padding: 40px 0;
}

.about-intro {
    margin-bottom: 50px;
}

.about-intro h2 {
    text-align: center;
    margin-bottom: 30px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.value-item i {
    color: #007bff;
    margin-bottom: 20px;
}

.timeline {
    position: relative;
    padding-left: 30px;
    border-left: 2px solid #007bff;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-year {
    position: absolute;
    left: -60px;
    top: 0;
    background-color: #007bff;
    color: #fff;
    width: 60px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-weight: 600;
}

.timeline-content {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    text-align: center;
    padding: 30px 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.member-icon {
    color: #007bff;
    margin-bottom: 20px;
}

/* 服务项目页面 */
.services-detail {
    padding: 40px 0;
}

.service-category {
    margin-bottom: 50px;
}

.service-category h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #007bff;
}

.service-description {
    display: flex;
    gap: 30px;
    align-items: center;
}

.service-icon {
    flex: 1;
    text-align: center;
    color: #007bff;
}

.service-text {
    flex: 2;
}

.service-process {
    padding: 60px 0;
    background-color: #f1f8ff;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.step {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #007bff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin: 0 auto 20px;
}

.cta-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #007bff, #00bfff);
    color: #fff;
}

.cta-section h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* 成功案例页面 */
.case-filter {
    padding: 20px 0;
    background-color: #f8f9fa;
}

.case-filter ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.case-filter ul li {
    padding: 8px 20px;
    background-color: #fff;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.case-filter ul li:hover,
.case-filter ul li.active {
    background-color: #007bff;
    color: #fff;
}

.cases-list {
    padding: 40px 0;
}

.case-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.case-image {
    flex: 1;
    text-align: center;
    color: #007bff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-content {
    flex: 2;
}

.case-tag {
    display: inline-block;
    padding: 5px 15px;
    background-color: #007bff;
    color: #fff;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 15px;
}

.case-details h3 {
    color: #007bff;
    margin-top: 20px;
}

.case-meta {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #666;
}

.case-meta span {
    margin-right: 20px;
}

.testimonials {
    padding: 60px 0;
    background-color: #f1f8ff;
}

.testimonial-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
}

.testimonial-content::before {
    content: "";
    font-size: 60px;
    color: #007bff;
    opacity: 0.2;
    position: absolute;
    left: -20px;
    top: -30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author i {
    color: #007bff;
}

/* 新闻资讯页面 */
.news-categories {
    padding: 20px 0;
    background-color: #f8f9fa;
}

.news-categories ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.news-categories ul li {
    padding: 8px 20px;
    background-color: #fff;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.news-categories ul li:hover,
.news-categories ul li.active {
    background-color: #007bff;
    color: #fff;
}

.news-archive {
    padding: 40px 0;
}

.news-item {
    display: flex;
    gap: 20px;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: transform 0.3s;
}

.news-item:hover {
    transform: translateY(-5px);
}

.news-date {
    text-align: center;
    background-color: #f1f8ff;
    padding: 15px;
    border-radius: 10px;
    min-width: 100px;
}

.news-date .day {
    font-size: 24px;
    font-weight: 600;
    color: #007bff;
}

.news-date .month {
    font-size: 14px;
    color: #666;
}

.news-date .year {
    font-size: 14px;
    color: #666;
}

.news-content {
    flex: 1;
}

.news-tags {
    margin-bottom: 10px;
}

.tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

.tag.company {
    background-color: #007bff;
}

.tag.industry {
    background-color: #28a745;
}

.tag.policy {
    background-color: #ffc107;
    color: #212529;
}

.tag.knowledge {
    background-color: #6f42c1;
}

.news-content h2 {
    margin-bottom: 15px;
}

.news-content h2 a {
    color: #2c3e50;
}

.news-content h2 a:hover {
    color: #007bff;
}

.news-summary {
    color: #666;
    margin-bottom: 15px;
}

.news-meta {
    color: #999;
}

.news-meta span {
    margin-right: 20px;
}

.pagination {
    padding: 30px 0;
    text-align: center;
}

.pagination ul {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pagination ul li {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
}

.pagination ul li:hover,
.pagination ul li.active {
    background-color: #007bff;
    color: #fff;
}

.pagination ul li.disabled {
    color: #ccc;
    cursor: not-allowed;
}

/* 新闻详情页面 */
.news-detail {
    padding: 40px 0;
}

.news-article {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.news-article h1 {
    text-align: center;
    margin-bottom: 20px;
}

.article-meta {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.article-meta span {
    margin: 0 10px;
}

.article-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.article-content strong {
    font-size: 18px;
    color: #2c3e50;
}

.article-tags {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.article-tags span {
    font-weight: 600;
    margin-right: 10px;
}

.article-tags a {
    display: inline-block;
    padding: 5px 15px;
    background-color: #f1f8ff;
    color: #007bff;
    border-radius: 30px;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.article-tags a:hover {
    background-color: #007bff;
    color: #fff;
}

.related-news {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.related-news h3 {
    margin-bottom: 20px;
    color: #007bff;
}

.related-news ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}

.related-news ul li:last-child {
    border-bottom: none;
}

.related-news ul li a {
    color: #2c3e50;
}

.related-news ul li a:hover {
    color: #007bff;
}

.related-news ul li span {
    color: #999;
    font-size: 14px;
}

/* 联系我们页面 */
.contact-info-section {
    padding: 60px 0;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-card {
    text-align: center;
    padding: 40px 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-card i {
    color: #007bff;
    margin-bottom: 20px;
}

.departments {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.department-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.department-item {
    display: flex;
    gap: 20px;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.department-icon {
    color: #007bff;
    min-width: 60px;
}

.department-info h3 {
    margin-bottom: 15px;
    color: #007bff;
}

.department-info p {
    margin-bottom: 10px;
}

.department-info a {
    color: #007bff;
    font-weight: 600;
}

.department-info a:hover {
    text-decoration: underline;
}

.map-section {
    padding: 60px 0;
}

.map-placeholder {
    background-color: #f1f8ff;
    padding: 60px 20px;
    text-align: center;
    border-radius: 10px;
}

.map-placeholder i {
    color: #007bff;
    margin-bottom: 20px;
}

.contact-form-info {
    padding: 60px 0;
    text-align: center;
    background-color: #f1f8ff;
}

/* 产品中心页面 */
.product-categories {
    padding: 20px 0;
    background-color: #f8f9fa;
}

.product-categories ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.product-categories ul li {
    padding: 8px 20px;
    background-color: #fff;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.product-categories ul li:hover,
.product-categories ul li.active {
    background-color: #007bff;
    color: #fff;
}

.products-list {
    padding: 40px 0;
}

.product-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.product-image {
    flex: 1;
    text-align: center;
    color: #007bff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-content {
    flex: 2;
}

.product-summary {
    color: #666;
    margin-bottom: 20px;
}

.solutions {
    padding: 60px 0;
    background-color: #f1f8ff;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.solution-item {
    text-align: center;
    padding: 30px 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.solution-item i {
    color: #007bff;
    margin-bottom: 20px;
}

/* 服务中心页面 */
.service-center-categories {
    padding: 60px 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-item {
    text-align: center;
    padding: 40px 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.category-item i {
    color: #007bff;
    margin-bottom: 20px;
}

.online-services {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    text-align: center;
    padding: 30px 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-icon {
    color: #007bff;
    margin-bottom: 20px;
}

.customer-support {
    padding: 60px 0;
}

.support-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.support-item {
    text-align: center;
    padding: 30px 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.support-item i {
    color: #007bff;
    margin-bottom: 20px;
}

/* 知识库页面 */
.knowledge-categories {
    padding: 20px 0;
    background-color: #f8f9fa;
}

.knowledge-categories ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.knowledge-categories ul li {
    padding: 8px 20px;
    background-color: #fff;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.knowledge-categories ul li:hover,
.knowledge-categories ul li.active {
    background-color: #007bff;
    color: #fff;
}

.knowledge-articles {
    padding: 40px 0;
}

.article-item {
    display: flex;
    gap: 20px;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: transform 0.3s;
}

.article-item:hover {
    transform: translateY(-5px);
}

.article-icon {
    color: #007bff;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-content {
    flex: 1;
}

.article-tags {
    margin-bottom: 10px;
}

.tag.law {
    background-color: #007bff;
}

.tag.recruitment {
    background-color: #28a745;
}

.tag.employee {
    background-color: #ffc107;
    color: #212529;
}

.tag.salary {
    background-color: #6f42c1;
    color: #fff;
}

.tag.training {
    background-color: #e83e8c;
    color: #fff;
}

.tag.performance {
    background-color: #fd7e14;
    color: #fff;
}

.article-content h2 {
    margin-bottom: 15px;
}

.article-content h2 a {
    color: #2c3e50;
}

.article-content h2 a:hover {
    color: #007bff;
}

.article-summary {
    color: #666;
    margin-bottom: 15px;
}

.article-meta {
    color: #999;
}

.article-meta span {
    margin-right: 20px;
}

/* 常见问题页面 */
.faq-categories {
    padding: 20px 0;
    background-color: #f8f9fa;
}

.faq-categories ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.faq-categories ul li {
    padding: 8px 20px;
    background-color: #fff;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-categories ul li:hover,
.faq-categories ul li.active {
    background-color: #007bff;
    color: #fff;
}

.faq-content {
    padding: 40px 0;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    background-color: #fff;
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin-bottom: 0;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-question h3 i:first-child {
    color: #007bff;
}

.faq-question i:last-child {
    transition: transform 0.3s;
}

.faq-item.active .faq-question i:last-child {
    transform: rotate(180deg);
}

.faq-answer {
    background-color: #f8f9fa;
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-item.active .faq-answer {
    padding: 25px;
    max-height: 1000px;
}

.faq-answer ul,
.faq-answer ol {
    padding-left: 20px;
    margin-bottom: 15px;
}

.faq-answer ul li,
.faq-answer ol li {
    margin-bottom: 10px;
}

.faq-cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #007bff, #00bfff);
    color: #fff;
    margin-top: 40px;
}

.faq-cta h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 20px;
}

.faq-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* 人才招聘页面 */
.recruit-intro {
    padding: 60px 0;
}

.intro-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.intro-text {
    flex: 1;
}

.intro-image {
    flex: 1;
    text-align: center;
    color: #007bff;
}

.recruit-benefits {
    padding: 60px 0;
    background-color: #f1f8ff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.benefit-item i {
    color: #007bff;
    margin-bottom: 20px;
}

.job-openings {
    padding: 60px 0;
}

.job-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    overflow: hidden;
}

.job-header {
    padding: 20px 25px;
    background-color: #f1f8ff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.job-header h3 {
    margin-bottom: 0;
    color: #007bff;
}

.job-location {
    background-color: #007bff;
    color: #fff;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 14px;
}

.job-details {
    padding: 25px;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    color: #666;
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.application-method {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.method-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.method-step {
    text-align: center;
    padding: 30px 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #007bff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin: 0 auto 20px;
}

.recruit-contact {
    padding: 60px 0;
}

.contact-info {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.contact-info p {
    font-size: 18px;
    margin-bottom: 15px;
}

.contact-info i {
    color: #007bff;
    margin-right: 10px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li {
        margin: 5px 10px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .intro-content,
    .case-item,
    .product-item,
    .testimonial-author {
        flex-direction: column;
    }

    .service-description {
        flex-direction: column;
    }

    .news-item,
    .article-item {
        flex-direction: column;
    }

    .news-date {
        margin-bottom: 20px;
    }

    .department-item {
        flex-direction: column;
        text-align: center;
    }

    .faq-question {
        padding: 15px;
    }

    .faq-answer {
        padding: 0 15px;
    }

    .faq-item.active .faq-answer {
        padding: 15px;
    }

    .job-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .job-meta {
        justify-content: center;
    }
}