/* ====================================================
   字体配置区域 - 集中配置字体
   ==================================================== */

/*
字体配置说明：
1. 标题：思源宋体（中文） + Inter/Roboto（英文数字）
2. 正文：思源黑体（中文） + Inter/Roboto（英文数字）
3. 字体堆栈会自动根据字符选择合适字体
4. 如需使用本地字体文件，请修改下面的 @font-face 部分
*/

/* 英文字体（Google Fonts已加载） */
:root {
    /* 中文字体族 - 思源宋体优先，然后是其他宋体回退 */
    --font-chinese-serif: "Noto Serif SC", "Source Han Serif SC", "SimSun", serif;
    /* 中文字体族 - 思源黑体优先，然后是其他黑体回退 */
    --font-chinese-sans: "Noto Sans SC", "Source Han Sans SC", "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", sans-serif;

    /* 英文字体族 */
    --font-english: "Inter", "Roboto", -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* 混合字体堆栈（中文字体在前，英文字体在后） */
    --font-heading: var(--font-chinese-serif), var(--font-english);
    --font-body: var(--font-chinese-sans), var(--font-english);

    /* 纯英文字体堆栈（用于需要纯英文显示的元素） */
    --font-english-only: var(--font-english);

    /* 颜色配置 */
    --primary-bg: #ffffff;
    --card-bg: #f8f9fa;
    --text-primary: #000000;
    --text-secondary: #666666;
    --accent-color: #333;
    --line-color: #999;
    --border-color: #e0e0e0;
    --white: #ffffff;
    --card-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --pricing-image-width: 280px;
    --pricing-image-ratio: 3/4;
}

/*
@font-face 定义示例 - 如果你有本地思源字体文件，请取消注释并修改路径
建议将字体文件放在 static/fonts/ 目录下
*/

/*
@font-face {
    font-family: 'Source Han Serif SC';
    src: url('../fonts/SourceHanSerifSC-Regular.woff2') format('woff2'),
         url('../fonts/SourceHanSerifSC-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Source Han Serif SC';
    src: url('../fonts/SourceHanSerifSC-Bold.woff2') format('woff2'),
         url('../fonts/SourceHanSerifSC-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Source Han Sans SC';
    src: url('../fonts/SourceHanSansSC-Regular.woff2') format('woff2'),
         url('../fonts/SourceHanSansSC-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Source Han Sans SC';
    src: url('../fonts/SourceHanSansSC-Bold.woff2') format('woff2'),
         url('../fonts/SourceHanSansSC-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
*/

/* 字体应用规则 */
body {
    font-family: var(--font-body);
}

/* 标题字体应用 */
h1, h2, h3, h4, h5, h6,
.logo,
.section-title,
.hero h2,
.portfolio-title,
.portfolio-list-title,
.exhibition-info h4,
.pricing-title,
.footer-column h4 {
    font-family: var(--font-heading);
}

/* 纯英文字体应用（用于需要纯英文显示的元素） */
.english-only,
.code,
.monospace {
    font-family: var(--font-english-only);
}

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

body {
    background-color: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 14px;
}

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

/* 导航栏 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 29, 41, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 20px;
    /* font-weight: 600; */
    color: var(--accent-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    font-size: 14px;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

/* 英雄区域 */
.hero {
    padding: 60px 0 40px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: center;
}

.hero-text {
    text-align: left;
}

.hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.hero-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 3/2;
    object-fit: cover;
    display: block;
}

.hero h2 {
    font-size: 28px;
    font-weight: 200;
    margin-bottom: 20px;
    color: var(--text-primary);
    display: flex;
    justify-content: flex-start;
}

.hero-subtitle {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 0 30px 0;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    flex-wrap: nowrap;
}

.btn {
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    /* transition: var(--transition); */
    display: inline-block;
    border: 1px solid var(--border-color);
    cursor: pointer;
    font-size: 14px;
    background-color: var(--white);
    color: var(--text-primary);
}

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

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

.btn-secondary {
    background-color: var(--white);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

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

#contact-shoot {
    margin-top: 30px;
}

/* 内容区域 */
.section {
    /* padding: 00px 0; */
}

.section-title {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: var(--line-color);
    border-radius: 1px;
}

/* 关于区域 */
.about-content {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    align-items: start;
}

.about-text h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--accent-color);
}

