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

:root {
    --primary-color: #0066FF;
    --primary-dark: #0052CC;
    --secondary-color: #00C9A7;
    --text-dark: #1A1A1A;
    --text-gray: #666666;
    --text-light: #999999;
    --bg-light: #F7F9FC;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

/* 顶部导航 */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

.logo {
    height: 50px;
    width: auto;
}
.main-nav {
    display: flex;
    gap: 40px;
}

.nav-item {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-item:hover,
.nav-item.active {
    color: var(--primary-color);
}

.nav-item:hover::after,
.nav-item.active::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-phone:hover {
    color: var(--primary-color);
}

.login-btn {
    padding: 10px 24px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* 主视觉区 */
.hero-banner {
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.85) 0%, rgba(118, 75, 162, 0.85) 100%);
}

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 2;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--white);
    width: 32px;
    border-radius: 6px;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    color: var(--white);
    font-size: 14px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-actions .btn-primary,
.hero-actions .btn-secondary {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.hero-actions .btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.hero-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.hero-actions .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.hero-actions .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.hero-features {
    display: flex;
    gap: 30px;
}

.feature-tag {
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
}

/* 数据统计 */
.stats-section {
    padding: 80px 0;
    background: var(--white);
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.25);
    background: linear-gradient(135deg, #f5f7ff 0%, #e8ecff 100%);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-card:hover .stat-number {
    transform: scale(1.1);
    color: #667eea;
}

.stat-label {
    font-size: 16px;
    color: #000000;
    font-weight: 700;
}

/* 核心服务 */
.services-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
}

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

.service-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.service-desc {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 10px;
}

/* 代理记账核心服务 - 标签页版本 */
.accounting-services-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-label {
    font-size: 14px;
    font-weight: 600;
    color: #e63946;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: #e63946;
    margin: 20px auto 0;
    border-radius: 2px;
}

/* 标签导航 */
.service-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 40px 0 50px;
    flex-wrap: wrap;
}

.tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.tab-btn.active {
    background: #e63946;
    border-color: #e63946;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

.tab-icon {
    font-size: 20px;
}

/* 内容区域 */
.service-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.service-content {
    display: none;
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.service-content-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: start;
}

.service-left {
    padding-right: 20px;
}

.service-category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.category-icon-bg {
    width: 50px;
    height: 50px;
    background: #ffe5e7;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon-bg .category-icon {
    font-size: 28px;
}

.service-category-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.service-intro {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* 服务标签网格 */
.service-tags-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

/* 财税服务全宽网格 */
.service-tags-grid-full {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.service-tag-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: #f8f9fa;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.service-tag-item:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(5px);
}

.tag-icon {
    font-size: 18px;
}

/* 分割线 */
.service-divider {
    width: 1px;
    background: #e0e0e0;
    align-self: stretch;
}

/* 右侧列表 */
.service-right {
    padding-left: 20px;
}

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

.service-list-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.item-check {
    width: 28px;
    height: 28px;
    background: #e63946;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.item-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.item-content strong {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.item-content span {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* 企业优势 */
.advantages-section {
    padding: 100px 0;
    background: var(--white);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.advantage-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    background: var(--bg-light);
    transform: translateY(-5px);
}

.advantage-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.advantage-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.advantage-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* 合作伙伴 */
.partners-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
    overflow: hidden;
    position: relative;
}

.partners-grid-wrapper {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

.partners-marquee-row {
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.partners-marquee-row::before,
.partners-marquee-row::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partners-marquee-row::before {
    left: 0;
    background: linear-gradient(90deg, #f8f9fc 0%, transparent 100%);
}

.partners-marquee-row::after {
    right: 0;
    background: linear-gradient(270deg, #f8f9fc 0%, transparent 100%);
}

.marquee-track {
    display: flex;
    gap: 30px;
    white-space: nowrap;
    will-change: transform;
}

/* 第一行：从左向右，速度中等 */
.row-left .marquee-track {
    animation: marqueeLeft 50s linear infinite;
}

/* 第二行：从右向左，速度快 */
.row-right .marquee-track {
    animation: marqueeRight 40s linear infinite;
}

/* 第三行：从左向右，速度慢 */
.row-left-slow .marquee-track {
    animation: marqueeLeft 60s linear infinite;
}

/* 悬停时暂停所有行 */
.partners-marquee-row:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marqueeLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes marqueeRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.partner-tag {
    display: inline-block;
    padding: 16px 40px;
    background: white;
    color: #2c3e50;
    border: 2px solid #e0e6ed;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    white-space: nowrap;
}

.partner-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
    color: #667eea;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

/* 为不同行添加细微差异 */
.row-right .partner-tag:hover {
    border-color: #f5576c;
    color: #f5576c;
}

.row-left-slow .partner-tag:hover {
    border-color: #27ae60;
    color: #27ae60;
}

/* 财税资讯 */
.articles-section {
    padding: 100px 0;
    background: var(--white);
}

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

.article-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.article-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.article-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-item:hover .article-image img {
    transform: scale(1.1);
}

.article-content {
    padding: 24px;
}

.article-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.article-content p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 16px;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-light);
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

/* 在线咨询 */
.consultation-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.consultation-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.consultation-left h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.consultation-left p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.consultation-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 16px;
}

.feature-icon {
    font-size: 20px;
    font-weight: 700;
}

.consultation-form {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s ease;
    background: var(--white);
    color: var(--text-dark);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select {
    color: #999;
}

.form-group select option[value=""] {
    color: #999;
}

.form-group select option:not([value=""]) {
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* 页脚 */
.main-footer {
    background: #1A1A1A;
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 2.8fr;
    gap: 80px;
    margin-bottom: 40px;
}

.footer-col-left {
    padding-right: 60px;
}

.footer-col-right {
    display: grid !important;
    grid-template-columns: 2fr 1fr !important;
    gap: 40px !important;
}

.footer-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-top: 20px;
}

.footer-branches {
    /* 移除flex: 1，使用grid布局 */
}

.footer-qrcode-section {
    /* 移除flex-shrink: 0，使用grid布局 */
}

.qrcode-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-qr {
    flex-shrink: 0;
}

.footer-qr img {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    background: var(--white);
    padding: 8px;
}

.qrcode-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.qrcode-text p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    margin: 0;
    white-space: nowrap;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-col p,
.footer-col a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 2;
    text-decoration: none;
    display: block;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* 悬浮按钮 */
.float-buttons {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.float-buttons.visible {
    opacity: 1;
    visibility: visible;
}

.float-btn {
    width: 56px;
    height: 56px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-hover);
    transition: all 0.3s ease;
    text-decoration: none;
}

.float-btn:hover {
    transform: scale(1.1);
    background: var(--primary-dark);
}

.float-icon {
    font-size: 24px;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .services-grid,
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }

    .main-nav {
        display: none;
    }

    .hero-title {
        font-size: 36px;
    }

    .stats-container,
    .services-grid,
    .advantages-grid,
    .articles-grid,
    .footer-top {
        grid-template-columns: 1fr;
    }

    /* 一站式服务移动端样式 */
    .accounting-services-section {
        padding: 60px 0;
    }
    
    .service-tabs {
        gap: 10px;
        margin: 30px 0 40px;
    }
    
    .tab-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .service-content {
        padding: 30px 20px;
    }
    
    .service-content-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-divider {
        width: 100%;
        height: 1px;
        align-self: auto;
    }
    
    .service-left,
    .service-right {
        padding: 0;
    }
    
    .service-tags-grid {
        grid-template-columns: 1fr;
    }
    
    .service-tags-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-icon-bg {
        width: 40px;
        height: 40px;
    }
    
    .category-icon-bg .category-icon {
        font-size: 24px;
    }
    
    .service-category-header h3 {
        font-size: 20px;
    }

    .footer-col-left {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .footer-col-right {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .qrcode-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .consultation-wrapper {
        grid-template-columns: 1fr;
    }
}

/* 了解钱多多财税 */
.about-section {
    padding: 100px 0;
    background: var(--white);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-content {
    padding: 20px 0;
}

.about-text {
    margin: 30px 0;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
    text-align: justify;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.about-feature-item {
    text-align: center;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
}

.feature-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.feature-label {
    font-size: 14px;
    color: var(--text-gray);
}

/* 加入我们 */
.join-section {
    padding: 100px 0;
    background: var(--bg-light);
}

/* ============================================
   员工福利样式
   ============================================ */

.welfare-section {
    margin-bottom: 50px;
    padding: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.25);
    color: white;
    position: relative;
    overflow: hidden;
}

.welfare-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.welfare-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.welfare-section h2 {
    color: white !important;
    margin-bottom: 25px !important;
    font-size: 28px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.welfare-section > div {
    position: relative;
    z-index: 1;
    line-height: 1.8;
    font-size: 16px;
}

.welfare-section ul,
.welfare-section ol {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.welfare-section li {
    padding: 12px 20px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.welfare-section li:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(5px);
}

.welfare-section p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.welfare-section strong {
    font-weight: 600;
    color: #fff;
}

/* ============================================
   招聘流程样式
   ============================================ */

.recruitment-process {
    margin-top: 50px;
    padding: 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #667eea;
    position: relative;
}

.recruitment-process::before {
    content: '📋';
    position: absolute;
    top: -15px;
    right: 30px;
    font-size: 48px;
    opacity: 0.1;
}

.recruitment-process h2 {
    color: #2c3e50 !important;
    margin-bottom: 25px !important;
    font-size: 28px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.recruitment-process h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #667eea, #764ba2);
    border-radius: 2px;
}

.recruitment-process > div {
    line-height: 1.8;
    font-size: 16px;
    color: #555;
}

.recruitment-process ul,
.recruitment-process ol {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.recruitment-process li {
    padding: 15px 20px;
    margin-bottom: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #667eea;
    transition: all 0.3s ease;
    position: relative;
}

.recruitment-process li:hover {
    background: #f0f2ff;
    border-left-color: #764ba2;
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.15);
}

.recruitment-process li::before {
    content: '✓';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.recruitment-process p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.recruitment-process strong {
    font-weight: 600;
    color: #2c3e50;
}

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

.job-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--bg-light);
}

.job-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
}

.job-tag {
    padding: 6px 16px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.job-info {
    margin-bottom: 30px;
    flex: 1;
}

.job-requirement,
.job-duty {
    margin-bottom: 25px;
}

.job-requirement h4,
.job-duty h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.job-requirement ul,
.job-duty ul {
    list-style: none;
    padding: 0;
}

.job-requirement li,
.job-duty li {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.8;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.job-requirement li::before,
.job-duty li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.job-apply-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.job-apply-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* 页脚更新 */
.footer-culture {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-culture p {
    font-size: 13px;
    line-height: 2;
    color: rgba(255, 255, 255, 0.8);
}

.branch-info {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.branch-info:last-child {
    border-bottom: none;
}

.branch-info p {
    font-size: 13px;
    line-height: 1.8;
    margin: 5px 0;
    white-space: nowrap;
}

.branch-info strong {
    color: var(--white);
    font-size: 14px;
}

/* 悬浮按钮更新 */
.float-buttons {
    position: fixed;
    right: 30px;
    bottom: 100px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.float-btn {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-hover);
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    color: var(--white);
}

.float-btn:hover {
    transform: scale(1.1);
    background: var(--primary-dark);
}

.float-icon {
    font-size: 22px;
    margin-bottom: 2px;
}

.float-text {
    font-size: 11px;
    font-weight: 500;
    text-align: center;
}

/* 微信弹窗 */
.wechat-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.wechat-popup.active {
    display: flex;
}

.popup-content {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    max-width: 400px;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    border: none;
    background: transparent;
    font-size: 24px;
    color: var(--text-gray);
    cursor: pointer;
    transition: color 0.3s ease;
}

.popup-close:hover {
    color: var(--text-dark);
}

.popup-content h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.popup-content img {
    width: 200px;
    height: 200px;
    margin: 20px auto;
    border-radius: 8px;
}

.popup-content p {
    font-size: 14px;
    color: var(--text-gray);
}

/* 在线客服聊天窗口 */
.chat-window {
    display: none;
    position: fixed;
    right: 30px;
    bottom: 0;
    width: 380px;
    height: 520px;
    background: var(--white);
    border-radius: 12px 12px 0 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    flex-direction: column;
    overflow: hidden;
}

.chat-window.active {
    display: flex;
}

.chat-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
}

.chat-header-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.chat-title {
    font-size: 16px;
    font-weight: 600;
}

.chat-status {
    font-size: 12px;
    opacity: 0.9;
}

.chat-close {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: opacity 0.3s ease;
}

.chat-close:hover {
    opacity: 0.8;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.message {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.message-received {
    justify-content: flex-start;
}

.message-sent {
    justify-content: flex-end;
    flex-direction: row-reverse;
}

.message-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.message-sent .message-avatar {
    background: var(--primary-color);
}

.message-content {
    max-width: 70%;
}

.message-bubble {
    background: var(--white);
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
}

.message-sent .message-bubble {
    background: var(--primary-color);
    color: var(--white);
}

.message-bubble p {
    margin: 4px 0;
}

.message-bubble p:first-child {
    margin-top: 0;
}

.message-bubble p:last-child {
    margin-bottom: 0;
}

.chat-input-area {
    padding: 16px;
    background: var(--white);
    border-top: 1px solid #e5e5e5;
    display: flex;
    gap: 12px;
}

.chat-input-area input {
    flex: 1;
    padding: 10px 16px;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.chat-input-area input:focus {
    border-color: var(--primary-color);
}

.chat-send-btn {
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.chat-send-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* 右下角在线客服动画按钮 */
.chat-float-btn {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    cursor: pointer;
    z-index: 998;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.chat-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(102, 126, 234, 0.6);
    animation: none;
}

.chat-float-btn .chat-icon {
    font-size: 28px;
    color: var(--white);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(102, 126, 234, 0.7), 0 0 0 10px rgba(102, 126, 234, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    }
}

/* 响应式更新 */
@media (max-width: 1200px) {
    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .jobs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-left {
        gap: 15px;
    }

    .contact-phone span:last-child {
        display: none;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .float-buttons {
        right: 15px;
        bottom: 80px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
    }

    .float-text {
        font-size: 10px;
    }
}

/* 页面标题横幅 */
.page-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 0 80px;
    text-align: center;
    color: var(--white);
}

.page-banner-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.page-banner-content p {
    font-size: 20px;
    opacity: 0.95;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* 加入我们页面的banner特殊样式 */
.join-page .page-banner-content p {
    font-size: 16px;
    line-height: 2;
}

.join-page .page-banner-content p ul,
.join-page .page-banner-content p ol {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.join-page .page-banner-content p li {
    display: inline-block;
    margin: 5px 15px;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* 服务页面 */
.services-page {
    padding: 100px 0;
    background: var(--bg-light);
}

/* 案例页面 */
.cases-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
}

.banner-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
    margin-top: 40px;
}

.banner-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.banner-stat-item .stat-num {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
}

.banner-stat-item .stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.cases-page {
    padding: 100px 0;
    background: var(--white);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.case-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    display: block;
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 102, 255, 0.15);
    border-color: #0066FF;
}

.case-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.case-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: var(--bg-light);
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-card:hover .case-image img {
    transform: scale(1.08);
}

.case-info {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.case-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.case-desc {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.case-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.case-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #e8f5e9;
    color: #4caf50;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
}

.case-status {
    font-size: 13px;
    color: #4caf50;
    font-weight: 500;
}

.case-detail-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.case-detail-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-icon {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-state p {
    font-size: 16px;
    color: var(--text-gray);
}

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

@media (max-width: 768px) {
    .cases-grid {
        grid-template-columns: 1fr;
    }

    .banner-stats {
        gap: 30px;
    }

    .stat-num {
        font-size: 28px;
    }
}

/* 案例详情页 */
.case-detail-section {
    padding: 60px 0 100px;
    background: var(--white);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
    font-size: 14px;
    color: var(--text-gray);
}

.breadcrumb a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb span:last-child {
    color: var(--text-dark);
    font-weight: 500;
}

.case-detail-content {
    background: var(--white);
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.case-detail-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.4;
}

.case-meta-info {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-label {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
}

.meta-value {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 600;
}

.case-detail-cover {
    width: 100%;
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
}

.case-detail-cover img {
    width: 100%;
    height: auto;
    display: block;
}

.case-detail-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

.case-detail-body p {
    margin-bottom: 20px;
}

.case-detail-body h2,
.case-detail-body h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.case-detail-body img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 8px;
}

.case-result {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: var(--white);
}

.case-result h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--white);
}

.result-content {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

/* CTA区域 */
.case-cta {
    margin-top: 50px;
    padding: 50px;
    background: var(--bg-light);
    border-radius: 12px;
    text-align: center;
}

.case-cta h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.case-cta p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.case-detail-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
}

.back-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--bg-light);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s;
}

.back-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

@media (max-width: 768px) {
    .case-detail-content {
        padding: 30px 20px;
    }

    .case-detail-title {
        font-size: 24px;
    }

    .case-meta-info {
        flex-direction: column;
        gap: 15px;
    }

    .case-result {
        padding: 20px;
    }

    .case-result h3 {
        font-size: 20px;
    }

    .case-cta {
        padding: 30px 20px;
    }

    .case-cta h3 {
        font-size: 22px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

.case-tag {
    padding: 4px 10px;
    background: var(--bg-light);
    color: var(--text-gray);
    border-radius: 4px;
    font-size: 12px;
}

/* 文章页面 */
.articles-page {
    padding: 100px 0;
    background: var(--bg-light);
}

/* 关于我们页面 */
.about-page {
    padding: 100px 0;
    background: var(--white);
}

.about-intro {
    max-width: 900px;
    margin: 0 auto 80px;
    text-align: center;
}

.about-intro h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.about-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 16px;
    text-align: justify;
}

.about-values {
    padding: 80px 0;
    background: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.value-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.value-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.value-card p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-gray);
}

.about-team {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.team-member {
    text-align: center;
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.team-member p {
    font-size: 14px;
    color: var(--text-gray);
}

/* 联系我们页面 */
.contact-page {
    padding: 100px 0;
    background: var(--bg-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-item p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-left: 28px;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-form-wrapper h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 30px;
}

/* 响应式更新 */
@media (max-width: 1200px) {
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* values-grid 保持2列布局 */
    /* .values-grid {
        grid-template-columns: 1fr;
    } */

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-banner-content h1 {
        font-size: 32px;
    }

    .page-banner-content p {
        font-size: 16px;
    }

    .cases-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* 二级菜单样式 */
.nav-item-wrapper {
    position: relative;
}

.nav-item.has-submenu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-item.has-submenu::before {
    content: '▼';
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-item-wrapper:hover .nav-item.has-submenu::before {
    transform: rotate(180deg);
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-hover);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-item-wrapper:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu-item {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.submenu-item:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.submenu-item.active {
    color: var(--primary-color);
    background: var(--bg-light);
}

/* 移动端二级菜单 */
@media (max-width: 768px) {
    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
        display: none;
    }

    .nav-item-wrapper.active .submenu {
        display: block;
    }
}

/* 头部操作按钮 */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 30px;
}

.action-btn {
    padding: 8px 20px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.action-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .header-actions {
        margin-left: 15px;
    }

    .action-btn {
        padding: 6px 15px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .header-actions {
        display: none;
    }
}

/* 文章列表样式 */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.article-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.article-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.article-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-item:hover .article-image img {
    transform: scale(1.1);
}

.article-content {
    padding: 24px;
}

.article-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-content p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--bg-light);
}

.article-footer span {
    font-size: 13px;
    color: var(--text-light);
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--primary-dark);
    gap: 8px;
}

/* 响应式 */
@media (max-width: 1200px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
}

/* 分页样式 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 60px;
}

.page-btn {
    padding: 10px 24px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.page-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.page-info {
    font-size: 14px;
    color: var(--text-gray);
}

.page-info span {
    font-weight: 600;
    color: var(--text-dark);
}

/* 证书展示 */
/* ============================================
   企业资质证书样式
   ============================================ */

.certificates-section {
    margin: 60px 0;
    padding: 50px;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.certificates-section::before {
    content: '📜';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 80px;
    opacity: 0.1;
}

.certificates-section h3 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 35px;
    position: relative;
    padding-bottom: 15px;
}

.certificates-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #0ea5e9 0%, #06b6d4 100%);
    border-radius: 2px;
}

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

.certificate-item {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.certificate-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.25);
}

.certificate-item img {
    width: 100%;
    height: 280px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 16px;
    background: #fafafa;
    padding: 15px;
    transition: all 0.3s ease;
}

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

.certificate-item p {
    font-size: 16px;
    color: #2c3e50;
    font-weight: 600;
    margin: 0;
}

/* 分支机构页面 */
.branches-page {
    padding: 100px 0;
    background: var(--bg-light);
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.branch-card {
    background: var(--white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.branch-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--bg-light);
}

.branch-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
}

.branch-badge {
    padding: 6px 16px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.branch-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

.info-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.info-item a {
    color: var(--primary-color);
    text-decoration: none;
}

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

/* 响应式 */
@media (max-width: 1200px) {
    .certificates-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .branches-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .certificates-grid {
        grid-template-columns: 1fr;
    }
}

/* 页脚优化样式 */
.main-footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 14px;
    transition: all 0.3s ease;
    padding-left: 0;
}

.footer-col a:hover {
    color: var(--white);
    padding-left: 8px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.branch-info {
    margin-bottom: 24px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.branch-info p {
    margin-bottom: 6px;
}

.branch-info strong {
    color: var(--white);
    font-size: 15px;
}

.footer-qr {
    text-align: center;
    margin-top: 20px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.footer-qr img {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    margin-bottom: 8px;
    background: var(--white);
    padding: 8px;
}

.footer-qr p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin: 6px 0;
}

/* 响应式 */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-col:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-col:first-child {
        grid-column: 1;
    }
}

/* 企业资质列表 */
.qualifications-list {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.qualifications-list h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.qualifications-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.qualifications-list li {
    font-size: 16px;
    color: var(--text-dark);
    padding: 12px 20px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.qualifications-list li:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .qualifications-list ul {
        grid-template-columns: 1fr;
    }
}

/* 优秀员工展示 */
.employees-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.employees-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.employee-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.employee-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.employee-photo {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

.employee-card:hover .employee-photo img {
    transform: scale(1.1);
}

.employee-info {
    padding: 20px;
    text-align: center;
}

.employee-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.employee-info p {
    font-size: 14px;
    color: var(--text-gray);
}

/* 响应式 */
@media (max-width: 1200px) {
    .employees-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .employees-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .employee-photo {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .employees-grid {
        grid-template-columns: 1fr;
    }
}

/* 页脚优化 - 去掉分支机构的框，降低高度 */
.main-footer {
    padding: 50px 0 20px;
}

.footer-top {
    margin-bottom: 30px;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.branch-info {
    margin-bottom: 16px;
    padding: 0;
    background: none;
    border-radius: 0;
    backdrop-filter: none;
}

.branch-info p {
    margin-bottom: 4px;
    line-height: 1.6;
}

.footer-col h4 {
    margin-bottom: 16px;
    padding-bottom: 10px;
}

.footer-qr {
    margin-top: 16px;
    padding: 12px;
}

.footer-qr img {
    width: 100px;
    height: 100px;
}

.footer-bottom {
    padding-top: 20px;
}

/* 优秀员工照片自适应优化 */
.employee-photo {
    width: 100%;
    height: auto;
    min-height: 200px;
    max-height: 350px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.employee-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .employee-photo {
        min-height: 180px;
        max-height: 280px;
    }
}

/* 去掉二维码的框 */
.footer-qr {
    text-align: center;
    margin-top: 16px;
    padding: 0;
    background: none;
    border-radius: 0;
    backdrop-filter: none;
}

.footer-qr img {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    margin-bottom: 8px;
    background: var(--white);
    padding: 8px;
}

.footer-qr p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* 证书展示调整为2列 */
.certificates-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.certificate-item img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
}

/* 优秀员工照片完全自适应 */
.employee-photo {
    width: 100%;
    height: 0;
    padding-bottom: 120%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.employee-photo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .certificates-grid {
        grid-template-columns: 1fr;
    }

    .employee-photo {
        padding-bottom: 100%;
    }
}

/* 地址不换行 */
.branch-info p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 联系我们栏二维码居中 */
.footer-col:last-child {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-col:last-child h4 {
    align-self: flex-start;
}

.footer-qr {
    text-align: center;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .branch-info p {
        white-space: normal;
    }
}

/* 优秀员工照片完全自适应（支持横竖版） */
.employee-photo {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.employee-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
}

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

@media (max-width: 768px) {
    .employee-photo {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .employee-photo {
        height: 280px;
    }
}

/* 去掉优秀员工照片的紫色背景 */
.employee-photo {
    background: #f5f5f5;
}

/* 免费咨询板块改为浅灰色背景 */
.consultation-section {
    background: var(--bg-light);
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.consultation-left h2 {
    color: var(--text-dark);
}

.consultation-left p {
    color: var(--text-gray);
}

.consultation-left .feature-item {
    color: var(--text-dark);
}

.consultation-left .feature-icon {
    color: var(--primary-color);
}

/* 服务详情页样式 */
.service-detail-section {
    padding: 100px 0;
    background: var(--white);
}

.service-detail-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-detail-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.service-description {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid #E5E5E5;
}

.service-detail-cover {
    width: 100%;
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
}

.service-detail-cover img {
    width: 100%;
    height: auto;
    display: block;
}

.service-detail-body {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-gray);
}

.service-detail-body p {
    margin-bottom: 20px;
}

.service-detail-body h2,
.service-detail-body h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 600;
}

.service-detail-body img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 8px;
}

/* 服务详情CTA区域 */
.service-cta {
    max-width: 900px;
    margin: 50px auto 0;
    padding: 50px;
    background: var(--bg-light);
    border-radius: 12px;
    text-align: center;
}

.service-cta h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.service-cta p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.service-detail-footer {
    max-width: 900px;
    margin: 50px auto 0;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
}

@media (max-width: 768px) {
    .service-detail-section {
        padding: 60px 0;
    }

    .service-detail-content {
        padding: 30px 20px;
    }

    .service-detail-title {
        font-size: 28px;
    }

    .service-description {
        font-size: 16px;
    }

    .service-cta {
        padding: 30px 20px;
    }

    .service-cta h3 {
        font-size: 22px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

/* 文章详情页样式 */
.article-detail {
    padding: 100px 0;
    background: var(--white);
}

.article-detail article {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.article-detail h1 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid #E5E5E5;
    font-size: 14px;
    color: var(--text-gray);
}

.article-cover {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
}

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

.article-detail .article-content {
    color: var(--text-gray);
    line-height: 1.9;
    font-size: 17px;
}

.article-detail .article-content h2 {
    font-size: 28px;
    margin: 35px 0 20px;
    color: var(--text-dark);
    font-weight: 600;
}

.article-detail .article-content h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--text-dark);
    font-weight: 600;
}

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

@media (max-width: 768px) {
    .article-detail {
        padding: 60px 0;
    }

    .article-detail article {
        padding: 0 20px;
    }

    .article-detail h1 {
        font-size: 28px;
    }

    .article-cover {
        height: 250px;
    }

    .article-detail .article-content {
        font-size: 16px;
    }
}

/* ============================================
   后台管理侧边栏菜单样式
   ============================================ */

.admin-layout .sidebar .menu-group {
    margin-bottom: 5px;
}

.admin-layout .sidebar .menu-group-title {
    padding: 15px 25px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.admin-layout .sidebar .menu-group-title:hover {
    background: rgba(255,255,255,0.1);
    color: white;
    border-left-color: #3498db;
}

.admin-layout .sidebar .menu-group-title .arrow {
    transition: transform 0.3s;
    font-size: 10px;
}

.admin-layout .sidebar .menu-group.active .menu-group-title .arrow {
    transform: rotate(90deg);
}

.admin-layout .sidebar .submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(0, 0, 0, 0.2);
}

.admin-layout .sidebar .menu-group.active .submenu {
    max-height: 500px;
}

/* ============================================
   发展历程时间轴样式
   ============================================ */

.timeline-container {
    position: relative;
    padding: 40px 0;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 120px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #667eea, #764ba2);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item:hover {
    transform: translateX(5px);
}

.timeline-year {
    width: 100px;
    text-align: right;
    padding-right: 30px;
    font-size: 20px;
    font-weight: 700;
    color: #667eea;
    flex-shrink: 0;
}

.timeline-dot {
    position: absolute;
    left: 112px;
    width: 20px;
    height: 20px;
    background: white;
    border: 4px solid #667eea;
    border-radius: 50%;
    z-index: 1;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    background: #667eea;
    transform: scale(1.2);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.2);
}

.timeline-content {
    flex: 1;
    margin-left: 50px;
    padding: 20px 25px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray);
    border-left: 3px solid #667eea;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.15);
    border-left-color: #764ba2;
}

/* 响应式时间轴 */
@media (max-width: 768px) {
    .timeline-container::before {
        left: 60px;
    }
    
    .timeline-year {
        width: 60px;
        font-size: 16px;
        padding-right: 20px;
    }
    
    .timeline-dot {
        left: 52px;
        width: 16px;
        height: 16px;
        border-width: 3px;
    }
    
    .timeline-content {
        margin-left: 30px;
        padding: 15px 18px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .timeline-container::before {
        left: 50px;
    }
    
    .timeline-year {
        width: 50px;
        font-size: 14px;
        padding-right: 15px;
    }
    
    .timeline-dot {
        left: 42px;
        width: 14px;
        height: 14px;
    }
    
    .timeline-content {
        margin-left: 20px;
        padding: 12px 15px;
        font-size: 13px;
    }
}

/* ============================================
   关于我们页面布局样式
   ============================================ */

.about-intro-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 50px;
}

.about-intro-wrapper .about-intro-image {
    flex-shrink: 0;
    width: 350px;
}

.about-intro-wrapper .about-intro-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.about-intro-wrapper .about-intro {
    flex: 1;
}

/* ============================================
   团队介绍样式
   ============================================ */

.team-intro-section {
    margin: 60px 0;
    padding: 50px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.team-intro-section::before {
    content: '👥';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 80px;
    opacity: 0.1;
}

.team-intro-section h3 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.team-intro-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #667eea, #764ba2);
    border-radius: 2px;
}

.team-intro-section .section-content {
    font-size: 16px;
    line-height: 2;
    color: #555;
}

.team-intro-section .section-content p {
    margin-bottom: 15px;
}

.team-intro-section .section-content ul,
.team-intro-section .section-content ol {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.team-intro-section .section-content li {
    padding: 12px 20px;
    margin-bottom: 10px;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #667eea;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-intro-section .section-content li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

/* ============================================
   荣誉资质样式
   ============================================ */

.honors-section {
    margin: 60px 0;
    padding: 50px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #f0f0f0;
    position: relative;
}

.honors-section::before {
    content: '🏆';
    position: absolute;
    top: -15px;
    right: 30px;
    font-size: 60px;
    opacity: 0.15;
}

.honors-section h3 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.honors-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #f093fb 0%, #f5576c 100%);
    border-radius: 2px;
}

.honors-section .section-content {
    font-size: 16px;
    line-height: 2;
    color: #555;
}

.honors-section .section-content p {
    margin-bottom: 15px;
}

.honors-section .section-content ul,
.honors-section .section-content ol {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.honors-section .section-content li {
    padding: 15px 20px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe0e0 100%);
    border-radius: 8px;
    border-left: 4px solid #f5576c;
    transition: all 0.3s ease;
}

.honors-section .section-content li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(245, 87, 108, 0.2);
}

/* ============================================
   办公环境样式
   ============================================ */

.office-environment-section {
    margin: 60px 0;
    padding: 50px;
    background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.office-environment-section::before {
    content: '📍';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 80px;
    opacity: 0.1;
}

.office-environment-section h3 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.office-environment-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);
    border-radius: 2px;
}

.office-environment-section .section-content {
    font-size: 16px;
    line-height: 2;
    color: #555;
}

.office-environment-section .section-content p {
    margin-bottom: 15px;
}

.office-environment-section .section-content ul,
.office-environment-section .section-content ol {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.office-environment-section .section-content li {
    padding: 12px 20px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border-left: 4px solid #4facfe;
    transition: all 0.3s ease;
}

.office-environment-section .section-content li:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(79, 172, 254, 0.2);
}

/* ============================================
   员工福利浮动按钮和弹窗
   ============================================ */

.welfare-float-btn {
    position: fixed;
    right: 30px;
    bottom: 180px;
    z-index: 998;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.welfare-float-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 24px rgba(102, 126, 234, 0.6);
}

.welfare-icon {
    font-size: 28px;
    line-height: 1;
}

.welfare-text {
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}

/* 员工福利弹窗 */
.welfare-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.welfare-popup.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.welfare-popup-content {
    background: white;
    padding: 40px;
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease;
}

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

.welfare-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border: none;
    background: #f5f5f5;
    border-radius: 50%;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.welfare-popup-close:hover {
    background: #e0e0e0;
    color: #333;
    transform: rotate(90deg);
}

.welfare-popup-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid;
    border-image: linear-gradient(to right, #667eea, #764ba2) 1;
}

.welfare-body {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.welfare-body p {
    margin-bottom: 15px;
}

.welfare-body ul,
.welfare-body ol {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.welfare-body li {
    padding: 12px 20px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 8px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.welfare-body li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

/* 响应式：平板和手机 */
@media (max-width: 768px) {
    .about-intro-wrapper {
        flex-direction: column;
        gap: 25px;
    }
    
    .about-intro-wrapper .about-intro-image {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .about-intro-wrapper .about-intro {
        width: 100%;
    }
    
    /* 员工福利响应式 */
    .welfare-section {
        padding: 30px 20px;
    }
    
    .welfare-section h2 {
        font-size: 24px !important;
    }
    
    .welfare-section li {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    /* 招聘流程响应式 */
    .recruitment-process {
        padding: 30px 20px;
    }
    
    .recruitment-process h2 {
        font-size: 24px !important;
    }
    
    .recruitment-process li {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    /* 团队介绍响应式 */
    .team-intro-section {
        padding: 30px 20px;
    }
    
    .team-intro-section h3 {
        font-size: 24px;
    }
    
    .team-intro-section .section-content {
        font-size: 15px;
    }
    
    /* 荣誉资质响应式 */
    .honors-section {
        padding: 30px 20px;
    }
    
    .honors-section h3 {
        font-size: 24px;
    }
    
    .honors-section .section-content {
        font-size: 15px;
    }
    
    /* 办公环境响应式 */
    .office-environment-section {
        padding: 30px 20px;
    }
    
    .office-environment-section h3 {
        font-size: 24px;
    }
    
    .office-environment-section .section-content {
        font-size: 15px;
    }
    
    /* 企业资质证书响应式 */
    .certificates-section {
        padding: 30px 20px;
    }
    
    .certificates-section h3 {
        font-size: 24px;
    }
    
    .certificates-grid {
        grid-template-columns: 1fr;
    }
    
    .certificate-item img {
        height: 240px;
    }
    
    /* 员工福利浮动按钮响应式 */
    .welfare-float-btn {
        right: 20px;
        bottom: 160px;
        width: 60px;
        height: 60px;
    }
    
    .welfare-icon {
        font-size: 24px;
    }
    
    .welfare-text {
        font-size: 10px;
    }
    
    .welfare-popup-content {
        padding: 30px 20px;
        max-width: 90%;
    }
    
    .welfare-popup-content h2 {
        font-size: 24px;
    }
    
    .welfare-body {
        font-size: 15px;
    }
}

.admin-layout .sidebar .submenu .menu-item {
    padding-left: 50px;
    font-size: 14px;
}

/* 电商汇率一览 */
.exchange-rate-section {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #f0f4ff 0%, #f7f9fc 100%);
}

.exchange-rate-table-wrapper {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 32px;
}

.exchange-rate-update-time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.update-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00C9A7;
    animation: pulse-dot 2s infinite;
    flex-shrink: 0;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.exchange-rate-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* 折叠状态：只显示前两行（4列×2行=8张，用 max-height 裁切） */
.exchange-rate-grid.collapsed {
    max-height: 300px;
    overflow: hidden;
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}

.exchange-rate-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
    cursor: pointer;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    user-select: none;
    transition: opacity 0.2s;
}

.exchange-rate-toggle:hover {
    opacity: 0.75;
}

.toggle-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.rate-card {
    border: 1px solid #eef0f5;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    background: var(--white);
}

.rate-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.1);
    transform: translateY(-3px);
}

.rate-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.rate-flag {
    font-size: 28px;
    line-height: 1;
}

.rate-currency-info {
    display: flex;
    flex-direction: column;
}

.rate-code {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.rate-name {
    font-size: 12px;
    color: var(--text-light);
}

.rate-value {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 10px;
}

.rate-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.rate-unit {
    font-size: 12px;
    color: var(--text-light);
}

.rate-platform {
    font-size: 12px;
    color: var(--text-light);
    background: #f7f9fc;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.rate-card-skeleton {
    border-radius: 12px;
    height: 130px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite;
}

@keyframes skeleton-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.rate-error {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-light);
    padding: 40px;
}

.exchange-rate-disclaimer {
    margin-top: 16px;
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
}

@media (max-width: 1200px) {
    .exchange-rate-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .exchange-rate-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .exchange-rate-table-wrapper {
        padding: 20px 16px;
    }

    .rate-number {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .exchange-rate-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}
