[v-cloak]{
    display: none;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: Arial, sans-serif;
    color: #111;
    background: #fff;
    line-height: 1.6;
}


/* =========================
   导航栏
========================= */

header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    background: rgba(255, 255, 255, 0.9);

    backdrop-filter: blur(10px);

    z-index: 1000;
}


.navbar {
    max-width: 1200px;

    margin: auto;

    padding: 20px 30px;

    display: flex;

    justify-content: space-between;

    align-items: center;
}


.logo {
    font-size: 20px;

    font-weight: bold;
}


.nav-links {
    display: flex;

    gap: 30px;
}


.nav-links a {
    text-decoration: none;

    color: #111;

    font-size: 15px;
}


.nav-links a:hover {
    opacity: 0.5;
}


/* =========================
   首页
========================= */

.hero {
    max-width: 1200px;

    min-height: 100vh;

    margin: auto;

    padding: 120px 30px 80px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}


.small-title {
    font-size: 14px;

    letter-spacing: 4px;

    margin-bottom: 20px;
}


.hero h1 {
    font-size: 58px;

    line-height: 1.1;

    margin-bottom: 20px;
}


.hero h2 {
    font-size: 22px;

    font-weight: normal;

    color: #666;

    margin-bottom: 30px;
}


.description {
    max-width: 500px;

    color: #666;

    font-size: 17px;

    margin-bottom: 35px;
}


.button {
    display: inline-block;

    background: #111;

    color: #fff;

    padding: 15px 30px;

    border-radius: 30px;

    text-decoration: none;

    transition: 0.3s;
}


.button:hover {
    transform: translateY(-3px);
}


/* =========================
   个人照片
========================= */

.hero-image img {
    width: 100%;

    max-width: 450px;

    height: 550px;

    object-fit: cover;

    border-radius: 20px;
}


/* =========================
   通用 Section
========================= */

section {
    padding: 80px 30px;
}


#about,
#portfolio,
#contact {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
#about {
    min-height: 500px;
}


/* 关于我的正文 */

#about > p:last-child {
    max-width: 1500px;
    font-size: 20px;
    color: #666;
}

/* =========================
   Portfolio
========================= */

#portfolio {
    max-width: 1200px;
}
/* =========================
   Contact
========================= */

#contact {
    min-height: 500px;
}

.section-title {
    font-size: 13px;

    letter-spacing: 4px;

    color: #777;
}


section h2 {
    font-size: 48px;

    margin: 15px 0 30px;
}


/* =========================
   About
========================= */

.about {
    min-height: 500px;
}


.about > p:last-child {
    max-width: 700px;

    font-size: 20px;

    color: #666;
}


/* =========================
   作品集
========================= */

.portfolio-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;
}


.work img {
    width: 100%;

    height: 350px;

    object-fit: cover;

    border-radius: 15px;

    transition: 0.4s;
}


.work img:hover {
    transform: scale(1.03);
}


.work h3 {
    margin-top: 15px;

    font-size: 20px;
}


.work p {
    color: #777;

    font-size: 14px;
}


/* =========================
   联系方式
========================= */

.contact {
    min-height: 500px;
}


.contact p:last-child {
    font-size: 20px;

    color: #666;
}


/* =========================
   Footer
========================= */

footer {
    padding: 40px;

    text-align: center;

    border-top: 1px solid #eee;

    color: #777;
}


/* =========================
   手机端
========================= */

@media (max-width: 768px) {

    .nav-links {
        gap: 12px;
    }


    .nav-links a {
        font-size: 13px;
    }


    .hero {
        grid-template-columns: 1fr;

        gap: 40px;

        padding-top: 140px;
    }


    .hero h1 {
        font-size: 48px;
    }


    .hero h2 {
        font-size: 18px;
    }


    .hero-image img {
        height: 450px;
    }


    section h2 {
        font-size: 38px;
    }


    .portfolio-grid {
        grid-template-columns: 1fr;
    }


    .work img {
        height: auto;
    }

}
.categories {
    display: flex;

    gap: 12px;

    margin-bottom: 40px;

    flex-wrap: wrap;
}


.categories button {
    border: 1px solid #ddd;

    background: white;

    padding: 10px 20px;

    border-radius: 30px;

    cursor: pointer;

    transition: 0.3s;
}


