/* 详情页样式 - 参考 Figma 设计风格 */

body {
    background: #0f0f0f;
}

.zh_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Banner 区域 */
.zh_detail_banner {
    padding: 160px 0 80px;
    background: #0f0f0f;
    position: relative;
}

.zh_detail_banner_content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.zh_detail_title {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -2px;
    color: #fff;
    margin-bottom: 30px;
}

.zh_detail_meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 30px;
}

.zh_detail_meta_item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.zh_detail_meta_item i {
    color: #f20e09;
    font-size: 18px;
}

.zh_detail_breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 15px;
    margin-top: 25px;
}

.zh_detail_breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.zh_detail_breadcrumb a:hover {
    color: #f20e09;
}

.zh_detail_breadcrumb i {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

.zh_detail_breadcrumb span {
    color: #fff;
}

/* 主内容区 */
.zh_detail_wrapper {
    padding: 80px 0 120px;
    background: #0f0f0f;
}

.zh_detail_layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
}

/* 作品展示区 */
.zh_detail_showcase {
    background: rgba(148, 148, 148, 0.09);
    backdrop-filter: blur(37px);
    border-radius: 20px;
    overflow: hidden;
}

.zh_detail_image {
    width: 100%;
    position: relative;
    background: #000;
}

.zh_detail_image img {
    width: 100%;
    height: auto;
    display: block;
}

.zh_detail_content {
    padding: 40px;
}

.zh_detail_section_title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    letter-spacing: -0.8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.zh_detail_section_title i {
    color: #f20e09;
    font-size: 24px;
}

.zh_detail_body {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
}

.zh_detail_body p {
    margin-bottom: 20px;
}

.zh_detail_body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 25px 0;
}

.zh_detail_body h2,
.zh_detail_body h3 {
    color: #fff;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.zh_detail_body ul,
.zh_detail_body ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.zh_detail_body li {
    margin-bottom: 10px;
}

/* 设计师卡片 */
.zh_designer_card {
    background: rgba(148, 148, 148, 0.09);
    backdrop-filter: blur(37px);
    border-radius: 20px;
    padding: 35px;
    position: sticky;
    top: 120px;
}

.zh_designer_header {
    text-align: center;
    margin-bottom: 30px;
}

.zh_designer_avatar_wrap {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid rgba(242, 14, 9, 0.3);
    box-shadow: 0 8px 25px rgba(242, 14, 9, 0.2);
}

.zh_designer_avatar_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zh_designer_name {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: -0.6px;
}

.zh_designer_role {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.zh_designer_company {
    font-size: 14px;
    color: #f20e09;
    font-weight: 500;
}

.zh_designer_divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

.zh_designer_info_title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.4px;
}

.zh_designer_info_title i {
    color: #f20e09;
    font-size: 16px;
}

.zh_designer_info_item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: all 0.3s;
}

.zh_designer_info_item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.zh_designer_info_item i {
    color: #f20e09;
    margin-top: 3px;
    width: 20px;
    text-align: center;
    font-size: 16px;
    flex-shrink: 0;
}

.zh_designer_info_item div {
    flex: 1;
}

.zh_designer_info_label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
}

.zh_designer_info_value {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.zh_designer_info_value a {
    color: #f20e09;
    text-decoration: none;
    transition: opacity 0.3s;
}

.zh_designer_info_value a:hover {
    opacity: 0.8;
}

.zh_designer_desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 25px;
}

.zh_contact_btn {
    width: 100%;
    padding: 16px;
    background: #f20e09;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
    text-decoration: none;
}

.zh_contact_btn:hover {
    background: #c40b07;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 14, 9, 0.4);
}

.zh_contact_btn i {
    font-size: 18px;
}

.zh_login_prompt {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 14px;
    text-align: center;
    margin-bottom: 12px;
}

.zh_login_prompt a {
    color: #f20e09;
    text-decoration: none;
    font-weight: 600;
}

.zh_login_prompt a:hover {
    text-decoration: underline;
}

.zh_share_title {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    text-align: center;
}

.zh_share_buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.zh_share_btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s;
    font-size: 18px;
    text-decoration: none;
}

.zh_share_btn:hover {
    background: #f20e09;
    border-color: #f20e09;
    color: #fff;
    transform: translateY(-3px);
}

/* 相关作品 */
.zh_related_section {
    margin-top: 80px;
}

.zh_related_title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: -1.2px;
}

.zh_related_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.zh_related_item {
    background: rgba(148, 148, 148, 0.09);
    backdrop-filter: blur(37px);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
}

.zh_related_item:hover {
    transform: translateY(-8px);
    background: rgba(148, 148, 148, 0.12);
}

.zh_related_link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.zh_related_thumb {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.zh_related_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.zh_related_item:hover .zh_related_thumb img {
    transform: scale(1.1);
}

.zh_related_overlay {
    position: absolute;
    inset: 0;
    background: rgba(242, 14, 9, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.zh_related_item:hover .zh_related_overlay {
    opacity: 1;
}

.zh_related_view {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.zh_related_details {
    padding: 25px;
}

.zh_related_name {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.zh_related_stats {
    display: flex;
    gap: 18px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.zh_related_stats i {
    color: #f20e09;
    margin-right: 5px;
}

/* 响应式 */
@media (max-width: 1200px) {
    .zh_detail_layout {
        grid-template-columns: 1fr 360px;
        gap: 40px;
    }

    .zh_detail_title {
        font-size: 56px;
    }

    .zh_related_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .zh_detail_banner {
        padding: 120px 0 60px;
    }

    .zh_detail_title {
        font-size: 36px;
    }

    .zh_detail_meta {
        flex-direction: column;
        gap: 12px;
    }

    .zh_detail_layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .zh_detail_content {
        padding: 30px;
    }

    .zh_designer_card {
        position: static;
    }

    .zh_related_grid {
        grid-template-columns: 1fr;
    }

    .zh_related_title {
        font-size: 32px;
    }
}
