/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* 容器样式 */
.zh_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 英雄横幅区域 */
.zh_hero {
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.9), rgba(0, 172, 193, 0.9)),
                url('https://images.unsplash.com/photo-1561070791-2526d30994b5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2000&q=80') center/cover;
    min-height: 500px;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.zh_hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}

.zh_hero_content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.zh_hero_title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out;
}

.zh_hero_subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.zh_hero_cta {
    display: inline-flex;
    gap: 20px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.zh_btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.zh_btn_primary {
    background: linear-gradient(45deg, #00BCD4, #00ACC1);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.4);
}

.zh_btn_primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.6);
}

.zh_btn_secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.zh_btn_secondary:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-3px);
}

/* 服务区域 */
.zh_services {
    padding: 80px 0;
    background: white;
}

.zh_section_title {
    text-align: center;
    margin-bottom: 60px;
}

.zh_section_title h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
}

.zh_section_title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #00BCD4, #00ACC1);
    border-radius: 2px;
}

.zh_section_title p {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

.zh_services_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.zh_service_card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.zh_service_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, #00BCD4, #00ACC1);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.zh_service_card:hover::before {
    transform: scaleX(1);
}

.zh_service_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.zh_service_icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #00BCD4, #00ACC1);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 25px rgba(0, 188, 212, 0.3);
}

.zh_service_card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.zh_service_card p {
    color: #7f8c8d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.zh_service_link {
    color: #00BCD4;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.zh_service_link:hover {
    color: #00ACC1;
}

/* 作品展示区域 */
.zh_works {
    padding: 80px 0;
    background: #f8f9fa;
}

.zh_works_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.zh_work_card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.zh_work_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.zh_work_image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.zh_work_card:hover .zh_work_image {
    transform: scale(1.05);
}

.zh_work_content {
    padding: 25px;
}

.zh_work_title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.zh_work_title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.zh_work_title a:hover {
    color: #00BCD4;
}