.categories button:hover {
    background: #f2f2f2;
}


.categories button.active {
    background: #111;

    color: white;

    border-color: #111;
}
.lightbox {
    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, 0.85);

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 30px;

    z-index: 9999;
}


.lightbox-content {
    position: relative;

    max-width: 900px;

    max-height: 90vh;

    text-align: center;

    color: white;
}


.lightbox-content img {
    max-width: 100%;

    max-height: 75vh;

    object-fit: contain;

    border-radius: 10px;
}


.lightbox-content h3 {
    margin-top: 20px;

    font-size: 24px;
}


.lightbox-content p {
    color: #ccc;

    margin-top: 5px;
}


.close-button {
    position: absolute;

    right: -20px;

    top: -20px;

    width: 40px;

    height: 40px;

    border: none;

    border-radius: 50%;

    background: white;

    color: black;

    font-size: 25px;

    cursor: pointer;

    z-index: 10;
}
/* =========================
   图片左右切换按钮
========================= */

.lightbox-prev,
.lightbox-next {
    position: fixed;

    top: 50%;
    transform: translateY(-50%);

    width: 55px;
    height: 55px;

    border: none;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.9);
    color: #111;

    font-size: 40px;
    line-height: 1;

    cursor: pointer;

    z-index: 10001;

    transition: 0.3s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}
/* =========================
   图片左右切换按钮
========================= */

.lightbox-prev:hover,
.lightbox-next:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}
/* =========================
   返回顶部
========================= */

.back-top {
    position: fixed;

    right: 30px;
    bottom: 30px;

    width: 50px;
    height: 50px;

    border: none;

    border-radius: 50%;

    background: #111;
    color: white;

    font-size: 24px;

    cursor: pointer;

    z-index: 999;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.2);

    transition: 0.3s;
}

.back-top:hover {
    transform: translateY(-5px);
}
/* =========================
   手机端
========================= */

@media (max-width: 768px) {

    .lightbox {
        padding: 20px;
    }

    .lightbox-content img {
        max-height: 60vh;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;

        font-size: 32px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .close-button {
        right: -5px;
        top: -15px;
    }

    .back-top {
        right: 20px;
        bottom: 20px;

        width: 45px;
        height: 45px;
    }

}
.container {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
/* =========================
   媒体报道
========================= */

#media {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 110px 30px 130px;
}

/* 媒体报道标题 */

#media .section-title {
    margin-bottom: 12px;
}

#media h2 {
    margin-bottom: 18px;
}

.media-header {
    margin-bottom: 55px;
}

.media-header .section-description {
    max-width: 650px;
    color: #777;
    font-size: 15px;
    line-height: 1.8;
}

/* 报道列表 */

.media-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

/* 单条报道 */

.media-card {
    display: flex;
    flex-direction: column;

    min-height: 360px;
    padding: 32px 30px 28px;

    background: #fff;

    border-top: 1px solid #111;
    border-bottom: 1px solid #e5e5e5;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease;
}

.media-card:hover {
    transform: translateY(-5px);
    border-bottom-color: #111;
}

/* 标题 */

.media-card h3 {
    margin: 0 0 16px;

    font-size: 22px;
    line-height: 1.5;
    font-weight: 500;

    color: #111;
}

/* 摘要 */

.media-description {
    margin: 0 0 25px;

    max-width: 100%;

    color: #777;

    font-size: 14px;
    line-height: 1.9;

    flex: 1;
}

/* 日期 */

.media-date {
    margin-bottom: 9px;

    color: #999;

    font-size: 12px;
    letter-spacing: 1.5px;
}

/* 媒体名称 */

.media-source {
    margin: 0 0 25px;

    color: #111;

    font-size: 13px;
    letter-spacing: 1px;
}

/* 查看原文 */

.media-link {
    display: inline-flex;
    align-items: center;

    align-self: flex-start;

    gap: 9px;

    color: #111;

    text-decoration: none;

    font-size: 13px;
    font-weight: 500;

    padding-bottom: 5px;

    border-bottom: 1px solid #111;

    transition:
        opacity 0.3s ease,
        gap 0.3s ease;
}

.media-link:hover {
    opacity: 0.55;
    gap: 14px;
}

