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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8d6 100%);
    min-height: 100vh;
}

/* 导航栏样式 */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 140, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.2rem;
    color: #ff8c00;
}

.orange-icon {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

/* 头像样式 */
.avatar-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.avatar-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #ff8c00;
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.3);
    transition: all 0.3s ease;
}

.avatar-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.4);
}

/* 页面跳转按钮样式 */
.page-navigation {
    text-align: center;
    margin: 50px 0;
    padding: 30px;
}

.next-page-btn {
    display: inline-block;
    background: linear-gradient(45deg, #ff8c00, #ffa500);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

.next-page-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
    color: white;
    text-decoration: none;
}

.next-page-btn::after {
    content: ' →';
    margin-left: 8px;
}

/* 备案链接样式 */
.footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #ff8c00;
    text-decoration: underline;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #ff8c00;
    background: rgba(255, 140, 0, 0.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ff8c00;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* 主要内容区域 */
.main-content {
    margin-top: 70px;
    min-height: calc(100vh - 140px);
}

/* 首页英雄区域 */
.hero {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8d6 50%, #ffd4a3 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.orange-text {
    color: #ff8c00;
    background: linear-gradient(45deg, #ff8c00, #ffa500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 15px;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 30px;
}

.hero-orange {
    display: flex;
    justify-content: center;
    align-items: center;
}

.orange-animation {
    font-size: 8rem;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(255, 140, 0, 0.3));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* 板块预览区域 */
.sections-preview {
    padding: 80px 20px;
    background: white;
}

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

.sections-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 60px;
    color: #333;
}

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

.section-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.section-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 140, 0, 0.2);
    border-color: rgba(255, 140, 0, 0.3);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.card-description {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.card-link {
    color: #ff8c00;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.card-link:hover {
    color: #e67e00;
    text-decoration: underline;
}

/* 页面内容样式 */
.page-header {
    background: linear-gradient(135deg, #ff8c00, #ffa500);
    color: white;
    padding: 100px 20px 60px;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.content-section {
    padding: 60px 20px;
    background: white;
}

.content-container {
    max-width: 800px;
    margin: 0 auto;
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
}

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

/* 作品展示样式 */
.work-item {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    border-left: 5px solid #ff8c00;
}

.work-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ff8c00;
    margin-bottom: 15px;
}

.work-description {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.work-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.work-link {
    color: #ff8c00;
    text-decoration: none;
    padding: 8px 16px;
    background: rgba(255, 140, 0, 0.1);
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.work-link:hover {
    background: rgba(255, 140, 0, 0.2);
    transform: translateY(-2px);
}

/* 联系方式样式 */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.15);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.contact-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.contact-value {
    color: #ff8c00;
    font-weight: 500;
}

/* 页脚样式 */
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 30px 20px;
    margin-top: auto;
}

.footer-content p {
    opacity: 0.8;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .orange-animation {
        font-size: 5rem;
    }
    
    .sections-grid {
        grid-template-columns: 1fr;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .work-links {
        justify-content: center;
    }
}

/* 关于页面特殊样式 */
.about-highlights {
    margin: 50px 0;
}

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

.highlight-item {
    background: linear-gradient(135deg, #fff5f0, #ffe8d6);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255, 140, 0, 0.1);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 140, 0, 0.3);
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.15);
}

.highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.highlight-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ff8c00;
    margin-bottom: 10px;
}

.highlight-item p {
    color: #666;
    font-size: 0.95rem;
}

.journey-section {
    margin-top: 60px;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}

.timeline {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #ff8c00, #ffa500);
}

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

.timeline-dot {
    position: absolute;
    left: 11px;
    top: 5px;
    width: 18px;
    height: 18px;
    background: #ff8c00;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.3);
}

.timeline-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ff8c00;
    margin-bottom: 8px;
}

.timeline-content p {
    color: #555;
    line-height: 1.6;
}

/* 联系页面特殊样式 */
.opportunity-section,
.preference-section,
.traits-section,
.values-section,
.contact-info-section,
.closing-section,
.footnote-section {
    margin: 50px 0;
}

.opportunity-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
}

.opportunity-item {
    background: linear-gradient(135deg, #fff5f0, #ffe8d6);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255, 140, 0, 0.1);
    transition: all 0.3s ease;
}

.opportunity-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 140, 0, 0.3);
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.15);
}

.opportunity-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.opportunity-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ff8c00;
    margin-bottom: 15px;
}

.opportunity-item p {
    color: #555;
    line-height: 1.6;
}

.preference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.preference-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #ff8c00;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.preference-item h4 {
    color: #ff8c00;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.preference-item p {
    color: #555;
    line-height: 1.6;
}

