/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Microsoft YaHei Light', 'Microsoft YaHei', sans-serif;
}
figure img{
    width: 60%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    margin: 20px;
}
.text-align{
    text-align: center;
}
.job-detail h2{
    margin: 40px 0px 10px 0px;
}
.mt-70{
    margin-top: 70px!important;
}
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

body {
    font-size: 16px;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
    /* 移除overflow-x: hidden，避免隐藏内容 */
}
section {
    margin: 0;
    padding: 0;
}
.swiper-button-next, .swiper-button-prev{
  color: rgba(255, 255, 255, 0)!important;

}

/* 容器样式 */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

/* 通用动画效果 */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* 确保团队成员文字始终可见，不受fade-in影响 */
.team-member .fade-in,
.team-member .fade-in.visible,
.team-member .member-info,
.team-member .member-info.fade-in,
.team-member .member-info.visible,
.team-member .member-info h3,
.team-member .member-info h3.fade-in,
.team-member .member-info h3.visible,
.team-member .member-title,
.team-member .member-title.fade-in,
.team-member .member-title.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
    display: block !important;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 卡片式布局 */
.card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 40px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: visible;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.1);
}

/* 卡片图片样式 */
.card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

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

/* 导航栏样式 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* 几乎完全透明，仅保留轻微雾化效果 */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(2px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 20px 0;
    box-shadow: none;
}

/* 底部导航样式 */
.footer {
    background-color: #fff;
    padding: 40px 0 20px;
    margin-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    font-family: 'Roboto', sans-serif;
    color: #000;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-content {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.footer-logo-left {
    flex: 0 0 auto;
    margin-left: 40px;
    display: flex;
    align-items: center;
}

.footer-logo-left img {
    max-height: 40px;
    width: auto;
}

.footer-column {
    flex: 1;
    min-width: 150px;
    margin-bottom: 16px;
    padding-right: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.footer-column h3 {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin: 0 0 15px 0;
    letter-spacing: 0.5px;
    border-bottom: none;
    padding-bottom: 0;
    line-height: 1.2;
    height: 20px;
    display: flex;
    align-items: center;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin: 0 0 12px 0;
    line-height: 1.2;
    height: 17px;
    display: flex;
    align-items: center;
}

.footer-column a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    line-height: 1.2;
    height: 17px;
    display: flex;
    align-items: center;
}

.footer-column a:hover {
    color: #000;
}

.footer-bottom {
    text-align: center;
    padding: 10px 0 0;
    margin: 10px 0 0;
    border-top: 1px solid #e0e0e0;
    color: #666;
    font-size: 12px;
    width: 100%;
}

.footer-bottom p {
    margin: 0;
    line-height: 1.6;
}

/* 响应式底部导航 */
@media (max-width: 768px) {
    .footer .container {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-column {
        padding-right: 0;
        margin-bottom: 30px;
        min-width: 100%;
    }
}

.scrolled .navbar,.navbar.scrolled {
    /* 滚动时降低透明度（增加不透明度） */
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(2px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

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

.navbar-logo-right {
    display: flex;
    align-items: center;
}

.navbar-logo-right img {
    max-height: 40px;
    width: auto;
}

.logo a {
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
}

.navbar.scrolled .logo img {
    height: 40px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

.main-nav li {
    margin-left: 40px;
    position: relative;
}

.main-nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    padding: 10px 0;
    display: block;
    transition: all 0.3s ease;
    position: relative;
    /* 添加文字阴影增强可读性 */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled .main-nav a {
    color: #333;
    text-shadow: none;
}

.main-nav a:hover {
    color: #fff;
}

.navbar.scrolled .main-nav a:hover {
    color: #333;
}

/* 导航下划线动画 */
.main-nav > ul > li > a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 1px !important;
    background: #fff !important;
    transition: width 0.3s ease, background-color 0.3s ease;
    opacity: 1 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
}

.main-nav > ul > li > a:hover::after {
    width: 100%;
    height: 1px !important;
    background: #fff !important;
    opacity: 1 !important;
    box-shadow: none !important;
    border: none !important;
}

.navbar.scrolled .main-nav > ul > li > a::after {
    background: #333 !important;
    height: 1px !important;
    opacity: 1 !important;
    box-shadow: none !important;
    border: none !important;
}

.navbar.scrolled .main-nav > ul > li > a:hover::after {
    background: #333 !important;
    height: 1px !important;
    opacity: 1 !important;
    box-shadow: none !important;
    border: none !important;
}

/* 下拉菜单 */
.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 5px 0;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    display: flex;
    flex-direction: column;
}

.menu-item:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li {
    margin: 0;
    width: 100%;
}

.sub-menu a {
    padding: 12px 20px;
    font-size: 14px;
    width: 100%;
    text-align: left;
    color: #333;
    text-shadow: none;
    position: relative;
}

.sub-menu a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    width: 0;
    height: 2px !important;
    background: #333 !important;
    transition: width 0.3s ease;
    opacity: 1 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
}

.sub-menu a:hover {
    background-color: #fff;
    color: #333;
}

.sub-menu a:hover::after {
    width: calc(100% - 40px);
    height: 2px !important;
    background: #333 !important;
    opacity: 1 !important;
    box-shadow: none !important;
    border: none !important;
}

/* 确保导航栏滚动时下拉菜单项的下划线为2px线条 */
.navbar.scrolled .sub-menu a::after {
    height: 2px !important;
    background: #333 !important;
    opacity: 1 !important;
    box-shadow: none !important;
    border: none !important;
}

/* 确保导航栏滚动时下拉菜单项hover的下划线为2px线条 */
.navbar.scrolled .sub-menu a:hover::after {
    height: 2px !important;
    background: #333 !important;
    opacity: 1 !important;
    box-shadow: none !important;
    border: none !important;
}

/* Hero Section */
.hero {
    position: relative;
    /* 确保完全填满视口，没有滚动条显示下一个区块 */
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin: 0;
    padding: 0;
    z-index: 1;
    background-color: #000;
    /* 重置所有可能影响高度的属性 */
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
}

/* 新增首页内容区块 */
.home-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-image: url('../static/imgs/中益创利首页图片.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.home-section-content {
    position: relative;
    z-index: 2;
    max-width: 100%;
    padding: 0 40px;
    width: 100%;
}

.home-section-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.3;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
    word-break: keep-all;
    hyphens: none;
}