/* =========================
   更多报道
========================= */

.media-more {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 55px;
}

.media-more-button {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    padding: 10px 0;

    background: none;
    border: none;
    border-bottom: 1px solid #111;

    color: #111;

    font-size: 13px;
    font-weight: 500;

    cursor: pointer;

    transition: opacity 0.3s ease;
}

.media-more-button:hover {
    opacity: 0.55;
}

.media-more-button:disabled {
    color: #bbb;
    border-bottom-color: #ccc;
    opacity: 1;
    cursor: default;
}

.media-more-arrow {
    font-size: 18px;
    line-height: 1;
}

.media-more-button:hover .media-more-arrow {
    transform: translateX(6px);
}

/* =========================
   滚动出现动画
========================= */

.media-card.scroll-reveal {
    opacity: 0;
    transform: translateY(25px);
}

.media-card.scroll-reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   手机端
========================= */

@media (max-width: 900px) {

    #media {
        padding: 90px 25px 110px;
    }

    .media-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

}

@media (max-width: 768px) {

    #media {
        padding: 80px 20px 90px;
    }

    .media-header {
        margin-bottom: 40px;
    }

    .media-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .media-card {
        min-height: auto;
        padding: 28px 24px 26px;
    }

    .media-card h3 {
        font-size: 20px;
    }

    .media-description {
        flex: none;
        margin-bottom: 24px;
    }

    .media-more {
        margin-top: 40px;
    }

}
/* =========================
   媒体报道图片
========================= */

.media-image {
    width: 100%;
    height: 220px;

    margin: -32px -30px 30px;

    width: calc(100% + 60px);

    overflow: hidden;

    background: #f3f3f3;
}

.media-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.6s ease;
}


/* 鼠标经过卡片时图片轻微放大 */

.media-card:hover .media-image img {
    transform: scale(1.04);
}
/* =========================
   作品集 - 查看其它作品
========================= */
.portfolio-more {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 55px;
}

.portfolio-more-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    background: none;
    border: none;
    border-bottom: 1px solid #111;
    color: #111;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.3s ease;
}
.portfolio-more-button:hover {
    opacity: 0.55;
}
.portfolio-more-button:disabled {
    opacity: 0.25;
    cursor: not-allowed;
}
.portfolio-more-arrow {
    font-size: 18px;
}
/* =========================
   创作思路
========================= */
.creative-section {
    padding: 140px 0;
}
.creative-section .section-header {
    margin-bottom: 100px;
}
/* 每一个创作思路 */
.creative-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 100px;
    align-items: center;
    margin-bottom: 140px;
}
/* 第二、第四个反过来 */
.creative-content.reverse {
    grid-template-columns: 0.9fr 1.1fr;
}
.creative-content.reverse .creative-image {
    order: 2;
}

.creative-content.reverse .creative-text {
    order: 1;
}
/* 图片 */
.creative-image {
    width: 100%;
    overflow: hidden;
}
.creative-image img {
    display: block;
    width: 100%;
    height: 620px;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.creative-image:hover img {
    transform: scale(1.03);
}
/* 文字 */
.creative-text {
    padding: 20px 30px;
}
.creative-number {
    display: block;
    margin-bottom: 25px;
    font-size: 12px;
    color: #999;
    letter-spacing: 1px;
}
.creative-text h3 {
    margin: 0 0 30px;
    font-size: 38px;
    font-weight: 400;
    line-height: 1.2;
}
.creative-year {
    display: block;
    margin-bottom: 20px;
    font-size: 13px;
    color: #999;
    letter-spacing: 1px;
}
.creative-text p {
    max-width: 480px;
    margin: 0;
    font-size: 17px;
    line-height: 2;
    color: #666;
}
/* 最后一个不需要那么大的底部距离 */
.creative-content:last-child {
    margin-bottom: 0;
}
/*创作思路手机端*/
@media (max-width: 768px) {
    .creative-section {
        padding: 90px 0;
    }
    .creative-section .section-header {
        margin-bottom: 60px;
    }
    .creative-content,
    .creative-content.reverse {
        display: flex;
        flex-direction: column;
        gap: 35px;
        margin-bottom: 90px;
    }
    .creative-content.reverse .creative-image {
        order: 1;
    }
    .creative-content.reverse .creative-text {
        order: 2;
    }
    .creative-image img {
        height: 420px;
    }
    .creative-text {
        padding: 0;
    }
    .creative-text h3 {
        font-size: 30px;
        margin-bottom: 20px;
    }
    .creative-text p {
        font-size: 14px;
    }
}
/* =====================================================
   个人摄影展
===================================================== */

.exhibition-section {
    padding: 140px 0;
    background: #f8f8f8;
}
/* 栏目标题 */
.exhibition-section .section-header {
    margin-bottom: 80px;
}
/* 展览介绍 */

.exhibition-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    padding-bottom: 70px;
    border-bottom: 1px solid #ddd;
}
/* 展览名称 */