.about-text p {
    margin-bottom: 12px;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 14px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.feature {
    background-color: var(--card-bg);
    padding: 12px;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature h4 {
    font-size: 14px;
    margin-bottom: 6px;
}

.feature p {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.feature-icon {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 18px;
}

.feature:nth-child(1) .feature-icon {
    background-color: rgba(196, 169, 98, 0.1);
    color: var(--accent-color);
}

.feature:nth-child(2) .feature-icon {
    background-color: rgba(58, 95, 125, 0.1);
    color: var(--accent-color);
}

.feature:nth-child(3) .feature-icon {
    background-color: rgba(58, 95, 125, 0.1);
    color: var(--accent-color);
}

.feature:nth-child(4) .feature-icon {
    background-color: rgba(196, 169, 98, 0.1);
    color: var(--accent-color);
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(135deg, rgba(196, 169, 98, 0.2), rgba(196, 169, 98, 0.2)); */
    z-index: 1;
}

.about-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 3/2;
    object-fit: cover;
    display: block;
}

.placeholder-image {
    width: 100%;
    height: 400px;
    background: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
}

/* 作品集区域 */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 30px;
}

.portfolio-card {
    /* 卡片现在作为容器，内部由 portfolio-carousel 提供样式 */
}

.portfolio-card:hover {
    /* 悬停效果由内部的 portfolio-carousel 处理 */
}

.portfolio-image {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 16px 16px 0 0;
}

.portfolio-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-image:hover .image-overlay {
    opacity: 1;
}

.view-full {
    color: white;
    background: var(--accent-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.3s ease;
}

.image-overlay:hover .view-full {
    background: var(--accent-color);
}

.portfolio-content {
    padding: 25px;
}

.portfolio-category {
    display: inline-block;
    padding: 6px 12px;
    background-color: rgba(58, 95, 125, 0.1);
    color: var(--accent-color);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.portfolio-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.portfolio-description {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 15px;
}

.portfolio-year {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 13px;
    margin-top: 10px;
}

/* 展览区域 */
.exhibitions-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.exhibition-card {
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    align-items: center;
}

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

.exhibition-date {
    background: var(--accent-color);
    color: var(--white);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.exhibition-date .month {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.exhibition-date .day {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    margin: 5px 0;
}

.exhibition-date .year {
    font-size: 14px;
}

.exhibition-info h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.exhibition-location {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.exhibition-description {
    color: var(--text-secondary);
    font-size: 15px;
}

.pricing-grid {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 15px;
}

.pricing-card {
    background-color: var(--card-bg);
    border-radius: 20px;
    padding: 25px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    /* grid-template-rows: auto auto; */
    gap: 15px;
    align-items: start;
}

.pricing-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.pricing-image-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-image {
    width: 100%;
    max-width: 100%;
}

.pricing-image img {
    width: 100%;
    height: auto;
    aspect-ratio: var(--pricing-image-ratio, 3/4);
    object-fit: cover;
    object-position: center top;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.pricing-card:hover .pricing-image img {
    transform: none;
}

.pricing-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 100%;
}

.pricing-right {
    display: flex;
    flex-direction: column;
}

.pricing-header {
    height: 80%;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.pricing-category {
    display: none;
}

.pricing-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.pricing-price {
    font-size: 40px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.pricing-price-note {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.pricing-details {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 10px;
}

.pricing-section {
    margin-bottom: 10px;
}

.pricing-section-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--line-color);
}

.pricing-section-title::before {
    content: "•";
    color: var(--line-color);
    font-size: 20px;
}

.pricing-features {
    list-style: none;
}

.pricing-features li {
    padding: 6px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
    font-size: 13px;
}

.pricing-features li::before {
    content: "✓";
    color: var(--accent-color);
    font-weight: bold;
    flex-shrink: 0;
}

.pricing-extra {
    list-style: none;
}

.pricing-extra li {
    padding: 6px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
    font-size: 13px;
}

.pricing-extra li::before {
    content: "💰";
    flex-shrink: 0;
}

.pricing-action-button {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* padding: 6px 10px; */
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
    /* transition: var(--transition); */
    text-align: left;
    border: none;
    cursor: pointer;
    font-size: 14px;
    white-space: nowrap;
}

.pricing-action-button.sample {
    /* background-color: var(--white); */
    color: #999;
    /* border: 1px solid var(--border-color); */
}

/* .pricing-action-button.sample:hover {
    background-color: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
}

.pricing-action-button.contact {
    display: none;
}

.pricing-action-button.contact:hover {
    display: none;
} */


/* 作品集列表区域（简化版） */
.portfolio-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-list-item {
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
    align-items: center;
}

.portfolio-list-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-list-image {
    width: 200px;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

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

.portfolio-list-item:hover .portfolio-list-image img {
    transform: scale(1.05);
}

.portfolio-list-content {
    flex: 1;
}

.portfolio-list-category {
    display: inline-block;
    padding: 6px 12px;
    background-color: rgba(58, 95, 125, 0.1);
    color: var(--accent-color);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.portfolio-list-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.portfolio-list-description {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.portfolio-list-year {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
}

.portfolio-list-button {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--white);
    color: var(--text-primary);
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    font-size: 13px;
}

.portfolio-list-button:hover {
    background-color: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
}

/* 页脚 */
.footer {
    background: var(--accent-color);
    color: var(--white);
    padding: 60px 0 30px;
    margin-top: 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

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

.copyright {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: repeat(1, 1fr);
        gap: 40px;
    }

    .exhibition-card {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

@media (max-width: 768px) {
    .hero h2 {
        font-size: 25px;
    }

    .hero-subtitle {
        font-size: 14px;
        text-align: left;
        /* display: flex;
        align-items: flex-start;
        align-content: flex-start;
        justify-content: flex-start; */
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text {
        text-align: center;
    }

    .hero-buttons {
        justify-content: flex-start;
    }

    .hero {
        padding: 40px 0 10px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    body {
        font-size: 14px;
    }

    .hero-photo {
        max-width: 400px;
        margin: 0 auto;
        aspect-ratio: 3/2;
    }

    .nav-links {
        display: none;
    }

    .about-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 20px;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
    }

    .pricing-left {
        flex: 0 0 auto;
        width: 100%;
        max-width: 700px;
        margin: 0 auto;
    }

    .pricing-image {
        max-width: 100%;
    }

    .pricing-image img {
        height: auto;
        aspect-ratio: 4/5;
        object-fit: cover;
        object-position: center top;
    }

    .pricing-actions {
        max-width: 100%;
    }

    .pricing-details {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .portfolio-list-item {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .portfolio-list-image {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
        gap: 10px;
    }

    .hero-photo {
        max-width: 300px;
        aspect-ratio: 3/2;
    }

    .hero h1 {
        font-size: 32px;
    }

    .btn {
        width: auto;
        min-width: 120px;
    }

    .section {
        padding: 0px 0;
    }

    .section-title {
        font-size: 22px;
    }

    .pricing-title {
        font-size: 18px;
    }

    .pricing-image img {
        height: auto;
        aspect-ratio: 3/4;
        object-fit: cover;
        object-position: center top;
    }

    .pricing-actions {
        max-width: 100%;
    }

    /* .pricing-action-button {
        padding: 6px 10px;
        font-size: 11px;
    } */
}

/* 轮播样式 */
.portfolio-carousel {
    background-color: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    margin-bottom: 30px;
}

.portfolio-card:hover .portfolio-carousel {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.carousel-header {
    padding: 25px 25px 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.carousel-header .portfolio-category {
    display: inline-block;
    padding: 6px 12px;
    background-color: rgba(58, 95, 125, 0.1);
    color: var(--accent-color);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.carousel-header .portfolio-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.carousel-header .portfolio-description {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 10px;
}

.carousel-header .portfolio-year {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 13px;
}

.carousel-container {
    padding: 20px 25px 25px;
}

.carousel-main {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.carousel-slide-container {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    cursor: pointer;
}

.carousel-slide.active {
    display: block;
}

.carousel-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.carousel-slide:hover .carousel-image {
    transform: scale(1.02);
}

.carousel-nav {
    background-color: var(--accent-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.carousel-nav:hover {
    background-color: var(--accent-color);
    transform: scale(1.1);
}

.carousel-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.carousel-info {
    margin-bottom: 15px;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.02);
    border-radius: 10px;
}

.image-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.image-description {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.image-counter {
    font-size: 13px;
    color: var(--accent-color);
    font-weight: 600;
}

.carousel-thumbnails {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color) rgba(0, 0, 0, 0.05);
}

.carousel-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.carousel-thumbnails::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 3px;
}

.carousel-thumbnails::-webkit-scrollbar-thumb {
    background-color: var(--accent-color);
    border-radius: 3px;
}

.thumbnail {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition);
    border: 2px solid transparent;
}

.thumbnail:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.thumbnail.active {
    opacity: 1;
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

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

/* 水平轮播样式 */
.carousel-horizontal-container {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    padding: 20px 0 20px;
    min-height: 400px;
}

.carousel-side-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 320px;
    /* 适应三个横向排列的缩略图 */
    align-items: center;
}

.side-thumbnails {
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.side-thumbnail {
    width: 90px;
    height: 68px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.side-thumbnail:hover {
    opacity: 1;
    transform: translateY(-3px);
    border-color: var(--accent-color);
}

.side-thumbnail.active {
    opacity: 1;
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

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

.carousel-center {
    flex: 1;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.center-image-container {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.center-image-container:hover {
    transform: scale(1.01);
}

.center-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.center-info {
    text-align: center;
    max-width: 80%;
}

.center-info .image-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.center-info .image-description {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 10px;
    line-height: 1.5;
}

.center-info .image-counter {
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 600;
}

.carousel-nav-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.all-thumbnails {
    display: none;
}

.config-note {
    margin-top: 20px;
    padding: 12px 15px;
    background-color: rgba(196, 169, 98, 0.1);
    border-left: 3px solid var(--accent-color);
    border-radius: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}

.config-note small {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 灯箱样式 */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    position: relative;
    z-index: 1;
    max-width: 90%;
    max-height: 90%;
    background-color: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-close:hover {
    background-color: rgba(0, 0, 0, 0.9);
    transform: rotate(90deg);
}

.lightbox-image {
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
    display: block;
}

.lightbox-info {
    padding: 20px;
    background-color: var(--card-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-info h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.lightbox-info p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.lightbox-counter {
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 600;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 3;
}

.lightbox-nav:hover {
    background-color: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .carousel-image {
        height: 250px;
    }

    .carousel-nav {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .thumbnail {
        width: 70px;
        height: 50px;
    }

    .lightbox-content {
        max-width: 95%;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .carousel-image {
        height: 200px;
    }

    .carousel-main {
        gap: 5px;
    }

    .carousel-nav {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .thumbnail {
        width: 60px;
        height: 40px;
    }

    .lightbox-nav {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .lightbox-prev {
        left: 5px;
    }

    .lightbox-next {
        right: 5px;
    }

    .lightbox-image {
        max-height: 60vh;
    }

    .gallery-wall {
        gap: 8px;
    }

    .gallery-row {
        gap: 8px;
    }
}

/* 联系拍摄区域样式 */
.contact-shoot-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 0rem 0;
}

.contact-shoot-description {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.wechat-id-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.wechat-id-label {
    font-size: 1rem;
    color: var(--text-secondary);
}

.wechat-id {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-primary);
    /* background: var(--card-bg); */
    /* padding: 0.5rem 1rem; */
    /* border-radius: 8px; */
    /* border: 1px solid var(--border-color); */
}

.copy-button {
    background: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
}

.copy-button:hover {
    background: var(--accent-color);
    opacity: 0.9;
}

.contact-note {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

/* 图片展示墙 - 新版二维数组布局 */
.gallery-wall {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0 15px;
}

.gallery-row {
    display: flex;
    gap: 15px;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    flex-shrink: 0;
    background-color: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

/* 响应式调整 */
@media (max-width: 768px) {
    .gallery-item {
        height: 200px;
        /* 移动端减小高度 */
    }
}

/* 小红书链接 */
.xiaohongshu-link {
    text-align: center;
    margin: 30px 0 60px;
    font-size: 12px;
    color: var(--text-secondary);
}

.xiaohongshu-link a {
    color: var(--accent-color);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-color);
    transition: color 0.3s ease;
}

.xiaohongshu-link a:hover {
    color: #000;
    border-bottom-color: #000;
}

/* 活动/照片展览授权模块 */
.event-exhibition {
    margin: 40px 0;
}

.event-exhibition h2 {
    text-align: center;
    margin-bottom: 30px;
}

.event-description {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.event-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.event-gallery-item {
    width: 100%;
    height: 100%;
    /* padding-bottom: 100%; */
    /* 4:3比例 */
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.event-gallery-item img {
    /* position: absolute; */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.event-button .btn {
    padding: 12px 40px;
    font-size: 16px;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .gallery-wall {
        gap: 10px;
        margin: 40px 0 20px;
    }

    .gallery-row {
        gap: 10px;
    }

    .event-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .event-description {
        font-size: 14px;
        padding: 0 20px;
        text-align: left;
    }

    .pricing-image-wrapper {
        max-width: 100%;
    }
}

/* PC端窄宽度适配 */
@media (min-width: 769px) {
    .container {
        max-width: 600px;
    }
    .portfolio-list {
        max-width: 400px;
    }
}