.zh_designer_info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.zh_designer_avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.zh_designer_name {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.zh_designer_name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.zh_designer_name a:hover {
    color: #00BCD4;
}

/* 设计师展示区域 */
.zh_designers {
    padding: 80px 0;
    background: white;
}

.zh_designers_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.zh_designer_card_new {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.zh_designer_card_new:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.zh_designer_cover {
    height: 120px;
    background: linear-gradient(135deg, #00BCD4, #00ACC1);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zh_designer_cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1561070791-2526d30994b5?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80') center/cover;
    opacity: 0.2;
}

.zh_designer_avatar_new {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.zh_designer_body {
    padding: 20px;
    text-align: center;
}

.zh_designer_name {
    font-size: 1.3rem;
    color: #2c3e50;
    margin: 15px 0 5px;
    font-weight: 600;
}

.zh_designer_name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.zh_designer_name a:hover {
    color: #00BCD4;
}

.zh_designer_title {
    color: #7f8c8d;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.zh_designer_works_new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.zh_designer_work_new {
    position: relative;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.zh_designer_work_new:hover {
    transform: scale(1.05);
}

.zh_designer_work_new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zh_designer_work_new a {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 188, 212, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    text-decoration: none;
}

.zh_designer_work_new:hover a {
    opacity: 1;
}

.zh_designer_stats {
    display: flex;
    justify-content: space-around;
    padding: 15px 0;
    border-top: 1px solid #f0f0f0;
    margin-top: 15px;
}

.zh_stat_item_mini {
    text-align: center;
}

.zh_stat_item_mini .zh_stat_number_mini {
    font-size: 1.2rem;
    font-weight: 600;
    color: #00BCD4;
    display: block;
}

.zh_stat_item_mini .zh_stat_label_mini {
    font-size: 0.8rem;
    color: #7f8c8d;
}

/* CTA区域 */
.zh_cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    text-align: center;
}

.zh_cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.zh_cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.zh_animate_on_scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.zh_animate_on_scroll.zh_animate_active {
    opacity: 1;
    transform: translateY(0);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .zh_hero_title {
        font-size: 2.5rem;
    }
    
    .zh_hero_subtitle {
        font-size: 1.1rem;
    }
    
    .zh_hero_cta {
        flex-direction: column;
        align-items: center;
    }
    
    .zh_section_title h2 {
        font-size: 2rem;
    }
    
    .zh_services_grid,
    .zh_works_grid,
    .zh_designers_grid {
        grid-template-columns: 1fr;
    }
    
    .zh_designer_header {
        flex-direction: column;
        text-align: center;
    }
    
    .zh_designer_works {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .zh_container {
        padding: 0 15px;
    }
    
    .zh_hero {
        min-height: 400px;
    }
    
    .zh_hero_title {
        font-size: 2rem;
    }
    
    .zh_service_card,
    .zh_designer_card {
        padding: 25px 20px;
    }
}

/* 统计数据样式 */
.zh_stats {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.05), rgba(0, 172, 193, 0.05));
}

.zh_stats_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.zh_stat_item {
    padding: 30px 20px;
}

.zh_stat_number {
    font-size: 3rem;
    font-weight: 700;
    color: #00BCD4;
    margin-bottom: 10px;
}

.zh_stat_label {
    color: #7f8c8d;
    font-size: 1.1rem;
}

/* 分类展示区域样式 */
.zh_category_showcase {
    padding: 60px 0;
    background: white;
}

.zh_category_showcase.zh_alt_bg {
    background: #f8f9fa;
}

.zh_category_section {
    margin-bottom: 50px;
}

.zh_category_section:last-child {
    margin-bottom: 0;
}

.zh_category_header_simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.zh_category_header_simple h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.zh_category_header_simple h3 i {
    color: #00BCD4;
    font-size: 1.5rem;
}

.zh_more_link {
    color: #00BCD4;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.zh_more_link:hover {
    background: rgba(0, 188, 212, 0.1);
    transform: translateX(5px);
}

/* 分类布局 80%-20% */
.zh_category_layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}

.zh_category_layout.zh_compact_layout {
    grid-template-columns: 1fr 200px;
    gap: 30px;
}

.zh_main_content {
    width: 100%;
}

.zh_sub_title {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.zh_sub_title i {
    color: #00BCD4;
}

.zh_works_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.zh_works_grid.zh_compact_grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* 宽条样式的作品项 */
.zh_work_item_wide {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    gap: 15px;
    padding: 15px;
    border: 1px solid #f0f0f0;
}

.zh_work_item_wide:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.zh_work_item_wide .zh_work_thumb {
    position: relative;
    width: 120px;
    height: 90px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.zh_work_item_wide .zh_work_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.zh_work_item_wide:hover .zh_work_thumb img {
    transform: scale(1.1);
}

.zh_work_item_wide .zh_work_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 188, 212, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zh_work_item_wide:hover .zh_work_overlay {
    opacity: 1;
}

.zh_work_item_wide .zh_view_btn {
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00BCD4;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.zh_work_item_wide .zh_view_btn:hover {
    transform: scale(1.2);
}

.zh_work_item_wide .zh_work_content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.zh_work_item_wide h4 {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
    color: #2c3e50;
}

.zh_work_item_wide h4 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.zh_work_item_wide h4 a:hover {
    color: #00BCD4;
}

.zh_work_item_wide .zh_designer_mini {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.zh_work_item_wide .zh_designer_mini img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.zh_work_item_wide .zh_designer_mini span {
    font-size: 13px;
    color: #7f8c8d;
}

.zh_work_item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.zh_work_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.zh_work_thumb {
    position: relative;
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.zh_work_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.zh_work_item:hover .zh_work_thumb img {
    transform: scale(1.1);
}

.zh_work_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 188, 212, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zh_work_item:hover .zh_work_overlay {
    opacity: 1;
}

.zh_view_btn {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00BCD4;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.zh_view_btn:hover {
    transform: scale(1.2);
}

.zh_work_item h4 {
    padding: 15px 15px 10px;
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.zh_work_item h4 a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.zh_work_item h4 a:hover {
    color: #00BCD4;
}

.zh_designer_mini {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 15px 15px;
}

.zh_designer_mini img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.zh_designer_mini span {
    font-size: 12px;
    color: #7f8c8d;
}

/* 热门推荐侧边栏 */
.zh_hot_sidebar {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    border: 1px solid #e0e0e0;
    position: sticky;
    top: 100px;
}

.zh_hot_sidebar.zh_compact_sidebar {
    padding: 15px;
}

.zh_hot_list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.zh_hot_item {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.zh_hot_item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.zh_hot_item img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.zh_compact_sidebar .zh_hot_item img {
    width: 50px;
    height: 50px;
}

.zh_hot_info {
    flex: 1;
    min-width: 0;
}

.zh_hot_info h5 {
    margin: 0 0 5px 0;
    font-size: 13px;
    line-height: 1.3;
}

.zh_hot_info h5 a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.zh_hot_info h5 a:hover {
    color: #00BCD4;
}

.zh_hot_designer {
    font-size: 11px;
    color: #7f8c8d;
}

/* 双栏布局 */
.zh_dual_categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .zh_works_grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .zh_works_grid.zh_compact_grid {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .zh_category_layout {
        grid-template-columns: 1fr 250px;
        gap: 30px;
    }
    
    .zh_category_layout.zh_compact_layout {
        grid-template-columns: 1fr 180px;
        gap: 25px;
    }
    
    .zh_designers_grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

@media (max-width: 968px) {
    .zh_dual_categories {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .zh_category_layout,
    .zh_category_layout.zh_compact_layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .zh_hot_sidebar {
        position: static;
    }
    
    .zh_hot_list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .zh_work_item_wide {
        flex-direction: column;
        gap: 12px;
        padding: 12px;
    }
    
    .zh_work_item_wide .zh_work_thumb {
        width: 100%;
        height: 120px;
    }
    
    .zh_designers_grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .zh_works_grid,
    .zh_works_grid.zh_compact_grid {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .zh_category_header_simple {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .zh_category_header_simple h3 {
        font-size: 1.5rem;
    }
    
    .zh_hot_list {
        grid-template-columns: 1fr;
    }
    
    .zh_work_item_wide .zh_work_thumb {
        height: 100px;
    }
    
    .zh_work_item_wide h4 {
        font-size: 15px;
    }
    
    .zh_designer_cover {
        height: 100px;
    }
    
    .zh_designer_avatar_new {
        width: 70px;
        height: 70px;
    }
    
    .zh_designer_works_new {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .zh_designer_stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .zh_stat_item_mini {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .zh_stat_item_mini:last-child {
        border-bottom: none;
    }
    
    .zh_designers_grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .zh_works_grid,
    .zh_works_grid.zh_compact_grid {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .zh_category_showcase {
        padding: 40px 0;
    }
    
    .zh_category_section {
        margin-bottom: 40px;
    }
    
    .zh_hot_item {
        gap: 10px;
        padding: 10px;
    }
    
    .zh_hot_item img {
        width: 50px;
        height: 50px;
    }
    
    .zh_work_item_wide {
        padding: 10px;
        gap: 10px;
    }
    
    .zh_work_item_wide .zh_work_thumb {
        width: 80px;
        height: 60px;
    }
    
    .zh_work_item_wide h4 {
        font-size: 14px;
    }
    
    .zh_work_item_wide .zh_designer_mini span {
        font-size: 12px;
    }
    
    .zh_designer_body {
        padding: 15px;
    }
    
    .zh_designer_name {
        font-size: 1.1rem;
    }
    
    .zh_designer_title {
        font-size: 0.85rem;
    }
    
    .zh_designer_works_new {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }
    
    .zh_designer_work_new {
        height: 50px;
    }
}