.exhibition-intro-title {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.exhibition-intro-title > span {
    padding-top: 8px;

    font-size: 12px;
    color: #999;
}

.exhibition-intro-title h3 {
    margin: 0;

    font-size: 42px;
    line-height: 1.2;

    font-weight: 400;
    letter-spacing: -1px;
}


/* 展览文字 */

.exhibition-intro-text {
    max-width: 560px;
}

.exhibition-intro-text p {
    margin: 0 0 18px;

    font-size: 15px;
    line-height: 2;

    color: #666;
}

.exhibition-intro-text p:last-child {
    margin-bottom: 0;
}


/* 展览图片 */

.exhibition-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;

    margin-top: 70px;
}


.exhibition-card {
    background: #fff;

    overflow: hidden;
}


/* 图片 */

.exhibition-image {
    width: 100%;
    height: 420px;

    overflow: hidden;

    background: #eee;
}


.exhibition-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.7s ease;
}


.exhibition-card:hover .exhibition-image img {
    transform: scale(1.04);
}


/* 展览信息 */

.exhibition-info {
    padding: 22px 25px 25px;
}


.exhibition-meta {
    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 20px;
}


.exhibition-year {
    font-size: 12px;
    color: #999;
}


.exhibition-location {
    margin: 0;

    font-size: 12px;
    color: #666;
}
@media (max-width: 768px) {

    .exhibition-section {
        padding: 90px 0;
    }


    .exhibition-section .section-header {
        margin-bottom: 55px;
    }


    .exhibition-intro {
        grid-template-columns: 1fr;

        gap: 35px;

        padding-bottom: 50px;
    }


    .exhibition-intro-title h3 {
        font-size: 30px;
    }


    .exhibition-intro-text p {
        font-size: 14px;
        line-height: 1.9;
    }
    .exhibition-grid {
        grid-template-columns: 1fr;

        gap: 25px;
        margin-top: 50px;
    }
    .exhibition-image {
        height: 360px;
    }
    .exhibition-info {
        padding: 18px 20px 20px;
    }
    .exhibition-more {
    gap: 30px;
    }

    .exhibition-more-button {
        font-size: 12px;
    }
}
/* =====================================================
   摄影展 - 更多 / 收起
===================================================== */

.exhibition-more {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 50px;

    margin-top: 55px;
}


.exhibition-more-button {
    display: inline-flex;
    align-items: center;

    gap: 14px;

    padding: 10px 0;

    background: none;

    border: none;
    border-bottom: 1px solid #111;

    color: #111;

    font-size: 13px;
    font-weight: 500;

    cursor: pointer;

    transition: opacity 0.3s ease;
}


.exhibition-more-button:hover {
    opacity: 0.55;
}


.exhibition-more-button:disabled {
    color: #bbb;

    border-bottom-color: #ccc;

    opacity: 1;

    cursor: default;
}


.exhibition-more-arrow {
    font-size: 18px;
    line-height: 1;
}
.creative-more {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 20px;
}

.creative-more-button {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
    background: none;
    border: none;
    border-bottom: 1px solid #111;
    color: #111;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.creative-more-button:hover {
    opacity: 0.55;
}

.creative-more-button:disabled {
    color: #bbb;
    border-bottom-color: #ccc;
    opacity: 1;
    cursor: default;
}

.creative-more-arrow {
    font-size: 18px;
    line-height: 1;
}
@media (max-width: 768px) {

    .creative-more {
        gap: 30px;
    }

    .creative-more-button {
        font-size: 12px;
    }

}