.home-section-subtitle {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 50px;
    opacity: 0.95;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.home-section-cta {
    display: inline-block;
    padding: 10px 30px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 0;
    transition: all 0.3s ease;
    box-shadow: none;
    min-width: auto;
    letter-spacing: 1px;
}

.home-section-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(0);
    box-shadow: none;
    color: #fff;
}

.hero video,
.hero .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
    /* 确保视频不会超出容器 */
    overflow: hidden;
}

/* Company Intro Section */
.company-intro {
    padding: 80px 0;
    background: white;
    color: #333;
}

.company-intro .section-title {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    text-align: left;
    position: relative;
    padding-bottom: 0;
}

.company-intro .section-title::after {
    content: none;
}

.intro-content {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    /* 确保左右内容高度一致 */
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    /* 允许换行，确保在小屏幕上正常显示 */
}

.intro-text {
    flex: 2;
    min-width: 300px;
    text-align: left;
    display: flex;
    flex-direction: column;
    /* 保持flex布局，便于内容组织 */
}

.intro-text p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #000;
}

.intro-text p:last-child {
    margin-bottom: 0;
    /* 移除最后一段的底部margin */
}

.intro-image {
    flex: 1;
    /* 允许伸缩，保持比例 */
    min-width: 250px;
    /* 增加最小宽度，确保图片协调 */
    max-width: 350px;
    /* 增加最大宽度，确保图片协调 */
    display: flex;
    align-items: stretch;
    /* 让容器高度与文字部分一致 */
    justify-content: center;
    /* 确保图片居中 */
}

.intro-image img {
    width: 100%;
    /* 宽度充满容器 */
    height: 100%;
    /* 高度充满容器，与文字部分完全匹配 */
    max-width: 100%;
    /* 最大宽度不超过容器 */
    max-height: 100%;
    /* 最大高度不超过容器 */
    object-fit: cover;
    /* 确保图片覆盖整个容器，保持比例 */
    border-radius: 8px;
    display: block;
    /* 确保图片正常显示 */
    margin: 0;
    /* 清除所有外边距 */
    padding: 0;
    /* 清除所有内边距 */
}

/* 合作机构样式 */
.cooperation-section {
    margin-top: 40px;
    margin-bottom: 40px;
    /* 添加底部margin，确保与下方横线对齐 */
    max-width: 1200px;
    /* 与其他内容保持一致的最大宽度 */
    margin-left: auto;
    /* 左右居中 */
    margin-right: auto;
    /* 左右居中 */
    padding: 0 20px;
    /* 添加左右内边距，确保在小屏幕上也有良好显示 */
}

.cooperation-title {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    text-align: left;
    /* 确保与企业介绍文本左对齐 */
    font-weight: normal;
    /* 保持与企业介绍文本一致的字重 */
}

.cooperation-logos {
    display: flex;
    justify-content: center;
    /* 使图片在容器内居中 */
    gap: 80px;
    /* 增加间距，使间隔更合理 */
    align-items: center;
    margin-top: 10px;
    flex-wrap: wrap;
    /* 确保在小屏幕上图片能换行 */
}

.logo-item {
    flex: 0 0 auto;
    /* 确保图片项不会被拉伸 */
    text-align: center;
    /* 确保图片在项内居中 */
}

.logo-item img {
    max-height: 80px;
    /* 设置图片最大高度 */
    width: auto;
    /* 保持图片比例 */
    object-fit: contain;
    /* 确保图片完整显示 */
    display: block;
    /* 确保图片不会有额外的间距 */
    margin: 0 auto;
    /* 确保图片在项内居中 */
}

.logo-item {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 300px;
    /* 添加最大宽度，防止图片过大 */
}

.logo-item img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* 右侧图片与左侧文字对齐样式已合并到上面的.intro-content和.intro-image中 */