.traits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.traits-column {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.traits-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.traits-title.positive {
    color: #28a745;
}

.traits-title.negative {
    color: #ffc107;
}

.traits-list {
    list-style: none;
    padding: 0;
}

.traits-list li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
    color: #555;
}

.traits-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ff8c00;
    font-weight: bold;
    font-size: 1.2rem;
}

.values-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.values-column {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.values-column.positive {
    border-left: 5px solid #28a745;
}

.values-column.negative {
    border-left: 5px solid #dc3545;
}

.values-column h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.values-column.positive h3 {
    color: #28a745;
}

.values-column.negative h3 {
    color: #dc3545;
}

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

.values-column li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
    color: #555;
}

.values-column li::before {
    content: '•';
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

.values-column.positive li::before {
    color: #28a745;
}

.values-column.negative li::before {
    color: #dc3545;
}

.closing-section {
    text-align: center;
    background: linear-gradient(135deg, #fff5f0, #ffe8d6);
    padding: 50px 30px;
    border-radius: 20px;
    margin: 60px 0;
}

.closing-message h3 {
    font-size: 1.8rem;
    color: #ff8c00;
    margin-bottom: 20px;
    font-weight: 600;
}

.orange-decoration {
    font-size: 3rem;
    animation: bounce 2s infinite;
}

.footnote-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #6c757d;
}

.footnote-section h4 {
    color: #6c757d;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footnote-section p {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* 悬浮快捷跳转菜单 */
.floating-nav {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.floating-nav.show {
    opacity: 1;
    visibility: visible;
}

.floating-nav-toggle {
    width: auto;
    height: 50px;
    padding: 0 20px;
    border-radius: 25px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border: none;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    white-space: nowrap;
}

.floating-nav-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.6);
    background: linear-gradient(135deg, #ff7b45, #f8a31e);
}

.toggle-icon {
    animation: pulse 2s infinite;
    font-size: 14px;
    font-weight: 600;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.floating-nav-menu {
    position: absolute;
    right: 60px;
    bottom: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 12px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.floating-nav-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.floating-nav-item {
    display: block;
    padding: 10px 16px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.floating-nav-item:hover {
    background: #f8f9fa;
    border-left-color: #ff6b35;
    color: #ff6b35;
}

.floating-nav-item .nav-icon {
    margin-right: 8px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .opportunity-grid,
    .preference-grid,
    .traits-grid,
    .values-comparison {
        grid-template-columns: 1fr;
    }
    
    .closing-message h3 {
        font-size: 1.5rem;
    }
    
    .floating-nav {
        right: 20px;
        bottom: 20px;
    }
    
    .floating-nav-toggle {
        width: auto;
        height: 40px;
        padding: 0 15px;
        font-size: 12px;
        min-width: 80px;
        border-radius: 20px;
    }
    
    .floating-nav-menu {
        right: 55px;
        min-width: 180px;
    }
}

/* 找对味页面卡片样式优化 */
.opportunity-card, .preference-card, .traits-card, .values-card, .contact-card, .closing-card, .footnote-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.opportunity-card:hover, .preference-card:hover, .traits-card:hover, .values-card:hover, .contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.opportunity-card .card-header {
    padding: 30px 30px 0 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.opportunity-card .card-content {
    padding: 15px 30px 30px 30px;
}

.opportunity-card .opportunity-icon {
    font-size: 3rem;
    margin-bottom: 0;
    flex-shrink: 0;
}

.opportunity-card .card-title {
    margin: 0;
    font-size: 1.4em;
    font-weight: 600;
    color: #ff8c00;
}

.card-header {
    padding: 20px 20px 0 20px;
}

.card-content {
    padding: 10px 20px 20px 20px;
}

.card-title {
    margin: 0 0 10px 0;
    font-size: 1.2em;
    font-weight: 600;
    color: #333;
}

.card-title.positive {
    color: #27ae60;
}

.card-title.negative {
    color: #e74c3c;
}

/* 特点和价值观网格布局 */
.traits-grid, .values-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

/* 联系方式网格布局 */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* 二维码样式 */
.qr-code-container {
    text-align: center;
    margin-top: 15px;
}

.qr-code-image {
    max-width: 120px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* 联系方式备注 */
.contact-note {
    font-size: 0.9em;
    color: #666;
    margin-top: 8px;
}

/* 尾注样式 */
.footnote-text {
    color: #666;
    line-height: 1.6;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .traits-grid, .values-comparison {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* 项目说明样式 */
.project-note {
    text-align: center;
    margin: 40px 0;
    padding: 20px;
    background: rgba(255, 165, 0, 0.1);
    border-radius: 8px;
    border-left: 4px solid #ff6b35;
}

.note-text {
    color: #666;
    font-style: italic;
    margin: 0;
}

/* 图片放大模态框样式 */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-modal.show {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s ease;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.modal-image:active {
    cursor: grabbing;
}

.modal-caption {
    color: white;
    text-align: center;
    margin-top: 15px;
    font-size: 16px;
    font-weight: 500;
    max-width: 80%;
    line-height: 1.4;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 15px;
    border-radius: 8px;
    z-index: 10001;
    position: relative;
}

.modal-close {
    position: absolute;
    top: -50px;
    right: -10px;
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.8);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    z-index: 10001;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* 缩略图悬停效果 */
.gallery-scroll img:hover {
    transform: scale(1.05);
    cursor: pointer;
}


.work-project {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.work-project:hover {
    border-color: rgba(255, 140, 0, 0.2);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.1);
    transform: translateY(-5px);
}

.work-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f8f9fa;
}

.work-icon {
    font-size: 3rem;
    margin-right: 20px;
    background: linear-gradient(135deg, #fff5f0, #ffe8d6);
    padding: 15px;
    border-radius: 15px;
    border: 2px solid rgba(255, 140, 0, 0.1);
}

.work-meta {
    flex: 1;
}

.work-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.3;
}

.work-year {
    background: linear-gradient(45deg, #ff8c00, #ffa500);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.work-content {
    margin-bottom: 30px;
    line-height: 1.8;
}

.work-content p {
    color: #555;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* 图片画廊样式 */
.work-gallery {
    margin: 30px 0;
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
}

.gallery-scroll {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: thin;
    scrollbar-color: #ff8c00 #f1f1f1;
}

.gallery-scroll::-webkit-scrollbar {
    height: 8px;
}

.gallery-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.gallery-scroll::-webkit-scrollbar-thumb {
    background: #ff8c00;
    border-radius: 10px;
}

.gallery-image {
    min-width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #ddd;
    transition: all 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.05);
    border-color: #ff8c00;
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

/* 移动端优化 */
@media (max-width: 768px) {
    .gallery-scroll {
        gap: 10px;
        padding: 10px 5px;
        /* 添加渐变遮罩提示可滑动 */
        position: relative;
    }
    
    .gallery-scroll::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 30px;
        height: 100%;
        background: linear-gradient(to left, rgba(248, 249, 250, 0.8), transparent);
        pointer-events: none;
        border-radius: 0 15px 15px 0;
    }
    
    .gallery-image {
        min-width: 200px;
        height: 150px;
        flex-shrink: 0;
    }
    
    /* 为第一张图片添加左边距，最后一张添加右边距 */
    .gallery-image:first-child {
        margin-left: 5px;
    }
    
    .gallery-image:last-child {
        margin-right: 35px;
    }
}

/* 作品链接按钮样式 */
.work-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: white;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 4px 8px 4px 0;
}

.work-link-btn:hover {
    background: #ff6b35;
    color: white;
    border-color: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.work-link-btn .link-icon {
    font-size: 16px;
}

.work-link-btn .link-text {
    font-size: 14px;
}

.work-link-btn .link-arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.work-link-btn:hover .link-arrow {
    transform: translateX(4px);
}

/* 脉动效果 */
.work-link-btn.primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.work-link-btn.primary:hover::before {
    width: 300px;
    height: 300px;
}

/* 微信二维码样式 */
.qr-code-container {
    margin-top: 15px;
    text-align: center;
}

.qr-code-image {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    border: 2px solid #ff8c00;
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.2);
    transition: all 0.3s ease;
}

.qr-code-image:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.3);
}

/* 页面加载动画样式 */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.page-loader.active {
    opacity: 1;
    visibility: visible;
}

.loader-content {
    text-align: center;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #ff8c00;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loader-text {
    color: #ff8c00;
    font-size: 16px;
    font-weight: 500;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 页面淡入动画 */
.page-fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

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

@media (max-width: 768px) {
    .work-project {
        padding: 25px;
        margin-bottom: 30px;
    }
    
    .work-header {
        flex-direction: column;
        text-align: center;
    }
    
    .work-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .work-title {
        font-size: 1.5rem;
    }
    
    .gallery-image {
        min-width: 250px;
        height: 150px;
    }
    
    .work-links {
        justify-content: center;
    }
    
    .work-link-btn {
        font-size: 0.9rem;
        padding: 10px 16px;
    }
    
    .opportunity-grid,
    .preference-grid,
    .traits-grid,
    .values-comparison {
        grid-template-columns: 1fr;
    }
    
    .closing-message h3 {
        font-size: 1.5rem;
    }
}