.intro-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding: 40px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.stat-item {
    text-align: center;
    padding: 20px;
    min-width: 150px;
    transition: all 0.3s ease;
    background: transparent !important;
}

.stat-item:hover {
    background: transparent !important;
    transform: none !important;
    box-shadow: none !important;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #000; /* 黑色 */
    line-height: 1;
    display: inline-flex;
    align-items: baseline;
    font-family: 'Microsoft YaHei Light', 'Microsoft YaHei', sans-serif;
}

.stat-number .unit {
    font-size: 0.9rem;
    font-weight: normal;
    color: #666;
    margin-left: 5px;
    vertical-align: baseline;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slogan {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.9;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-cta {
    display: inline-block;
    padding: 15px 40px;
    background: #1a73e8;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
    min-width: 160px;
}

.hero-cta.secondary {
    background: transparent;
    border: 2px solid #fff;
    box-shadow: none;
}

.hero-cta:hover {
    background: #333;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.4);
}

.hero-cta.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta {
        width: 100%;
        max-width: 250px;
    }
}

/* About Hero Section */
.about-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: url(https://zycl-website.oss-cn-chengdu.aliyuncs.com/wp-content/uploads/2026/01/20260105114954818.png) no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

/* Brands Hero Section */
body.brands-page .about-hero {
    background: url(https://zycl-website.oss-cn-chengdu.aliyuncs.com/wp-content/uploads/2026/01/20260105151924924.png) no-repeat center center;
    background-size: cover;
}

/* News Hero Section */
body.news-page .about-hero {
    background: url(https://zycl-website.oss-cn-chengdu.aliyuncs.com/wp-content/uploads/2026/01/20260105152940217.png) no-repeat center center;
    background-size: cover;
}

/* Contact Hero Section */
body.contact-page .about-hero {
    background: url(https://zycl-website.oss-cn-chengdu.aliyuncs.com/wp-content/uploads/2026/01/20260105152829411.png) no-repeat center center;
    background-size: cover;
}

/* Joinus Hero Section */
body.joinus-page .about-hero {
    background: url(https://zycl-website.oss-cn-chengdu.aliyuncs.com/wp-content/uploads/2026/01/20260105152551895.png) no-repeat center center;
    background-size: cover;
}

/* 人才招聘新样式 */
.recruitment-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

/* 左侧筛选区域 */
.recruitment-filters {
    width: 250px;
    flex-shrink: 0;
}

.filter-group {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
}

.filter-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #666;
}

.filter-option input[type="checkbox"] {
    margin-right: 8px;
    /* 隐藏默认复选框 */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid #333;
    border-radius: 2px;
    outline: none;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    background-color: #fff;
}

.filter-option input[type="checkbox"]:checked {
    background-color: #fff;
    border-color: #333;
}

.filter-option input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 8px;
    height: 8px;
    background-color: #333;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

/* 右侧职位列表 */
.recruitment-jobs {
    flex: 1;
}

.job-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.job-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.job-item:hover {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.job-info {
    flex: 1;
}

.job-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.job-meta {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.view-job {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.view-job:hover {
    color: #333;
    text-decoration: underline;
}



/* 联系信息布局容器 */
.contact-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

/* 联系布局容器 */
.contact-layout {
    display: flex;
    align-items: stretch;
    gap: 30px;
}

/* 右边地址图片 */
.address-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.address-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 左边联系卡片 */
.contact-card {
    flex: 0 0 400px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    display: flex;
    flex-direction: column;
}

/* 联系详情垂直分布 */
.contact-details-vertical {
    margin-bottom: 40px;
}

/* 联系项垂直样式 */
.contact-item-vertical {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.contact-item-vertical:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-item-vertical h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.contact-item-vertical p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* 右边地图区域 */
.map-section {
    flex: 1;
    min-width: 0;
}

/* 地图卡片 */
.map-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    height: 100%;
}

.map-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

/* 地图占位符 */
.map-placeholder {
    height: 300px;
    background-color: #f8f9fa;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    border: 1px dashed #dee2e6;
}

.map-placeholder p {
    font-size: 14px;
    color: #666;
    margin: 5px 0;
    line-height: 1.6;
}

/* 社交媒体样式 */
.social-media {
    margin-top: 30px;
}

.social-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-icon-container {
    position: relative;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    color: #666;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #f8f9fa;
    color: #333;
    transform: scale(1.1);
}

/* 二维码悬停显示 */
.social-qrcode {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    text-align: center;
    margin-top: 10px;
    min-width: 120px;
}

.social-qrcode::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: transparent transparent white transparent;
}

.social-icon-container:hover .social-qrcode {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 10px);
}

.social-qrcode img {
    width: 100px;
    height: 100px;
    margin-bottom: 5px;
    border-radius: 4px;
}

.social-qrcode p {
    font-size: 12px;
    color: #666;
    margin: 0;
}

/* 宽幅图片样式 */
.wide-image-container {
    margin-top: 40px;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.wide-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* 响应式设计 */
@media (max-width: 768px) {
    /* 移动端联系信息布局 */
    .contact-layout {
        flex-direction: column;
    }
    
    /* 移动端联系卡片 */
    .contact-card {
        flex: none;
        width: 100%;
    }
    
    /* 移动端地图卡片 */
    .map-card {
        margin-top: 20px;
    }
    
    /* 移动端地图占位符 */
    .map-placeholder {
        height: 250px;
    }
    
    .social-icons {
        gap: 20px;
    }
}



.about-hero .hero-content {
    position: relative;
    z-index: 2;
}

.hero-content {
    padding: 40px;
    position: relative;
    z-index: 1;
}

.about-hero .hero-title {
    font-size: 2rem;
    color: white;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 2;
}

.about-hero .hero-subtitle {
    font-size: 1.1rem;
    color: white;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 400;
    position: relative;
    z-index: 2;
}

.about-hero .hero-content {
    position: absolute;
    top: 45%;
    left: 30px;
    max-width: 500px;
    text-align: left;
    z-index: 3;
}

/* 章节样式 */
.section {
    padding: 120px 0;
    position: relative;
}

.section:nth-child(even) {
    background-color: #fff;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #333;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* 关于我们内容 */
.about-content {
    margin-bottom: 40px;
}

.about-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

.about-text p {
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    justify-content: center;
    background: #fff;
    padding: 40px 20px;
    border-radius: 12px;
    margin-top: 30px;
}

@media (max-width: 1200px) {
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px 15px;
    }
}

.stat-item {
    text-align: center;
    min-width: 140px;
    transition: none;
    padding: 25px;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.stat-item:hover {
    transform: none;
    box-shadow: none;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: #000; /* 黑色 */
    margin-bottom: 8px;
    line-height: 1;
    font-family: 'Microsoft YaHei Light', 'Microsoft YaHei', sans-serif;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
    gap: 30px;
    margin-top: 30px;
    flex: 1 1 350px;
    justify-content: center;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background-color: transparent;
    border-radius: 0;
    transition: none;
    border: none;
    box-shadow: none;
}

.stat-item:hover {
    background-color: transparent;
    color: inherit;
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #000; /* 黑色 */
    margin-bottom: 10px;
    line-height: 1;
    font-family: 'Microsoft YaHei Light', 'Microsoft YaHei', sans-serif;
}

.stat-label {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}

/* 品牌简介 */
.brand-intro {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.brand-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.03) 0%, rgba(46, 204, 113, 0.01) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brand-intro:hover::before {
    opacity: 1;
}

.brand-intro.reverse {
    flex-direction: row-reverse;
}

.brand-text {
    flex: 1 1 450px;
    z-index: 1;
}

.brand-text h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    position: relative;
    padding-left: 20px;
}

.brand-text h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 40px;
    background: #333;
    border-radius: 2px;
}

.brand-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.brand-intro a {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: 2px solid #333;
    z-index: 1;
    position: relative;
}

.brand-intro a:hover {
    background: #2ecc71;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.brand-image {
    flex: 1 1 350px;
    z-index: 1;
    position: relative;
}

.brand-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.brand-intro:hover .brand-image img {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
}

.brand-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.brand-images img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.brand-images img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
}

/* 新闻分类导航 */
.news-categories {
    padding: 40px 0;
    background-color: #fafafa;
    border-bottom: 1px solid #eee;
}

.categories-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    position: relative;
}

.tab-btn {
    background: none;
    padding: 30px 50px;
    font-size: 24px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.3s ease;
    outline: none;
    letter-spacing: 1px;
    flex: 1;
    max-width: 400px;
    text-align: center;
    position: relative;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #000;
    transition: width 0.3s ease;
    z-index: 1;
}

.tab-btn:hover {
    color: #000;
    background-color: transparent;
    border-bottom: 1px solid;
}

.categories-tabs .tab-btn:hover::after {
    width: 100% !important;
}

.tab-btn.active {
    background-color: transparent;
    color: #000;
    border-radius: 0;
}

.tab-btn.active::after {
    width: 0;
    background: #000;
}

/* 新闻区块样式 */
.news-section {
    display: none;
    padding: 60px 0;
}

.news-section.active {
    display: block;
}

/* 新闻网格 */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 35px;
    margin-top: 20px;
}

.news-item {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    cursor: pointer;
    position: relative;
    display: block;
    text-decoration: none;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.news-image {
    height: 220px;
    overflow: hidden;
    position: relative;
    background: #f8f8f8;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top;
    transition: transform 0.4s ease;
}

.news-item:hover .news-image img {
    transform: scale(1.05);
    object-fit: contain;
    object-position: top;
}

.news-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 120px;
}

.news-content .news-tag {
    display: none;
}

.news-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    transition: color 0.2s ease;
    line-height: 1.4;
    flex: 1;
    min-height: 50px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-item:hover .news-content h3 {
    color: #555;
}

.news-date {
    font-size: 12px;
    color: #888;
    margin-top: auto;
    display: block;
    text-transform: none;
    letter-spacing: normal;
    font-weight: 400;
}

.news-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 0;
    margin-top: 12px;
}

/* 新闻详情页样式 */
.news-detail {
    padding: 60px 0;
}

/* 新闻详情页导航栏完整样式 - 确保文字始终为黑色 */
.news-detail .navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(2px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

/* 新闻详情页导航文字颜色 - 确保始终为黑色 */
.news-detail .navbar .main-nav a {
    color: #000 !important;
    text-shadow: none !important;
}

/* 新闻详情页导航文字悬停颜色 */
.news-detail .navbar .main-nav a:hover {
    color: #333 !important;
}

/* 新闻详情页导航下划线颜色 */
.news-detail .navbar .main-nav > ul > li > a::after {
    background: #000 !important;
    height: 1px !important;
    opacity: 1 !important;
    transition: width 0.3s ease, background-color 0.3s ease !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
}

/* 新闻详情页导航下划线悬停效果 */
.news-detail .navbar .main-nav > ul > li > a:hover::after {
    width: 100%;
    height: 1px !important;
    background: #000 !important;
    opacity: 1 !important;
    box-shadow: none !important;
    border: none !important;
}

/* 新闻页面导航栏完整样式 - 确保文字始终为黑色 */
.news-page .navbar {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(2px);
    transition: all 0.3s ease;
    box-shadow: none;
    padding: 20px 0;
}

/* 新闻页面导航文字颜色 - 确保始终为黑色 */
.news-page .navbar .main-nav a {
    color: #fff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* 新闻页面导航文字悬停颜色 */
.news-page .navbar .main-nav a:hover {
    color: #fff !important;
}

/* 新闻页面导航下划线颜色 */
.news-page .navbar .main-nav > ul > li > a::after {
    background: #fff !important;
    height: 1px !important;
    opacity: 1 !important;
    transition: width 0.3s ease, background-color 0.3s ease !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
}

/* 新闻页面导航下划线悬停效果 */
.news-page .navbar .main-nav > ul > li > a:hover::after {
    width: 100%;
    height: 1px !important;
    background: #fff !important;
    opacity: 1 !important;
    box-shadow: none !important;
    border: none !important;
}

/* 确保滚动时仍保持黑色 */
.news-page .navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(2px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.news-page .navbar.scrolled .main-nav a {
    color: #000 !important;
    text-shadow: none !important;
}

/* 滚动时悬停颜色 */
.news-page .navbar.scrolled .main-nav a:hover {
    color: #333 !important;
}

/* 滚动时下划线颜色 */
.news-page .navbar.scrolled .main-nav > ul > li > a::after {
    background: #000 !important;
    height: 1px !important;
    opacity: 1 !important;
    transition: width 0.3s ease, background-color 0.3s ease !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
}

/* 新闻页面下拉菜单样式 - 确保与其他页面一致 */
.news-page .navbar .sub-menu a {
    padding: 12px 20px;
    font-size: 14px;
    width: 100%;
    text-align: left;
    color: #333 !important;
    text-shadow: none !important;
    position: relative;
}

/* 新闻页面下拉菜单悬停样式 */
.news-page .navbar .sub-menu a:hover {
    background-color: #fff !important;
    color: #333 !important;
}

/* 新闻页面滚动时下拉菜单样式 */
.news-page .navbar.scrolled .sub-menu a {
    color: #333 !important;
    text-shadow: none !important;
}

/* 确保新闻页面和新闻详情页的logo在滚动时与其他页面保持一致 */
.news-page .navbar.scrolled #navbar-logo,
.news-detail .navbar.scrolled #navbar-logo {
    height: 40px;
    transition: all 0.3s ease;
}

/* 确保滚动时仍保持黑色 */
.news-detail .navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(2px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.news-detail .navbar.scrolled .main-nav a {
    color: #000 !important;
    text-shadow: none !important;
}

/* 滚动时悬停颜色 */
.news-detail .navbar.scrolled .main-nav a:hover {
    color: #333 !important;
}

/* 滚动时下划线颜色 */
.news-detail .navbar.scrolled .main-nav > ul > li > a::after {
    background: #000 !important;
    height: 1px !important;
    opacity: 1 !important;
    transition: width 0.3s ease, background-color 0.3s ease !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
}

.news-detail-header {
    text-align: center;
    margin-bottom: 30px;
}

.news-detail-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-image-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 25px 0;
}

.news-image-wrap .detail-image {
    width: 60%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.news-image-wrap .detail-image:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.image-source {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-top: 8px;
    font-style: italic;
}

.news-detail-content {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.news-detail-content p {
    margin-bottom: 20px;
    text-align: justify;
}

.news-detail-footer {
    text-align: center;
    margin-top: 40px;
}

.back-link {
    display: inline-block;
    padding: 12px 30px;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-link:hover {
    background-color: #555;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.news-content a {
    display: inline-block;
    padding: 12px 30px;
    background: #333;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.35s ease;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.25);
    border: none;
    position: relative;
    overflow: hidden;
}

.news-content a:hover {
    background: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(46, 204, 113, 0.3);
}

/* 联系我们 */
.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
    justify-content: space-between;
}

.contact-info {
    flex: 1 1 450px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-item {
    padding: 35px;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #333;
    transform: scaleX(0);
    transition: transform 0.35s ease;
}

.contact-item:hover::before {
    transform: scaleX(1);
}

.contact-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(46, 204, 113, 0.3);
}

.contact-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-item h3::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #2ecc71;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.1);
}

.contact-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

.contact-qrcode {
    flex: 1 1 300px;
    text-align: center;
    padding: 40px 30px;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.contact-qrcode:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(46, 204, 113, 0.3);
}

.contact-qrcode img {
    width: 220px;
    height: 220px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 15px;
    background: #f8f9fa;
    transition: all 0.35s ease;
}

.contact-qrcode:hover img {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.contact-qrcode p {
    font-size: 16px;
    color: #555;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

/* 时间线图片样式 */
.timeline-image-container {
    position: relative;
    margin: 0;
    height: 100vh;
    border-radius: 0;
    overflow: hidden;
    max-width: 100%;
    width: 100%;
    display: block;
}

.timeline-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.timeline-container{
    position: relative;
    z-index: 100;
    height: 500px;
    top: 20%;
    width: 1400px;
    margin: auto;
}
.swiper-button-prev,.swiper-button-next{
    background-image:none !important;
}

/* 时间线年份容器 */
.timeline-years {
    max-width: 1200px;
    height: 110px;
    padding-top: 50px;
    margin:auto;
    overflow:hidden;
}

/* 删除时间线轴线 */
.timeline-years::before {
    display: none;
}

.year {
    color: white;
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
    transition: none;
    padding: 0;
    border-radius: 0;
    background-color: transparent;
    backdrop-filter: none;
    width: auto;
    min-width: 130px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    line-height: 1;
    margin-bottom: 0;
}

/* 年份数字 */
.year-number {
    transition: transform 0.2s ease;
    margin-bottom: 20px;
}

/* 年份刻度线 - 短竖线 */
.year::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: -1;
}

/* 年份刻度线 - 长横线 */
.year::before {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: -1;
}

.swiper-slide.swiper-slide-active .year .year-number {
    transform: scale(2);
}

.year.active {
    background-color: transparent;
    box-shadow: none;
}

.timeline-slider {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 20px;
    background: transparent;
    z-index: 2;
    display: none;
}

/* 时间线箭头样式 */
.timeline-controls {
    position: absolute;
    top: calc(40% + 22px); /* 调整到与横线对齐 */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: space-between;
    z-index: 20;
}

.timeline-arrow {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    color: white;
    font-size: 24px;
    z-index: 20;
    outline: none;
}

.timeline-arrow svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: white;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.slider-track {
    height: 3px;
    background-color: #fff;
    width: 0;
    transition: width 0.5s ease;
    position: absolute;
    top: 8px;
}

.timeline-content-overlay {
    /*margin: 30px;*/
    background: transparent;
    color: white;
    z-index: 10;
    text-align: center;
    /*width: 80%;*/
    max-width: 1200px;
    overflow: hidden;
    height:200px;
}

.timeline-content {
    /*display: none;*/
    padding:  30px;
    animation: fadeIn 0.5s ease;
    max-width: 100%;
    margin: 0 auto;
}

.timeline-title {
    color: white;
    font-weight: 700;
    font-size: 2rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
    z-index: 10;
    margin: 0;
    padding-bottom: 10px;
    position: relative;
    text-align: center;
}

.timeline-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: white;
}

.timeline-content h3 {
    display: none;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 32px;
    font-weight: 700;
    color: white !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
}

.timeline-content p {
    margin-bottom: 18px;
    line-height: 1.9;
    font-size: 20px;
    font-weight: 600 !important;
    color: white !important;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.9);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    overflow: visible;
    max-height: none;
}

/* 发展历程满铺样式 */
#development {
    padding: 0 !important;
    margin: 0 !important;
    height: 100vh;
    width: 100%;
    background-color: transparent !important;
}

#development .container {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
}

/* 取消特定区块的卡片式设计 */
#development .card,
#qualifications .card,
#team .card,
#brand1 .card {
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    margin: 0;
    border: none;
    transition: none;
}

#development .card:hover,
#qualifications .card:hover,
#team .card:hover,
#brand1 .card:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.timeline-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-content h3 {
    font-size: 16px;
    color: #000;
    margin-bottom: 10px;
    font-weight: 600;
    text-align: center;
}

.timeline-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #000;
    max-width: 100%;
    margin: 0 auto;
}

/* 标红文字拉通显示不换行 */
.timeline-content p.nowrap-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
}

/* 企业文化 */
.culture-section {
    padding: 0;
    position: relative;
    overflow: hidden;
    height: 100vh;
}

.culture-container {
    display: flex;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.culture-item {
    flex: 1;
    position: relative;
    overflow: hidden;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    opacity: 0;
    width: 0;
}

.culture-item.active {
    flex: 1000;
    opacity: 1;
    width: 100%;
}

/* 设置背景图片 */
.culture-vision {
    background-image: url('https://zycl-website.oss-cn-chengdu.aliyuncs.com/wp-content/uploads/2026/01/20260105114938688.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.culture-mission {
    background-image: url('https://zycl-website.oss-cn-chengdu.aliyuncs.com/wp-content/uploads/2026/01/20260105114927594.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.culture-values {
    background-image: url('https://zycl-website.oss-cn-chengdu.aliyuncs.com/wp-content/uploads/2026/01/20260105114913418.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* 图片延展效果 - 基础样式 */
.culture-item:hover,
.culture-item.hovered {
    flex: 1000;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

/* 半透明遮罩 */
.culture-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1;
}

.culture-item:hover::before,
.culture-item.hovered::before {
    background: rgba(0, 0, 0, 0.2);
}

/* 内容样式 - 整体文字容器 */
.culture-content-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: 3;
    pointer-events: auto;
}

/* 单个内容项 */
.culture-content {
    text-align: center;
    color: white;
    padding: 30px;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    width: 33.33%;
    max-width: 400px;
    cursor: pointer;
    position: relative;
    z-index: 4;
}

.culture-content:not(.active) {
    opacity: 0.6;
}

.culture-content.active {
    transform: scale(1.2);
}

/* 悬停在内容项上时，显示对应图片和内容 */
.culture-content:hover {
    opacity: 1;
    transform: scale(1.2);
}

.culture-content:hover .culture-description {
    opacity: 0.9;
}

.culture-type {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
    opacity: 0.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.culture-title {
    font-size: 36px;
    font-weight: bold;
    margin: 10px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.culture-description {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 auto;
    opacity: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.culture-content.active .culture-description {
    opacity: 0.9;
}
}

/* 资质证书 */
.qualifications .section-title {
    font-size: 2rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.qualifications .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #333;
    border-radius: 2px;
}

/* 证书展示布局 - 单行显示 */
.certificate-gallery {
    display: flex;
    gap: 10px;
    padding: 40px 0;
    margin-top: 10%;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    justify-content: center;
    width: 100%;
    flex-wrap: nowrap;
    /* 使用指定的背景图片，保持与现有格式一致 */
    background: url('../static/imgs/资质证书的背景.jpg') center center / cover no-repeat;
    position: relative;
    height: auto;
    min-height: 240px;
    border-radius: 8px;
}

/* 证书项样式 */
.certificate-item {
    flex: 0 0 auto;
    width: calc(100% / 8 - 10px);
    max-width: 150px;
    min-width: 110px;
    height: auto;
    aspect-ratio: 3/4;
    cursor: pointer;
    transition: all 0.5s ease;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.certificate-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.5s ease;
}

/* 悬停效果：当前图片放大 */
.certificate-gallery:hover .certificate-item:hover {
    transform: scale(2.28);
    opacity: 1;
    z-index: 10;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* 未悬停时，所有图片高低对齐 */
.certificate-gallery .certificate-item {
    transform: scale(1);
    opacity: 1;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .certificate-item {
        width: calc(100% / 8 - 10px);
        height: auto;
        aspect-ratio: 3/4;
    }
}

@media (max-width: 768px) {
    .certificate-item {
        width: calc(100% / 7 - 10px);
        height: auto;
        aspect-ratio: 3/4;
    }
}

@media (max-width: 576px) {
    .certificate-item {
        width: calc(100% / 6 - 10px);
        height: auto;
        aspect-ratio: 3/4;
    }
}

/* 管理团队 */
.team-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 30px;
}

.team-member {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    background-color: #ffffff !important;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: visible !important;
    transition: all 0.3s ease;
    position: relative;
}

.team-member::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 64, 0, 0.9) 0%, rgba(0, 128, 0, 0.9) 100%);
    border-radius: 0 8px 8px 0;
    box-shadow: 2px 0 10px rgba(0, 128, 0, 0.4);
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-photo {
    width: 200px;
    aspect-ratio: 1/1;
    overflow: hidden;
    background-color: #f5f5f5;
    border-radius: 8px;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.team-member:hover .member-photo img {
    transform: scale(1.05);
}

.member-details {
    flex: 1;
    text-align: left;
}

.member-info h3 {
    font-size: 24px;
    margin: 0 0 5px 0;
    color: #000 !important;
    font-weight: 800;
    z-index: 10;
    position: relative;
    display: block;
    opacity: 1 !important;
    visibility: visible !important;
}

.member-title {
    font-size: 18px;
    color: #333 !important;
    margin: 0 0 15px 0;
    font-weight: 600;
    z-index: 10;
    position: relative;
    display: block;
    opacity: 1 !important;
    visibility: visible !important;
}

.member-description {
    color: #000;
    line-height: 1.6;
}

.member-description p {
    margin-bottom: 10px;
    color: #000 !important;
    font-size: 14px;
}

.member-description h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 15px 0 10px 0;
    color: #000 !important;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .team-member {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .member-photo {
        width: 150px;
    }
    
    .member-details {
        text-align: center;
    }
}

/* 门店展示样式 */
.store-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

/* 大图展示区域 */
.store-main-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-color: #f5f5f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* 大图箭头样式 */
.store-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    height: auto;
    border-radius: 0;
    background-color: transparent !important;
    background: transparent !important;
    border: none !important;
    color: #333;
    font-size: 48px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: none !important;
    outline: none !important;
    padding: 0;
}

.store-arrow:hover {
    background-color: transparent !important;
    background: transparent !important;
    color: #006400;
    box-shadow: none !important;
}

.store-arrow-left {
    left: 20px;
}

.store-arrow-right {
    right: 20px;
}

.store-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* 缩略图列表 */
.store-thumbnails {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 5px 0;
    scrollbar-width: none; /* 隐藏Firefox滚动条 */
    -ms-overflow-style: none; /* 隐藏IE/Edge滚动条 */
}

/* 隐藏Chrome/Safari滚动条 */
.store-thumbnails::-webkit-scrollbar {
    display: none;
}

/* 缩略图样式 */
.store-thumbnail {
    flex: 0 0 auto;
    width: 90px;
    height: 68px;
    overflow: hidden;
    background-color: #fafafa;
    border: 1px solid transparent;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.store-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 选中的缩略图 */
.store-thumbnail.active {
    border-color: #000;
    outline: 1px solid #000;
    outline-offset: 0;
}

/* 缩略图悬停效果 */
.store-thumbnail:hover {
    border-color: #666;
    transform: translateY(0);
    box-shadow: none;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .store-main-image {
        height: 300px;
    }
    
    .store-thumbnail {
        width: 80px;
        height: 60px;
    }
}

@media (max-width: 576px) {
    .store-main-image {
        height: 250px;
    }
    
    .store-thumbnail {
        width: 70px;
        height: 50px;
    }
}

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

.news-detail-header {
    margin-bottom: 40px;
}

.news-detail-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.news-meta {
    font-size: 14px;
    color: #999;
    margin-bottom: 30px;
}

.news-detail-image {
    margin-bottom: 40px;
}

.news-detail-image {
    text-align: center;
    margin-bottom: 40px;
}

.news-detail-image img {
    width: 33%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.news-detail-content {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.news-detail-content p {
    margin-bottom: 20px;
}

.back-to-news {
    display: inline-block;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.back-to-news:hover {
    background-color: #333;
}

/* 人才招聘 */
.recruitment {
    padding: 60px 0;
}

.recruitment-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    border-bottom: 1px solid #f0f0f0;
}

.tab-button {
    padding: 15px 30px;
    background-color: transparent;
    border: none;
    font-size: 18px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 10px;
    position: relative;
}

.tab-button.active {
    color: #2ecc71;
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #333;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.recruitment-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.category-item {
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    transition: none;
}

.category-item:hover {
    transform: none;
    box-shadow: none;
}

.category-item h3 {
    font-size: 18px;
    color: #2ecc71;
    margin-bottom: 15px;
}

.recruitment-jobs .job-item {
    padding: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}


.recruitment-jobs .job-item:hover {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.job-title {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
}

.job-info {
    font-size: 14px;
    color: #999;
}

/* 页脚 */
.footer {
    background-color: #fff;
    color: #000;
    padding: 14px 0 7px;
    margin-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    font-family: 'Roboto', sans-serif;
}

.footer-content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.copyright {
    font-size: 12px;
    color: #666;
}

/* 返回顶部按钮 */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(180deg, rgba(0, 64, 0, 0.9) 0%, rgba(0, 128, 0, 0.9) 100%); /* 与资质证书相同的深绿色渐变 */
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.back-to-top:hover {
    background: linear-gradient(180deg, rgba(0, 80, 0, 0.95) 0%, rgba(0, 140, 0, 0.95) 100%); /* 悬停时稍亮的渐变 */
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* 平滑滚动 */
html {
    scroll-behavior: smooth;
}

/* 内容渐入效果 */
.section {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* 覆盖.section类的padding，确保发展历程部分满铺 */
#development.section {
    padding: 0 !important;
    margin: 0 !important;
    height: 100vh;
    width: 100%;
}

/* 保持动画效果，便于后续扩展或调整 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .culture-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .qualifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .brand-images {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .recruitment-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .navbar .container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    .main-nav ul {
        flex-direction: column;
        width: 100%;
    }
    
    .main-nav li {
        margin-left: 0;
        margin-bottom: 10px;
    }
    
    .main-nav a {
        padding: 10px 15px;
    }
    
    .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background-color: transparent;
        box-shadow: none;
        padding: 0;
        margin-left: 20px;
        display: none;
    }
    
    .sub-menu a {
        color: #fff;
        text-shadow: none;
    }
    
    .menu-item:hover .sub-menu {
        display: block;
    }
    
    .slogan {
        font-size: 32px;
        text-align: center;
    }
    
    .hero-content {
        left: 20px;
        right: 20px;
        bottom: 30px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .qualifications-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .brand-images {
        grid-template-columns: 1fr;
    }
    
    .recruitment-categories {
        grid-template-columns: 1fr;
    }
    
    .timeline {
        padding-left: 30px;
    }
    
    .timeline-date {
        position: relative;
        left: 0;
        top: 0;
        margin-bottom: 10px;
        display: inline-block;
    }
    
    .culture-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .news-detail-header h1 {
        font-size: 24px;
    }
}
